From bb1ba2fd178707074cbb36e7562313bd650e2470 Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Tue, 22 Aug 2023 23:17:21 +0200 Subject: [PATCH 001/110] docs: implement autoapi --- docs/conf.py | 8 +++++++- pyproject.toml | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 1c6b9c75..d2d6d6b6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -30,7 +30,7 @@ # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. -extensions = ["jupyter_sphinx", "sphinx_rtd_theme"] +extensions = ["jupyter_sphinx", "sphinx_rtd_theme", "autoapi.extension"] # Add any paths that contain templates here, relative to this directory. templates_path = ["_templates"] @@ -59,3 +59,9 @@ html_css_files = [ "custom.css", ] + +# -- Options for autosummary/autodoc output ------------------------------------ +autodoc_typehints = "description" +autoapi_dirs = ["../ipyvuetify"] +autoapi_python_class_content = "init" +autoapi_member_order = "groupwise" diff --git a/pyproject.toml b/pyproject.toml index 6ced8785..a912fecf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,7 +41,7 @@ content-type = "text/markdown" [project.optional-dependencies] dev = ["nox", "pre-commit", "mypy"] test = ["pytest", "pytest-playwright", "jupyterlab<4", "solara[pytest]"] -doc = ["sphinx<7", "jupyter-sphinx", "ipykernel"] +doc = ["sphinx<7", "jupyter-sphinx", "ipykernel", "sphinx-rtd-theme", "sphinx-autoapi"] [tool.setuptools] include-package-data = true From 05d648cf65606c2add265e3ebc0cbd7d24a58cc7 Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Wed, 23 Aug 2023 10:54:15 +0200 Subject: [PATCH 002/110] docs: ignore private members --- docs/conf.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index d2d6d6b6..59fdea65 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -65,3 +65,21 @@ autoapi_dirs = ["../ipyvuetify"] autoapi_python_class_content = "init" autoapi_member_order = "groupwise" +autoapi_options = [ + "members", + "undoc-members", + "show-inheritance", + "show-module-summary", + "special-members", + "imported-members", +] + + +def skip_submodules(app, what, name, obj, skip, options): + if what == "module" and name in ["Html"]: + skip = True + return skip + + +def setup(sphinx): + sphinx.connect("autoapi-skip-member", skip_submodules) From 1ee7f06a9c3821387a6406372bc2193612b0435d Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Wed, 23 Aug 2023 10:54:43 +0200 Subject: [PATCH 003/110] docs: ignore special members --- docs/conf.py | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 59fdea65..de4dcb2a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -70,7 +70,6 @@ "undoc-members", "show-inheritance", "show-module-summary", - "special-members", "imported-members", ] From c41144714a538f71aff4f3f0ec4132dd4b5697fd Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Wed, 23 Aug 2023 10:55:08 +0200 Subject: [PATCH 004/110] fix: drop skipmodule --- docs/conf.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index de4dcb2a..46a11496 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -72,13 +72,3 @@ "show-module-summary", "imported-members", ] - - -def skip_submodules(app, what, name, obj, skip, options): - if what == "module" and name in ["Html"]: - skip = True - return skip - - -def setup(sphinx): - sphinx.connect("autoapi-skip-member", skip_submodules) From 269fd2ec50fd325cb956fa6d4f5f437b8941371c Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Wed, 23 Aug 2023 10:55:51 +0200 Subject: [PATCH 005/110] docs: use class content widgets usually don't overwrite the __init__ method --- docs/conf.py | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 46a11496..918c8808 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -63,7 +63,6 @@ # -- Options for autosummary/autodoc output ------------------------------------ autodoc_typehints = "description" autoapi_dirs = ["../ipyvuetify"] -autoapi_python_class_content = "init" autoapi_member_order = "groupwise" autoapi_options = [ "members", From fffb4dc62547f6d8aa1ccd83da99c0363f70ad64 Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Wed, 23 Aug 2023 11:19:36 +0200 Subject: [PATCH 006/110] refactor: make ruff accept init unused imports --- .gitignore | 2 +- generate_source/generate_source.py | 2 +- ipyvuetify/{Html.py => _Html.py} | 0 ipyvuetify/{VuetifyTemplate.py => _VuetifyTemplate.py} | 0 ipyvuetify/__init__.py | 10 +++++----- ipyvuetify/extra/__init__.py | 2 +- pyproject.toml | 1 + 7 files changed, 9 insertions(+), 8 deletions(-) rename ipyvuetify/{Html.py => _Html.py} (100%) rename ipyvuetify/{VuetifyTemplate.py => _VuetifyTemplate.py} (100%) diff --git a/.gitignore b/.gitignore index 7df9d44b..f9f8cc87 100755 --- a/.gitignore +++ b/.gitignore @@ -11,7 +11,7 @@ build/ # generated code generate_source/build -ipyvuetify/generated +ipyvuetify/_generated js/src/generated # Compiled javascript diff --git a/generate_source/generate_source.py b/generate_source/generate_source.py index f327dddc..309b8353 100644 --- a/generate_source/generate_source.py +++ b/generate_source/generate_source.py @@ -20,7 +20,7 @@ project_dir = here.parent destination_js = project_dir / "js" / "src" / "generated" -destination_python = project_dir / "ipyvuetify" / "generated" +destination_python = project_dir / "ipyvuetify" / "_generated" def reset_dir(name: Path): diff --git a/ipyvuetify/Html.py b/ipyvuetify/_Html.py similarity index 100% rename from ipyvuetify/Html.py rename to ipyvuetify/_Html.py diff --git a/ipyvuetify/VuetifyTemplate.py b/ipyvuetify/_VuetifyTemplate.py similarity index 100% rename from ipyvuetify/VuetifyTemplate.py rename to ipyvuetify/_VuetifyTemplate.py diff --git a/ipyvuetify/__init__.py b/ipyvuetify/__init__.py index c044e3c2..91a71ac7 100755 --- a/ipyvuetify/__init__.py +++ b/ipyvuetify/__init__.py @@ -1,8 +1,8 @@ -from ._version import __version__ # noqa: F401 -from .generated import * # noqa: F401, F403 -from .Html import Html # noqa: F401 -from .Themes import theme # noqa: F401 -from .VuetifyTemplate import VuetifyTemplate # noqa: F401 +from ._generated import * # noqa: F403 +from ._Html import Html as Html +from ._version import __version__ as __version__ +from ._VuetifyTemplate import VuetifyTemplate as VuetifyTemplate +from .Themes import theme as theme def _jupyter_labextension_paths(): diff --git a/ipyvuetify/extra/__init__.py b/ipyvuetify/extra/__init__.py index 79465061..0011b169 100644 --- a/ipyvuetify/extra/__init__.py +++ b/ipyvuetify/extra/__init__.py @@ -1 +1 @@ -from .file_input import FileInput # noqa: F401 +from .file_input import FileInput as FileInput diff --git a/pyproject.toml b/pyproject.toml index a912fecf..5b602a6a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -55,6 +55,7 @@ exclude = ["docs*", "tests*"] universal = true [tool.ruff] +ignore-init-module-imports = true fix = true exclude = [ '.git', From 257880ca40c1f9f1c8446d99af4ef5e42e46deaf Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Thu, 24 Aug 2023 22:14:42 +0200 Subject: [PATCH 007/110] fix: rollback to non prefix packages --- .gitignore | 2 +- generate_source/generate_source.py | 2 +- ipyvuetify/{_Html.py => Html.py} | 0 ipyvuetify/{_VuetifyTemplate.py => VuetifyTemplate.py} | 0 ipyvuetify/__init__.py | 6 +++--- 5 files changed, 5 insertions(+), 5 deletions(-) rename ipyvuetify/{_Html.py => Html.py} (100%) rename ipyvuetify/{_VuetifyTemplate.py => VuetifyTemplate.py} (100%) diff --git a/.gitignore b/.gitignore index f9f8cc87..7df9d44b 100755 --- a/.gitignore +++ b/.gitignore @@ -11,7 +11,7 @@ build/ # generated code generate_source/build -ipyvuetify/_generated +ipyvuetify/generated js/src/generated # Compiled javascript diff --git a/generate_source/generate_source.py b/generate_source/generate_source.py index 309b8353..f327dddc 100644 --- a/generate_source/generate_source.py +++ b/generate_source/generate_source.py @@ -20,7 +20,7 @@ project_dir = here.parent destination_js = project_dir / "js" / "src" / "generated" -destination_python = project_dir / "ipyvuetify" / "_generated" +destination_python = project_dir / "ipyvuetify" / "generated" def reset_dir(name: Path): diff --git a/ipyvuetify/_Html.py b/ipyvuetify/Html.py similarity index 100% rename from ipyvuetify/_Html.py rename to ipyvuetify/Html.py diff --git a/ipyvuetify/_VuetifyTemplate.py b/ipyvuetify/VuetifyTemplate.py similarity index 100% rename from ipyvuetify/_VuetifyTemplate.py rename to ipyvuetify/VuetifyTemplate.py diff --git a/ipyvuetify/__init__.py b/ipyvuetify/__init__.py index 91a71ac7..607f20db 100755 --- a/ipyvuetify/__init__.py +++ b/ipyvuetify/__init__.py @@ -1,8 +1,8 @@ -from ._generated import * # noqa: F403 -from ._Html import Html as Html from ._version import __version__ as __version__ -from ._VuetifyTemplate import VuetifyTemplate as VuetifyTemplate +from .generated import * # noqa: F403 +from .Html import Html as Html from .Themes import theme as theme +from .VuetifyTemplate import VuetifyTemplate as VuetifyTemplate def _jupyter_labextension_paths(): From d26f6caaa5cb4be9cab0d4ecb0a7f3f45deae98a Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Thu, 24 Aug 2023 22:59:05 +0200 Subject: [PATCH 008/110] docs: skip private modules and packages --- docs/conf.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 918c8808..af580707 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -71,3 +71,22 @@ "show-module-summary", "imported-members", ] + + +def skip_submodules(app, what, name, obj, skip, options): + """Ignore the modules and packages taht are private + + Only necessary for those that are not using a leading underscore + """ + privates = { + "ipyvuetify.Html": "modules", + "ipyvuetify.VuetifyTemplate": "module", + "ipyvuetify.generated": "package", + } + if any([what == t and name == m for m, t in privates.items()]): + skip = True + return skip + + +def setup(sphinx): + sphinx.connect("autoapi-skip-member", skip_submodules) From 1915a2679d864ee77c33e9c197a102f42698e8e2 Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Thu, 24 Aug 2023 23:06:19 +0200 Subject: [PATCH 009/110] refactor: typo --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index af580707..7f8f3cb8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -79,7 +79,7 @@ def skip_submodules(app, what, name, obj, skip, options): Only necessary for those that are not using a leading underscore """ privates = { - "ipyvuetify.Html": "modules", + "ipyvuetify.Html": "module", "ipyvuetify.VuetifyTemplate": "module", "ipyvuetify.generated": "package", } From 3e8f246ee159ec4c17e87861d8d38eed3236f7a8 Mon Sep 17 00:00:00 2001 From: Rambaud Pierrick <12rambau@users.noreply.github.com> Date: Fri, 25 Aug 2023 07:54:26 +0000 Subject: [PATCH 010/110] refactor: easier to read implmentation --- docs/conf.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 7f8f3cb8..3f84a0f0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -78,14 +78,14 @@ def skip_submodules(app, what, name, obj, skip, options): Only necessary for those that are not using a leading underscore """ - privates = { - "ipyvuetify.Html": "module", - "ipyvuetify.VuetifyTemplate": "module", - "ipyvuetify.generated": "package", - } - if any([what == t and name == m for m, t in privates.items()]): - skip = True - return skip + privates = [ + ("module", "ipyvuetify.Html"), + ("module", "ipyvuetify.VuetifyTemplate"), + ("package", "ipyvuetify.generated"), + ] + + # return `skip` when nothing is catch to keep skipping the private members + return any([what == t and name == m for t, m in privates]) or skip def setup(sphinx): From acc697d41de3f15c1f2895607c14349d77a49475 Mon Sep 17 00:00:00 2001 From: Rambaud Pierrick <12rambau@users.noreply.github.com> Date: Fri, 25 Aug 2023 08:30:24 +0000 Subject: [PATCH 011/110] fix: reduce the scope of the PR --- ipyvuetify/__init__.py | 10 +++++----- ipyvuetify/extra/__init__.py | 2 +- pyproject.toml | 1 - 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/ipyvuetify/__init__.py b/ipyvuetify/__init__.py index 607f20db..c044e3c2 100755 --- a/ipyvuetify/__init__.py +++ b/ipyvuetify/__init__.py @@ -1,8 +1,8 @@ -from ._version import __version__ as __version__ -from .generated import * # noqa: F403 -from .Html import Html as Html -from .Themes import theme as theme -from .VuetifyTemplate import VuetifyTemplate as VuetifyTemplate +from ._version import __version__ # noqa: F401 +from .generated import * # noqa: F401, F403 +from .Html import Html # noqa: F401 +from .Themes import theme # noqa: F401 +from .VuetifyTemplate import VuetifyTemplate # noqa: F401 def _jupyter_labextension_paths(): diff --git a/ipyvuetify/extra/__init__.py b/ipyvuetify/extra/__init__.py index 0011b169..79465061 100644 --- a/ipyvuetify/extra/__init__.py +++ b/ipyvuetify/extra/__init__.py @@ -1 +1 @@ -from .file_input import FileInput as FileInput +from .file_input import FileInput # noqa: F401 diff --git a/pyproject.toml b/pyproject.toml index 5b602a6a..a912fecf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -55,7 +55,6 @@ exclude = ["docs*", "tests*"] universal = true [tool.ruff] -ignore-init-module-imports = true fix = true exclude = [ '.git', From b1e0f20466496fd929ddc4ef7cbda36008a4898a Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Thu, 20 Nov 2025 15:48:51 +0000 Subject: [PATCH 012/110] build: add a server rendered documetnation compilation mechanism --- noxfile.py | 14 +++++++++++++- pyproject.toml | 6 +----- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/noxfile.py b/noxfile.py index 9ebf1493..594f0329 100644 --- a/noxfile.py +++ b/noxfile.py @@ -17,5 +17,17 @@ def lint(session): @nox.session(reuse_venv=True) def docs(session): """Build the documentation.""" + build = session.posargs.pop() if session.posargs else "html" session.install(".[doc]") - session.run("sphinx-build", "-v", "-b", "html", "docs", "docs/_build/html") + dst = f"docs/_build/{build}" + session.run("sphinx-build", "-v", "-b", build, "docs", dst) + + +@nox.session(reuse_venv=True, name="docs-live") +def docs_live(session): + """Build the documentation.""" + build = session.posargs.pop() if session.posargs else "html" + session.install(".[doc]") + session.install("sphinx-autobuild") + dst = "docs/_build/html" + session.run("sphinx-autobuild", "-v", "-b", build, "docs", dst) \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index c72f393c..42c06297 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,6 +9,7 @@ description="Jupyter widgets based on vuetify UI components" requires-python = ">=3.6" dependencies = ["ipyvue>=1.7,<2"] keywords=["ipython", "jupyter", "widgets"] +license-files = ["LICENSE"] authors = [ {name = "Mario Buikhuizen", email = "mbuikhuizen@gmail.com"}, {name = "Maarten Breddels", email = "maartenbreddels@gmail.com"}, @@ -19,7 +20,6 @@ classifiers=[ "Intended Audience :: Developers", "Intended Audience :: Science/Research", "Topic :: Multimedia :: Graphics", - "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", @@ -31,9 +31,6 @@ classifiers=[ [project.urls] repository = "https://github.com/widgetti/ipyvuetify" -[project.license] -text = "MIT" - [project.readme] file = "README.md" content-type = "text/markdown" @@ -52,7 +49,6 @@ doc = [ [tool.setuptools] include-package-data = true -license-files = ["LICENSE"] [tool.setuptools.packages.find] include = ["ipyvuetify*"] From ae06904e4eb01ba52637c6dcedc6b2683552ef76 Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Thu, 20 Nov 2025 20:21:15 +0000 Subject: [PATCH 013/110] fix: correct the bug with astroid prerelease --- docs/autoapi/index.rst | 11 + docs/autoapi/ipyvuetify/Html/index.rst | 32 + docs/autoapi/ipyvuetify/Themes/index.rst | 19 + .../ipyvuetify/VuetifyTemplate/index.rst | 32 + docs/autoapi/ipyvuetify/components/index.rst | 518 + .../ipyvuetify/extra/file_input/index.rst | 98 + docs/autoapi/ipyvuetify/extra/index.rst | 107 + .../ipyvuetify/generated/Alert/index.rst | 110 + .../ipyvuetify/generated/App/index.rst | 41 + .../ipyvuetify/generated/AppBar/index.rst | 143 + .../generated/AppBarNavIcon/index.rst | 32 + .../generated/Autocomplete/index.rst | 239 + .../ipyvuetify/generated/Avatar/index.rst | 65 + .../ipyvuetify/generated/Badge/index.rst | 92 + .../ipyvuetify/generated/Banner/index.rst | 89 + .../generated/BottomNavigation/index.rst | 101 + .../generated/BottomSheet/index.rst | 110 + .../generated/Breadcrumbs/index.rst | 47 + .../generated/BreadcrumbsDivider/index.rst | 32 + .../generated/BreadcrumbsItem/index.rst | 71 + .../ipyvuetify/generated/Btn/index.rst | 170 + .../ipyvuetify/generated/BtnToggle/index.rst | 77 + .../ipyvuetify/generated/Calendar/index.rst | 137 + .../generated/CalendarDaily/index.rst | 83 + .../generated/CalendarMonthly/index.rst | 71 + .../generated/CalendarWeekly/index.rst | 71 + .../ipyvuetify/generated/Card/index.rst | 128 + .../generated/CardActions/index.rst | 32 + .../generated/CardSubtitle/index.rst | 32 + .../ipyvuetify/generated/CardText/index.rst | 32 + .../ipyvuetify/generated/CardTitle/index.rst | 32 + .../ipyvuetify/generated/Carousel/index.rst | 107 + .../generated/CarouselItem/index.rst | 83 + .../CarouselReverseTransition/index.rst | 47 + .../generated/CarouselTransition/index.rst | 47 + .../ipyvuetify/generated/Checkbox/index.rst | 134 + .../ipyvuetify/generated/Chip/index.rst | 128 + .../ipyvuetify/generated/ChipGroup/index.rst | 74 + .../ipyvuetify/generated/Col/index.rst | 83 + .../generated/ColorPicker/index.rst | 77 + .../generated/ColorPickerCanvas/index.rst | 47 + .../generated/ColorPickerSwatches/index.rst | 50 + .../ipyvuetify/generated/Combobox/index.rst | 242 + .../ipyvuetify/generated/Container/index.rst | 335 + .../ipyvuetify/generated/Content/index.rst | 329 + .../ipyvuetify/generated/Counter/index.rst | 44 + .../ipyvuetify/generated/Data/index.rst | 80 + .../ipyvuetify/generated/DataFooter/index.rst | 74 + .../generated/DataIterator/index.rst | 125 + .../ipyvuetify/generated/DataTable/index.rst | 164 + .../generated/DataTableHeader/index.rst | 35 + .../ipyvuetify/generated/DatePicker/index.rst | 122 + .../generated/DatePickerDateTable/index.rst | 86 + .../generated/DatePickerHeader/index.rst | 65 + .../generated/DatePickerMonthTable/index.rst | 77 + .../generated/DatePickerTitle/index.rst | 56 + .../generated/DatePickerYears/index.rst | 50 + .../ipyvuetify/generated/Dialog/index.rst | 107 + .../DialogBottomTransition/index.rst | 47 + .../generated/DialogTransition/index.rst | 47 + .../ipyvuetify/generated/Divider/index.rst | 44 + .../ipyvuetify/generated/EditDialog/index.rst | 59 + .../generated/ExpandTransition/index.rst | 35 + .../generated/ExpandXTransition/index.rst | 35 + .../generated/ExpansionPanel/index.rst | 41 + .../generated/ExpansionPanelContent/index.rst | 38 + .../generated/ExpansionPanelHeader/index.rst | 47 + .../generated/ExpansionPanels/index.rst | 80 + .../generated/FabTransition/index.rst | 47 + .../generated/FadeTransition/index.rst | 47 + .../ipyvuetify/generated/FileInput/index.rst | 191 + .../ipyvuetify/generated/Flex/index.rst | 905 ++ .../ipyvuetify/generated/Footer/index.rst | 83 + .../ipyvuetify/generated/Form/index.rst | 38 + .../ipyvuetify/generated/Hover/index.rst | 44 + .../ipyvuetify/generated/Icon/index.rst | 71 + .../ipyvuetify/generated/Img/index.rst | 86 + .../ipyvuetify/generated/Input/index.rst | 107 + .../ipyvuetify/generated/Item/index.rst | 41 + .../ipyvuetify/generated/ItemGroup/index.rst | 53 + .../ipyvuetify/generated/Label/index.rst | 62 + .../ipyvuetify/generated/Layout/index.rst | 458 + .../ipyvuetify/generated/Lazy/index.rst | 47 + .../ipyvuetify/generated/List/index.rst | 98 + .../ipyvuetify/generated/ListGroup/index.rst | 65 + .../ipyvuetify/generated/ListItem/index.rst | 101 + .../generated/ListItemAction/index.rst | 32 + .../generated/ListItemActionText/index.rst | 32 + .../generated/ListItemAvatar/index.rst | 68 + .../generated/ListItemContent/index.rst | 32 + .../generated/ListItemGroup/index.rst | 56 + .../generated/ListItemIcon/index.rst | 32 + .../generated/ListItemSubtitle/index.rst | 32 + .../generated/ListItemTitle/index.rst | 32 + .../ipyvuetify/generated/Menu/index.rst | 155 + .../generated/MenuTransition/index.rst | 47 + .../ipyvuetify/generated/Messages/index.rst | 44 + .../generated/NavigationDrawer/index.rst | 116 + .../generated/OverflowBtn/index.rst | 245 + .../ipyvuetify/generated/Overlay/index.rst | 53 + .../ipyvuetify/generated/Pagination/index.rst | 62 + .../ipyvuetify/generated/Parallax/index.rst | 41 + .../ipyvuetify/generated/Picker/index.rst | 56 + .../generated/ProgressCircular/index.rst | 53 + .../generated/ProgressLinear/index.rst | 86 + .../ipyvuetify/generated/Radio/index.rst | 71 + .../ipyvuetify/generated/RadioGroup/index.rst | 128 + .../generated/RangeSlider/index.rst | 149 + .../ipyvuetify/generated/Rating/index.rst | 98 + .../ipyvuetify/generated/Responsive/index.rst | 53 + .../ipyvuetify/generated/Row/index.rst | 86 + .../generated/ScaleTransition/index.rst | 47 + .../ScrollXReverseTransition/index.rst | 47 + .../generated/ScrollXTransition/index.rst | 47 + .../ScrollYReverseTransition/index.rst | 47 + .../generated/ScrollYTransition/index.rst | 47 + .../ipyvuetify/generated/Select/index.rst | 224 + .../ipyvuetify/generated/Sheet/index.rst | 68 + .../generated/SimpleCheckbox/index.rst | 62 + .../generated/SimpleTable/index.rst | 47 + .../generated/SkeletonLoader/index.rst | 77 + .../ipyvuetify/generated/SlideGroup/index.rst | 68 + .../ipyvuetify/generated/SlideItem/index.rst | 41 + .../SlideXReverseTransition/index.rst | 47 + .../generated/SlideXTransition/index.rst | 47 + .../SlideYReverseTransition/index.rst | 47 + .../generated/SlideYTransition/index.rst | 47 + .../ipyvuetify/generated/Slider/index.rst | 149 + .../ipyvuetify/generated/Snackbar/index.rst | 62 + .../ipyvuetify/generated/Spacer/index.rst | 32 + .../ipyvuetify/generated/Sparkline/index.rst | 86 + .../ipyvuetify/generated/SpeedDial/index.rst | 68 + .../ipyvuetify/generated/Stepper/index.rst | 50 + .../generated/StepperContent/index.rst | 35 + .../generated/StepperHeader/index.rst | 32 + .../generated/StepperItems/index.rst | 32 + .../generated/StepperStep/index.rst | 56 + .../ipyvuetify/generated/Subheader/index.rst | 41 + .../ipyvuetify/generated/Switch/index.rst | 128 + .../ipyvuetify/generated/SystemBar/index.rst | 59 + .../ipyvuetify/generated/Tab/index.rst | 77 + .../ipyvuetify/generated/TabItem/index.rst | 53 + .../generated/TabReverseTransition/index.rst | 47 + .../generated/TabTransition/index.rst | 47 + .../generated/TableOverflow/index.rst | 32 + .../ipyvuetify/generated/Tabs/index.rst | 101 + .../ipyvuetify/generated/TabsItems/index.rst | 80 + .../ipyvuetify/generated/TabsSlider/index.rst | 35 + .../ipyvuetify/generated/Text/index.rst | 35 + .../ipyvuetify/generated/TextField/index.rst | 170 + .../ipyvuetify/generated/Textarea/index.rst | 182 + .../generated/ThemeProvider/index.rst | 41 + .../ipyvuetify/generated/TimePicker/index.rst | 92 + .../generated/TimePickerClock/index.rst | 71 + .../generated/TimePickerTitle/index.rst | 65 + .../ipyvuetify/generated/Timeline/index.rst | 47 + .../generated/TimelineItem/index.rst | 65 + .../ipyvuetify/generated/Toolbar/index.rst | 101 + .../generated/ToolbarItems/index.rst | 32 + .../generated/ToolbarTitle/index.rst | 32 + .../ipyvuetify/generated/Tooltip/index.rst | 134 + .../ipyvuetify/generated/Treeview/index.rst | 125 + .../generated/TreeviewNode/index.rst | 92 + .../generated/VirtualTable/index.rst | 59 + .../generated/VuetifyWidget/index.rst | 32 + .../ipyvuetify/generated/Window/index.rst | 80 + .../ipyvuetify/generated/WindowItem/index.rst | 50 + docs/autoapi/ipyvuetify/generated/index.rst | 11222 ++++++++++++++++ docs/autoapi/ipyvuetify/index.rst | 11107 +++++++++++++++ docs/conf.py | 5 +- pyproject.toml | 12 +- 171 files changed, 36748 insertions(+), 13 deletions(-) create mode 100644 docs/autoapi/index.rst create mode 100644 docs/autoapi/ipyvuetify/Html/index.rst create mode 100644 docs/autoapi/ipyvuetify/Themes/index.rst create mode 100644 docs/autoapi/ipyvuetify/VuetifyTemplate/index.rst create mode 100644 docs/autoapi/ipyvuetify/components/index.rst create mode 100644 docs/autoapi/ipyvuetify/extra/file_input/index.rst create mode 100644 docs/autoapi/ipyvuetify/extra/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Alert/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/App/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/AppBar/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/AppBarNavIcon/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Autocomplete/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Avatar/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Badge/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Banner/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/BottomNavigation/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/BottomSheet/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Breadcrumbs/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/BreadcrumbsDivider/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/BreadcrumbsItem/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Btn/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/BtnToggle/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Calendar/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/CalendarDaily/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/CalendarMonthly/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/CalendarWeekly/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Card/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/CardActions/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/CardSubtitle/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/CardText/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/CardTitle/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Carousel/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/CarouselItem/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/CarouselReverseTransition/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/CarouselTransition/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Checkbox/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Chip/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ChipGroup/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Col/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ColorPicker/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ColorPickerCanvas/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ColorPickerSwatches/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Combobox/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Container/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Content/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Counter/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Data/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/DataFooter/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/DataIterator/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/DataTable/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/DataTableHeader/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/DatePicker/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/DatePickerDateTable/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/DatePickerHeader/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/DatePickerMonthTable/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/DatePickerTitle/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/DatePickerYears/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Dialog/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/DialogBottomTransition/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/DialogTransition/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Divider/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/EditDialog/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ExpandTransition/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ExpandXTransition/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ExpansionPanel/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ExpansionPanelContent/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ExpansionPanelHeader/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ExpansionPanels/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/FabTransition/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/FadeTransition/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/FileInput/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Flex/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Footer/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Form/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Hover/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Icon/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Img/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Input/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Item/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ItemGroup/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Label/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Layout/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Lazy/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/List/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ListGroup/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ListItem/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ListItemAction/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ListItemActionText/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ListItemAvatar/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ListItemContent/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ListItemGroup/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ListItemIcon/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ListItemSubtitle/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ListItemTitle/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Menu/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/MenuTransition/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Messages/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/NavigationDrawer/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/OverflowBtn/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Overlay/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Pagination/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Parallax/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Picker/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ProgressCircular/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ProgressLinear/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Radio/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/RadioGroup/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/RangeSlider/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Rating/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Responsive/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Row/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ScaleTransition/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ScrollXReverseTransition/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ScrollXTransition/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ScrollYReverseTransition/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ScrollYTransition/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Select/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Sheet/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/SimpleCheckbox/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/SimpleTable/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/SkeletonLoader/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/SlideGroup/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/SlideItem/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/SlideXReverseTransition/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/SlideXTransition/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/SlideYReverseTransition/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/SlideYTransition/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Slider/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Snackbar/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Spacer/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Sparkline/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/SpeedDial/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Stepper/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/StepperContent/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/StepperHeader/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/StepperItems/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/StepperStep/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Subheader/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Switch/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/SystemBar/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Tab/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/TabItem/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/TabReverseTransition/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/TabTransition/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/TableOverflow/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Tabs/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/TabsItems/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/TabsSlider/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Text/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/TextField/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Textarea/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ThemeProvider/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/TimePicker/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/TimePickerClock/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/TimePickerTitle/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Timeline/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/TimelineItem/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Toolbar/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ToolbarItems/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/ToolbarTitle/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Tooltip/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Treeview/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/TreeviewNode/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/VirtualTable/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/VuetifyWidget/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/Window/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/WindowItem/index.rst create mode 100644 docs/autoapi/ipyvuetify/generated/index.rst create mode 100644 docs/autoapi/ipyvuetify/index.rst diff --git a/docs/autoapi/index.rst b/docs/autoapi/index.rst new file mode 100644 index 00000000..353a3273 --- /dev/null +++ b/docs/autoapi/index.rst @@ -0,0 +1,11 @@ +API Reference +============= + +This page contains auto-generated API reference documentation [#f1]_. + +.. toctree:: + :titlesonly: + + /autoapi/ipyvuetify/index + +.. [#f1] Created with `sphinx-autoapi `_ \ No newline at end of file diff --git a/docs/autoapi/ipyvuetify/Html/index.rst b/docs/autoapi/ipyvuetify/Html/index.rst new file mode 100644 index 00000000..873a2132 --- /dev/null +++ b/docs/autoapi/ipyvuetify/Html/index.rst @@ -0,0 +1,32 @@ +ipyvuetify.Html +=============== + +.. py:module:: ipyvuetify.Html + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.Html.Html + + +Module Contents +--------------- + +.. py:class:: Html(**kwargs) + + Bases: :py:obj:`ipyvue.Html` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + diff --git a/docs/autoapi/ipyvuetify/Themes/index.rst b/docs/autoapi/ipyvuetify/Themes/index.rst new file mode 100644 index 00000000..aaf807b0 --- /dev/null +++ b/docs/autoapi/ipyvuetify/Themes/index.rst @@ -0,0 +1,19 @@ +ipyvuetify.Themes +================= + +.. py:module:: ipyvuetify.Themes + + +Attributes +---------- + +.. autoapisummary:: + + ipyvuetify.Themes.theme + + +Module Contents +--------------- + +.. py:data:: theme + diff --git a/docs/autoapi/ipyvuetify/VuetifyTemplate/index.rst b/docs/autoapi/ipyvuetify/VuetifyTemplate/index.rst new file mode 100644 index 00000000..3880d340 --- /dev/null +++ b/docs/autoapi/ipyvuetify/VuetifyTemplate/index.rst @@ -0,0 +1,32 @@ +ipyvuetify.VuetifyTemplate +========================== + +.. py:module:: ipyvuetify.VuetifyTemplate + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.VuetifyTemplate.VuetifyTemplate + + +Module Contents +--------------- + +.. py:class:: VuetifyTemplate(*args, **kwargs) + + Bases: :py:obj:`ipyvue.VueTemplate` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + diff --git a/docs/autoapi/ipyvuetify/components/index.rst b/docs/autoapi/ipyvuetify/components/index.rst new file mode 100644 index 00000000..75ab2745 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/index.rst @@ -0,0 +1,518 @@ +ipyvuetify.components +===================== + +.. py:module:: ipyvuetify.components + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.components.CodeGen + + +Functions +--------- + +.. autoapisummary:: + + ipyvuetify.components.Alert + ipyvuetify.components.App + ipyvuetify.components.AppBar + ipyvuetify.components.AppBarNavIcon + ipyvuetify.components.Autocomplete + ipyvuetify.components.Avatar + ipyvuetify.components.Badge + ipyvuetify.components.Banner + ipyvuetify.components.BottomNavigation + ipyvuetify.components.BottomSheet + ipyvuetify.components.Breadcrumbs + ipyvuetify.components.BreadcrumbsDivider + ipyvuetify.components.BreadcrumbsItem + ipyvuetify.components.Btn + ipyvuetify.components.BtnToggle + ipyvuetify.components.Calendar + ipyvuetify.components.CalendarDaily + ipyvuetify.components.CalendarMonthly + ipyvuetify.components.CalendarWeekly + ipyvuetify.components.Card + ipyvuetify.components.CardActions + ipyvuetify.components.CardSubtitle + ipyvuetify.components.CardText + ipyvuetify.components.CardTitle + ipyvuetify.components.Carousel + ipyvuetify.components.CarouselItem + ipyvuetify.components.CarouselReverseTransition + ipyvuetify.components.CarouselTransition + ipyvuetify.components.Checkbox + ipyvuetify.components.Chip + ipyvuetify.components.ChipGroup + ipyvuetify.components.Col + ipyvuetify.components.ColorPicker + ipyvuetify.components.ColorPickerCanvas + ipyvuetify.components.ColorPickerSwatches + ipyvuetify.components.Combobox + ipyvuetify.components.Container + ipyvuetify.components.Content + ipyvuetify.components.Counter + ipyvuetify.components.Data + ipyvuetify.components.DataFooter + ipyvuetify.components.DataIterator + ipyvuetify.components.DataTable + ipyvuetify.components.DataTableHeader + ipyvuetify.components.DatePicker + ipyvuetify.components.DatePickerDateTable + ipyvuetify.components.DatePickerHeader + ipyvuetify.components.DatePickerMonthTable + ipyvuetify.components.DatePickerTitle + ipyvuetify.components.DatePickerYears + ipyvuetify.components.Dialog + ipyvuetify.components.DialogBottomTransition + ipyvuetify.components.DialogTransition + ipyvuetify.components.Divider + ipyvuetify.components.EditDialog + ipyvuetify.components.ExpandTransition + ipyvuetify.components.ExpandXTransition + ipyvuetify.components.ExpansionPanel + ipyvuetify.components.ExpansionPanelContent + ipyvuetify.components.ExpansionPanelHeader + ipyvuetify.components.ExpansionPanels + ipyvuetify.components.FabTransition + ipyvuetify.components.FadeTransition + ipyvuetify.components.FileInput + ipyvuetify.components.Flex + ipyvuetify.components.Footer + ipyvuetify.components.Form + ipyvuetify.components.Hover + ipyvuetify.components.Html + ipyvuetify.components.Icon + ipyvuetify.components.Img + ipyvuetify.components.Input + ipyvuetify.components.Item + ipyvuetify.components.ItemGroup + ipyvuetify.components.Label + ipyvuetify.components.Layout + ipyvuetify.components.Lazy + ipyvuetify.components.List + ipyvuetify.components.ListGroup + ipyvuetify.components.ListItem + ipyvuetify.components.ListItemAction + ipyvuetify.components.ListItemActionText + ipyvuetify.components.ListItemAvatar + ipyvuetify.components.ListItemContent + ipyvuetify.components.ListItemGroup + ipyvuetify.components.ListItemIcon + ipyvuetify.components.ListItemSubtitle + ipyvuetify.components.ListItemTitle + ipyvuetify.components.Menu + ipyvuetify.components.MenuTransition + ipyvuetify.components.Messages + ipyvuetify.components.NavigationDrawer + ipyvuetify.components.OverflowBtn + ipyvuetify.components.Overlay + ipyvuetify.components.Pagination + ipyvuetify.components.Parallax + ipyvuetify.components.Picker + ipyvuetify.components.ProgressCircular + ipyvuetify.components.ProgressLinear + ipyvuetify.components.Radio + ipyvuetify.components.RadioGroup + ipyvuetify.components.RangeSlider + ipyvuetify.components.Rating + ipyvuetify.components.Responsive + ipyvuetify.components.Row + ipyvuetify.components.ScaleTransition + ipyvuetify.components.ScrollXReverseTransition + ipyvuetify.components.ScrollXTransition + ipyvuetify.components.ScrollYReverseTransition + ipyvuetify.components.ScrollYTransition + ipyvuetify.components.Select + ipyvuetify.components.Sheet + ipyvuetify.components.SimpleCheckbox + ipyvuetify.components.SimpleTable + ipyvuetify.components.SkeletonLoader + ipyvuetify.components.SlideGroup + ipyvuetify.components.SlideItem + ipyvuetify.components.SlideXReverseTransition + ipyvuetify.components.SlideXTransition + ipyvuetify.components.SlideYReverseTransition + ipyvuetify.components.SlideYTransition + ipyvuetify.components.Slider + ipyvuetify.components.Snackbar + ipyvuetify.components.Spacer + ipyvuetify.components.Sparkline + ipyvuetify.components.SpeedDial + ipyvuetify.components.Stepper + ipyvuetify.components.StepperContent + ipyvuetify.components.StepperHeader + ipyvuetify.components.StepperItems + ipyvuetify.components.StepperStep + ipyvuetify.components.Subheader + ipyvuetify.components.Switch + ipyvuetify.components.SystemBar + ipyvuetify.components.Tab + ipyvuetify.components.TabItem + ipyvuetify.components.TabReverseTransition + ipyvuetify.components.TabTransition + ipyvuetify.components.TableOverflow + ipyvuetify.components.Tabs + ipyvuetify.components.TabsItems + ipyvuetify.components.TabsSlider + ipyvuetify.components.Text + ipyvuetify.components.TextField + ipyvuetify.components.Textarea + ipyvuetify.components.ThemeProvider + ipyvuetify.components.TimePicker + ipyvuetify.components.TimePickerClock + ipyvuetify.components.TimePickerTitle + ipyvuetify.components.Timeline + ipyvuetify.components.TimelineItem + ipyvuetify.components.Toolbar + ipyvuetify.components.ToolbarItems + ipyvuetify.components.ToolbarTitle + ipyvuetify.components.Tooltip + ipyvuetify.components.Treeview + ipyvuetify.components.TreeviewNode + ipyvuetify.components.VirtualTable + ipyvuetify.components.VuetifyTemplate + ipyvuetify.components.VuetifyWidget + ipyvuetify.components.Window + ipyvuetify.components.WindowItem + + +Module Contents +--------------- + +.. py:class:: CodeGen + + Bases: :py:obj:`reacton.generate.CodeGen` + + + .. py:method:: has_callback(cls, name) + + +.. py:function:: Alert(**kwargs) + +.. py:function:: App(**kwargs) + +.. py:function:: AppBar(**kwargs) + +.. py:function:: AppBarNavIcon(**kwargs) + +.. py:function:: Autocomplete(**kwargs) + +.. py:function:: Avatar(**kwargs) + +.. py:function:: Badge(**kwargs) + +.. py:function:: Banner(**kwargs) + +.. py:function:: BottomNavigation(**kwargs) + +.. py:function:: BottomSheet(**kwargs) + +.. py:function:: Breadcrumbs(**kwargs) + +.. py:function:: BreadcrumbsDivider(**kwargs) + +.. py:function:: BreadcrumbsItem(**kwargs) + +.. py:function:: Btn(**kwargs) + +.. py:function:: BtnToggle(**kwargs) + +.. py:function:: Calendar(**kwargs) + +.. py:function:: CalendarDaily(**kwargs) + +.. py:function:: CalendarMonthly(**kwargs) + +.. py:function:: CalendarWeekly(**kwargs) + +.. py:function:: Card(**kwargs) + +.. py:function:: CardActions(**kwargs) + +.. py:function:: CardSubtitle(**kwargs) + +.. py:function:: CardText(**kwargs) + +.. py:function:: CardTitle(**kwargs) + +.. py:function:: Carousel(**kwargs) + +.. py:function:: CarouselItem(**kwargs) + +.. py:function:: CarouselReverseTransition(**kwargs) + +.. py:function:: CarouselTransition(**kwargs) + +.. py:function:: Checkbox(**kwargs) + +.. py:function:: Chip(**kwargs) + +.. py:function:: ChipGroup(**kwargs) + +.. py:function:: Col(**kwargs) + +.. py:function:: ColorPicker(**kwargs) + +.. py:function:: ColorPickerCanvas(**kwargs) + +.. py:function:: ColorPickerSwatches(**kwargs) + +.. py:function:: Combobox(**kwargs) + +.. py:function:: Container(**kwargs) + +.. py:function:: Content(**kwargs) + +.. py:function:: Counter(**kwargs) + +.. py:function:: Data(**kwargs) + +.. py:function:: DataFooter(**kwargs) + +.. py:function:: DataIterator(**kwargs) + +.. py:function:: DataTable(**kwargs) + +.. py:function:: DataTableHeader(**kwargs) + +.. py:function:: DatePicker(**kwargs) + +.. py:function:: DatePickerDateTable(**kwargs) + +.. py:function:: DatePickerHeader(**kwargs) + +.. py:function:: DatePickerMonthTable(**kwargs) + +.. py:function:: DatePickerTitle(**kwargs) + +.. py:function:: DatePickerYears(**kwargs) + +.. py:function:: Dialog(**kwargs) + +.. py:function:: DialogBottomTransition(**kwargs) + +.. py:function:: DialogTransition(**kwargs) + +.. py:function:: Divider(**kwargs) + +.. py:function:: EditDialog(**kwargs) + +.. py:function:: ExpandTransition(**kwargs) + +.. py:function:: ExpandXTransition(**kwargs) + +.. py:function:: ExpansionPanel(**kwargs) + +.. py:function:: ExpansionPanelContent(**kwargs) + +.. py:function:: ExpansionPanelHeader(**kwargs) + +.. py:function:: ExpansionPanels(**kwargs) + +.. py:function:: FabTransition(**kwargs) + +.. py:function:: FadeTransition(**kwargs) + +.. py:function:: FileInput(**kwargs) + +.. py:function:: Flex(**kwargs) + +.. py:function:: Footer(**kwargs) + +.. py:function:: Form(**kwargs) + +.. py:function:: Hover(**kwargs) + +.. py:function:: Html(**kwargs) + +.. py:function:: Icon(**kwargs) + +.. py:function:: Img(**kwargs) + +.. py:function:: Input(**kwargs) + +.. py:function:: Item(**kwargs) + +.. py:function:: ItemGroup(**kwargs) + +.. py:function:: Label(**kwargs) + +.. py:function:: Layout(**kwargs) + +.. py:function:: Lazy(**kwargs) + +.. py:function:: List(**kwargs) + +.. py:function:: ListGroup(**kwargs) + +.. py:function:: ListItem(**kwargs) + +.. py:function:: ListItemAction(**kwargs) + +.. py:function:: ListItemActionText(**kwargs) + +.. py:function:: ListItemAvatar(**kwargs) + +.. py:function:: ListItemContent(**kwargs) + +.. py:function:: ListItemGroup(**kwargs) + +.. py:function:: ListItemIcon(**kwargs) + +.. py:function:: ListItemSubtitle(**kwargs) + +.. py:function:: ListItemTitle(**kwargs) + +.. py:function:: Menu(**kwargs) + +.. py:function:: MenuTransition(**kwargs) + +.. py:function:: Messages(**kwargs) + +.. py:function:: NavigationDrawer(**kwargs) + +.. py:function:: OverflowBtn(**kwargs) + +.. py:function:: Overlay(**kwargs) + +.. py:function:: Pagination(**kwargs) + +.. py:function:: Parallax(**kwargs) + +.. py:function:: Picker(**kwargs) + +.. py:function:: ProgressCircular(**kwargs) + +.. py:function:: ProgressLinear(**kwargs) + +.. py:function:: Radio(**kwargs) + +.. py:function:: RadioGroup(**kwargs) + +.. py:function:: RangeSlider(**kwargs) + +.. py:function:: Rating(**kwargs) + +.. py:function:: Responsive(**kwargs) + +.. py:function:: Row(**kwargs) + +.. py:function:: ScaleTransition(**kwargs) + +.. py:function:: ScrollXReverseTransition(**kwargs) + +.. py:function:: ScrollXTransition(**kwargs) + +.. py:function:: ScrollYReverseTransition(**kwargs) + +.. py:function:: ScrollYTransition(**kwargs) + +.. py:function:: Select(**kwargs) + +.. py:function:: Sheet(**kwargs) + +.. py:function:: SimpleCheckbox(**kwargs) + +.. py:function:: SimpleTable(**kwargs) + +.. py:function:: SkeletonLoader(**kwargs) + +.. py:function:: SlideGroup(**kwargs) + +.. py:function:: SlideItem(**kwargs) + +.. py:function:: SlideXReverseTransition(**kwargs) + +.. py:function:: SlideXTransition(**kwargs) + +.. py:function:: SlideYReverseTransition(**kwargs) + +.. py:function:: SlideYTransition(**kwargs) + +.. py:function:: Slider(**kwargs) + +.. py:function:: Snackbar(**kwargs) + +.. py:function:: Spacer(**kwargs) + +.. py:function:: Sparkline(**kwargs) + +.. py:function:: SpeedDial(**kwargs) + +.. py:function:: Stepper(**kwargs) + +.. py:function:: StepperContent(**kwargs) + +.. py:function:: StepperHeader(**kwargs) + +.. py:function:: StepperItems(**kwargs) + +.. py:function:: StepperStep(**kwargs) + +.. py:function:: Subheader(**kwargs) + +.. py:function:: Switch(**kwargs) + +.. py:function:: SystemBar(**kwargs) + +.. py:function:: Tab(**kwargs) + +.. py:function:: TabItem(**kwargs) + +.. py:function:: TabReverseTransition(**kwargs) + +.. py:function:: TabTransition(**kwargs) + +.. py:function:: TableOverflow(**kwargs) + +.. py:function:: Tabs(**kwargs) + +.. py:function:: TabsItems(**kwargs) + +.. py:function:: TabsSlider(**kwargs) + +.. py:function:: Text(**kwargs) + +.. py:function:: TextField(**kwargs) + +.. py:function:: Textarea(**kwargs) + +.. py:function:: ThemeProvider(**kwargs) + +.. py:function:: TimePicker(**kwargs) + +.. py:function:: TimePickerClock(**kwargs) + +.. py:function:: TimePickerTitle(**kwargs) + +.. py:function:: Timeline(**kwargs) + +.. py:function:: TimelineItem(**kwargs) + +.. py:function:: Toolbar(**kwargs) + +.. py:function:: ToolbarItems(**kwargs) + +.. py:function:: ToolbarTitle(**kwargs) + +.. py:function:: Tooltip(**kwargs) + +.. py:function:: Treeview(**kwargs) + +.. py:function:: TreeviewNode(**kwargs) + +.. py:function:: VirtualTable(**kwargs) + +.. py:function:: VuetifyTemplate(**kwargs) + +.. py:function:: VuetifyWidget(**kwargs) + +.. py:function:: Window(**kwargs) + +.. py:function:: WindowItem(**kwargs) + diff --git a/docs/autoapi/ipyvuetify/extra/file_input/index.rst b/docs/autoapi/ipyvuetify/extra/file_input/index.rst new file mode 100644 index 00000000..71baa55c --- /dev/null +++ b/docs/autoapi/ipyvuetify/extra/file_input/index.rst @@ -0,0 +1,98 @@ +ipyvuetify.extra.file_input +=========================== + +.. py:module:: ipyvuetify.extra.file_input + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.extra.file_input.FileInput + + +Module Contents +--------------- + +.. py:class:: FileInput(**kwargs) + + Bases: :py:obj:`ipyvuetify.VuetifyTemplate` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:method:: clear() + + + .. py:method:: get_files(timeout=30) + + + .. py:method:: reset_stats() + + + .. py:method:: update_stats(file_index, bytes_read) + + + .. py:method:: vue_upload(content, buffers) + + + .. py:attribute:: accept + + + .. py:attribute:: chunk_listeners + + + .. py:attribute:: data + + + .. py:attribute:: directory + + + .. py:attribute:: disabled + + + .. py:attribute:: file_info + + + .. py:attribute:: multiple + + + .. py:attribute:: progress_indeterminate + + + .. py:attribute:: show_progress + + + .. py:attribute:: stats + :value: [] + + + + .. py:attribute:: template + + + .. py:attribute:: total_progress + + + .. py:attribute:: total_progress_inner + :value: 0 + + + + .. py:attribute:: total_size_inner + :value: 0 + + + + .. py:attribute:: version + + diff --git a/docs/autoapi/ipyvuetify/extra/index.rst b/docs/autoapi/ipyvuetify/extra/index.rst new file mode 100644 index 00000000..016bf2ea --- /dev/null +++ b/docs/autoapi/ipyvuetify/extra/index.rst @@ -0,0 +1,107 @@ +ipyvuetify.extra +================ + +.. py:module:: ipyvuetify.extra + + +Submodules +---------- + +.. toctree:: + :maxdepth: 1 + + /autoapi/ipyvuetify/extra/file_input/index + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.extra.FileInput + + +Package Contents +---------------- + +.. py:class:: FileInput(**kwargs) + + Bases: :py:obj:`ipyvuetify.VuetifyTemplate` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:method:: clear() + + + .. py:method:: get_files(timeout=30) + + + .. py:method:: reset_stats() + + + .. py:method:: update_stats(file_index, bytes_read) + + + .. py:method:: vue_upload(content, buffers) + + + .. py:attribute:: accept + + + .. py:attribute:: chunk_listeners + + + .. py:attribute:: data + + + .. py:attribute:: directory + + + .. py:attribute:: disabled + + + .. py:attribute:: file_info + + + .. py:attribute:: multiple + + + .. py:attribute:: progress_indeterminate + + + .. py:attribute:: show_progress + + + .. py:attribute:: stats + :value: [] + + + + .. py:attribute:: template + + + .. py:attribute:: total_progress + + + .. py:attribute:: total_progress_inner + :value: 0 + + + + .. py:attribute:: total_size_inner + :value: 0 + + + + .. py:attribute:: version + + diff --git a/docs/autoapi/ipyvuetify/generated/Alert/index.rst b/docs/autoapi/ipyvuetify/generated/Alert/index.rst new file mode 100644 index 00000000..4c19415b --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Alert/index.rst @@ -0,0 +1,110 @@ +ipyvuetify.generated.Alert +========================== + +.. py:module:: ipyvuetify.generated.Alert + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Alert.Alert + + +Module Contents +--------------- + +.. py:class:: Alert(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: border + + + .. py:attribute:: close_label + + + .. py:attribute:: color + + + .. py:attribute:: colored_border + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: dismissible + + + .. py:attribute:: elevation + + + .. py:attribute:: height + + + .. py:attribute:: icon + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + + .. py:attribute:: outlined + + + .. py:attribute:: prominent + + + .. py:attribute:: tag + + + .. py:attribute:: text + + + .. py:attribute:: tile + + + .. py:attribute:: transition + + + .. py:attribute:: type + + + .. py:attribute:: value + + + .. py:attribute:: width + + diff --git a/docs/autoapi/ipyvuetify/generated/App/index.rst b/docs/autoapi/ipyvuetify/generated/App/index.rst new file mode 100644 index 00000000..b4670fbe --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/App/index.rst @@ -0,0 +1,41 @@ +ipyvuetify.generated.App +======================== + +.. py:module:: ipyvuetify.generated.App + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.App.App + + +Module Contents +--------------- + +.. py:class:: App(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: id + + + .. py:attribute:: light + + diff --git a/docs/autoapi/ipyvuetify/generated/AppBar/index.rst b/docs/autoapi/ipyvuetify/generated/AppBar/index.rst new file mode 100644 index 00000000..14757d13 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/AppBar/index.rst @@ -0,0 +1,143 @@ +ipyvuetify.generated.AppBar +=========================== + +.. py:module:: ipyvuetify.generated.AppBar + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.AppBar.AppBar + + +Module Contents +--------------- + +.. py:class:: AppBar(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: app + + + .. py:attribute:: bottom + + + .. py:attribute:: clipped_left + + + .. py:attribute:: clipped_right + + + .. py:attribute:: collapse + + + .. py:attribute:: collapse_on_scroll + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: elevate_on_scroll + + + .. py:attribute:: elevation + + + .. py:attribute:: extended + + + .. py:attribute:: extension_height + + + .. py:attribute:: fade_img_on_scroll + + + .. py:attribute:: fixed + + + .. py:attribute:: flat + + + .. py:attribute:: floating + + + .. py:attribute:: height + + + .. py:attribute:: hide_on_scroll + + + .. py:attribute:: inverted_scroll + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: prominent + + + .. py:attribute:: scroll_off_screen + + + .. py:attribute:: scroll_target + + + .. py:attribute:: scroll_threshold + + + .. py:attribute:: short + + + .. py:attribute:: shrink_on_scroll + + + .. py:attribute:: src + + + .. py:attribute:: tag + + + .. py:attribute:: tile + + + .. py:attribute:: value + + + .. py:attribute:: width + + diff --git a/docs/autoapi/ipyvuetify/generated/AppBarNavIcon/index.rst b/docs/autoapi/ipyvuetify/generated/AppBarNavIcon/index.rst new file mode 100644 index 00000000..2f63d957 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/AppBarNavIcon/index.rst @@ -0,0 +1,32 @@ +ipyvuetify.generated.AppBarNavIcon +================================== + +.. py:module:: ipyvuetify.generated.AppBarNavIcon + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.AppBarNavIcon.AppBarNavIcon + + +Module Contents +--------------- + +.. py:class:: AppBarNavIcon(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + diff --git a/docs/autoapi/ipyvuetify/generated/Autocomplete/index.rst b/docs/autoapi/ipyvuetify/generated/Autocomplete/index.rst new file mode 100644 index 00000000..f1bf5456 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Autocomplete/index.rst @@ -0,0 +1,239 @@ +ipyvuetify.generated.Autocomplete +================================= + +.. py:module:: ipyvuetify.generated.Autocomplete + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Autocomplete.Autocomplete + + +Module Contents +--------------- + +.. py:class:: Autocomplete(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: allow_overflow + + + .. py:attribute:: append_icon + + + .. py:attribute:: append_outer_icon + + + .. py:attribute:: attach + + + .. py:attribute:: auto_select_first + + + .. py:attribute:: autofocus + + + .. py:attribute:: background_color + + + .. py:attribute:: cache_items + + + .. py:attribute:: chips + + + .. py:attribute:: clear_icon + + + .. py:attribute:: clearable + + + .. py:attribute:: color + + + .. py:attribute:: counter + + + .. py:attribute:: dark + + + .. py:attribute:: deletable_chips + + + .. py:attribute:: dense + + + .. py:attribute:: disable_lookup + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: filled + + + .. py:attribute:: flat + + + .. py:attribute:: full_width + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hide_no_data + + + .. py:attribute:: hide_selected + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: item_color + + + .. py:attribute:: item_disabled + + + .. py:attribute:: item_text + + + .. py:attribute:: item_value + + + .. py:attribute:: items + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: menu_props + + + .. py:attribute:: messages + + + .. py:attribute:: multiple + + + .. py:attribute:: no_data_text + + + .. py:attribute:: no_filter + + + .. py:attribute:: open_on_clear + + + .. py:attribute:: outlined + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: placeholder + + + .. py:attribute:: prefix + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: prepend_inner_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: return_object + + + .. py:attribute:: reverse + + + .. py:attribute:: rounded + + + .. py:attribute:: rules + + + .. py:attribute:: search_input + + + .. py:attribute:: shaped + + + .. py:attribute:: single_line + + + .. py:attribute:: small_chips + + + .. py:attribute:: solo + + + .. py:attribute:: solo_inverted + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: suffix + + + .. py:attribute:: type + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/Avatar/index.rst b/docs/autoapi/ipyvuetify/generated/Avatar/index.rst new file mode 100644 index 00000000..5e015c90 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Avatar/index.rst @@ -0,0 +1,65 @@ +ipyvuetify.generated.Avatar +=========================== + +.. py:module:: ipyvuetify.generated.Avatar + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Avatar.Avatar + + +Module Contents +--------------- + +.. py:class:: Avatar(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: height + + + .. py:attribute:: left + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: right + + + .. py:attribute:: size + + + .. py:attribute:: tile + + + .. py:attribute:: width + + diff --git a/docs/autoapi/ipyvuetify/generated/Badge/index.rst b/docs/autoapi/ipyvuetify/generated/Badge/index.rst new file mode 100644 index 00000000..283d8943 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Badge/index.rst @@ -0,0 +1,92 @@ +ipyvuetify.generated.Badge +========================== + +.. py:module:: ipyvuetify.generated.Badge + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Badge.Badge + + +Module Contents +--------------- + +.. py:class:: Badge(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: avatar + + + .. py:attribute:: bordered + + + .. py:attribute:: bottom + + + .. py:attribute:: color + + + .. py:attribute:: content + + + .. py:attribute:: dark + + + .. py:attribute:: dot + + + .. py:attribute:: icon + + + .. py:attribute:: inline + + + .. py:attribute:: label + + + .. py:attribute:: left + + + .. py:attribute:: light + + + .. py:attribute:: mode + + + .. py:attribute:: offset_x + + + .. py:attribute:: offset_y + + + .. py:attribute:: origin + + + .. py:attribute:: overlap + + + .. py:attribute:: tile + + + .. py:attribute:: transition + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/Banner/index.rst b/docs/autoapi/ipyvuetify/generated/Banner/index.rst new file mode 100644 index 00000000..e4141ead --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Banner/index.rst @@ -0,0 +1,89 @@ +ipyvuetify.generated.Banner +=========================== + +.. py:module:: ipyvuetify.generated.Banner + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Banner.Banner + + +Module Contents +--------------- + +.. py:class:: Banner(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: app + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: elevation + + + .. py:attribute:: height + + + .. py:attribute:: icon + + + .. py:attribute:: icon_color + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: mobile_break_point + + + .. py:attribute:: single_line + + + .. py:attribute:: sticky + + + .. py:attribute:: tag + + + .. py:attribute:: tile + + + .. py:attribute:: value + + + .. py:attribute:: width + + diff --git a/docs/autoapi/ipyvuetify/generated/BottomNavigation/index.rst b/docs/autoapi/ipyvuetify/generated/BottomNavigation/index.rst new file mode 100644 index 00000000..2477ce94 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/BottomNavigation/index.rst @@ -0,0 +1,101 @@ +ipyvuetify.generated.BottomNavigation +===================================== + +.. py:module:: ipyvuetify.generated.BottomNavigation + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.BottomNavigation.BottomNavigation + + +Module Contents +--------------- + +.. py:class:: BottomNavigation(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: active_class + + + .. py:attribute:: app + + + .. py:attribute:: background_color + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: fixed + + + .. py:attribute:: grow + + + .. py:attribute:: height + + + .. py:attribute:: hide_on_scroll + + + .. py:attribute:: horizontal + + + .. py:attribute:: input_value + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: scroll_target + + + .. py:attribute:: scroll_threshold + + + .. py:attribute:: shift + + + .. py:attribute:: value + + + .. py:attribute:: width + + diff --git a/docs/autoapi/ipyvuetify/generated/BottomSheet/index.rst b/docs/autoapi/ipyvuetify/generated/BottomSheet/index.rst new file mode 100644 index 00000000..f435683e --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/BottomSheet/index.rst @@ -0,0 +1,110 @@ +ipyvuetify.generated.BottomSheet +================================ + +.. py:module:: ipyvuetify.generated.BottomSheet + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.BottomSheet.BottomSheet + + +Module Contents +--------------- + +.. py:class:: BottomSheet(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: activator + + + .. py:attribute:: attach + + + .. py:attribute:: close_delay + + + .. py:attribute:: content_class + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: fullscreen + + + .. py:attribute:: hide_overlay + + + .. py:attribute:: inset + + + .. py:attribute:: internal_activator + + + .. py:attribute:: light + + + .. py:attribute:: max_width + + + .. py:attribute:: no_click_animation + + + .. py:attribute:: open_delay + + + .. py:attribute:: open_on_hover + + + .. py:attribute:: origin + + + .. py:attribute:: overlay_color + + + .. py:attribute:: overlay_opacity + + + .. py:attribute:: persistent + + + .. py:attribute:: retain_focus + + + .. py:attribute:: return_value + + + .. py:attribute:: scrollable + + + .. py:attribute:: transition + + + .. py:attribute:: value + + + .. py:attribute:: width + + diff --git a/docs/autoapi/ipyvuetify/generated/Breadcrumbs/index.rst b/docs/autoapi/ipyvuetify/generated/Breadcrumbs/index.rst new file mode 100644 index 00000000..ac36460e --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Breadcrumbs/index.rst @@ -0,0 +1,47 @@ +ipyvuetify.generated.Breadcrumbs +================================ + +.. py:module:: ipyvuetify.generated.Breadcrumbs + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Breadcrumbs.Breadcrumbs + + +Module Contents +--------------- + +.. py:class:: Breadcrumbs(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: divider + + + .. py:attribute:: items + + + .. py:attribute:: large + + + .. py:attribute:: light + + diff --git a/docs/autoapi/ipyvuetify/generated/BreadcrumbsDivider/index.rst b/docs/autoapi/ipyvuetify/generated/BreadcrumbsDivider/index.rst new file mode 100644 index 00000000..ad0c345f --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/BreadcrumbsDivider/index.rst @@ -0,0 +1,32 @@ +ipyvuetify.generated.BreadcrumbsDivider +======================================= + +.. py:module:: ipyvuetify.generated.BreadcrumbsDivider + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.BreadcrumbsDivider.BreadcrumbsDivider + + +Module Contents +--------------- + +.. py:class:: BreadcrumbsDivider(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + diff --git a/docs/autoapi/ipyvuetify/generated/BreadcrumbsItem/index.rst b/docs/autoapi/ipyvuetify/generated/BreadcrumbsItem/index.rst new file mode 100644 index 00000000..1017bc00 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/BreadcrumbsItem/index.rst @@ -0,0 +1,71 @@ +ipyvuetify.generated.BreadcrumbsItem +==================================== + +.. py:module:: ipyvuetify.generated.BreadcrumbsItem + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.BreadcrumbsItem.BreadcrumbsItem + + +Module Contents +--------------- + +.. py:class:: BreadcrumbsItem(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: append + + + .. py:attribute:: disabled + + + .. py:attribute:: exact + + + .. py:attribute:: exact_active_class + + + .. py:attribute:: href + + + .. py:attribute:: link + + + .. py:attribute:: nuxt + + + .. py:attribute:: replace + + + .. py:attribute:: ripple + + + .. py:attribute:: tag + + + .. py:attribute:: target + + + .. py:attribute:: to + + diff --git a/docs/autoapi/ipyvuetify/generated/Btn/index.rst b/docs/autoapi/ipyvuetify/generated/Btn/index.rst new file mode 100644 index 00000000..bdfc7825 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Btn/index.rst @@ -0,0 +1,170 @@ +ipyvuetify.generated.Btn +======================== + +.. py:module:: ipyvuetify.generated.Btn + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Btn.Btn + + +Module Contents +--------------- + +.. py:class:: Btn(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: active_class + + + .. py:attribute:: append + + + .. py:attribute:: block + + + .. py:attribute:: bottom + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: depressed + + + .. py:attribute:: disabled + + + .. py:attribute:: elevation + + + .. py:attribute:: exact + + + .. py:attribute:: exact_active_class + + + .. py:attribute:: fab + + + .. py:attribute:: fixed + + + .. py:attribute:: height + + + .. py:attribute:: href + + + .. py:attribute:: icon + + + .. py:attribute:: input_value + + + .. py:attribute:: large + + + .. py:attribute:: left + + + .. py:attribute:: light + + + .. py:attribute:: link + + + .. py:attribute:: loading + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: nuxt + + + .. py:attribute:: outlined + + + .. py:attribute:: replace + + + .. py:attribute:: retain_focus_on_click + + + .. py:attribute:: right + + + .. py:attribute:: ripple + + + .. py:attribute:: rounded + + + .. py:attribute:: small + + + .. py:attribute:: tag + + + .. py:attribute:: target + + + .. py:attribute:: text + + + .. py:attribute:: tile + + + .. py:attribute:: to + + + .. py:attribute:: top + + + .. py:attribute:: type + + + .. py:attribute:: value + + + .. py:attribute:: width + + + .. py:attribute:: x_large + + + .. py:attribute:: x_small + + diff --git a/docs/autoapi/ipyvuetify/generated/BtnToggle/index.rst b/docs/autoapi/ipyvuetify/generated/BtnToggle/index.rst new file mode 100644 index 00000000..73f41239 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/BtnToggle/index.rst @@ -0,0 +1,77 @@ +ipyvuetify.generated.BtnToggle +============================== + +.. py:module:: ipyvuetify.generated.BtnToggle + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.BtnToggle.BtnToggle + + +Module Contents +--------------- + +.. py:class:: BtnToggle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: background_color + + + .. py:attribute:: borderless + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: group + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: multiple + + + .. py:attribute:: rounded + + + .. py:attribute:: shaped + + + .. py:attribute:: tile + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/Calendar/index.rst b/docs/autoapi/ipyvuetify/generated/Calendar/index.rst new file mode 100644 index 00000000..3e9be113 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Calendar/index.rst @@ -0,0 +1,137 @@ +ipyvuetify.generated.Calendar +============================= + +.. py:module:: ipyvuetify.generated.Calendar + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Calendar.Calendar + + +Module Contents +--------------- + +.. py:class:: Calendar(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: end + + + .. py:attribute:: event_color + + + .. py:attribute:: event_end + + + .. py:attribute:: event_height + + + .. py:attribute:: event_margin_bottom + + + .. py:attribute:: event_more + + + .. py:attribute:: event_more_text + + + .. py:attribute:: event_name + + + .. py:attribute:: event_overlap_mode + + + .. py:attribute:: event_overlap_threshold + + + .. py:attribute:: event_ripple + + + .. py:attribute:: event_start + + + .. py:attribute:: event_text_color + + + .. py:attribute:: events + + + .. py:attribute:: first_interval + + + .. py:attribute:: hide_header + + + .. py:attribute:: interval_count + + + .. py:attribute:: interval_height + + + .. py:attribute:: interval_minutes + + + .. py:attribute:: interval_width + + + .. py:attribute:: light + + + .. py:attribute:: locale + + + .. py:attribute:: max_days + + + .. py:attribute:: min_weeks + + + .. py:attribute:: now + + + .. py:attribute:: short_intervals + + + .. py:attribute:: short_months + + + .. py:attribute:: short_weekdays + + + .. py:attribute:: show_month_on_first + + + .. py:attribute:: start + + + .. py:attribute:: type + + + .. py:attribute:: value + + + .. py:attribute:: weekdays + + diff --git a/docs/autoapi/ipyvuetify/generated/CalendarDaily/index.rst b/docs/autoapi/ipyvuetify/generated/CalendarDaily/index.rst new file mode 100644 index 00000000..9083a52d --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/CalendarDaily/index.rst @@ -0,0 +1,83 @@ +ipyvuetify.generated.CalendarDaily +================================== + +.. py:module:: ipyvuetify.generated.CalendarDaily + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.CalendarDaily.CalendarDaily + + +Module Contents +--------------- + +.. py:class:: CalendarDaily(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: end + + + .. py:attribute:: first_interval + + + .. py:attribute:: hide_header + + + .. py:attribute:: interval_count + + + .. py:attribute:: interval_height + + + .. py:attribute:: interval_minutes + + + .. py:attribute:: interval_width + + + .. py:attribute:: light + + + .. py:attribute:: locale + + + .. py:attribute:: max_days + + + .. py:attribute:: now + + + .. py:attribute:: short_intervals + + + .. py:attribute:: short_weekdays + + + .. py:attribute:: start + + + .. py:attribute:: weekdays + + diff --git a/docs/autoapi/ipyvuetify/generated/CalendarMonthly/index.rst b/docs/autoapi/ipyvuetify/generated/CalendarMonthly/index.rst new file mode 100644 index 00000000..ea5c3d5d --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/CalendarMonthly/index.rst @@ -0,0 +1,71 @@ +ipyvuetify.generated.CalendarMonthly +==================================== + +.. py:module:: ipyvuetify.generated.CalendarMonthly + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.CalendarMonthly.CalendarMonthly + + +Module Contents +--------------- + +.. py:class:: CalendarMonthly(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: end + + + .. py:attribute:: hide_header + + + .. py:attribute:: light + + + .. py:attribute:: locale + + + .. py:attribute:: min_weeks + + + .. py:attribute:: now + + + .. py:attribute:: short_months + + + .. py:attribute:: short_weekdays + + + .. py:attribute:: show_month_on_first + + + .. py:attribute:: start + + + .. py:attribute:: weekdays + + diff --git a/docs/autoapi/ipyvuetify/generated/CalendarWeekly/index.rst b/docs/autoapi/ipyvuetify/generated/CalendarWeekly/index.rst new file mode 100644 index 00000000..41a93e47 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/CalendarWeekly/index.rst @@ -0,0 +1,71 @@ +ipyvuetify.generated.CalendarWeekly +=================================== + +.. py:module:: ipyvuetify.generated.CalendarWeekly + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.CalendarWeekly.CalendarWeekly + + +Module Contents +--------------- + +.. py:class:: CalendarWeekly(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: end + + + .. py:attribute:: hide_header + + + .. py:attribute:: light + + + .. py:attribute:: locale + + + .. py:attribute:: min_weeks + + + .. py:attribute:: now + + + .. py:attribute:: short_months + + + .. py:attribute:: short_weekdays + + + .. py:attribute:: show_month_on_first + + + .. py:attribute:: start + + + .. py:attribute:: weekdays + + diff --git a/docs/autoapi/ipyvuetify/generated/Card/index.rst b/docs/autoapi/ipyvuetify/generated/Card/index.rst new file mode 100644 index 00000000..52030c30 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Card/index.rst @@ -0,0 +1,128 @@ +ipyvuetify.generated.Card +========================= + +.. py:module:: ipyvuetify.generated.Card + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Card.Card + + +Module Contents +--------------- + +.. py:class:: Card(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: append + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: elevation + + + .. py:attribute:: exact + + + .. py:attribute:: exact_active_class + + + .. py:attribute:: flat + + + .. py:attribute:: height + + + .. py:attribute:: hover + + + .. py:attribute:: href + + + .. py:attribute:: img + + + .. py:attribute:: light + + + .. py:attribute:: link + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: nuxt + + + .. py:attribute:: outlined + + + .. py:attribute:: raised + + + .. py:attribute:: replace + + + .. py:attribute:: ripple + + + .. py:attribute:: shaped + + + .. py:attribute:: tag + + + .. py:attribute:: target + + + .. py:attribute:: tile + + + .. py:attribute:: to + + + .. py:attribute:: width + + diff --git a/docs/autoapi/ipyvuetify/generated/CardActions/index.rst b/docs/autoapi/ipyvuetify/generated/CardActions/index.rst new file mode 100644 index 00000000..de6fc222 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/CardActions/index.rst @@ -0,0 +1,32 @@ +ipyvuetify.generated.CardActions +================================ + +.. py:module:: ipyvuetify.generated.CardActions + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.CardActions.CardActions + + +Module Contents +--------------- + +.. py:class:: CardActions(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + diff --git a/docs/autoapi/ipyvuetify/generated/CardSubtitle/index.rst b/docs/autoapi/ipyvuetify/generated/CardSubtitle/index.rst new file mode 100644 index 00000000..41d798ae --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/CardSubtitle/index.rst @@ -0,0 +1,32 @@ +ipyvuetify.generated.CardSubtitle +================================= + +.. py:module:: ipyvuetify.generated.CardSubtitle + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.CardSubtitle.CardSubtitle + + +Module Contents +--------------- + +.. py:class:: CardSubtitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + diff --git a/docs/autoapi/ipyvuetify/generated/CardText/index.rst b/docs/autoapi/ipyvuetify/generated/CardText/index.rst new file mode 100644 index 00000000..c905bc63 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/CardText/index.rst @@ -0,0 +1,32 @@ +ipyvuetify.generated.CardText +============================= + +.. py:module:: ipyvuetify.generated.CardText + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.CardText.CardText + + +Module Contents +--------------- + +.. py:class:: CardText(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + diff --git a/docs/autoapi/ipyvuetify/generated/CardTitle/index.rst b/docs/autoapi/ipyvuetify/generated/CardTitle/index.rst new file mode 100644 index 00000000..89c2dcc0 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/CardTitle/index.rst @@ -0,0 +1,32 @@ +ipyvuetify.generated.CardTitle +============================== + +.. py:module:: ipyvuetify.generated.CardTitle + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.CardTitle.CardTitle + + +Module Contents +--------------- + +.. py:class:: CardTitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + diff --git a/docs/autoapi/ipyvuetify/generated/Carousel/index.rst b/docs/autoapi/ipyvuetify/generated/Carousel/index.rst new file mode 100644 index 00000000..123199e0 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Carousel/index.rst @@ -0,0 +1,107 @@ +ipyvuetify.generated.Carousel +============================= + +.. py:module:: ipyvuetify.generated.Carousel + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Carousel.Carousel + + +Module Contents +--------------- + +.. py:class:: Carousel(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: continuous + + + .. py:attribute:: cycle + + + .. py:attribute:: dark + + + .. py:attribute:: delimiter_icon + + + .. py:attribute:: height + + + .. py:attribute:: hide_delimiter_background + + + .. py:attribute:: hide_delimiters + + + .. py:attribute:: interval + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: multiple + + + .. py:attribute:: next_icon + + + .. py:attribute:: prev_icon + + + .. py:attribute:: progress + + + .. py:attribute:: progress_color + + + .. py:attribute:: reverse + + + .. py:attribute:: show_arrows + + + .. py:attribute:: show_arrows_on_hover + + + .. py:attribute:: touch + + + .. py:attribute:: touchless + + + .. py:attribute:: value + + + .. py:attribute:: vertical + + + .. py:attribute:: vertical_delimiters + + diff --git a/docs/autoapi/ipyvuetify/generated/CarouselItem/index.rst b/docs/autoapi/ipyvuetify/generated/CarouselItem/index.rst new file mode 100644 index 00000000..d7943e91 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/CarouselItem/index.rst @@ -0,0 +1,83 @@ +ipyvuetify.generated.CarouselItem +================================= + +.. py:module:: ipyvuetify.generated.CarouselItem + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.CarouselItem.CarouselItem + + +Module Contents +--------------- + +.. py:class:: CarouselItem(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: append + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: exact + + + .. py:attribute:: exact_active_class + + + .. py:attribute:: href + + + .. py:attribute:: link + + + .. py:attribute:: nuxt + + + .. py:attribute:: replace + + + .. py:attribute:: reverse_transition + + + .. py:attribute:: ripple + + + .. py:attribute:: tag + + + .. py:attribute:: target + + + .. py:attribute:: to + + + .. py:attribute:: transition + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/CarouselReverseTransition/index.rst b/docs/autoapi/ipyvuetify/generated/CarouselReverseTransition/index.rst new file mode 100644 index 00000000..fb04ec5a --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/CarouselReverseTransition/index.rst @@ -0,0 +1,47 @@ +ipyvuetify.generated.CarouselReverseTransition +============================================== + +.. py:module:: ipyvuetify.generated.CarouselReverseTransition + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.CarouselReverseTransition.CarouselReverseTransition + + +Module Contents +--------------- + +.. py:class:: CarouselReverseTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + diff --git a/docs/autoapi/ipyvuetify/generated/CarouselTransition/index.rst b/docs/autoapi/ipyvuetify/generated/CarouselTransition/index.rst new file mode 100644 index 00000000..83b6c0e2 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/CarouselTransition/index.rst @@ -0,0 +1,47 @@ +ipyvuetify.generated.CarouselTransition +======================================= + +.. py:module:: ipyvuetify.generated.CarouselTransition + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.CarouselTransition.CarouselTransition + + +Module Contents +--------------- + +.. py:class:: CarouselTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + diff --git a/docs/autoapi/ipyvuetify/generated/Checkbox/index.rst b/docs/autoapi/ipyvuetify/generated/Checkbox/index.rst new file mode 100644 index 00000000..f3cf5709 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Checkbox/index.rst @@ -0,0 +1,134 @@ +ipyvuetify.generated.Checkbox +============================= + +.. py:module:: ipyvuetify.generated.Checkbox + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Checkbox.Checkbox + + +Module Contents +--------------- + +.. py:class:: Checkbox(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: background_color + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: false_value + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: indeterminate + + + .. py:attribute:: indeterminate_icon + + + .. py:attribute:: input_value + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loading + + + .. py:attribute:: messages + + + .. py:attribute:: multiple + + + .. py:attribute:: off_icon + + + .. py:attribute:: on_icon + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: ripple + + + .. py:attribute:: rules + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: true_value + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/Chip/index.rst b/docs/autoapi/ipyvuetify/generated/Chip/index.rst new file mode 100644 index 00000000..b76ab78d --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Chip/index.rst @@ -0,0 +1,128 @@ +ipyvuetify.generated.Chip +========================= + +.. py:module:: ipyvuetify.generated.Chip + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Chip.Chip + + +Module Contents +--------------- + +.. py:class:: Chip(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active + + + .. py:attribute:: active_class + + + .. py:attribute:: append + + + .. py:attribute:: close_ + + + .. py:attribute:: close_icon + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: draggable + + + .. py:attribute:: exact + + + .. py:attribute:: exact_active_class + + + .. py:attribute:: filter + + + .. py:attribute:: filter_icon + + + .. py:attribute:: href + + + .. py:attribute:: input_value + + + .. py:attribute:: label + + + .. py:attribute:: large + + + .. py:attribute:: light + + + .. py:attribute:: link + + + .. py:attribute:: nuxt + + + .. py:attribute:: outlined + + + .. py:attribute:: pill + + + .. py:attribute:: replace + + + .. py:attribute:: ripple + + + .. py:attribute:: small + + + .. py:attribute:: tag + + + .. py:attribute:: target + + + .. py:attribute:: text_color + + + .. py:attribute:: to + + + .. py:attribute:: value + + + .. py:attribute:: x_large + + + .. py:attribute:: x_small + + diff --git a/docs/autoapi/ipyvuetify/generated/ChipGroup/index.rst b/docs/autoapi/ipyvuetify/generated/ChipGroup/index.rst new file mode 100644 index 00000000..174cc71d --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ChipGroup/index.rst @@ -0,0 +1,74 @@ +ipyvuetify.generated.ChipGroup +============================== + +.. py:module:: ipyvuetify.generated.ChipGroup + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ChipGroup.ChipGroup + + +Module Contents +--------------- + +.. py:class:: ChipGroup(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: center_active + + + .. py:attribute:: color + + + .. py:attribute:: column + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: mobile_break_point + + + .. py:attribute:: multiple + + + .. py:attribute:: next_icon + + + .. py:attribute:: prev_icon + + + .. py:attribute:: show_arrows + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/Col/index.rst b/docs/autoapi/ipyvuetify/generated/Col/index.rst new file mode 100644 index 00000000..479b35a6 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Col/index.rst @@ -0,0 +1,83 @@ +ipyvuetify.generated.Col +======================== + +.. py:module:: ipyvuetify.generated.Col + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Col.Col + + +Module Contents +--------------- + +.. py:class:: Col(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: align_self + + + .. py:attribute:: cols + + + .. py:attribute:: lg + + + .. py:attribute:: md + + + .. py:attribute:: offset + + + .. py:attribute:: offset_lg + + + .. py:attribute:: offset_md + + + .. py:attribute:: offset_sm + + + .. py:attribute:: offset_xl + + + .. py:attribute:: order + + + .. py:attribute:: order_lg + + + .. py:attribute:: order_md + + + .. py:attribute:: order_sm + + + .. py:attribute:: order_xl + + + .. py:attribute:: sm + + + .. py:attribute:: tag + + + .. py:attribute:: xl + + diff --git a/docs/autoapi/ipyvuetify/generated/ColorPicker/index.rst b/docs/autoapi/ipyvuetify/generated/ColorPicker/index.rst new file mode 100644 index 00000000..89993d1a --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ColorPicker/index.rst @@ -0,0 +1,77 @@ +ipyvuetify.generated.ColorPicker +================================ + +.. py:module:: ipyvuetify.generated.ColorPicker + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ColorPicker.ColorPicker + + +Module Contents +--------------- + +.. py:class:: ColorPicker(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: canvas_height + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: dot_size + + + .. py:attribute:: flat + + + .. py:attribute:: hide_canvas + + + .. py:attribute:: hide_inputs + + + .. py:attribute:: hide_mode_switch + + + .. py:attribute:: light + + + .. py:attribute:: mode + + + .. py:attribute:: show_swatches + + + .. py:attribute:: swatches + + + .. py:attribute:: swatches_max_height + + + .. py:attribute:: value + + + .. py:attribute:: width + + diff --git a/docs/autoapi/ipyvuetify/generated/ColorPickerCanvas/index.rst b/docs/autoapi/ipyvuetify/generated/ColorPickerCanvas/index.rst new file mode 100644 index 00000000..ae2093dc --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ColorPickerCanvas/index.rst @@ -0,0 +1,47 @@ +ipyvuetify.generated.ColorPickerCanvas +====================================== + +.. py:module:: ipyvuetify.generated.ColorPickerCanvas + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ColorPickerCanvas.ColorPickerCanvas + + +Module Contents +--------------- + +.. py:class:: ColorPickerCanvas(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: disabled + + + .. py:attribute:: dot_size + + + .. py:attribute:: height + + + .. py:attribute:: width + + diff --git a/docs/autoapi/ipyvuetify/generated/ColorPickerSwatches/index.rst b/docs/autoapi/ipyvuetify/generated/ColorPickerSwatches/index.rst new file mode 100644 index 00000000..41388295 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ColorPickerSwatches/index.rst @@ -0,0 +1,50 @@ +ipyvuetify.generated.ColorPickerSwatches +======================================== + +.. py:module:: ipyvuetify.generated.ColorPickerSwatches + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ColorPickerSwatches.ColorPickerSwatches + + +Module Contents +--------------- + +.. py:class:: ColorPickerSwatches(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: swatches + + diff --git a/docs/autoapi/ipyvuetify/generated/Combobox/index.rst b/docs/autoapi/ipyvuetify/generated/Combobox/index.rst new file mode 100644 index 00000000..1aef347a --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Combobox/index.rst @@ -0,0 +1,242 @@ +ipyvuetify.generated.Combobox +============================= + +.. py:module:: ipyvuetify.generated.Combobox + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Combobox.Combobox + + +Module Contents +--------------- + +.. py:class:: Combobox(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: allow_overflow + + + .. py:attribute:: append_icon + + + .. py:attribute:: append_outer_icon + + + .. py:attribute:: attach + + + .. py:attribute:: auto_select_first + + + .. py:attribute:: autofocus + + + .. py:attribute:: background_color + + + .. py:attribute:: cache_items + + + .. py:attribute:: chips + + + .. py:attribute:: clear_icon + + + .. py:attribute:: clearable + + + .. py:attribute:: color + + + .. py:attribute:: counter + + + .. py:attribute:: dark + + + .. py:attribute:: deletable_chips + + + .. py:attribute:: delimiters + + + .. py:attribute:: dense + + + .. py:attribute:: disable_lookup + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: filled + + + .. py:attribute:: flat + + + .. py:attribute:: full_width + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hide_no_data + + + .. py:attribute:: hide_selected + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: item_color + + + .. py:attribute:: item_disabled + + + .. py:attribute:: item_text + + + .. py:attribute:: item_value + + + .. py:attribute:: items + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: menu_props + + + .. py:attribute:: messages + + + .. py:attribute:: multiple + + + .. py:attribute:: no_data_text + + + .. py:attribute:: no_filter + + + .. py:attribute:: open_on_clear + + + .. py:attribute:: outlined + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: placeholder + + + .. py:attribute:: prefix + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: prepend_inner_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: return_object + + + .. py:attribute:: reverse + + + .. py:attribute:: rounded + + + .. py:attribute:: rules + + + .. py:attribute:: search_input + + + .. py:attribute:: shaped + + + .. py:attribute:: single_line + + + .. py:attribute:: small_chips + + + .. py:attribute:: solo + + + .. py:attribute:: solo_inverted + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: suffix + + + .. py:attribute:: type + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/Container/index.rst b/docs/autoapi/ipyvuetify/generated/Container/index.rst new file mode 100644 index 00000000..61d6c5af --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Container/index.rst @@ -0,0 +1,335 @@ +ipyvuetify.generated.Container +============================== + +.. py:module:: ipyvuetify.generated.Container + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Container.Container + + +Module Contents +--------------- + +.. py:class:: Container(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: fluid + + + .. py:attribute:: id + + + .. py:attribute:: ma_0 + + + .. py:attribute:: ma_1 + + + .. py:attribute:: ma_2 + + + .. py:attribute:: ma_3 + + + .. py:attribute:: ma_4 + + + .. py:attribute:: ma_5 + + + .. py:attribute:: ma_auto + + + .. py:attribute:: mb_0 + + + .. py:attribute:: mb_1 + + + .. py:attribute:: mb_2 + + + .. py:attribute:: mb_3 + + + .. py:attribute:: mb_4 + + + .. py:attribute:: mb_5 + + + .. py:attribute:: mb_auto + + + .. py:attribute:: ml_0 + + + .. py:attribute:: ml_1 + + + .. py:attribute:: ml_2 + + + .. py:attribute:: ml_3 + + + .. py:attribute:: ml_4 + + + .. py:attribute:: ml_5 + + + .. py:attribute:: ml_auto + + + .. py:attribute:: mr_0 + + + .. py:attribute:: mr_1 + + + .. py:attribute:: mr_2 + + + .. py:attribute:: mr_3 + + + .. py:attribute:: mr_4 + + + .. py:attribute:: mr_5 + + + .. py:attribute:: mr_auto + + + .. py:attribute:: mt_0 + + + .. py:attribute:: mt_1 + + + .. py:attribute:: mt_2 + + + .. py:attribute:: mt_3 + + + .. py:attribute:: mt_4 + + + .. py:attribute:: mt_5 + + + .. py:attribute:: mt_auto + + + .. py:attribute:: mx_0 + + + .. py:attribute:: mx_1 + + + .. py:attribute:: mx_2 + + + .. py:attribute:: mx_3 + + + .. py:attribute:: mx_4 + + + .. py:attribute:: mx_5 + + + .. py:attribute:: mx_auto + + + .. py:attribute:: my_0 + + + .. py:attribute:: my_1 + + + .. py:attribute:: my_2 + + + .. py:attribute:: my_3 + + + .. py:attribute:: my_4 + + + .. py:attribute:: my_5 + + + .. py:attribute:: my_auto + + + .. py:attribute:: pa_0 + + + .. py:attribute:: pa_1 + + + .. py:attribute:: pa_2 + + + .. py:attribute:: pa_3 + + + .. py:attribute:: pa_4 + + + .. py:attribute:: pa_5 + + + .. py:attribute:: pa_auto + + + .. py:attribute:: pb_0 + + + .. py:attribute:: pb_1 + + + .. py:attribute:: pb_2 + + + .. py:attribute:: pb_3 + + + .. py:attribute:: pb_4 + + + .. py:attribute:: pb_5 + + + .. py:attribute:: pb_auto + + + .. py:attribute:: pl_0 + + + .. py:attribute:: pl_1 + + + .. py:attribute:: pl_2 + + + .. py:attribute:: pl_3 + + + .. py:attribute:: pl_4 + + + .. py:attribute:: pl_5 + + + .. py:attribute:: pl_auto + + + .. py:attribute:: pr_0 + + + .. py:attribute:: pr_1 + + + .. py:attribute:: pr_2 + + + .. py:attribute:: pr_3 + + + .. py:attribute:: pr_4 + + + .. py:attribute:: pr_5 + + + .. py:attribute:: pr_auto + + + .. py:attribute:: pt_0 + + + .. py:attribute:: pt_1 + + + .. py:attribute:: pt_2 + + + .. py:attribute:: pt_3 + + + .. py:attribute:: pt_4 + + + .. py:attribute:: pt_5 + + + .. py:attribute:: pt_auto + + + .. py:attribute:: px_0 + + + .. py:attribute:: px_1 + + + .. py:attribute:: px_2 + + + .. py:attribute:: px_3 + + + .. py:attribute:: px_4 + + + .. py:attribute:: px_5 + + + .. py:attribute:: px_auto + + + .. py:attribute:: py_0 + + + .. py:attribute:: py_1 + + + .. py:attribute:: py_2 + + + .. py:attribute:: py_3 + + + .. py:attribute:: py_4 + + + .. py:attribute:: py_5 + + + .. py:attribute:: py_auto + + + .. py:attribute:: tag + + diff --git a/docs/autoapi/ipyvuetify/generated/Content/index.rst b/docs/autoapi/ipyvuetify/generated/Content/index.rst new file mode 100644 index 00000000..e980ce35 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Content/index.rst @@ -0,0 +1,329 @@ +ipyvuetify.generated.Content +============================ + +.. py:module:: ipyvuetify.generated.Content + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Content.Content + + +Module Contents +--------------- + +.. py:class:: Content(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: ma_0 + + + .. py:attribute:: ma_1 + + + .. py:attribute:: ma_2 + + + .. py:attribute:: ma_3 + + + .. py:attribute:: ma_4 + + + .. py:attribute:: ma_5 + + + .. py:attribute:: ma_auto + + + .. py:attribute:: mb_0 + + + .. py:attribute:: mb_1 + + + .. py:attribute:: mb_2 + + + .. py:attribute:: mb_3 + + + .. py:attribute:: mb_4 + + + .. py:attribute:: mb_5 + + + .. py:attribute:: mb_auto + + + .. py:attribute:: ml_0 + + + .. py:attribute:: ml_1 + + + .. py:attribute:: ml_2 + + + .. py:attribute:: ml_3 + + + .. py:attribute:: ml_4 + + + .. py:attribute:: ml_5 + + + .. py:attribute:: ml_auto + + + .. py:attribute:: mr_0 + + + .. py:attribute:: mr_1 + + + .. py:attribute:: mr_2 + + + .. py:attribute:: mr_3 + + + .. py:attribute:: mr_4 + + + .. py:attribute:: mr_5 + + + .. py:attribute:: mr_auto + + + .. py:attribute:: mt_0 + + + .. py:attribute:: mt_1 + + + .. py:attribute:: mt_2 + + + .. py:attribute:: mt_3 + + + .. py:attribute:: mt_4 + + + .. py:attribute:: mt_5 + + + .. py:attribute:: mt_auto + + + .. py:attribute:: mx_0 + + + .. py:attribute:: mx_1 + + + .. py:attribute:: mx_2 + + + .. py:attribute:: mx_3 + + + .. py:attribute:: mx_4 + + + .. py:attribute:: mx_5 + + + .. py:attribute:: mx_auto + + + .. py:attribute:: my_0 + + + .. py:attribute:: my_1 + + + .. py:attribute:: my_2 + + + .. py:attribute:: my_3 + + + .. py:attribute:: my_4 + + + .. py:attribute:: my_5 + + + .. py:attribute:: my_auto + + + .. py:attribute:: pa_0 + + + .. py:attribute:: pa_1 + + + .. py:attribute:: pa_2 + + + .. py:attribute:: pa_3 + + + .. py:attribute:: pa_4 + + + .. py:attribute:: pa_5 + + + .. py:attribute:: pa_auto + + + .. py:attribute:: pb_0 + + + .. py:attribute:: pb_1 + + + .. py:attribute:: pb_2 + + + .. py:attribute:: pb_3 + + + .. py:attribute:: pb_4 + + + .. py:attribute:: pb_5 + + + .. py:attribute:: pb_auto + + + .. py:attribute:: pl_0 + + + .. py:attribute:: pl_1 + + + .. py:attribute:: pl_2 + + + .. py:attribute:: pl_3 + + + .. py:attribute:: pl_4 + + + .. py:attribute:: pl_5 + + + .. py:attribute:: pl_auto + + + .. py:attribute:: pr_0 + + + .. py:attribute:: pr_1 + + + .. py:attribute:: pr_2 + + + .. py:attribute:: pr_3 + + + .. py:attribute:: pr_4 + + + .. py:attribute:: pr_5 + + + .. py:attribute:: pr_auto + + + .. py:attribute:: pt_0 + + + .. py:attribute:: pt_1 + + + .. py:attribute:: pt_2 + + + .. py:attribute:: pt_3 + + + .. py:attribute:: pt_4 + + + .. py:attribute:: pt_5 + + + .. py:attribute:: pt_auto + + + .. py:attribute:: px_0 + + + .. py:attribute:: px_1 + + + .. py:attribute:: px_2 + + + .. py:attribute:: px_3 + + + .. py:attribute:: px_4 + + + .. py:attribute:: px_5 + + + .. py:attribute:: px_auto + + + .. py:attribute:: py_0 + + + .. py:attribute:: py_1 + + + .. py:attribute:: py_2 + + + .. py:attribute:: py_3 + + + .. py:attribute:: py_4 + + + .. py:attribute:: py_5 + + + .. py:attribute:: py_auto + + + .. py:attribute:: tag + + diff --git a/docs/autoapi/ipyvuetify/generated/Counter/index.rst b/docs/autoapi/ipyvuetify/generated/Counter/index.rst new file mode 100644 index 00000000..e22a1353 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Counter/index.rst @@ -0,0 +1,44 @@ +ipyvuetify.generated.Counter +============================ + +.. py:module:: ipyvuetify.generated.Counter + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Counter.Counter + + +Module Contents +--------------- + +.. py:class:: Counter(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: max + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/Data/index.rst b/docs/autoapi/ipyvuetify/generated/Data/index.rst new file mode 100644 index 00000000..294c6a74 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Data/index.rst @@ -0,0 +1,80 @@ +ipyvuetify.generated.Data +========================= + +.. py:module:: ipyvuetify.generated.Data + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Data.Data + + +Module Contents +--------------- + +.. py:class:: Data(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: disable_filtering + + + .. py:attribute:: disable_pagination + + + .. py:attribute:: disable_sort + + + .. py:attribute:: group_by + + + .. py:attribute:: group_desc + + + .. py:attribute:: items + + + .. py:attribute:: items_per_page + + + .. py:attribute:: locale + + + .. py:attribute:: multi_sort + + + .. py:attribute:: must_sort + + + .. py:attribute:: options + + + .. py:attribute:: page + + + .. py:attribute:: search + + + .. py:attribute:: server_items_length + + + .. py:attribute:: sort_by + + + .. py:attribute:: sort_desc + + diff --git a/docs/autoapi/ipyvuetify/generated/DataFooter/index.rst b/docs/autoapi/ipyvuetify/generated/DataFooter/index.rst new file mode 100644 index 00000000..21b45f57 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/DataFooter/index.rst @@ -0,0 +1,74 @@ +ipyvuetify.generated.DataFooter +=============================== + +.. py:module:: ipyvuetify.generated.DataFooter + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.DataFooter.DataFooter + + +Module Contents +--------------- + +.. py:class:: DataFooter(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: disable_items_per_page + + + .. py:attribute:: disable_pagination + + + .. py:attribute:: first_icon + + + .. py:attribute:: items_per_page_all_text + + + .. py:attribute:: items_per_page_options + + + .. py:attribute:: items_per_page_text + + + .. py:attribute:: last_icon + + + .. py:attribute:: next_icon + + + .. py:attribute:: options + + + .. py:attribute:: page_text + + + .. py:attribute:: pagination + + + .. py:attribute:: prev_icon + + + .. py:attribute:: show_current_page + + + .. py:attribute:: show_first_last_page + + diff --git a/docs/autoapi/ipyvuetify/generated/DataIterator/index.rst b/docs/autoapi/ipyvuetify/generated/DataIterator/index.rst new file mode 100644 index 00000000..91dc1785 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/DataIterator/index.rst @@ -0,0 +1,125 @@ +ipyvuetify.generated.DataIterator +================================= + +.. py:module:: ipyvuetify.generated.DataIterator + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.DataIterator.DataIterator + + +Module Contents +--------------- + +.. py:class:: DataIterator(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: disable_filtering + + + .. py:attribute:: disable_pagination + + + .. py:attribute:: disable_sort + + + .. py:attribute:: expanded + + + .. py:attribute:: footer_props + + + .. py:attribute:: group_by + + + .. py:attribute:: group_desc + + + .. py:attribute:: hide_default_footer + + + .. py:attribute:: item_key + + + .. py:attribute:: items + + + .. py:attribute:: items_per_page + + + .. py:attribute:: light + + + .. py:attribute:: loading + + + .. py:attribute:: loading_text + + + .. py:attribute:: locale + + + .. py:attribute:: mobile_breakpoint + + + .. py:attribute:: multi_sort + + + .. py:attribute:: must_sort + + + .. py:attribute:: no_data_text + + + .. py:attribute:: no_results_text + + + .. py:attribute:: options + + + .. py:attribute:: page + + + .. py:attribute:: search + + + .. py:attribute:: selectable_key + + + .. py:attribute:: server_items_length + + + .. py:attribute:: single_expand + + + .. py:attribute:: single_select + + + .. py:attribute:: sort_by + + + .. py:attribute:: sort_desc + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/DataTable/index.rst b/docs/autoapi/ipyvuetify/generated/DataTable/index.rst new file mode 100644 index 00000000..a9c4d130 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/DataTable/index.rst @@ -0,0 +1,164 @@ +ipyvuetify.generated.DataTable +============================== + +.. py:module:: ipyvuetify.generated.DataTable + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.DataTable.DataTable + + +Module Contents +--------------- + +.. py:class:: DataTable(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: calculate_widths + + + .. py:attribute:: caption + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disable_filtering + + + .. py:attribute:: disable_pagination + + + .. py:attribute:: disable_sort + + + .. py:attribute:: expand_icon + + + .. py:attribute:: expanded + + + .. py:attribute:: fixed_header + + + .. py:attribute:: footer_props + + + .. py:attribute:: group_by + + + .. py:attribute:: group_desc + + + .. py:attribute:: header_props + + + .. py:attribute:: headers + + + .. py:attribute:: headers_length + + + .. py:attribute:: height + + + .. py:attribute:: hide_default_footer + + + .. py:attribute:: hide_default_header + + + .. py:attribute:: item_key + + + .. py:attribute:: items + + + .. py:attribute:: items_per_page + + + .. py:attribute:: light + + + .. py:attribute:: loading + + + .. py:attribute:: loading_text + + + .. py:attribute:: locale + + + .. py:attribute:: mobile_breakpoint + + + .. py:attribute:: multi_sort + + + .. py:attribute:: must_sort + + + .. py:attribute:: no_data_text + + + .. py:attribute:: no_results_text + + + .. py:attribute:: options + + + .. py:attribute:: page + + + .. py:attribute:: search + + + .. py:attribute:: selectable_key + + + .. py:attribute:: server_items_length + + + .. py:attribute:: show_expand + + + .. py:attribute:: show_group_by + + + .. py:attribute:: show_select + + + .. py:attribute:: single_expand + + + .. py:attribute:: single_select + + + .. py:attribute:: sort_by + + + .. py:attribute:: sort_desc + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/DataTableHeader/index.rst b/docs/autoapi/ipyvuetify/generated/DataTableHeader/index.rst new file mode 100644 index 00000000..cec039ff --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/DataTableHeader/index.rst @@ -0,0 +1,35 @@ +ipyvuetify.generated.DataTableHeader +==================================== + +.. py:module:: ipyvuetify.generated.DataTableHeader + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.DataTableHeader.DataTableHeader + + +Module Contents +--------------- + +.. py:class:: DataTableHeader(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: mobile + + diff --git a/docs/autoapi/ipyvuetify/generated/DatePicker/index.rst b/docs/autoapi/ipyvuetify/generated/DatePicker/index.rst new file mode 100644 index 00000000..d2d44083 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/DatePicker/index.rst @@ -0,0 +1,122 @@ +ipyvuetify.generated.DatePicker +=============================== + +.. py:module:: ipyvuetify.generated.DatePicker + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.DatePicker.DatePicker + + +Module Contents +--------------- + +.. py:class:: DatePicker(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: event_color + + + .. py:attribute:: events + + + .. py:attribute:: first_day_of_week + + + .. py:attribute:: full_width + + + .. py:attribute:: header_color + + + .. py:attribute:: landscape + + + .. py:attribute:: light + + + .. py:attribute:: locale + + + .. py:attribute:: locale_first_day_of_year + + + .. py:attribute:: max + + + .. py:attribute:: min + + + .. py:attribute:: multiple + + + .. py:attribute:: next_icon + + + .. py:attribute:: no_title + + + .. py:attribute:: picker_date + + + .. py:attribute:: prev_icon + + + .. py:attribute:: range + + + .. py:attribute:: reactive + + + .. py:attribute:: readonly + + + .. py:attribute:: scrollable + + + .. py:attribute:: selected_items_text + + + .. py:attribute:: show_current + + + .. py:attribute:: show_week + + + .. py:attribute:: type + + + .. py:attribute:: value + + + .. py:attribute:: width + + + .. py:attribute:: year_icon + + diff --git a/docs/autoapi/ipyvuetify/generated/DatePickerDateTable/index.rst b/docs/autoapi/ipyvuetify/generated/DatePickerDateTable/index.rst new file mode 100644 index 00000000..e770afad --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/DatePickerDateTable/index.rst @@ -0,0 +1,86 @@ +ipyvuetify.generated.DatePickerDateTable +======================================== + +.. py:module:: ipyvuetify.generated.DatePickerDateTable + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.DatePickerDateTable.DatePickerDateTable + + +Module Contents +--------------- + +.. py:class:: DatePickerDateTable(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: current + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: event_color + + + .. py:attribute:: events + + + .. py:attribute:: first_day_of_week + + + .. py:attribute:: light + + + .. py:attribute:: locale + + + .. py:attribute:: locale_first_day_of_year + + + .. py:attribute:: max + + + .. py:attribute:: min + + + .. py:attribute:: range + + + .. py:attribute:: readonly + + + .. py:attribute:: scrollable + + + .. py:attribute:: show_week + + + .. py:attribute:: table_date + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/DatePickerHeader/index.rst b/docs/autoapi/ipyvuetify/generated/DatePickerHeader/index.rst new file mode 100644 index 00000000..4da1a4a4 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/DatePickerHeader/index.rst @@ -0,0 +1,65 @@ +ipyvuetify.generated.DatePickerHeader +===================================== + +.. py:module:: ipyvuetify.generated.DatePickerHeader + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.DatePickerHeader.DatePickerHeader + + +Module Contents +--------------- + +.. py:class:: DatePickerHeader(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: light + + + .. py:attribute:: locale + + + .. py:attribute:: max + + + .. py:attribute:: min + + + .. py:attribute:: next_icon + + + .. py:attribute:: prev_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/DatePickerMonthTable/index.rst b/docs/autoapi/ipyvuetify/generated/DatePickerMonthTable/index.rst new file mode 100644 index 00000000..3dcfe45a --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/DatePickerMonthTable/index.rst @@ -0,0 +1,77 @@ +ipyvuetify.generated.DatePickerMonthTable +========================================= + +.. py:module:: ipyvuetify.generated.DatePickerMonthTable + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.DatePickerMonthTable.DatePickerMonthTable + + +Module Contents +--------------- + +.. py:class:: DatePickerMonthTable(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: current + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: event_color + + + .. py:attribute:: events + + + .. py:attribute:: light + + + .. py:attribute:: locale + + + .. py:attribute:: max + + + .. py:attribute:: min + + + .. py:attribute:: range + + + .. py:attribute:: readonly + + + .. py:attribute:: scrollable + + + .. py:attribute:: table_date + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/DatePickerTitle/index.rst b/docs/autoapi/ipyvuetify/generated/DatePickerTitle/index.rst new file mode 100644 index 00000000..38be8721 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/DatePickerTitle/index.rst @@ -0,0 +1,56 @@ +ipyvuetify.generated.DatePickerTitle +==================================== + +.. py:module:: ipyvuetify.generated.DatePickerTitle + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.DatePickerTitle.DatePickerTitle + + +Module Contents +--------------- + +.. py:class:: DatePickerTitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: date + + + .. py:attribute:: disabled + + + .. py:attribute:: readonly + + + .. py:attribute:: selecting_year + + + .. py:attribute:: value + + + .. py:attribute:: year + + + .. py:attribute:: year_icon + + diff --git a/docs/autoapi/ipyvuetify/generated/DatePickerYears/index.rst b/docs/autoapi/ipyvuetify/generated/DatePickerYears/index.rst new file mode 100644 index 00000000..2af6a71d --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/DatePickerYears/index.rst @@ -0,0 +1,50 @@ +ipyvuetify.generated.DatePickerYears +==================================== + +.. py:module:: ipyvuetify.generated.DatePickerYears + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.DatePickerYears.DatePickerYears + + +Module Contents +--------------- + +.. py:class:: DatePickerYears(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: locale + + + .. py:attribute:: max + + + .. py:attribute:: min + + + .. py:attribute:: readonly + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/Dialog/index.rst b/docs/autoapi/ipyvuetify/generated/Dialog/index.rst new file mode 100644 index 00000000..0c2fd51b --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Dialog/index.rst @@ -0,0 +1,107 @@ +ipyvuetify.generated.Dialog +=========================== + +.. py:module:: ipyvuetify.generated.Dialog + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Dialog.Dialog + + +Module Contents +--------------- + +.. py:class:: Dialog(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: activator + + + .. py:attribute:: attach + + + .. py:attribute:: close_delay + + + .. py:attribute:: content_class + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: fullscreen + + + .. py:attribute:: hide_overlay + + + .. py:attribute:: internal_activator + + + .. py:attribute:: light + + + .. py:attribute:: max_width + + + .. py:attribute:: no_click_animation + + + .. py:attribute:: open_delay + + + .. py:attribute:: open_on_hover + + + .. py:attribute:: origin + + + .. py:attribute:: overlay_color + + + .. py:attribute:: overlay_opacity + + + .. py:attribute:: persistent + + + .. py:attribute:: retain_focus + + + .. py:attribute:: return_value + + + .. py:attribute:: scrollable + + + .. py:attribute:: transition + + + .. py:attribute:: value + + + .. py:attribute:: width + + diff --git a/docs/autoapi/ipyvuetify/generated/DialogBottomTransition/index.rst b/docs/autoapi/ipyvuetify/generated/DialogBottomTransition/index.rst new file mode 100644 index 00000000..d8f95df8 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/DialogBottomTransition/index.rst @@ -0,0 +1,47 @@ +ipyvuetify.generated.DialogBottomTransition +=========================================== + +.. py:module:: ipyvuetify.generated.DialogBottomTransition + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.DialogBottomTransition.DialogBottomTransition + + +Module Contents +--------------- + +.. py:class:: DialogBottomTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + diff --git a/docs/autoapi/ipyvuetify/generated/DialogTransition/index.rst b/docs/autoapi/ipyvuetify/generated/DialogTransition/index.rst new file mode 100644 index 00000000..a7cb8aa1 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/DialogTransition/index.rst @@ -0,0 +1,47 @@ +ipyvuetify.generated.DialogTransition +===================================== + +.. py:module:: ipyvuetify.generated.DialogTransition + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.DialogTransition.DialogTransition + + +Module Contents +--------------- + +.. py:class:: DialogTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + diff --git a/docs/autoapi/ipyvuetify/generated/Divider/index.rst b/docs/autoapi/ipyvuetify/generated/Divider/index.rst new file mode 100644 index 00000000..fe9af9a6 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Divider/index.rst @@ -0,0 +1,44 @@ +ipyvuetify.generated.Divider +============================ + +.. py:module:: ipyvuetify.generated.Divider + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Divider.Divider + + +Module Contents +--------------- + +.. py:class:: Divider(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: inset + + + .. py:attribute:: light + + + .. py:attribute:: vertical + + diff --git a/docs/autoapi/ipyvuetify/generated/EditDialog/index.rst b/docs/autoapi/ipyvuetify/generated/EditDialog/index.rst new file mode 100644 index 00000000..21c744c7 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/EditDialog/index.rst @@ -0,0 +1,59 @@ +ipyvuetify.generated.EditDialog +=============================== + +.. py:module:: ipyvuetify.generated.EditDialog + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.EditDialog.EditDialog + + +Module Contents +--------------- + +.. py:class:: EditDialog(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: cancel_text + + + .. py:attribute:: dark + + + .. py:attribute:: eager + + + .. py:attribute:: large + + + .. py:attribute:: light + + + .. py:attribute:: persistent + + + .. py:attribute:: return_value + + + .. py:attribute:: save_text + + + .. py:attribute:: transition + + diff --git a/docs/autoapi/ipyvuetify/generated/ExpandTransition/index.rst b/docs/autoapi/ipyvuetify/generated/ExpandTransition/index.rst new file mode 100644 index 00000000..d818e60e --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ExpandTransition/index.rst @@ -0,0 +1,35 @@ +ipyvuetify.generated.ExpandTransition +===================================== + +.. py:module:: ipyvuetify.generated.ExpandTransition + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ExpandTransition.ExpandTransition + + +Module Contents +--------------- + +.. py:class:: ExpandTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: mode + + diff --git a/docs/autoapi/ipyvuetify/generated/ExpandXTransition/index.rst b/docs/autoapi/ipyvuetify/generated/ExpandXTransition/index.rst new file mode 100644 index 00000000..e9376ddd --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ExpandXTransition/index.rst @@ -0,0 +1,35 @@ +ipyvuetify.generated.ExpandXTransition +====================================== + +.. py:module:: ipyvuetify.generated.ExpandXTransition + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ExpandXTransition.ExpandXTransition + + +Module Contents +--------------- + +.. py:class:: ExpandXTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: mode + + diff --git a/docs/autoapi/ipyvuetify/generated/ExpansionPanel/index.rst b/docs/autoapi/ipyvuetify/generated/ExpansionPanel/index.rst new file mode 100644 index 00000000..9c12c10c --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ExpansionPanel/index.rst @@ -0,0 +1,41 @@ +ipyvuetify.generated.ExpansionPanel +=================================== + +.. py:module:: ipyvuetify.generated.ExpansionPanel + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ExpansionPanel.ExpansionPanel + + +Module Contents +--------------- + +.. py:class:: ExpansionPanel(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: disabled + + + .. py:attribute:: readonly + + diff --git a/docs/autoapi/ipyvuetify/generated/ExpansionPanelContent/index.rst b/docs/autoapi/ipyvuetify/generated/ExpansionPanelContent/index.rst new file mode 100644 index 00000000..dae7564f --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ExpansionPanelContent/index.rst @@ -0,0 +1,38 @@ +ipyvuetify.generated.ExpansionPanelContent +========================================== + +.. py:module:: ipyvuetify.generated.ExpansionPanelContent + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ExpansionPanelContent.ExpansionPanelContent + + +Module Contents +--------------- + +.. py:class:: ExpansionPanelContent(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: eager + + diff --git a/docs/autoapi/ipyvuetify/generated/ExpansionPanelHeader/index.rst b/docs/autoapi/ipyvuetify/generated/ExpansionPanelHeader/index.rst new file mode 100644 index 00000000..27364363 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ExpansionPanelHeader/index.rst @@ -0,0 +1,47 @@ +ipyvuetify.generated.ExpansionPanelHeader +========================================= + +.. py:module:: ipyvuetify.generated.ExpansionPanelHeader + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ExpansionPanelHeader.ExpansionPanelHeader + + +Module Contents +--------------- + +.. py:class:: ExpansionPanelHeader(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: disable_icon_rotate + + + .. py:attribute:: expand_icon + + + .. py:attribute:: hide_actions + + + .. py:attribute:: ripple + + diff --git a/docs/autoapi/ipyvuetify/generated/ExpansionPanels/index.rst b/docs/autoapi/ipyvuetify/generated/ExpansionPanels/index.rst new file mode 100644 index 00000000..b2a17165 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ExpansionPanels/index.rst @@ -0,0 +1,80 @@ +ipyvuetify.generated.ExpansionPanels +==================================== + +.. py:module:: ipyvuetify.generated.ExpansionPanels + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ExpansionPanels.ExpansionPanels + + +Module Contents +--------------- + +.. py:class:: ExpansionPanels(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: accordion + + + .. py:attribute:: active_class + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: flat + + + .. py:attribute:: focusable + + + .. py:attribute:: hover + + + .. py:attribute:: inset + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: multiple + + + .. py:attribute:: popout + + + .. py:attribute:: readonly + + + .. py:attribute:: tile + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/FabTransition/index.rst b/docs/autoapi/ipyvuetify/generated/FabTransition/index.rst new file mode 100644 index 00000000..1896addb --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/FabTransition/index.rst @@ -0,0 +1,47 @@ +ipyvuetify.generated.FabTransition +================================== + +.. py:module:: ipyvuetify.generated.FabTransition + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.FabTransition.FabTransition + + +Module Contents +--------------- + +.. py:class:: FabTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + diff --git a/docs/autoapi/ipyvuetify/generated/FadeTransition/index.rst b/docs/autoapi/ipyvuetify/generated/FadeTransition/index.rst new file mode 100644 index 00000000..4779fa7b --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/FadeTransition/index.rst @@ -0,0 +1,47 @@ +ipyvuetify.generated.FadeTransition +=================================== + +.. py:module:: ipyvuetify.generated.FadeTransition + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.FadeTransition.FadeTransition + + +Module Contents +--------------- + +.. py:class:: FadeTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + diff --git a/docs/autoapi/ipyvuetify/generated/FileInput/index.rst b/docs/autoapi/ipyvuetify/generated/FileInput/index.rst new file mode 100644 index 00000000..456125d4 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/FileInput/index.rst @@ -0,0 +1,191 @@ +ipyvuetify.generated.FileInput +============================== + +.. py:module:: ipyvuetify.generated.FileInput + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.FileInput.FileInput + + +Module Contents +--------------- + +.. py:class:: FileInput(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: append_outer_icon + + + .. py:attribute:: autofocus + + + .. py:attribute:: background_color + + + .. py:attribute:: chips + + + .. py:attribute:: clear_icon + + + .. py:attribute:: clearable + + + .. py:attribute:: color + + + .. py:attribute:: counter + + + .. py:attribute:: counter_size_string + + + .. py:attribute:: counter_string + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: filled + + + .. py:attribute:: flat + + + .. py:attribute:: full_width + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: messages + + + .. py:attribute:: multiple + + + .. py:attribute:: outlined + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: placeholder + + + .. py:attribute:: prefix + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: prepend_inner_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: reverse + + + .. py:attribute:: rounded + + + .. py:attribute:: rules + + + .. py:attribute:: shaped + + + .. py:attribute:: show_size + + + .. py:attribute:: single_line + + + .. py:attribute:: small_chips + + + .. py:attribute:: solo + + + .. py:attribute:: solo_inverted + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: suffix + + + .. py:attribute:: truncate_length + + + .. py:attribute:: type + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/Flex/index.rst b/docs/autoapi/ipyvuetify/generated/Flex/index.rst new file mode 100644 index 00000000..8786731d --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Flex/index.rst @@ -0,0 +1,905 @@ +ipyvuetify.generated.Flex +========================= + +.. py:module:: ipyvuetify.generated.Flex + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Flex.Flex + + +Module Contents +--------------- + +.. py:class:: Flex(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: align_self_baseline + + + .. py:attribute:: align_self_center + + + .. py:attribute:: align_self_end + + + .. py:attribute:: align_self_start + + + .. py:attribute:: grow + + + .. py:attribute:: id + + + .. py:attribute:: lg1 + + + .. py:attribute:: lg10 + + + .. py:attribute:: lg11 + + + .. py:attribute:: lg12 + + + .. py:attribute:: lg2 + + + .. py:attribute:: lg3 + + + .. py:attribute:: lg4 + + + .. py:attribute:: lg5 + + + .. py:attribute:: lg6 + + + .. py:attribute:: lg7 + + + .. py:attribute:: lg8 + + + .. py:attribute:: lg9 + + + .. py:attribute:: ma_0 + + + .. py:attribute:: ma_1 + + + .. py:attribute:: ma_2 + + + .. py:attribute:: ma_3 + + + .. py:attribute:: ma_4 + + + .. py:attribute:: ma_5 + + + .. py:attribute:: ma_auto + + + .. py:attribute:: mb_0 + + + .. py:attribute:: mb_1 + + + .. py:attribute:: mb_2 + + + .. py:attribute:: mb_3 + + + .. py:attribute:: mb_4 + + + .. py:attribute:: mb_5 + + + .. py:attribute:: mb_auto + + + .. py:attribute:: md1 + + + .. py:attribute:: md10 + + + .. py:attribute:: md11 + + + .. py:attribute:: md12 + + + .. py:attribute:: md2 + + + .. py:attribute:: md3 + + + .. py:attribute:: md4 + + + .. py:attribute:: md5 + + + .. py:attribute:: md6 + + + .. py:attribute:: md7 + + + .. py:attribute:: md8 + + + .. py:attribute:: md9 + + + .. py:attribute:: ml_0 + + + .. py:attribute:: ml_1 + + + .. py:attribute:: ml_2 + + + .. py:attribute:: ml_3 + + + .. py:attribute:: ml_4 + + + .. py:attribute:: ml_5 + + + .. py:attribute:: ml_auto + + + .. py:attribute:: mr_0 + + + .. py:attribute:: mr_1 + + + .. py:attribute:: mr_2 + + + .. py:attribute:: mr_3 + + + .. py:attribute:: mr_4 + + + .. py:attribute:: mr_5 + + + .. py:attribute:: mr_auto + + + .. py:attribute:: mt_0 + + + .. py:attribute:: mt_1 + + + .. py:attribute:: mt_2 + + + .. py:attribute:: mt_3 + + + .. py:attribute:: mt_4 + + + .. py:attribute:: mt_5 + + + .. py:attribute:: mt_auto + + + .. py:attribute:: mx_0 + + + .. py:attribute:: mx_1 + + + .. py:attribute:: mx_2 + + + .. py:attribute:: mx_3 + + + .. py:attribute:: mx_4 + + + .. py:attribute:: mx_5 + + + .. py:attribute:: mx_auto + + + .. py:attribute:: my_0 + + + .. py:attribute:: my_1 + + + .. py:attribute:: my_2 + + + .. py:attribute:: my_3 + + + .. py:attribute:: my_4 + + + .. py:attribute:: my_5 + + + .. py:attribute:: my_auto + + + .. py:attribute:: offset_lg0 + + + .. py:attribute:: offset_lg1 + + + .. py:attribute:: offset_lg10 + + + .. py:attribute:: offset_lg11 + + + .. py:attribute:: offset_lg12 + + + .. py:attribute:: offset_lg2 + + + .. py:attribute:: offset_lg3 + + + .. py:attribute:: offset_lg4 + + + .. py:attribute:: offset_lg5 + + + .. py:attribute:: offset_lg6 + + + .. py:attribute:: offset_lg7 + + + .. py:attribute:: offset_lg8 + + + .. py:attribute:: offset_lg9 + + + .. py:attribute:: offset_md0 + + + .. py:attribute:: offset_md1 + + + .. py:attribute:: offset_md10 + + + .. py:attribute:: offset_md11 + + + .. py:attribute:: offset_md12 + + + .. py:attribute:: offset_md2 + + + .. py:attribute:: offset_md3 + + + .. py:attribute:: offset_md4 + + + .. py:attribute:: offset_md5 + + + .. py:attribute:: offset_md6 + + + .. py:attribute:: offset_md7 + + + .. py:attribute:: offset_md8 + + + .. py:attribute:: offset_md9 + + + .. py:attribute:: offset_sm0 + + + .. py:attribute:: offset_sm1 + + + .. py:attribute:: offset_sm10 + + + .. py:attribute:: offset_sm11 + + + .. py:attribute:: offset_sm12 + + + .. py:attribute:: offset_sm2 + + + .. py:attribute:: offset_sm3 + + + .. py:attribute:: offset_sm4 + + + .. py:attribute:: offset_sm5 + + + .. py:attribute:: offset_sm6 + + + .. py:attribute:: offset_sm7 + + + .. py:attribute:: offset_sm8 + + + .. py:attribute:: offset_sm9 + + + .. py:attribute:: offset_xl0 + + + .. py:attribute:: offset_xl1 + + + .. py:attribute:: offset_xl10 + + + .. py:attribute:: offset_xl11 + + + .. py:attribute:: offset_xl12 + + + .. py:attribute:: offset_xl2 + + + .. py:attribute:: offset_xl3 + + + .. py:attribute:: offset_xl4 + + + .. py:attribute:: offset_xl5 + + + .. py:attribute:: offset_xl6 + + + .. py:attribute:: offset_xl7 + + + .. py:attribute:: offset_xl8 + + + .. py:attribute:: offset_xl9 + + + .. py:attribute:: offset_xs0 + + + .. py:attribute:: offset_xs1 + + + .. py:attribute:: offset_xs10 + + + .. py:attribute:: offset_xs11 + + + .. py:attribute:: offset_xs12 + + + .. py:attribute:: offset_xs2 + + + .. py:attribute:: offset_xs3 + + + .. py:attribute:: offset_xs4 + + + .. py:attribute:: offset_xs5 + + + .. py:attribute:: offset_xs6 + + + .. py:attribute:: offset_xs7 + + + .. py:attribute:: offset_xs8 + + + .. py:attribute:: offset_xs9 + + + .. py:attribute:: order_lg1 + + + .. py:attribute:: order_lg10 + + + .. py:attribute:: order_lg11 + + + .. py:attribute:: order_lg12 + + + .. py:attribute:: order_lg2 + + + .. py:attribute:: order_lg3 + + + .. py:attribute:: order_lg4 + + + .. py:attribute:: order_lg5 + + + .. py:attribute:: order_lg6 + + + .. py:attribute:: order_lg7 + + + .. py:attribute:: order_lg8 + + + .. py:attribute:: order_lg9 + + + .. py:attribute:: order_md1 + + + .. py:attribute:: order_md10 + + + .. py:attribute:: order_md11 + + + .. py:attribute:: order_md12 + + + .. py:attribute:: order_md2 + + + .. py:attribute:: order_md3 + + + .. py:attribute:: order_md4 + + + .. py:attribute:: order_md5 + + + .. py:attribute:: order_md6 + + + .. py:attribute:: order_md7 + + + .. py:attribute:: order_md8 + + + .. py:attribute:: order_md9 + + + .. py:attribute:: order_sm1 + + + .. py:attribute:: order_sm10 + + + .. py:attribute:: order_sm11 + + + .. py:attribute:: order_sm12 + + + .. py:attribute:: order_sm2 + + + .. py:attribute:: order_sm3 + + + .. py:attribute:: order_sm4 + + + .. py:attribute:: order_sm5 + + + .. py:attribute:: order_sm6 + + + .. py:attribute:: order_sm7 + + + .. py:attribute:: order_sm8 + + + .. py:attribute:: order_sm9 + + + .. py:attribute:: order_xl1 + + + .. py:attribute:: order_xl10 + + + .. py:attribute:: order_xl11 + + + .. py:attribute:: order_xl12 + + + .. py:attribute:: order_xl2 + + + .. py:attribute:: order_xl3 + + + .. py:attribute:: order_xl4 + + + .. py:attribute:: order_xl5 + + + .. py:attribute:: order_xl6 + + + .. py:attribute:: order_xl7 + + + .. py:attribute:: order_xl8 + + + .. py:attribute:: order_xl9 + + + .. py:attribute:: order_xs1 + + + .. py:attribute:: order_xs10 + + + .. py:attribute:: order_xs11 + + + .. py:attribute:: order_xs12 + + + .. py:attribute:: order_xs2 + + + .. py:attribute:: order_xs3 + + + .. py:attribute:: order_xs4 + + + .. py:attribute:: order_xs5 + + + .. py:attribute:: order_xs6 + + + .. py:attribute:: order_xs7 + + + .. py:attribute:: order_xs8 + + + .. py:attribute:: order_xs9 + + + .. py:attribute:: pa_0 + + + .. py:attribute:: pa_1 + + + .. py:attribute:: pa_2 + + + .. py:attribute:: pa_3 + + + .. py:attribute:: pa_4 + + + .. py:attribute:: pa_5 + + + .. py:attribute:: pa_auto + + + .. py:attribute:: pb_0 + + + .. py:attribute:: pb_1 + + + .. py:attribute:: pb_2 + + + .. py:attribute:: pb_3 + + + .. py:attribute:: pb_4 + + + .. py:attribute:: pb_5 + + + .. py:attribute:: pb_auto + + + .. py:attribute:: pl_0 + + + .. py:attribute:: pl_1 + + + .. py:attribute:: pl_2 + + + .. py:attribute:: pl_3 + + + .. py:attribute:: pl_4 + + + .. py:attribute:: pl_5 + + + .. py:attribute:: pl_auto + + + .. py:attribute:: pr_0 + + + .. py:attribute:: pr_1 + + + .. py:attribute:: pr_2 + + + .. py:attribute:: pr_3 + + + .. py:attribute:: pr_4 + + + .. py:attribute:: pr_5 + + + .. py:attribute:: pr_auto + + + .. py:attribute:: pt_0 + + + .. py:attribute:: pt_1 + + + .. py:attribute:: pt_2 + + + .. py:attribute:: pt_3 + + + .. py:attribute:: pt_4 + + + .. py:attribute:: pt_5 + + + .. py:attribute:: pt_auto + + + .. py:attribute:: px_0 + + + .. py:attribute:: px_1 + + + .. py:attribute:: px_2 + + + .. py:attribute:: px_3 + + + .. py:attribute:: px_4 + + + .. py:attribute:: px_5 + + + .. py:attribute:: px_auto + + + .. py:attribute:: py_0 + + + .. py:attribute:: py_1 + + + .. py:attribute:: py_2 + + + .. py:attribute:: py_3 + + + .. py:attribute:: py_4 + + + .. py:attribute:: py_5 + + + .. py:attribute:: py_auto + + + .. py:attribute:: shrink + + + .. py:attribute:: sm1 + + + .. py:attribute:: sm10 + + + .. py:attribute:: sm11 + + + .. py:attribute:: sm12 + + + .. py:attribute:: sm2 + + + .. py:attribute:: sm3 + + + .. py:attribute:: sm4 + + + .. py:attribute:: sm5 + + + .. py:attribute:: sm6 + + + .. py:attribute:: sm7 + + + .. py:attribute:: sm8 + + + .. py:attribute:: sm9 + + + .. py:attribute:: tag + + + .. py:attribute:: xl1 + + + .. py:attribute:: xl10 + + + .. py:attribute:: xl11 + + + .. py:attribute:: xl12 + + + .. py:attribute:: xl2 + + + .. py:attribute:: xl3 + + + .. py:attribute:: xl4 + + + .. py:attribute:: xl5 + + + .. py:attribute:: xl6 + + + .. py:attribute:: xl7 + + + .. py:attribute:: xl8 + + + .. py:attribute:: xl9 + + + .. py:attribute:: xs1 + + + .. py:attribute:: xs10 + + + .. py:attribute:: xs11 + + + .. py:attribute:: xs12 + + + .. py:attribute:: xs2 + + + .. py:attribute:: xs3 + + + .. py:attribute:: xs4 + + + .. py:attribute:: xs5 + + + .. py:attribute:: xs6 + + + .. py:attribute:: xs7 + + + .. py:attribute:: xs8 + + + .. py:attribute:: xs9 + + diff --git a/docs/autoapi/ipyvuetify/generated/Footer/index.rst b/docs/autoapi/ipyvuetify/generated/Footer/index.rst new file mode 100644 index 00000000..9019cbdf --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Footer/index.rst @@ -0,0 +1,83 @@ +ipyvuetify.generated.Footer +=========================== + +.. py:module:: ipyvuetify.generated.Footer + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Footer.Footer + + +Module Contents +--------------- + +.. py:class:: Footer(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: app + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: elevation + + + .. py:attribute:: fixed + + + .. py:attribute:: height + + + .. py:attribute:: inset + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: padless + + + .. py:attribute:: tag + + + .. py:attribute:: tile + + + .. py:attribute:: width + + diff --git a/docs/autoapi/ipyvuetify/generated/Form/index.rst b/docs/autoapi/ipyvuetify/generated/Form/index.rst new file mode 100644 index 00000000..dc4e80ba --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Form/index.rst @@ -0,0 +1,38 @@ +ipyvuetify.generated.Form +========================= + +.. py:module:: ipyvuetify.generated.Form + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Form.Form + + +Module Contents +--------------- + +.. py:class:: Form(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: lazy_validation + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/Hover/index.rst b/docs/autoapi/ipyvuetify/generated/Hover/index.rst new file mode 100644 index 00000000..3d1ee700 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Hover/index.rst @@ -0,0 +1,44 @@ +ipyvuetify.generated.Hover +========================== + +.. py:module:: ipyvuetify.generated.Hover + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Hover.Hover + + +Module Contents +--------------- + +.. py:class:: Hover(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: close_delay + + + .. py:attribute:: disabled + + + .. py:attribute:: open_delay + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/Icon/index.rst b/docs/autoapi/ipyvuetify/generated/Icon/index.rst new file mode 100644 index 00000000..2f738fb1 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Icon/index.rst @@ -0,0 +1,71 @@ +ipyvuetify.generated.Icon +========================= + +.. py:module:: ipyvuetify.generated.Icon + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Icon.Icon + + +Module Contents +--------------- + +.. py:class:: Icon(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: large + + + .. py:attribute:: left + + + .. py:attribute:: light + + + .. py:attribute:: right + + + .. py:attribute:: size + + + .. py:attribute:: small + + + .. py:attribute:: tag + + + .. py:attribute:: x_large + + + .. py:attribute:: x_small + + diff --git a/docs/autoapi/ipyvuetify/generated/Img/index.rst b/docs/autoapi/ipyvuetify/generated/Img/index.rst new file mode 100644 index 00000000..f07d52c9 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Img/index.rst @@ -0,0 +1,86 @@ +ipyvuetify.generated.Img +======================== + +.. py:module:: ipyvuetify.generated.Img + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Img.Img + + +Module Contents +--------------- + +.. py:class:: Img(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: alt + + + .. py:attribute:: aspect_ratio + + + .. py:attribute:: contain + + + .. py:attribute:: eager + + + .. py:attribute:: gradient + + + .. py:attribute:: height + + + .. py:attribute:: lazy_src + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: options + + + .. py:attribute:: position + + + .. py:attribute:: sizes + + + .. py:attribute:: src + + + .. py:attribute:: srcset + + + .. py:attribute:: transition + + + .. py:attribute:: width + + diff --git a/docs/autoapi/ipyvuetify/generated/Input/index.rst b/docs/autoapi/ipyvuetify/generated/Input/index.rst new file mode 100644 index 00000000..070a23ed --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Input/index.rst @@ -0,0 +1,107 @@ +ipyvuetify.generated.Input +========================== + +.. py:module:: ipyvuetify.generated.Input + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Input.Input + + +Module Contents +--------------- + +.. py:class:: Input(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: background_color + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loading + + + .. py:attribute:: messages + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: rules + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/Item/index.rst b/docs/autoapi/ipyvuetify/generated/Item/index.rst new file mode 100644 index 00000000..ba50cec6 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Item/index.rst @@ -0,0 +1,41 @@ +ipyvuetify.generated.Item +========================= + +.. py:module:: ipyvuetify.generated.Item + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Item.Item + + +Module Contents +--------------- + +.. py:class:: Item(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: disabled + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/ItemGroup/index.rst b/docs/autoapi/ipyvuetify/generated/ItemGroup/index.rst new file mode 100644 index 00000000..5b5e8dde --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ItemGroup/index.rst @@ -0,0 +1,53 @@ +ipyvuetify.generated.ItemGroup +============================== + +.. py:module:: ipyvuetify.generated.ItemGroup + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ItemGroup.ItemGroup + + +Module Contents +--------------- + +.. py:class:: ItemGroup(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: multiple + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/Label/index.rst b/docs/autoapi/ipyvuetify/generated/Label/index.rst new file mode 100644 index 00000000..5eac8250 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Label/index.rst @@ -0,0 +1,62 @@ +ipyvuetify.generated.Label +========================== + +.. py:module:: ipyvuetify.generated.Label + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Label.Label + + +Module Contents +--------------- + +.. py:class:: Label(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: focused + + + .. py:attribute:: for_ + + + .. py:attribute:: left + + + .. py:attribute:: light + + + .. py:attribute:: right + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/Layout/index.rst b/docs/autoapi/ipyvuetify/generated/Layout/index.rst new file mode 100644 index 00000000..0079706b --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Layout/index.rst @@ -0,0 +1,458 @@ +ipyvuetify.generated.Layout +=========================== + +.. py:module:: ipyvuetify.generated.Layout + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Layout.Layout + + +Module Contents +--------------- + +.. py:class:: Layout(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: align_baseline + + + .. py:attribute:: align_center + + + .. py:attribute:: align_content_center + + + .. py:attribute:: align_content_end + + + .. py:attribute:: align_content_space_around + + + .. py:attribute:: align_content_space_between + + + .. py:attribute:: align_content_start + + + .. py:attribute:: align_end + + + .. py:attribute:: align_start + + + .. py:attribute:: column + + + .. py:attribute:: d_block + + + .. py:attribute:: d_contents + + + .. py:attribute:: d_flex + + + .. py:attribute:: d_grid + + + .. py:attribute:: d_inherit + + + .. py:attribute:: d_initial + + + .. py:attribute:: d_inline + + + .. py:attribute:: d_inline_block + + + .. py:attribute:: d_inline_flex + + + .. py:attribute:: d_inline_grid + + + .. py:attribute:: d_inline_table + + + .. py:attribute:: d_list_item + + + .. py:attribute:: d_none + + + .. py:attribute:: d_run_in + + + .. py:attribute:: d_table + + + .. py:attribute:: d_table_caption + + + .. py:attribute:: d_table_cell + + + .. py:attribute:: d_table_column + + + .. py:attribute:: d_table_column_group + + + .. py:attribute:: d_table_footer_group + + + .. py:attribute:: d_table_header_group + + + .. py:attribute:: d_table_row + + + .. py:attribute:: d_table_row_group + + + .. py:attribute:: fill_height + + + .. py:attribute:: id + + + .. py:attribute:: justify_center + + + .. py:attribute:: justify_end + + + .. py:attribute:: justify_space_around + + + .. py:attribute:: justify_space_between + + + .. py:attribute:: justify_start + + + .. py:attribute:: ma_0 + + + .. py:attribute:: ma_1 + + + .. py:attribute:: ma_2 + + + .. py:attribute:: ma_3 + + + .. py:attribute:: ma_4 + + + .. py:attribute:: ma_5 + + + .. py:attribute:: ma_auto + + + .. py:attribute:: mb_0 + + + .. py:attribute:: mb_1 + + + .. py:attribute:: mb_2 + + + .. py:attribute:: mb_3 + + + .. py:attribute:: mb_4 + + + .. py:attribute:: mb_5 + + + .. py:attribute:: mb_auto + + + .. py:attribute:: ml_0 + + + .. py:attribute:: ml_1 + + + .. py:attribute:: ml_2 + + + .. py:attribute:: ml_3 + + + .. py:attribute:: ml_4 + + + .. py:attribute:: ml_5 + + + .. py:attribute:: ml_auto + + + .. py:attribute:: mr_0 + + + .. py:attribute:: mr_1 + + + .. py:attribute:: mr_2 + + + .. py:attribute:: mr_3 + + + .. py:attribute:: mr_4 + + + .. py:attribute:: mr_5 + + + .. py:attribute:: mr_auto + + + .. py:attribute:: mt_0 + + + .. py:attribute:: mt_1 + + + .. py:attribute:: mt_2 + + + .. py:attribute:: mt_3 + + + .. py:attribute:: mt_4 + + + .. py:attribute:: mt_5 + + + .. py:attribute:: mt_auto + + + .. py:attribute:: mx_0 + + + .. py:attribute:: mx_1 + + + .. py:attribute:: mx_2 + + + .. py:attribute:: mx_3 + + + .. py:attribute:: mx_4 + + + .. py:attribute:: mx_5 + + + .. py:attribute:: mx_auto + + + .. py:attribute:: my_0 + + + .. py:attribute:: my_1 + + + .. py:attribute:: my_2 + + + .. py:attribute:: my_3 + + + .. py:attribute:: my_4 + + + .. py:attribute:: my_5 + + + .. py:attribute:: my_auto + + + .. py:attribute:: pa_0 + + + .. py:attribute:: pa_1 + + + .. py:attribute:: pa_2 + + + .. py:attribute:: pa_3 + + + .. py:attribute:: pa_4 + + + .. py:attribute:: pa_5 + + + .. py:attribute:: pa_auto + + + .. py:attribute:: pb_0 + + + .. py:attribute:: pb_1 + + + .. py:attribute:: pb_2 + + + .. py:attribute:: pb_3 + + + .. py:attribute:: pb_4 + + + .. py:attribute:: pb_5 + + + .. py:attribute:: pb_auto + + + .. py:attribute:: pl_0 + + + .. py:attribute:: pl_1 + + + .. py:attribute:: pl_2 + + + .. py:attribute:: pl_3 + + + .. py:attribute:: pl_4 + + + .. py:attribute:: pl_5 + + + .. py:attribute:: pl_auto + + + .. py:attribute:: pr_0 + + + .. py:attribute:: pr_1 + + + .. py:attribute:: pr_2 + + + .. py:attribute:: pr_3 + + + .. py:attribute:: pr_4 + + + .. py:attribute:: pr_5 + + + .. py:attribute:: pr_auto + + + .. py:attribute:: pt_0 + + + .. py:attribute:: pt_1 + + + .. py:attribute:: pt_2 + + + .. py:attribute:: pt_3 + + + .. py:attribute:: pt_4 + + + .. py:attribute:: pt_5 + + + .. py:attribute:: pt_auto + + + .. py:attribute:: px_0 + + + .. py:attribute:: px_1 + + + .. py:attribute:: px_2 + + + .. py:attribute:: px_3 + + + .. py:attribute:: px_4 + + + .. py:attribute:: px_5 + + + .. py:attribute:: px_auto + + + .. py:attribute:: py_0 + + + .. py:attribute:: py_1 + + + .. py:attribute:: py_2 + + + .. py:attribute:: py_3 + + + .. py:attribute:: py_4 + + + .. py:attribute:: py_5 + + + .. py:attribute:: py_auto + + + .. py:attribute:: reverse + + + .. py:attribute:: row + + + .. py:attribute:: tag + + + .. py:attribute:: wrap + + diff --git a/docs/autoapi/ipyvuetify/generated/Lazy/index.rst b/docs/autoapi/ipyvuetify/generated/Lazy/index.rst new file mode 100644 index 00000000..61d96ec0 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Lazy/index.rst @@ -0,0 +1,47 @@ +ipyvuetify.generated.Lazy +========================= + +.. py:module:: ipyvuetify.generated.Lazy + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Lazy.Lazy + + +Module Contents +--------------- + +.. py:class:: Lazy(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: min_height + + + .. py:attribute:: options + + + .. py:attribute:: tag + + + .. py:attribute:: transition + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/List/index.rst b/docs/autoapi/ipyvuetify/generated/List/index.rst new file mode 100644 index 00000000..ef101188 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/List/index.rst @@ -0,0 +1,98 @@ +ipyvuetify.generated.List +========================= + +.. py:module:: ipyvuetify.generated.List + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.List.List + + +Module Contents +--------------- + +.. py:class:: List(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: elevation + + + .. py:attribute:: expand + + + .. py:attribute:: flat + + + .. py:attribute:: height + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: nav + + + .. py:attribute:: rounded + + + .. py:attribute:: shaped + + + .. py:attribute:: subheader + + + .. py:attribute:: tag + + + .. py:attribute:: three_line + + + .. py:attribute:: tile + + + .. py:attribute:: two_line + + + .. py:attribute:: width + + diff --git a/docs/autoapi/ipyvuetify/generated/ListGroup/index.rst b/docs/autoapi/ipyvuetify/generated/ListGroup/index.rst new file mode 100644 index 00000000..e90a7dfc --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ListGroup/index.rst @@ -0,0 +1,65 @@ +ipyvuetify.generated.ListGroup +============================== + +.. py:module:: ipyvuetify.generated.ListGroup + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ListGroup.ListGroup + + +Module Contents +--------------- + +.. py:class:: ListGroup(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: append_icon + + + .. py:attribute:: color + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: group + + + .. py:attribute:: no_action + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: ripple + + + .. py:attribute:: sub_group + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/ListItem/index.rst b/docs/autoapi/ipyvuetify/generated/ListItem/index.rst new file mode 100644 index 00000000..1b62371a --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ListItem/index.rst @@ -0,0 +1,101 @@ +ipyvuetify.generated.ListItem +============================= + +.. py:module:: ipyvuetify.generated.ListItem + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ListItem.ListItem + + +Module Contents +--------------- + +.. py:class:: ListItem(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: append + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: exact + + + .. py:attribute:: exact_active_class + + + .. py:attribute:: href + + + .. py:attribute:: inactive + + + .. py:attribute:: input_value + + + .. py:attribute:: light + + + .. py:attribute:: link + + + .. py:attribute:: nuxt + + + .. py:attribute:: replace + + + .. py:attribute:: ripple + + + .. py:attribute:: selectable + + + .. py:attribute:: tag + + + .. py:attribute:: target + + + .. py:attribute:: three_line + + + .. py:attribute:: to + + + .. py:attribute:: two_line + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/ListItemAction/index.rst b/docs/autoapi/ipyvuetify/generated/ListItemAction/index.rst new file mode 100644 index 00000000..cec56bf0 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ListItemAction/index.rst @@ -0,0 +1,32 @@ +ipyvuetify.generated.ListItemAction +=================================== + +.. py:module:: ipyvuetify.generated.ListItemAction + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ListItemAction.ListItemAction + + +Module Contents +--------------- + +.. py:class:: ListItemAction(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + diff --git a/docs/autoapi/ipyvuetify/generated/ListItemActionText/index.rst b/docs/autoapi/ipyvuetify/generated/ListItemActionText/index.rst new file mode 100644 index 00000000..ca59fb04 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ListItemActionText/index.rst @@ -0,0 +1,32 @@ +ipyvuetify.generated.ListItemActionText +======================================= + +.. py:module:: ipyvuetify.generated.ListItemActionText + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ListItemActionText.ListItemActionText + + +Module Contents +--------------- + +.. py:class:: ListItemActionText(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + diff --git a/docs/autoapi/ipyvuetify/generated/ListItemAvatar/index.rst b/docs/autoapi/ipyvuetify/generated/ListItemAvatar/index.rst new file mode 100644 index 00000000..730daaf8 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ListItemAvatar/index.rst @@ -0,0 +1,68 @@ +ipyvuetify.generated.ListItemAvatar +=================================== + +.. py:module:: ipyvuetify.generated.ListItemAvatar + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ListItemAvatar.ListItemAvatar + + +Module Contents +--------------- + +.. py:class:: ListItemAvatar(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: height + + + .. py:attribute:: horizontal + + + .. py:attribute:: left + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: right + + + .. py:attribute:: size + + + .. py:attribute:: tile + + + .. py:attribute:: width + + diff --git a/docs/autoapi/ipyvuetify/generated/ListItemContent/index.rst b/docs/autoapi/ipyvuetify/generated/ListItemContent/index.rst new file mode 100644 index 00000000..52a33dca --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ListItemContent/index.rst @@ -0,0 +1,32 @@ +ipyvuetify.generated.ListItemContent +==================================== + +.. py:module:: ipyvuetify.generated.ListItemContent + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ListItemContent.ListItemContent + + +Module Contents +--------------- + +.. py:class:: ListItemContent(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + diff --git a/docs/autoapi/ipyvuetify/generated/ListItemGroup/index.rst b/docs/autoapi/ipyvuetify/generated/ListItemGroup/index.rst new file mode 100644 index 00000000..7c7ac643 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ListItemGroup/index.rst @@ -0,0 +1,56 @@ +ipyvuetify.generated.ListItemGroup +================================== + +.. py:module:: ipyvuetify.generated.ListItemGroup + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ListItemGroup.ListItemGroup + + +Module Contents +--------------- + +.. py:class:: ListItemGroup(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: multiple + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/ListItemIcon/index.rst b/docs/autoapi/ipyvuetify/generated/ListItemIcon/index.rst new file mode 100644 index 00000000..caf97b96 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ListItemIcon/index.rst @@ -0,0 +1,32 @@ +ipyvuetify.generated.ListItemIcon +================================= + +.. py:module:: ipyvuetify.generated.ListItemIcon + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ListItemIcon.ListItemIcon + + +Module Contents +--------------- + +.. py:class:: ListItemIcon(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + diff --git a/docs/autoapi/ipyvuetify/generated/ListItemSubtitle/index.rst b/docs/autoapi/ipyvuetify/generated/ListItemSubtitle/index.rst new file mode 100644 index 00000000..b06951c6 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ListItemSubtitle/index.rst @@ -0,0 +1,32 @@ +ipyvuetify.generated.ListItemSubtitle +===================================== + +.. py:module:: ipyvuetify.generated.ListItemSubtitle + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ListItemSubtitle.ListItemSubtitle + + +Module Contents +--------------- + +.. py:class:: ListItemSubtitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + diff --git a/docs/autoapi/ipyvuetify/generated/ListItemTitle/index.rst b/docs/autoapi/ipyvuetify/generated/ListItemTitle/index.rst new file mode 100644 index 00000000..5a515dd1 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ListItemTitle/index.rst @@ -0,0 +1,32 @@ +ipyvuetify.generated.ListItemTitle +================================== + +.. py:module:: ipyvuetify.generated.ListItemTitle + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ListItemTitle.ListItemTitle + + +Module Contents +--------------- + +.. py:class:: ListItemTitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + diff --git a/docs/autoapi/ipyvuetify/generated/Menu/index.rst b/docs/autoapi/ipyvuetify/generated/Menu/index.rst new file mode 100644 index 00000000..24be5ce9 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Menu/index.rst @@ -0,0 +1,155 @@ +ipyvuetify.generated.Menu +========================= + +.. py:module:: ipyvuetify.generated.Menu + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Menu.Menu + + +Module Contents +--------------- + +.. py:class:: Menu(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: activator + + + .. py:attribute:: allow_overflow + + + .. py:attribute:: attach + + + .. py:attribute:: auto + + + .. py:attribute:: bottom + + + .. py:attribute:: close_delay + + + .. py:attribute:: close_on_click + + + .. py:attribute:: close_on_content_click + + + .. py:attribute:: content_class + + + .. py:attribute:: dark + + + .. py:attribute:: disable_keys + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: fixed + + + .. py:attribute:: internal_activator + + + .. py:attribute:: left + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_width + + + .. py:attribute:: nudge_bottom + + + .. py:attribute:: nudge_left + + + .. py:attribute:: nudge_right + + + .. py:attribute:: nudge_top + + + .. py:attribute:: nudge_width + + + .. py:attribute:: offset_overflow + + + .. py:attribute:: offset_x + + + .. py:attribute:: offset_y + + + .. py:attribute:: open_delay + + + .. py:attribute:: open_on_click + + + .. py:attribute:: open_on_hover + + + .. py:attribute:: origin + + + .. py:attribute:: position_x + + + .. py:attribute:: position_y + + + .. py:attribute:: return_value + + + .. py:attribute:: right + + + .. py:attribute:: top + + + .. py:attribute:: transition + + + .. py:attribute:: value + + + .. py:attribute:: z_index + + diff --git a/docs/autoapi/ipyvuetify/generated/MenuTransition/index.rst b/docs/autoapi/ipyvuetify/generated/MenuTransition/index.rst new file mode 100644 index 00000000..e1427257 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/MenuTransition/index.rst @@ -0,0 +1,47 @@ +ipyvuetify.generated.MenuTransition +=================================== + +.. py:module:: ipyvuetify.generated.MenuTransition + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.MenuTransition.MenuTransition + + +Module Contents +--------------- + +.. py:class:: MenuTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + diff --git a/docs/autoapi/ipyvuetify/generated/Messages/index.rst b/docs/autoapi/ipyvuetify/generated/Messages/index.rst new file mode 100644 index 00000000..cf31bca0 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Messages/index.rst @@ -0,0 +1,44 @@ +ipyvuetify.generated.Messages +============================= + +.. py:module:: ipyvuetify.generated.Messages + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Messages.Messages + + +Module Contents +--------------- + +.. py:class:: Messages(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/NavigationDrawer/index.rst b/docs/autoapi/ipyvuetify/generated/NavigationDrawer/index.rst new file mode 100644 index 00000000..b1f50713 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/NavigationDrawer/index.rst @@ -0,0 +1,116 @@ +ipyvuetify.generated.NavigationDrawer +===================================== + +.. py:module:: ipyvuetify.generated.NavigationDrawer + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.NavigationDrawer.NavigationDrawer + + +Module Contents +--------------- + +.. py:class:: NavigationDrawer(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: app + + + .. py:attribute:: bottom + + + .. py:attribute:: clipped + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disable_resize_watcher + + + .. py:attribute:: disable_route_watcher + + + .. py:attribute:: expand_on_hover + + + .. py:attribute:: fixed + + + .. py:attribute:: floating + + + .. py:attribute:: height + + + .. py:attribute:: hide_overlay + + + .. py:attribute:: light + + + .. py:attribute:: mini_variant + + + .. py:attribute:: mini_variant_width + + + .. py:attribute:: mobile_break_point + + + .. py:attribute:: overlay_color + + + .. py:attribute:: overlay_opacity + + + .. py:attribute:: permanent + + + .. py:attribute:: right + + + .. py:attribute:: src + + + .. py:attribute:: stateless + + + .. py:attribute:: tag + + + .. py:attribute:: temporary + + + .. py:attribute:: touchless + + + .. py:attribute:: value + + + .. py:attribute:: width + + diff --git a/docs/autoapi/ipyvuetify/generated/OverflowBtn/index.rst b/docs/autoapi/ipyvuetify/generated/OverflowBtn/index.rst new file mode 100644 index 00000000..3cec566f --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/OverflowBtn/index.rst @@ -0,0 +1,245 @@ +ipyvuetify.generated.OverflowBtn +================================ + +.. py:module:: ipyvuetify.generated.OverflowBtn + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.OverflowBtn.OverflowBtn + + +Module Contents +--------------- + +.. py:class:: OverflowBtn(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: allow_overflow + + + .. py:attribute:: append_icon + + + .. py:attribute:: append_outer_icon + + + .. py:attribute:: attach + + + .. py:attribute:: auto_select_first + + + .. py:attribute:: autofocus + + + .. py:attribute:: background_color + + + .. py:attribute:: cache_items + + + .. py:attribute:: chips + + + .. py:attribute:: clear_icon + + + .. py:attribute:: clearable + + + .. py:attribute:: color + + + .. py:attribute:: counter + + + .. py:attribute:: dark + + + .. py:attribute:: deletable_chips + + + .. py:attribute:: dense + + + .. py:attribute:: disable_lookup + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: editable + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: filled + + + .. py:attribute:: flat + + + .. py:attribute:: full_width + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hide_no_data + + + .. py:attribute:: hide_selected + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: item_color + + + .. py:attribute:: item_disabled + + + .. py:attribute:: item_text + + + .. py:attribute:: item_value + + + .. py:attribute:: items + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: menu_props + + + .. py:attribute:: messages + + + .. py:attribute:: multiple + + + .. py:attribute:: no_data_text + + + .. py:attribute:: no_filter + + + .. py:attribute:: open_on_clear + + + .. py:attribute:: outlined + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: placeholder + + + .. py:attribute:: prefix + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: prepend_inner_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: return_object + + + .. py:attribute:: reverse + + + .. py:attribute:: rounded + + + .. py:attribute:: rules + + + .. py:attribute:: search_input + + + .. py:attribute:: segmented + + + .. py:attribute:: shaped + + + .. py:attribute:: single_line + + + .. py:attribute:: small_chips + + + .. py:attribute:: solo + + + .. py:attribute:: solo_inverted + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: suffix + + + .. py:attribute:: type + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/Overlay/index.rst b/docs/autoapi/ipyvuetify/generated/Overlay/index.rst new file mode 100644 index 00000000..5aa4d30d --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Overlay/index.rst @@ -0,0 +1,53 @@ +ipyvuetify.generated.Overlay +============================ + +.. py:module:: ipyvuetify.generated.Overlay + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Overlay.Overlay + + +Module Contents +--------------- + +.. py:class:: Overlay(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: opacity + + + .. py:attribute:: value + + + .. py:attribute:: z_index + + diff --git a/docs/autoapi/ipyvuetify/generated/Pagination/index.rst b/docs/autoapi/ipyvuetify/generated/Pagination/index.rst new file mode 100644 index 00000000..8df190fa --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Pagination/index.rst @@ -0,0 +1,62 @@ +ipyvuetify.generated.Pagination +=============================== + +.. py:module:: ipyvuetify.generated.Pagination + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Pagination.Pagination + + +Module Contents +--------------- + +.. py:class:: Pagination(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: circle + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: length + + + .. py:attribute:: light + + + .. py:attribute:: next_icon + + + .. py:attribute:: prev_icon + + + .. py:attribute:: total_visible + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/Parallax/index.rst b/docs/autoapi/ipyvuetify/generated/Parallax/index.rst new file mode 100644 index 00000000..a118613e --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Parallax/index.rst @@ -0,0 +1,41 @@ +ipyvuetify.generated.Parallax +============================= + +.. py:module:: ipyvuetify.generated.Parallax + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Parallax.Parallax + + +Module Contents +--------------- + +.. py:class:: Parallax(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: alt + + + .. py:attribute:: height + + + .. py:attribute:: src + + diff --git a/docs/autoapi/ipyvuetify/generated/Picker/index.rst b/docs/autoapi/ipyvuetify/generated/Picker/index.rst new file mode 100644 index 00000000..8c9ec27a --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Picker/index.rst @@ -0,0 +1,56 @@ +ipyvuetify.generated.Picker +=========================== + +.. py:module:: ipyvuetify.generated.Picker + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Picker.Picker + + +Module Contents +--------------- + +.. py:class:: Picker(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: full_width + + + .. py:attribute:: landscape + + + .. py:attribute:: light + + + .. py:attribute:: no_title + + + .. py:attribute:: transition + + + .. py:attribute:: width + + diff --git a/docs/autoapi/ipyvuetify/generated/ProgressCircular/index.rst b/docs/autoapi/ipyvuetify/generated/ProgressCircular/index.rst new file mode 100644 index 00000000..0b238f59 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ProgressCircular/index.rst @@ -0,0 +1,53 @@ +ipyvuetify.generated.ProgressCircular +===================================== + +.. py:module:: ipyvuetify.generated.ProgressCircular + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ProgressCircular.ProgressCircular + + +Module Contents +--------------- + +.. py:class:: ProgressCircular(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: button + + + .. py:attribute:: color + + + .. py:attribute:: indeterminate + + + .. py:attribute:: rotate + + + .. py:attribute:: size + + + .. py:attribute:: value + + + .. py:attribute:: width + + diff --git a/docs/autoapi/ipyvuetify/generated/ProgressLinear/index.rst b/docs/autoapi/ipyvuetify/generated/ProgressLinear/index.rst new file mode 100644 index 00000000..9c0ee22a --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ProgressLinear/index.rst @@ -0,0 +1,86 @@ +ipyvuetify.generated.ProgressLinear +=================================== + +.. py:module:: ipyvuetify.generated.ProgressLinear + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ProgressLinear.ProgressLinear + + +Module Contents +--------------- + +.. py:class:: ProgressLinear(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: active + + + .. py:attribute:: background_color + + + .. py:attribute:: background_opacity + + + .. py:attribute:: bottom + + + .. py:attribute:: buffer_value + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: fixed + + + .. py:attribute:: height + + + .. py:attribute:: indeterminate + + + .. py:attribute:: light + + + .. py:attribute:: query + + + .. py:attribute:: rounded + + + .. py:attribute:: stream + + + .. py:attribute:: striped + + + .. py:attribute:: top + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/Radio/index.rst b/docs/autoapi/ipyvuetify/generated/Radio/index.rst new file mode 100644 index 00000000..8ddebff4 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Radio/index.rst @@ -0,0 +1,71 @@ +ipyvuetify.generated.Radio +========================== + +.. py:module:: ipyvuetify.generated.Radio + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Radio.Radio + + +Module Contents +--------------- + +.. py:class:: Radio(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: id + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: name + + + .. py:attribute:: off_icon + + + .. py:attribute:: on_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: ripple + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/RadioGroup/index.rst b/docs/autoapi/ipyvuetify/generated/RadioGroup/index.rst new file mode 100644 index 00000000..98bf5ab6 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/RadioGroup/index.rst @@ -0,0 +1,128 @@ +ipyvuetify.generated.RadioGroup +=============================== + +.. py:module:: ipyvuetify.generated.RadioGroup + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.RadioGroup.RadioGroup + + +Module Contents +--------------- + +.. py:class:: RadioGroup(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: append_icon + + + .. py:attribute:: background_color + + + .. py:attribute:: color + + + .. py:attribute:: column + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loading + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: messages + + + .. py:attribute:: multiple + + + .. py:attribute:: name + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: row + + + .. py:attribute:: rules + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/RangeSlider/index.rst b/docs/autoapi/ipyvuetify/generated/RangeSlider/index.rst new file mode 100644 index 00000000..06135db8 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/RangeSlider/index.rst @@ -0,0 +1,149 @@ +ipyvuetify.generated.RangeSlider +================================ + +.. py:module:: ipyvuetify.generated.RangeSlider + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.RangeSlider.RangeSlider + + +Module Contents +--------------- + +.. py:class:: RangeSlider(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: background_color + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: inverse_label + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: max + + + .. py:attribute:: messages + + + .. py:attribute:: min + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: rules + + + .. py:attribute:: step + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: thumb_color + + + .. py:attribute:: thumb_label + + + .. py:attribute:: thumb_size + + + .. py:attribute:: tick_labels + + + .. py:attribute:: tick_size + + + .. py:attribute:: ticks + + + .. py:attribute:: track_color + + + .. py:attribute:: track_fill_color + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + + .. py:attribute:: vertical + + diff --git a/docs/autoapi/ipyvuetify/generated/Rating/index.rst b/docs/autoapi/ipyvuetify/generated/Rating/index.rst new file mode 100644 index 00000000..fccede55 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Rating/index.rst @@ -0,0 +1,98 @@ +ipyvuetify.generated.Rating +=========================== + +.. py:module:: ipyvuetify.generated.Rating + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Rating.Rating + + +Module Contents +--------------- + +.. py:class:: Rating(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: background_color + + + .. py:attribute:: clearable + + + .. py:attribute:: close_delay + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: empty_icon + + + .. py:attribute:: full_icon + + + .. py:attribute:: half_icon + + + .. py:attribute:: half_increments + + + .. py:attribute:: hover + + + .. py:attribute:: large + + + .. py:attribute:: length + + + .. py:attribute:: light + + + .. py:attribute:: open_delay + + + .. py:attribute:: readonly + + + .. py:attribute:: ripple + + + .. py:attribute:: size + + + .. py:attribute:: small + + + .. py:attribute:: value + + + .. py:attribute:: x_large + + + .. py:attribute:: x_small + + diff --git a/docs/autoapi/ipyvuetify/generated/Responsive/index.rst b/docs/autoapi/ipyvuetify/generated/Responsive/index.rst new file mode 100644 index 00000000..0abf7b24 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Responsive/index.rst @@ -0,0 +1,53 @@ +ipyvuetify.generated.Responsive +=============================== + +.. py:module:: ipyvuetify.generated.Responsive + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Responsive.Responsive + + +Module Contents +--------------- + +.. py:class:: Responsive(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: aspect_ratio + + + .. py:attribute:: height + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: width + + diff --git a/docs/autoapi/ipyvuetify/generated/Row/index.rst b/docs/autoapi/ipyvuetify/generated/Row/index.rst new file mode 100644 index 00000000..b1257296 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Row/index.rst @@ -0,0 +1,86 @@ +ipyvuetify.generated.Row +======================== + +.. py:module:: ipyvuetify.generated.Row + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Row.Row + + +Module Contents +--------------- + +.. py:class:: Row(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: align + + + .. py:attribute:: align_content + + + .. py:attribute:: align_content_lg + + + .. py:attribute:: align_content_md + + + .. py:attribute:: align_content_sm + + + .. py:attribute:: align_content_xl + + + .. py:attribute:: align_lg + + + .. py:attribute:: align_md + + + .. py:attribute:: align_sm + + + .. py:attribute:: align_xl + + + .. py:attribute:: dense + + + .. py:attribute:: justify + + + .. py:attribute:: justify_lg + + + .. py:attribute:: justify_md + + + .. py:attribute:: justify_sm + + + .. py:attribute:: justify_xl + + + .. py:attribute:: no_gutters + + + .. py:attribute:: tag + + diff --git a/docs/autoapi/ipyvuetify/generated/ScaleTransition/index.rst b/docs/autoapi/ipyvuetify/generated/ScaleTransition/index.rst new file mode 100644 index 00000000..d40bb67b --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ScaleTransition/index.rst @@ -0,0 +1,47 @@ +ipyvuetify.generated.ScaleTransition +==================================== + +.. py:module:: ipyvuetify.generated.ScaleTransition + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ScaleTransition.ScaleTransition + + +Module Contents +--------------- + +.. py:class:: ScaleTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + diff --git a/docs/autoapi/ipyvuetify/generated/ScrollXReverseTransition/index.rst b/docs/autoapi/ipyvuetify/generated/ScrollXReverseTransition/index.rst new file mode 100644 index 00000000..bc38e297 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ScrollXReverseTransition/index.rst @@ -0,0 +1,47 @@ +ipyvuetify.generated.ScrollXReverseTransition +============================================= + +.. py:module:: ipyvuetify.generated.ScrollXReverseTransition + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ScrollXReverseTransition.ScrollXReverseTransition + + +Module Contents +--------------- + +.. py:class:: ScrollXReverseTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + diff --git a/docs/autoapi/ipyvuetify/generated/ScrollXTransition/index.rst b/docs/autoapi/ipyvuetify/generated/ScrollXTransition/index.rst new file mode 100644 index 00000000..b096e65d --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ScrollXTransition/index.rst @@ -0,0 +1,47 @@ +ipyvuetify.generated.ScrollXTransition +====================================== + +.. py:module:: ipyvuetify.generated.ScrollXTransition + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ScrollXTransition.ScrollXTransition + + +Module Contents +--------------- + +.. py:class:: ScrollXTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + diff --git a/docs/autoapi/ipyvuetify/generated/ScrollYReverseTransition/index.rst b/docs/autoapi/ipyvuetify/generated/ScrollYReverseTransition/index.rst new file mode 100644 index 00000000..0bbba1d7 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ScrollYReverseTransition/index.rst @@ -0,0 +1,47 @@ +ipyvuetify.generated.ScrollYReverseTransition +============================================= + +.. py:module:: ipyvuetify.generated.ScrollYReverseTransition + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ScrollYReverseTransition.ScrollYReverseTransition + + +Module Contents +--------------- + +.. py:class:: ScrollYReverseTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + diff --git a/docs/autoapi/ipyvuetify/generated/ScrollYTransition/index.rst b/docs/autoapi/ipyvuetify/generated/ScrollYTransition/index.rst new file mode 100644 index 00000000..17471b58 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ScrollYTransition/index.rst @@ -0,0 +1,47 @@ +ipyvuetify.generated.ScrollYTransition +====================================== + +.. py:module:: ipyvuetify.generated.ScrollYTransition + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ScrollYTransition.ScrollYTransition + + +Module Contents +--------------- + +.. py:class:: ScrollYTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + diff --git a/docs/autoapi/ipyvuetify/generated/Select/index.rst b/docs/autoapi/ipyvuetify/generated/Select/index.rst new file mode 100644 index 00000000..e89aee39 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Select/index.rst @@ -0,0 +1,224 @@ +ipyvuetify.generated.Select +=========================== + +.. py:module:: ipyvuetify.generated.Select + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Select.Select + + +Module Contents +--------------- + +.. py:class:: Select(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: append_outer_icon + + + .. py:attribute:: attach + + + .. py:attribute:: autofocus + + + .. py:attribute:: background_color + + + .. py:attribute:: cache_items + + + .. py:attribute:: chips + + + .. py:attribute:: clear_icon + + + .. py:attribute:: clearable + + + .. py:attribute:: color + + + .. py:attribute:: counter + + + .. py:attribute:: dark + + + .. py:attribute:: deletable_chips + + + .. py:attribute:: dense + + + .. py:attribute:: disable_lookup + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: filled + + + .. py:attribute:: flat + + + .. py:attribute:: full_width + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hide_selected + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: item_color + + + .. py:attribute:: item_disabled + + + .. py:attribute:: item_text + + + .. py:attribute:: item_value + + + .. py:attribute:: items + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: menu_props + + + .. py:attribute:: messages + + + .. py:attribute:: multiple + + + .. py:attribute:: no_data_text + + + .. py:attribute:: open_on_clear + + + .. py:attribute:: outlined + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: placeholder + + + .. py:attribute:: prefix + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: prepend_inner_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: return_object + + + .. py:attribute:: reverse + + + .. py:attribute:: rounded + + + .. py:attribute:: rules + + + .. py:attribute:: shaped + + + .. py:attribute:: single_line + + + .. py:attribute:: small_chips + + + .. py:attribute:: solo + + + .. py:attribute:: solo_inverted + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: suffix + + + .. py:attribute:: type + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/Sheet/index.rst b/docs/autoapi/ipyvuetify/generated/Sheet/index.rst new file mode 100644 index 00000000..d41305fd --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Sheet/index.rst @@ -0,0 +1,68 @@ +ipyvuetify.generated.Sheet +========================== + +.. py:module:: ipyvuetify.generated.Sheet + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Sheet.Sheet + + +Module Contents +--------------- + +.. py:class:: Sheet(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: elevation + + + .. py:attribute:: height + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: tag + + + .. py:attribute:: tile + + + .. py:attribute:: width + + diff --git a/docs/autoapi/ipyvuetify/generated/SimpleCheckbox/index.rst b/docs/autoapi/ipyvuetify/generated/SimpleCheckbox/index.rst new file mode 100644 index 00000000..a6ccc156 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/SimpleCheckbox/index.rst @@ -0,0 +1,62 @@ +ipyvuetify.generated.SimpleCheckbox +=================================== + +.. py:module:: ipyvuetify.generated.SimpleCheckbox + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.SimpleCheckbox.SimpleCheckbox + + +Module Contents +--------------- + +.. py:class:: SimpleCheckbox(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: indeterminate + + + .. py:attribute:: indeterminate_icon + + + .. py:attribute:: light + + + .. py:attribute:: off_icon + + + .. py:attribute:: on_icon + + + .. py:attribute:: ripple + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/SimpleTable/index.rst b/docs/autoapi/ipyvuetify/generated/SimpleTable/index.rst new file mode 100644 index 00000000..ab38eebc --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/SimpleTable/index.rst @@ -0,0 +1,47 @@ +ipyvuetify.generated.SimpleTable +================================ + +.. py:module:: ipyvuetify.generated.SimpleTable + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.SimpleTable.SimpleTable + + +Module Contents +--------------- + +.. py:class:: SimpleTable(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: fixed_header + + + .. py:attribute:: height + + + .. py:attribute:: light + + diff --git a/docs/autoapi/ipyvuetify/generated/SkeletonLoader/index.rst b/docs/autoapi/ipyvuetify/generated/SkeletonLoader/index.rst new file mode 100644 index 00000000..eadb64a6 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/SkeletonLoader/index.rst @@ -0,0 +1,77 @@ +ipyvuetify.generated.SkeletonLoader +=================================== + +.. py:module:: ipyvuetify.generated.SkeletonLoader + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.SkeletonLoader.SkeletonLoader + + +Module Contents +--------------- + +.. py:class:: SkeletonLoader(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: boilerplate + + + .. py:attribute:: dark + + + .. py:attribute:: elevation + + + .. py:attribute:: height + + + .. py:attribute:: light + + + .. py:attribute:: loading + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: tile + + + .. py:attribute:: transition + + + .. py:attribute:: type + + + .. py:attribute:: types + + + .. py:attribute:: width + + diff --git a/docs/autoapi/ipyvuetify/generated/SlideGroup/index.rst b/docs/autoapi/ipyvuetify/generated/SlideGroup/index.rst new file mode 100644 index 00000000..d6c8748d --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/SlideGroup/index.rst @@ -0,0 +1,68 @@ +ipyvuetify.generated.SlideGroup +=============================== + +.. py:module:: ipyvuetify.generated.SlideGroup + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.SlideGroup.SlideGroup + + +Module Contents +--------------- + +.. py:class:: SlideGroup(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: center_active + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: mobile_break_point + + + .. py:attribute:: multiple + + + .. py:attribute:: next_icon + + + .. py:attribute:: prev_icon + + + .. py:attribute:: show_arrows + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/SlideItem/index.rst b/docs/autoapi/ipyvuetify/generated/SlideItem/index.rst new file mode 100644 index 00000000..153a24e4 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/SlideItem/index.rst @@ -0,0 +1,41 @@ +ipyvuetify.generated.SlideItem +============================== + +.. py:module:: ipyvuetify.generated.SlideItem + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.SlideItem.SlideItem + + +Module Contents +--------------- + +.. py:class:: SlideItem(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: disabled + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/SlideXReverseTransition/index.rst b/docs/autoapi/ipyvuetify/generated/SlideXReverseTransition/index.rst new file mode 100644 index 00000000..fa5f9c66 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/SlideXReverseTransition/index.rst @@ -0,0 +1,47 @@ +ipyvuetify.generated.SlideXReverseTransition +============================================ + +.. py:module:: ipyvuetify.generated.SlideXReverseTransition + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.SlideXReverseTransition.SlideXReverseTransition + + +Module Contents +--------------- + +.. py:class:: SlideXReverseTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + diff --git a/docs/autoapi/ipyvuetify/generated/SlideXTransition/index.rst b/docs/autoapi/ipyvuetify/generated/SlideXTransition/index.rst new file mode 100644 index 00000000..8a872e81 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/SlideXTransition/index.rst @@ -0,0 +1,47 @@ +ipyvuetify.generated.SlideXTransition +===================================== + +.. py:module:: ipyvuetify.generated.SlideXTransition + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.SlideXTransition.SlideXTransition + + +Module Contents +--------------- + +.. py:class:: SlideXTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + diff --git a/docs/autoapi/ipyvuetify/generated/SlideYReverseTransition/index.rst b/docs/autoapi/ipyvuetify/generated/SlideYReverseTransition/index.rst new file mode 100644 index 00000000..a57c0509 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/SlideYReverseTransition/index.rst @@ -0,0 +1,47 @@ +ipyvuetify.generated.SlideYReverseTransition +============================================ + +.. py:module:: ipyvuetify.generated.SlideYReverseTransition + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.SlideYReverseTransition.SlideYReverseTransition + + +Module Contents +--------------- + +.. py:class:: SlideYReverseTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + diff --git a/docs/autoapi/ipyvuetify/generated/SlideYTransition/index.rst b/docs/autoapi/ipyvuetify/generated/SlideYTransition/index.rst new file mode 100644 index 00000000..19132e7e --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/SlideYTransition/index.rst @@ -0,0 +1,47 @@ +ipyvuetify.generated.SlideYTransition +===================================== + +.. py:module:: ipyvuetify.generated.SlideYTransition + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.SlideYTransition.SlideYTransition + + +Module Contents +--------------- + +.. py:class:: SlideYTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + diff --git a/docs/autoapi/ipyvuetify/generated/Slider/index.rst b/docs/autoapi/ipyvuetify/generated/Slider/index.rst new file mode 100644 index 00000000..4e75b494 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Slider/index.rst @@ -0,0 +1,149 @@ +ipyvuetify.generated.Slider +=========================== + +.. py:module:: ipyvuetify.generated.Slider + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Slider.Slider + + +Module Contents +--------------- + +.. py:class:: Slider(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: background_color + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: inverse_label + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: max + + + .. py:attribute:: messages + + + .. py:attribute:: min + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: rules + + + .. py:attribute:: step + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: thumb_color + + + .. py:attribute:: thumb_label + + + .. py:attribute:: thumb_size + + + .. py:attribute:: tick_labels + + + .. py:attribute:: tick_size + + + .. py:attribute:: ticks + + + .. py:attribute:: track_color + + + .. py:attribute:: track_fill_color + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + + .. py:attribute:: vertical + + diff --git a/docs/autoapi/ipyvuetify/generated/Snackbar/index.rst b/docs/autoapi/ipyvuetify/generated/Snackbar/index.rst new file mode 100644 index 00000000..8ea2cd19 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Snackbar/index.rst @@ -0,0 +1,62 @@ +ipyvuetify.generated.Snackbar +============================= + +.. py:module:: ipyvuetify.generated.Snackbar + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Snackbar.Snackbar + + +Module Contents +--------------- + +.. py:class:: Snackbar(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: bottom + + + .. py:attribute:: color + + + .. py:attribute:: left + + + .. py:attribute:: multi_line + + + .. py:attribute:: right + + + .. py:attribute:: timeout + + + .. py:attribute:: top + + + .. py:attribute:: value + + + .. py:attribute:: vertical + + diff --git a/docs/autoapi/ipyvuetify/generated/Spacer/index.rst b/docs/autoapi/ipyvuetify/generated/Spacer/index.rst new file mode 100644 index 00000000..7ad5f652 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Spacer/index.rst @@ -0,0 +1,32 @@ +ipyvuetify.generated.Spacer +=========================== + +.. py:module:: ipyvuetify.generated.Spacer + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Spacer.Spacer + + +Module Contents +--------------- + +.. py:class:: Spacer(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + diff --git a/docs/autoapi/ipyvuetify/generated/Sparkline/index.rst b/docs/autoapi/ipyvuetify/generated/Sparkline/index.rst new file mode 100644 index 00000000..8a169dd9 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Sparkline/index.rst @@ -0,0 +1,86 @@ +ipyvuetify.generated.Sparkline +============================== + +.. py:module:: ipyvuetify.generated.Sparkline + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Sparkline.Sparkline + + +Module Contents +--------------- + +.. py:class:: Sparkline(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: auto_draw + + + .. py:attribute:: auto_draw_duration + + + .. py:attribute:: auto_draw_easing + + + .. py:attribute:: auto_line_width + + + .. py:attribute:: color + + + .. py:attribute:: fill + + + .. py:attribute:: gradient + + + .. py:attribute:: gradient_direction + + + .. py:attribute:: height + + + .. py:attribute:: label_size + + + .. py:attribute:: labels + + + .. py:attribute:: line_width + + + .. py:attribute:: padding + + + .. py:attribute:: show_labels + + + .. py:attribute:: smooth + + + .. py:attribute:: type + + + .. py:attribute:: value + + + .. py:attribute:: width + + diff --git a/docs/autoapi/ipyvuetify/generated/SpeedDial/index.rst b/docs/autoapi/ipyvuetify/generated/SpeedDial/index.rst new file mode 100644 index 00000000..32d597f2 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/SpeedDial/index.rst @@ -0,0 +1,68 @@ +ipyvuetify.generated.SpeedDial +============================== + +.. py:module:: ipyvuetify.generated.SpeedDial + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.SpeedDial.SpeedDial + + +Module Contents +--------------- + +.. py:class:: SpeedDial(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: bottom + + + .. py:attribute:: direction + + + .. py:attribute:: fixed + + + .. py:attribute:: left + + + .. py:attribute:: mode + + + .. py:attribute:: open_on_hover + + + .. py:attribute:: origin + + + .. py:attribute:: right + + + .. py:attribute:: top + + + .. py:attribute:: transition + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/Stepper/index.rst b/docs/autoapi/ipyvuetify/generated/Stepper/index.rst new file mode 100644 index 00000000..ab0911e9 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Stepper/index.rst @@ -0,0 +1,50 @@ +ipyvuetify.generated.Stepper +============================ + +.. py:module:: ipyvuetify.generated.Stepper + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Stepper.Stepper + + +Module Contents +--------------- + +.. py:class:: Stepper(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: alt_labels + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: non_linear + + + .. py:attribute:: value + + + .. py:attribute:: vertical + + diff --git a/docs/autoapi/ipyvuetify/generated/StepperContent/index.rst b/docs/autoapi/ipyvuetify/generated/StepperContent/index.rst new file mode 100644 index 00000000..e80346ed --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/StepperContent/index.rst @@ -0,0 +1,35 @@ +ipyvuetify.generated.StepperContent +=================================== + +.. py:module:: ipyvuetify.generated.StepperContent + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.StepperContent.StepperContent + + +Module Contents +--------------- + +.. py:class:: StepperContent(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: step + + diff --git a/docs/autoapi/ipyvuetify/generated/StepperHeader/index.rst b/docs/autoapi/ipyvuetify/generated/StepperHeader/index.rst new file mode 100644 index 00000000..7b082201 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/StepperHeader/index.rst @@ -0,0 +1,32 @@ +ipyvuetify.generated.StepperHeader +================================== + +.. py:module:: ipyvuetify.generated.StepperHeader + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.StepperHeader.StepperHeader + + +Module Contents +--------------- + +.. py:class:: StepperHeader(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + diff --git a/docs/autoapi/ipyvuetify/generated/StepperItems/index.rst b/docs/autoapi/ipyvuetify/generated/StepperItems/index.rst new file mode 100644 index 00000000..71c74aa4 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/StepperItems/index.rst @@ -0,0 +1,32 @@ +ipyvuetify.generated.StepperItems +================================= + +.. py:module:: ipyvuetify.generated.StepperItems + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.StepperItems.StepperItems + + +Module Contents +--------------- + +.. py:class:: StepperItems(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + diff --git a/docs/autoapi/ipyvuetify/generated/StepperStep/index.rst b/docs/autoapi/ipyvuetify/generated/StepperStep/index.rst new file mode 100644 index 00000000..79f280f4 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/StepperStep/index.rst @@ -0,0 +1,56 @@ +ipyvuetify.generated.StepperStep +================================ + +.. py:module:: ipyvuetify.generated.StepperStep + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.StepperStep.StepperStep + + +Module Contents +--------------- + +.. py:class:: StepperStep(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: complete + + + .. py:attribute:: complete_icon + + + .. py:attribute:: edit_icon + + + .. py:attribute:: editable + + + .. py:attribute:: error_icon + + + .. py:attribute:: rules + + + .. py:attribute:: step + + diff --git a/docs/autoapi/ipyvuetify/generated/Subheader/index.rst b/docs/autoapi/ipyvuetify/generated/Subheader/index.rst new file mode 100644 index 00000000..19b3f4c5 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Subheader/index.rst @@ -0,0 +1,41 @@ +ipyvuetify.generated.Subheader +============================== + +.. py:module:: ipyvuetify.generated.Subheader + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Subheader.Subheader + + +Module Contents +--------------- + +.. py:class:: Subheader(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: inset + + + .. py:attribute:: light + + diff --git a/docs/autoapi/ipyvuetify/generated/Switch/index.rst b/docs/autoapi/ipyvuetify/generated/Switch/index.rst new file mode 100644 index 00000000..d864052d --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Switch/index.rst @@ -0,0 +1,128 @@ +ipyvuetify.generated.Switch +=========================== + +.. py:module:: ipyvuetify.generated.Switch + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Switch.Switch + + +Module Contents +--------------- + +.. py:class:: Switch(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: background_color + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: false_value + + + .. py:attribute:: flat + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: input_value + + + .. py:attribute:: inset + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loading + + + .. py:attribute:: messages + + + .. py:attribute:: multiple + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: ripple + + + .. py:attribute:: rules + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: true_value + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/SystemBar/index.rst b/docs/autoapi/ipyvuetify/generated/SystemBar/index.rst new file mode 100644 index 00000000..9253017c --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/SystemBar/index.rst @@ -0,0 +1,59 @@ +ipyvuetify.generated.SystemBar +============================== + +.. py:module:: ipyvuetify.generated.SystemBar + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.SystemBar.SystemBar + + +Module Contents +--------------- + +.. py:class:: SystemBar(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: app + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: fixed + + + .. py:attribute:: height + + + .. py:attribute:: light + + + .. py:attribute:: lights_out + + + .. py:attribute:: window + + diff --git a/docs/autoapi/ipyvuetify/generated/Tab/index.rst b/docs/autoapi/ipyvuetify/generated/Tab/index.rst new file mode 100644 index 00000000..709cd3a2 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Tab/index.rst @@ -0,0 +1,77 @@ +ipyvuetify.generated.Tab +======================== + +.. py:module:: ipyvuetify.generated.Tab + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Tab.Tab + + +Module Contents +--------------- + +.. py:class:: Tab(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: append + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: exact + + + .. py:attribute:: exact_active_class + + + .. py:attribute:: href + + + .. py:attribute:: light + + + .. py:attribute:: link + + + .. py:attribute:: nuxt + + + .. py:attribute:: replace + + + .. py:attribute:: ripple + + + .. py:attribute:: tag + + + .. py:attribute:: target + + + .. py:attribute:: to + + diff --git a/docs/autoapi/ipyvuetify/generated/TabItem/index.rst b/docs/autoapi/ipyvuetify/generated/TabItem/index.rst new file mode 100644 index 00000000..ae2ccab4 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/TabItem/index.rst @@ -0,0 +1,53 @@ +ipyvuetify.generated.TabItem +============================ + +.. py:module:: ipyvuetify.generated.TabItem + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.TabItem.TabItem + + +Module Contents +--------------- + +.. py:class:: TabItem(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: id + + + .. py:attribute:: reverse_transition + + + .. py:attribute:: transition + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/TabReverseTransition/index.rst b/docs/autoapi/ipyvuetify/generated/TabReverseTransition/index.rst new file mode 100644 index 00000000..fde774bf --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/TabReverseTransition/index.rst @@ -0,0 +1,47 @@ +ipyvuetify.generated.TabReverseTransition +========================================= + +.. py:module:: ipyvuetify.generated.TabReverseTransition + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.TabReverseTransition.TabReverseTransition + + +Module Contents +--------------- + +.. py:class:: TabReverseTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + diff --git a/docs/autoapi/ipyvuetify/generated/TabTransition/index.rst b/docs/autoapi/ipyvuetify/generated/TabTransition/index.rst new file mode 100644 index 00000000..7884ca0e --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/TabTransition/index.rst @@ -0,0 +1,47 @@ +ipyvuetify.generated.TabTransition +================================== + +.. py:module:: ipyvuetify.generated.TabTransition + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.TabTransition.TabTransition + + +Module Contents +--------------- + +.. py:class:: TabTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + diff --git a/docs/autoapi/ipyvuetify/generated/TableOverflow/index.rst b/docs/autoapi/ipyvuetify/generated/TableOverflow/index.rst new file mode 100644 index 00000000..f5d8b8b6 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/TableOverflow/index.rst @@ -0,0 +1,32 @@ +ipyvuetify.generated.TableOverflow +================================== + +.. py:module:: ipyvuetify.generated.TableOverflow + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.TableOverflow.TableOverflow + + +Module Contents +--------------- + +.. py:class:: TableOverflow(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + diff --git a/docs/autoapi/ipyvuetify/generated/Tabs/index.rst b/docs/autoapi/ipyvuetify/generated/Tabs/index.rst new file mode 100644 index 00000000..6199e018 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Tabs/index.rst @@ -0,0 +1,101 @@ +ipyvuetify.generated.Tabs +========================= + +.. py:module:: ipyvuetify.generated.Tabs + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Tabs.Tabs + + +Module Contents +--------------- + +.. py:class:: Tabs(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: align_with_title + + + .. py:attribute:: background_color + + + .. py:attribute:: center_active + + + .. py:attribute:: centered + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: fixed_tabs + + + .. py:attribute:: grow + + + .. py:attribute:: height + + + .. py:attribute:: hide_slider + + + .. py:attribute:: icons_and_text + + + .. py:attribute:: light + + + .. py:attribute:: mobile_break_point + + + .. py:attribute:: next_icon + + + .. py:attribute:: optional + + + .. py:attribute:: prev_icon + + + .. py:attribute:: right + + + .. py:attribute:: show_arrows + + + .. py:attribute:: slider_color + + + .. py:attribute:: slider_size + + + .. py:attribute:: value + + + .. py:attribute:: vertical + + diff --git a/docs/autoapi/ipyvuetify/generated/TabsItems/index.rst b/docs/autoapi/ipyvuetify/generated/TabsItems/index.rst new file mode 100644 index 00000000..09ad16fb --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/TabsItems/index.rst @@ -0,0 +1,80 @@ +ipyvuetify.generated.TabsItems +============================== + +.. py:module:: ipyvuetify.generated.TabsItems + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.TabsItems.TabsItems + + +Module Contents +--------------- + +.. py:class:: TabsItems(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: continuous + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: multiple + + + .. py:attribute:: next_icon + + + .. py:attribute:: prev_icon + + + .. py:attribute:: reverse + + + .. py:attribute:: show_arrows + + + .. py:attribute:: show_arrows_on_hover + + + .. py:attribute:: touch + + + .. py:attribute:: touchless + + + .. py:attribute:: value + + + .. py:attribute:: vertical + + diff --git a/docs/autoapi/ipyvuetify/generated/TabsSlider/index.rst b/docs/autoapi/ipyvuetify/generated/TabsSlider/index.rst new file mode 100644 index 00000000..8a574bf8 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/TabsSlider/index.rst @@ -0,0 +1,35 @@ +ipyvuetify.generated.TabsSlider +=============================== + +.. py:module:: ipyvuetify.generated.TabsSlider + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.TabsSlider.TabsSlider + + +Module Contents +--------------- + +.. py:class:: TabsSlider(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + diff --git a/docs/autoapi/ipyvuetify/generated/Text/index.rst b/docs/autoapi/ipyvuetify/generated/Text/index.rst new file mode 100644 index 00000000..0886665c --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Text/index.rst @@ -0,0 +1,35 @@ +ipyvuetify.generated.Text +========================= + +.. py:module:: ipyvuetify.generated.Text + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Text.Text + + +Module Contents +--------------- + +.. py:class:: Text(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/TextField/index.rst b/docs/autoapi/ipyvuetify/generated/TextField/index.rst new file mode 100644 index 00000000..aa757673 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/TextField/index.rst @@ -0,0 +1,170 @@ +ipyvuetify.generated.TextField +============================== + +.. py:module:: ipyvuetify.generated.TextField + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.TextField.TextField + + +Module Contents +--------------- + +.. py:class:: TextField(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: append_outer_icon + + + .. py:attribute:: autofocus + + + .. py:attribute:: background_color + + + .. py:attribute:: clear_icon + + + .. py:attribute:: clearable + + + .. py:attribute:: color + + + .. py:attribute:: counter + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: filled + + + .. py:attribute:: flat + + + .. py:attribute:: full_width + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: messages + + + .. py:attribute:: outlined + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: placeholder + + + .. py:attribute:: prefix + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: prepend_inner_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: reverse + + + .. py:attribute:: rounded + + + .. py:attribute:: rules + + + .. py:attribute:: shaped + + + .. py:attribute:: single_line + + + .. py:attribute:: solo + + + .. py:attribute:: solo_inverted + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: suffix + + + .. py:attribute:: type + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/Textarea/index.rst b/docs/autoapi/ipyvuetify/generated/Textarea/index.rst new file mode 100644 index 00000000..10b22819 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Textarea/index.rst @@ -0,0 +1,182 @@ +ipyvuetify.generated.Textarea +============================= + +.. py:module:: ipyvuetify.generated.Textarea + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Textarea.Textarea + + +Module Contents +--------------- + +.. py:class:: Textarea(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: append_outer_icon + + + .. py:attribute:: auto_grow + + + .. py:attribute:: autofocus + + + .. py:attribute:: background_color + + + .. py:attribute:: clear_icon + + + .. py:attribute:: clearable + + + .. py:attribute:: color + + + .. py:attribute:: counter + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: filled + + + .. py:attribute:: flat + + + .. py:attribute:: full_width + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: messages + + + .. py:attribute:: no_resize + + + .. py:attribute:: outlined + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: placeholder + + + .. py:attribute:: prefix + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: prepend_inner_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: reverse + + + .. py:attribute:: rounded + + + .. py:attribute:: row_height + + + .. py:attribute:: rows + + + .. py:attribute:: rules + + + .. py:attribute:: shaped + + + .. py:attribute:: single_line + + + .. py:attribute:: solo + + + .. py:attribute:: solo_inverted + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: suffix + + + .. py:attribute:: type + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/ThemeProvider/index.rst b/docs/autoapi/ipyvuetify/generated/ThemeProvider/index.rst new file mode 100644 index 00000000..f8b54d3c --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ThemeProvider/index.rst @@ -0,0 +1,41 @@ +ipyvuetify.generated.ThemeProvider +================================== + +.. py:module:: ipyvuetify.generated.ThemeProvider + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ThemeProvider.ThemeProvider + + +Module Contents +--------------- + +.. py:class:: ThemeProvider(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: root + + diff --git a/docs/autoapi/ipyvuetify/generated/TimePicker/index.rst b/docs/autoapi/ipyvuetify/generated/TimePicker/index.rst new file mode 100644 index 00000000..30e806dc --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/TimePicker/index.rst @@ -0,0 +1,92 @@ +ipyvuetify.generated.TimePicker +=============================== + +.. py:module:: ipyvuetify.generated.TimePicker + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.TimePicker.TimePicker + + +Module Contents +--------------- + +.. py:class:: TimePicker(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: allowed_hours + + + .. py:attribute:: allowed_minutes + + + .. py:attribute:: allowed_seconds + + + .. py:attribute:: ampm_in_title + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: format + + + .. py:attribute:: full_width + + + .. py:attribute:: header_color + + + .. py:attribute:: landscape + + + .. py:attribute:: light + + + .. py:attribute:: max + + + .. py:attribute:: min + + + .. py:attribute:: no_title + + + .. py:attribute:: readonly + + + .. py:attribute:: scrollable + + + .. py:attribute:: use_seconds + + + .. py:attribute:: value + + + .. py:attribute:: width + + diff --git a/docs/autoapi/ipyvuetify/generated/TimePickerClock/index.rst b/docs/autoapi/ipyvuetify/generated/TimePickerClock/index.rst new file mode 100644 index 00000000..b375eed9 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/TimePickerClock/index.rst @@ -0,0 +1,71 @@ +ipyvuetify.generated.TimePickerClock +==================================== + +.. py:module:: ipyvuetify.generated.TimePickerClock + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.TimePickerClock.TimePickerClock + + +Module Contents +--------------- + +.. py:class:: TimePickerClock(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: ampm + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: double + + + .. py:attribute:: light + + + .. py:attribute:: max + + + .. py:attribute:: min + + + .. py:attribute:: readonly + + + .. py:attribute:: rotate + + + .. py:attribute:: scrollable + + + .. py:attribute:: step + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/TimePickerTitle/index.rst b/docs/autoapi/ipyvuetify/generated/TimePickerTitle/index.rst new file mode 100644 index 00000000..77a06aed --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/TimePickerTitle/index.rst @@ -0,0 +1,65 @@ +ipyvuetify.generated.TimePickerTitle +==================================== + +.. py:module:: ipyvuetify.generated.TimePickerTitle + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.TimePickerTitle.TimePickerTitle + + +Module Contents +--------------- + +.. py:class:: TimePickerTitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: ampm + + + .. py:attribute:: ampm_readonly + + + .. py:attribute:: color + + + .. py:attribute:: disabled + + + .. py:attribute:: hour + + + .. py:attribute:: minute + + + .. py:attribute:: period + + + .. py:attribute:: readonly + + + .. py:attribute:: second + + + .. py:attribute:: selecting + + + .. py:attribute:: use_seconds + + diff --git a/docs/autoapi/ipyvuetify/generated/Timeline/index.rst b/docs/autoapi/ipyvuetify/generated/Timeline/index.rst new file mode 100644 index 00000000..85880d0c --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Timeline/index.rst @@ -0,0 +1,47 @@ +ipyvuetify.generated.Timeline +============================= + +.. py:module:: ipyvuetify.generated.Timeline + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Timeline.Timeline + + +Module Contents +--------------- + +.. py:class:: Timeline(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: align_top + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: light + + + .. py:attribute:: reverse + + diff --git a/docs/autoapi/ipyvuetify/generated/TimelineItem/index.rst b/docs/autoapi/ipyvuetify/generated/TimelineItem/index.rst new file mode 100644 index 00000000..f291665d --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/TimelineItem/index.rst @@ -0,0 +1,65 @@ +ipyvuetify.generated.TimelineItem +================================= + +.. py:module:: ipyvuetify.generated.TimelineItem + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.TimelineItem.TimelineItem + + +Module Contents +--------------- + +.. py:class:: TimelineItem(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: fill_dot + + + .. py:attribute:: hide_dot + + + .. py:attribute:: icon + + + .. py:attribute:: icon_color + + + .. py:attribute:: large + + + .. py:attribute:: left + + + .. py:attribute:: light + + + .. py:attribute:: right + + + .. py:attribute:: small + + diff --git a/docs/autoapi/ipyvuetify/generated/Toolbar/index.rst b/docs/autoapi/ipyvuetify/generated/Toolbar/index.rst new file mode 100644 index 00000000..27433b9c --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Toolbar/index.rst @@ -0,0 +1,101 @@ +ipyvuetify.generated.Toolbar +============================ + +.. py:module:: ipyvuetify.generated.Toolbar + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Toolbar.Toolbar + + +Module Contents +--------------- + +.. py:class:: Toolbar(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: bottom + + + .. py:attribute:: collapse + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: elevation + + + .. py:attribute:: extended + + + .. py:attribute:: extension_height + + + .. py:attribute:: flat + + + .. py:attribute:: floating + + + .. py:attribute:: height + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: prominent + + + .. py:attribute:: short + + + .. py:attribute:: src + + + .. py:attribute:: tag + + + .. py:attribute:: tile + + + .. py:attribute:: width + + diff --git a/docs/autoapi/ipyvuetify/generated/ToolbarItems/index.rst b/docs/autoapi/ipyvuetify/generated/ToolbarItems/index.rst new file mode 100644 index 00000000..50911205 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ToolbarItems/index.rst @@ -0,0 +1,32 @@ +ipyvuetify.generated.ToolbarItems +================================= + +.. py:module:: ipyvuetify.generated.ToolbarItems + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ToolbarItems.ToolbarItems + + +Module Contents +--------------- + +.. py:class:: ToolbarItems(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + diff --git a/docs/autoapi/ipyvuetify/generated/ToolbarTitle/index.rst b/docs/autoapi/ipyvuetify/generated/ToolbarTitle/index.rst new file mode 100644 index 00000000..86721d5f --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/ToolbarTitle/index.rst @@ -0,0 +1,32 @@ +ipyvuetify.generated.ToolbarTitle +================================= + +.. py:module:: ipyvuetify.generated.ToolbarTitle + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.ToolbarTitle.ToolbarTitle + + +Module Contents +--------------- + +.. py:class:: ToolbarTitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + diff --git a/docs/autoapi/ipyvuetify/generated/Tooltip/index.rst b/docs/autoapi/ipyvuetify/generated/Tooltip/index.rst new file mode 100644 index 00000000..72a2b702 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Tooltip/index.rst @@ -0,0 +1,134 @@ +ipyvuetify.generated.Tooltip +============================ + +.. py:module:: ipyvuetify.generated.Tooltip + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Tooltip.Tooltip + + +Module Contents +--------------- + +.. py:class:: Tooltip(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: activator + + + .. py:attribute:: allow_overflow + + + .. py:attribute:: attach + + + .. py:attribute:: bottom + + + .. py:attribute:: close_delay + + + .. py:attribute:: color + + + .. py:attribute:: content_class + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: fixed + + + .. py:attribute:: internal_activator + + + .. py:attribute:: left + + + .. py:attribute:: light + + + .. py:attribute:: max_width + + + .. py:attribute:: min_width + + + .. py:attribute:: nudge_bottom + + + .. py:attribute:: nudge_left + + + .. py:attribute:: nudge_right + + + .. py:attribute:: nudge_top + + + .. py:attribute:: nudge_width + + + .. py:attribute:: offset_overflow + + + .. py:attribute:: open_delay + + + .. py:attribute:: open_on_click + + + .. py:attribute:: open_on_hover + + + .. py:attribute:: position_x + + + .. py:attribute:: position_y + + + .. py:attribute:: right + + + .. py:attribute:: tag + + + .. py:attribute:: top + + + .. py:attribute:: transition + + + .. py:attribute:: value + + + .. py:attribute:: z_index + + diff --git a/docs/autoapi/ipyvuetify/generated/Treeview/index.rst b/docs/autoapi/ipyvuetify/generated/Treeview/index.rst new file mode 100644 index 00000000..3be16647 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Treeview/index.rst @@ -0,0 +1,125 @@ +ipyvuetify.generated.Treeview +============================= + +.. py:module:: ipyvuetify.generated.Treeview + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Treeview.Treeview + + +Module Contents +--------------- + +.. py:class:: Treeview(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: activatable + + + .. py:attribute:: active + + + .. py:attribute:: active_class + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: expand_icon + + + .. py:attribute:: hoverable + + + .. py:attribute:: indeterminate_icon + + + .. py:attribute:: item_children + + + .. py:attribute:: item_disabled + + + .. py:attribute:: item_key + + + .. py:attribute:: item_text + + + .. py:attribute:: items + + + .. py:attribute:: light + + + .. py:attribute:: loading_icon + + + .. py:attribute:: multiple_active + + + .. py:attribute:: off_icon + + + .. py:attribute:: on_icon + + + .. py:attribute:: open_ + + + .. py:attribute:: open_all + + + .. py:attribute:: open_on_click + + + .. py:attribute:: return_object + + + .. py:attribute:: rounded + + + .. py:attribute:: search + + + .. py:attribute:: selectable + + + .. py:attribute:: selected_color + + + .. py:attribute:: selection_type + + + .. py:attribute:: shaped + + + .. py:attribute:: transition + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/TreeviewNode/index.rst b/docs/autoapi/ipyvuetify/generated/TreeviewNode/index.rst new file mode 100644 index 00000000..1a5d9fe0 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/TreeviewNode/index.rst @@ -0,0 +1,92 @@ +ipyvuetify.generated.TreeviewNode +================================= + +.. py:module:: ipyvuetify.generated.TreeviewNode + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.TreeviewNode.TreeviewNode + + +Module Contents +--------------- + +.. py:class:: TreeviewNode(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: activatable + + + .. py:attribute:: active_class + + + .. py:attribute:: color + + + .. py:attribute:: expand_icon + + + .. py:attribute:: indeterminate_icon + + + .. py:attribute:: item + + + .. py:attribute:: item_children + + + .. py:attribute:: item_disabled + + + .. py:attribute:: item_key + + + .. py:attribute:: item_text + + + .. py:attribute:: level + + + .. py:attribute:: loading_icon + + + .. py:attribute:: off_icon + + + .. py:attribute:: on_icon + + + .. py:attribute:: open_on_click + + + .. py:attribute:: rounded + + + .. py:attribute:: selectable + + + .. py:attribute:: selected_color + + + .. py:attribute:: shaped + + + .. py:attribute:: transition + + diff --git a/docs/autoapi/ipyvuetify/generated/VirtualTable/index.rst b/docs/autoapi/ipyvuetify/generated/VirtualTable/index.rst new file mode 100644 index 00000000..81c944c7 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/VirtualTable/index.rst @@ -0,0 +1,59 @@ +ipyvuetify.generated.VirtualTable +================================= + +.. py:module:: ipyvuetify.generated.VirtualTable + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.VirtualTable.VirtualTable + + +Module Contents +--------------- + +.. py:class:: VirtualTable(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: chunk_size + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: fixed_header + + + .. py:attribute:: header_height + + + .. py:attribute:: height + + + .. py:attribute:: items + + + .. py:attribute:: light + + + .. py:attribute:: row_height + + diff --git a/docs/autoapi/ipyvuetify/generated/VuetifyWidget/index.rst b/docs/autoapi/ipyvuetify/generated/VuetifyWidget/index.rst new file mode 100644 index 00000000..96a22845 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/VuetifyWidget/index.rst @@ -0,0 +1,32 @@ +ipyvuetify.generated.VuetifyWidget +================================== + +.. py:module:: ipyvuetify.generated.VuetifyWidget + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.VuetifyWidget.VuetifyWidget + + +Module Contents +--------------- + +.. py:class:: VuetifyWidget(**kwargs) + + Bases: :py:obj:`ipyvue.VueWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + diff --git a/docs/autoapi/ipyvuetify/generated/Window/index.rst b/docs/autoapi/ipyvuetify/generated/Window/index.rst new file mode 100644 index 00000000..4479cf23 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/Window/index.rst @@ -0,0 +1,80 @@ +ipyvuetify.generated.Window +=========================== + +.. py:module:: ipyvuetify.generated.Window + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Window.Window + + +Module Contents +--------------- + +.. py:class:: Window(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: continuous + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: multiple + + + .. py:attribute:: next_icon + + + .. py:attribute:: prev_icon + + + .. py:attribute:: reverse + + + .. py:attribute:: show_arrows + + + .. py:attribute:: show_arrows_on_hover + + + .. py:attribute:: touch + + + .. py:attribute:: touchless + + + .. py:attribute:: value + + + .. py:attribute:: vertical + + diff --git a/docs/autoapi/ipyvuetify/generated/WindowItem/index.rst b/docs/autoapi/ipyvuetify/generated/WindowItem/index.rst new file mode 100644 index 00000000..b3d56d89 --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/WindowItem/index.rst @@ -0,0 +1,50 @@ +ipyvuetify.generated.WindowItem +=============================== + +.. py:module:: ipyvuetify.generated.WindowItem + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.WindowItem.WindowItem + + +Module Contents +--------------- + +.. py:class:: WindowItem(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: reverse_transition + + + .. py:attribute:: transition + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/generated/index.rst b/docs/autoapi/ipyvuetify/generated/index.rst new file mode 100644 index 00000000..053f55cc --- /dev/null +++ b/docs/autoapi/ipyvuetify/generated/index.rst @@ -0,0 +1,11222 @@ +ipyvuetify.generated +==================== + +.. py:module:: ipyvuetify.generated + + +Submodules +---------- + +.. toctree:: + :maxdepth: 1 + + /autoapi/ipyvuetify/generated/Alert/index + /autoapi/ipyvuetify/generated/App/index + /autoapi/ipyvuetify/generated/AppBar/index + /autoapi/ipyvuetify/generated/AppBarNavIcon/index + /autoapi/ipyvuetify/generated/Autocomplete/index + /autoapi/ipyvuetify/generated/Avatar/index + /autoapi/ipyvuetify/generated/Badge/index + /autoapi/ipyvuetify/generated/Banner/index + /autoapi/ipyvuetify/generated/BottomNavigation/index + /autoapi/ipyvuetify/generated/BottomSheet/index + /autoapi/ipyvuetify/generated/Breadcrumbs/index + /autoapi/ipyvuetify/generated/BreadcrumbsDivider/index + /autoapi/ipyvuetify/generated/BreadcrumbsItem/index + /autoapi/ipyvuetify/generated/Btn/index + /autoapi/ipyvuetify/generated/BtnToggle/index + /autoapi/ipyvuetify/generated/Calendar/index + /autoapi/ipyvuetify/generated/CalendarDaily/index + /autoapi/ipyvuetify/generated/CalendarMonthly/index + /autoapi/ipyvuetify/generated/CalendarWeekly/index + /autoapi/ipyvuetify/generated/Card/index + /autoapi/ipyvuetify/generated/CardActions/index + /autoapi/ipyvuetify/generated/CardSubtitle/index + /autoapi/ipyvuetify/generated/CardText/index + /autoapi/ipyvuetify/generated/CardTitle/index + /autoapi/ipyvuetify/generated/Carousel/index + /autoapi/ipyvuetify/generated/CarouselItem/index + /autoapi/ipyvuetify/generated/CarouselReverseTransition/index + /autoapi/ipyvuetify/generated/CarouselTransition/index + /autoapi/ipyvuetify/generated/Checkbox/index + /autoapi/ipyvuetify/generated/Chip/index + /autoapi/ipyvuetify/generated/ChipGroup/index + /autoapi/ipyvuetify/generated/Col/index + /autoapi/ipyvuetify/generated/ColorPicker/index + /autoapi/ipyvuetify/generated/ColorPickerCanvas/index + /autoapi/ipyvuetify/generated/ColorPickerSwatches/index + /autoapi/ipyvuetify/generated/Combobox/index + /autoapi/ipyvuetify/generated/Container/index + /autoapi/ipyvuetify/generated/Content/index + /autoapi/ipyvuetify/generated/Counter/index + /autoapi/ipyvuetify/generated/Data/index + /autoapi/ipyvuetify/generated/DataFooter/index + /autoapi/ipyvuetify/generated/DataIterator/index + /autoapi/ipyvuetify/generated/DataTable/index + /autoapi/ipyvuetify/generated/DataTableHeader/index + /autoapi/ipyvuetify/generated/DatePicker/index + /autoapi/ipyvuetify/generated/DatePickerDateTable/index + /autoapi/ipyvuetify/generated/DatePickerHeader/index + /autoapi/ipyvuetify/generated/DatePickerMonthTable/index + /autoapi/ipyvuetify/generated/DatePickerTitle/index + /autoapi/ipyvuetify/generated/DatePickerYears/index + /autoapi/ipyvuetify/generated/Dialog/index + /autoapi/ipyvuetify/generated/DialogBottomTransition/index + /autoapi/ipyvuetify/generated/DialogTransition/index + /autoapi/ipyvuetify/generated/Divider/index + /autoapi/ipyvuetify/generated/EditDialog/index + /autoapi/ipyvuetify/generated/ExpandTransition/index + /autoapi/ipyvuetify/generated/ExpandXTransition/index + /autoapi/ipyvuetify/generated/ExpansionPanel/index + /autoapi/ipyvuetify/generated/ExpansionPanelContent/index + /autoapi/ipyvuetify/generated/ExpansionPanelHeader/index + /autoapi/ipyvuetify/generated/ExpansionPanels/index + /autoapi/ipyvuetify/generated/FabTransition/index + /autoapi/ipyvuetify/generated/FadeTransition/index + /autoapi/ipyvuetify/generated/FileInput/index + /autoapi/ipyvuetify/generated/Flex/index + /autoapi/ipyvuetify/generated/Footer/index + /autoapi/ipyvuetify/generated/Form/index + /autoapi/ipyvuetify/generated/Hover/index + /autoapi/ipyvuetify/generated/Icon/index + /autoapi/ipyvuetify/generated/Img/index + /autoapi/ipyvuetify/generated/Input/index + /autoapi/ipyvuetify/generated/Item/index + /autoapi/ipyvuetify/generated/ItemGroup/index + /autoapi/ipyvuetify/generated/Label/index + /autoapi/ipyvuetify/generated/Layout/index + /autoapi/ipyvuetify/generated/Lazy/index + /autoapi/ipyvuetify/generated/List/index + /autoapi/ipyvuetify/generated/ListGroup/index + /autoapi/ipyvuetify/generated/ListItem/index + /autoapi/ipyvuetify/generated/ListItemAction/index + /autoapi/ipyvuetify/generated/ListItemActionText/index + /autoapi/ipyvuetify/generated/ListItemAvatar/index + /autoapi/ipyvuetify/generated/ListItemContent/index + /autoapi/ipyvuetify/generated/ListItemGroup/index + /autoapi/ipyvuetify/generated/ListItemIcon/index + /autoapi/ipyvuetify/generated/ListItemSubtitle/index + /autoapi/ipyvuetify/generated/ListItemTitle/index + /autoapi/ipyvuetify/generated/Menu/index + /autoapi/ipyvuetify/generated/MenuTransition/index + /autoapi/ipyvuetify/generated/Messages/index + /autoapi/ipyvuetify/generated/NavigationDrawer/index + /autoapi/ipyvuetify/generated/OverflowBtn/index + /autoapi/ipyvuetify/generated/Overlay/index + /autoapi/ipyvuetify/generated/Pagination/index + /autoapi/ipyvuetify/generated/Parallax/index + /autoapi/ipyvuetify/generated/Picker/index + /autoapi/ipyvuetify/generated/ProgressCircular/index + /autoapi/ipyvuetify/generated/ProgressLinear/index + /autoapi/ipyvuetify/generated/Radio/index + /autoapi/ipyvuetify/generated/RadioGroup/index + /autoapi/ipyvuetify/generated/RangeSlider/index + /autoapi/ipyvuetify/generated/Rating/index + /autoapi/ipyvuetify/generated/Responsive/index + /autoapi/ipyvuetify/generated/Row/index + /autoapi/ipyvuetify/generated/ScaleTransition/index + /autoapi/ipyvuetify/generated/ScrollXReverseTransition/index + /autoapi/ipyvuetify/generated/ScrollXTransition/index + /autoapi/ipyvuetify/generated/ScrollYReverseTransition/index + /autoapi/ipyvuetify/generated/ScrollYTransition/index + /autoapi/ipyvuetify/generated/Select/index + /autoapi/ipyvuetify/generated/Sheet/index + /autoapi/ipyvuetify/generated/SimpleCheckbox/index + /autoapi/ipyvuetify/generated/SimpleTable/index + /autoapi/ipyvuetify/generated/SkeletonLoader/index + /autoapi/ipyvuetify/generated/SlideGroup/index + /autoapi/ipyvuetify/generated/SlideItem/index + /autoapi/ipyvuetify/generated/SlideXReverseTransition/index + /autoapi/ipyvuetify/generated/SlideXTransition/index + /autoapi/ipyvuetify/generated/SlideYReverseTransition/index + /autoapi/ipyvuetify/generated/SlideYTransition/index + /autoapi/ipyvuetify/generated/Slider/index + /autoapi/ipyvuetify/generated/Snackbar/index + /autoapi/ipyvuetify/generated/Spacer/index + /autoapi/ipyvuetify/generated/Sparkline/index + /autoapi/ipyvuetify/generated/SpeedDial/index + /autoapi/ipyvuetify/generated/Stepper/index + /autoapi/ipyvuetify/generated/StepperContent/index + /autoapi/ipyvuetify/generated/StepperHeader/index + /autoapi/ipyvuetify/generated/StepperItems/index + /autoapi/ipyvuetify/generated/StepperStep/index + /autoapi/ipyvuetify/generated/Subheader/index + /autoapi/ipyvuetify/generated/Switch/index + /autoapi/ipyvuetify/generated/SystemBar/index + /autoapi/ipyvuetify/generated/Tab/index + /autoapi/ipyvuetify/generated/TabItem/index + /autoapi/ipyvuetify/generated/TabReverseTransition/index + /autoapi/ipyvuetify/generated/TabTransition/index + /autoapi/ipyvuetify/generated/TableOverflow/index + /autoapi/ipyvuetify/generated/Tabs/index + /autoapi/ipyvuetify/generated/TabsItems/index + /autoapi/ipyvuetify/generated/TabsSlider/index + /autoapi/ipyvuetify/generated/Text/index + /autoapi/ipyvuetify/generated/TextField/index + /autoapi/ipyvuetify/generated/Textarea/index + /autoapi/ipyvuetify/generated/ThemeProvider/index + /autoapi/ipyvuetify/generated/TimePicker/index + /autoapi/ipyvuetify/generated/TimePickerClock/index + /autoapi/ipyvuetify/generated/TimePickerTitle/index + /autoapi/ipyvuetify/generated/Timeline/index + /autoapi/ipyvuetify/generated/TimelineItem/index + /autoapi/ipyvuetify/generated/Toolbar/index + /autoapi/ipyvuetify/generated/ToolbarItems/index + /autoapi/ipyvuetify/generated/ToolbarTitle/index + /autoapi/ipyvuetify/generated/Tooltip/index + /autoapi/ipyvuetify/generated/Treeview/index + /autoapi/ipyvuetify/generated/TreeviewNode/index + /autoapi/ipyvuetify/generated/VirtualTable/index + /autoapi/ipyvuetify/generated/VuetifyWidget/index + /autoapi/ipyvuetify/generated/Window/index + /autoapi/ipyvuetify/generated/WindowItem/index + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.generated.Alert + ipyvuetify.generated.App + ipyvuetify.generated.AppBar + ipyvuetify.generated.AppBarNavIcon + ipyvuetify.generated.Autocomplete + ipyvuetify.generated.Avatar + ipyvuetify.generated.Badge + ipyvuetify.generated.Banner + ipyvuetify.generated.BottomNavigation + ipyvuetify.generated.BottomSheet + ipyvuetify.generated.Breadcrumbs + ipyvuetify.generated.BreadcrumbsDivider + ipyvuetify.generated.BreadcrumbsItem + ipyvuetify.generated.Btn + ipyvuetify.generated.BtnToggle + ipyvuetify.generated.Calendar + ipyvuetify.generated.CalendarDaily + ipyvuetify.generated.CalendarMonthly + ipyvuetify.generated.CalendarWeekly + ipyvuetify.generated.Card + ipyvuetify.generated.CardActions + ipyvuetify.generated.CardSubtitle + ipyvuetify.generated.CardText + ipyvuetify.generated.CardTitle + ipyvuetify.generated.Carousel + ipyvuetify.generated.CarouselItem + ipyvuetify.generated.CarouselReverseTransition + ipyvuetify.generated.CarouselTransition + ipyvuetify.generated.Checkbox + ipyvuetify.generated.Chip + ipyvuetify.generated.ChipGroup + ipyvuetify.generated.Col + ipyvuetify.generated.ColorPicker + ipyvuetify.generated.ColorPickerCanvas + ipyvuetify.generated.ColorPickerSwatches + ipyvuetify.generated.Combobox + ipyvuetify.generated.Container + ipyvuetify.generated.Content + ipyvuetify.generated.Counter + ipyvuetify.generated.Data + ipyvuetify.generated.DataFooter + ipyvuetify.generated.DataIterator + ipyvuetify.generated.DataTable + ipyvuetify.generated.DataTableHeader + ipyvuetify.generated.DatePicker + ipyvuetify.generated.DatePickerDateTable + ipyvuetify.generated.DatePickerHeader + ipyvuetify.generated.DatePickerMonthTable + ipyvuetify.generated.DatePickerTitle + ipyvuetify.generated.DatePickerYears + ipyvuetify.generated.Dialog + ipyvuetify.generated.DialogBottomTransition + ipyvuetify.generated.DialogTransition + ipyvuetify.generated.Divider + ipyvuetify.generated.EditDialog + ipyvuetify.generated.ExpandTransition + ipyvuetify.generated.ExpandXTransition + ipyvuetify.generated.ExpansionPanel + ipyvuetify.generated.ExpansionPanelContent + ipyvuetify.generated.ExpansionPanelHeader + ipyvuetify.generated.ExpansionPanels + ipyvuetify.generated.FabTransition + ipyvuetify.generated.FadeTransition + ipyvuetify.generated.FileInput + ipyvuetify.generated.Flex + ipyvuetify.generated.Footer + ipyvuetify.generated.Form + ipyvuetify.generated.Hover + ipyvuetify.generated.Icon + ipyvuetify.generated.Img + ipyvuetify.generated.Input + ipyvuetify.generated.Item + ipyvuetify.generated.ItemGroup + ipyvuetify.generated.Label + ipyvuetify.generated.Layout + ipyvuetify.generated.Lazy + ipyvuetify.generated.List + ipyvuetify.generated.ListGroup + ipyvuetify.generated.ListItem + ipyvuetify.generated.ListItemAction + ipyvuetify.generated.ListItemActionText + ipyvuetify.generated.ListItemAvatar + ipyvuetify.generated.ListItemContent + ipyvuetify.generated.ListItemGroup + ipyvuetify.generated.ListItemIcon + ipyvuetify.generated.ListItemSubtitle + ipyvuetify.generated.ListItemTitle + ipyvuetify.generated.Menu + ipyvuetify.generated.MenuTransition + ipyvuetify.generated.Messages + ipyvuetify.generated.NavigationDrawer + ipyvuetify.generated.OverflowBtn + ipyvuetify.generated.Overlay + ipyvuetify.generated.Pagination + ipyvuetify.generated.Parallax + ipyvuetify.generated.Picker + ipyvuetify.generated.ProgressCircular + ipyvuetify.generated.ProgressLinear + ipyvuetify.generated.Radio + ipyvuetify.generated.RadioGroup + ipyvuetify.generated.RangeSlider + ipyvuetify.generated.Rating + ipyvuetify.generated.Responsive + ipyvuetify.generated.Row + ipyvuetify.generated.ScaleTransition + ipyvuetify.generated.ScrollXReverseTransition + ipyvuetify.generated.ScrollXTransition + ipyvuetify.generated.ScrollYReverseTransition + ipyvuetify.generated.ScrollYTransition + ipyvuetify.generated.Select + ipyvuetify.generated.Sheet + ipyvuetify.generated.SimpleCheckbox + ipyvuetify.generated.SimpleTable + ipyvuetify.generated.SkeletonLoader + ipyvuetify.generated.SlideGroup + ipyvuetify.generated.SlideItem + ipyvuetify.generated.SlideXReverseTransition + ipyvuetify.generated.SlideXTransition + ipyvuetify.generated.SlideYReverseTransition + ipyvuetify.generated.SlideYTransition + ipyvuetify.generated.Slider + ipyvuetify.generated.Snackbar + ipyvuetify.generated.Spacer + ipyvuetify.generated.Sparkline + ipyvuetify.generated.SpeedDial + ipyvuetify.generated.Stepper + ipyvuetify.generated.StepperContent + ipyvuetify.generated.StepperHeader + ipyvuetify.generated.StepperItems + ipyvuetify.generated.StepperStep + ipyvuetify.generated.Subheader + ipyvuetify.generated.Switch + ipyvuetify.generated.SystemBar + ipyvuetify.generated.Tab + ipyvuetify.generated.TabItem + ipyvuetify.generated.TabReverseTransition + ipyvuetify.generated.TabTransition + ipyvuetify.generated.TableOverflow + ipyvuetify.generated.Tabs + ipyvuetify.generated.TabsItems + ipyvuetify.generated.TabsSlider + ipyvuetify.generated.Text + ipyvuetify.generated.TextField + ipyvuetify.generated.Textarea + ipyvuetify.generated.ThemeProvider + ipyvuetify.generated.TimePicker + ipyvuetify.generated.TimePickerClock + ipyvuetify.generated.TimePickerTitle + ipyvuetify.generated.Timeline + ipyvuetify.generated.TimelineItem + ipyvuetify.generated.Toolbar + ipyvuetify.generated.ToolbarItems + ipyvuetify.generated.ToolbarTitle + ipyvuetify.generated.Tooltip + ipyvuetify.generated.Treeview + ipyvuetify.generated.TreeviewNode + ipyvuetify.generated.VirtualTable + ipyvuetify.generated.VuetifyWidget + ipyvuetify.generated.Window + ipyvuetify.generated.WindowItem + + +Package Contents +---------------- + +.. py:class:: Alert(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: border + + + .. py:attribute:: close_label + + + .. py:attribute:: color + + + .. py:attribute:: colored_border + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: dismissible + + + .. py:attribute:: elevation + + + .. py:attribute:: height + + + .. py:attribute:: icon + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + + .. py:attribute:: outlined + + + .. py:attribute:: prominent + + + .. py:attribute:: tag + + + .. py:attribute:: text + + + .. py:attribute:: tile + + + .. py:attribute:: transition + + + .. py:attribute:: type + + + .. py:attribute:: value + + + .. py:attribute:: width + + +.. py:class:: App(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: id + + + .. py:attribute:: light + + +.. py:class:: AppBar(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: app + + + .. py:attribute:: bottom + + + .. py:attribute:: clipped_left + + + .. py:attribute:: clipped_right + + + .. py:attribute:: collapse + + + .. py:attribute:: collapse_on_scroll + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: elevate_on_scroll + + + .. py:attribute:: elevation + + + .. py:attribute:: extended + + + .. py:attribute:: extension_height + + + .. py:attribute:: fade_img_on_scroll + + + .. py:attribute:: fixed + + + .. py:attribute:: flat + + + .. py:attribute:: floating + + + .. py:attribute:: height + + + .. py:attribute:: hide_on_scroll + + + .. py:attribute:: inverted_scroll + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: prominent + + + .. py:attribute:: scroll_off_screen + + + .. py:attribute:: scroll_target + + + .. py:attribute:: scroll_threshold + + + .. py:attribute:: short + + + .. py:attribute:: shrink_on_scroll + + + .. py:attribute:: src + + + .. py:attribute:: tag + + + .. py:attribute:: tile + + + .. py:attribute:: value + + + .. py:attribute:: width + + +.. py:class:: AppBarNavIcon(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: Autocomplete(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: allow_overflow + + + .. py:attribute:: append_icon + + + .. py:attribute:: append_outer_icon + + + .. py:attribute:: attach + + + .. py:attribute:: auto_select_first + + + .. py:attribute:: autofocus + + + .. py:attribute:: background_color + + + .. py:attribute:: cache_items + + + .. py:attribute:: chips + + + .. py:attribute:: clear_icon + + + .. py:attribute:: clearable + + + .. py:attribute:: color + + + .. py:attribute:: counter + + + .. py:attribute:: dark + + + .. py:attribute:: deletable_chips + + + .. py:attribute:: dense + + + .. py:attribute:: disable_lookup + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: filled + + + .. py:attribute:: flat + + + .. py:attribute:: full_width + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hide_no_data + + + .. py:attribute:: hide_selected + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: item_color + + + .. py:attribute:: item_disabled + + + .. py:attribute:: item_text + + + .. py:attribute:: item_value + + + .. py:attribute:: items + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: menu_props + + + .. py:attribute:: messages + + + .. py:attribute:: multiple + + + .. py:attribute:: no_data_text + + + .. py:attribute:: no_filter + + + .. py:attribute:: open_on_clear + + + .. py:attribute:: outlined + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: placeholder + + + .. py:attribute:: prefix + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: prepend_inner_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: return_object + + + .. py:attribute:: reverse + + + .. py:attribute:: rounded + + + .. py:attribute:: rules + + + .. py:attribute:: search_input + + + .. py:attribute:: shaped + + + .. py:attribute:: single_line + + + .. py:attribute:: small_chips + + + .. py:attribute:: solo + + + .. py:attribute:: solo_inverted + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: suffix + + + .. py:attribute:: type + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + +.. py:class:: Avatar(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: height + + + .. py:attribute:: left + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: right + + + .. py:attribute:: size + + + .. py:attribute:: tile + + + .. py:attribute:: width + + +.. py:class:: Badge(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: avatar + + + .. py:attribute:: bordered + + + .. py:attribute:: bottom + + + .. py:attribute:: color + + + .. py:attribute:: content + + + .. py:attribute:: dark + + + .. py:attribute:: dot + + + .. py:attribute:: icon + + + .. py:attribute:: inline + + + .. py:attribute:: label + + + .. py:attribute:: left + + + .. py:attribute:: light + + + .. py:attribute:: mode + + + .. py:attribute:: offset_x + + + .. py:attribute:: offset_y + + + .. py:attribute:: origin + + + .. py:attribute:: overlap + + + .. py:attribute:: tile + + + .. py:attribute:: transition + + + .. py:attribute:: value + + +.. py:class:: Banner(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: app + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: elevation + + + .. py:attribute:: height + + + .. py:attribute:: icon + + + .. py:attribute:: icon_color + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: mobile_break_point + + + .. py:attribute:: single_line + + + .. py:attribute:: sticky + + + .. py:attribute:: tag + + + .. py:attribute:: tile + + + .. py:attribute:: value + + + .. py:attribute:: width + + +.. py:class:: BottomNavigation(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: active_class + + + .. py:attribute:: app + + + .. py:attribute:: background_color + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: fixed + + + .. py:attribute:: grow + + + .. py:attribute:: height + + + .. py:attribute:: hide_on_scroll + + + .. py:attribute:: horizontal + + + .. py:attribute:: input_value + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: scroll_target + + + .. py:attribute:: scroll_threshold + + + .. py:attribute:: shift + + + .. py:attribute:: value + + + .. py:attribute:: width + + +.. py:class:: BottomSheet(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: activator + + + .. py:attribute:: attach + + + .. py:attribute:: close_delay + + + .. py:attribute:: content_class + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: fullscreen + + + .. py:attribute:: hide_overlay + + + .. py:attribute:: inset + + + .. py:attribute:: internal_activator + + + .. py:attribute:: light + + + .. py:attribute:: max_width + + + .. py:attribute:: no_click_animation + + + .. py:attribute:: open_delay + + + .. py:attribute:: open_on_hover + + + .. py:attribute:: origin + + + .. py:attribute:: overlay_color + + + .. py:attribute:: overlay_opacity + + + .. py:attribute:: persistent + + + .. py:attribute:: retain_focus + + + .. py:attribute:: return_value + + + .. py:attribute:: scrollable + + + .. py:attribute:: transition + + + .. py:attribute:: value + + + .. py:attribute:: width + + +.. py:class:: Breadcrumbs(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: divider + + + .. py:attribute:: items + + + .. py:attribute:: large + + + .. py:attribute:: light + + +.. py:class:: BreadcrumbsDivider(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: BreadcrumbsItem(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: append + + + .. py:attribute:: disabled + + + .. py:attribute:: exact + + + .. py:attribute:: exact_active_class + + + .. py:attribute:: href + + + .. py:attribute:: link + + + .. py:attribute:: nuxt + + + .. py:attribute:: replace + + + .. py:attribute:: ripple + + + .. py:attribute:: tag + + + .. py:attribute:: target + + + .. py:attribute:: to + + +.. py:class:: Btn(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: active_class + + + .. py:attribute:: append + + + .. py:attribute:: block + + + .. py:attribute:: bottom + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: depressed + + + .. py:attribute:: disabled + + + .. py:attribute:: elevation + + + .. py:attribute:: exact + + + .. py:attribute:: exact_active_class + + + .. py:attribute:: fab + + + .. py:attribute:: fixed + + + .. py:attribute:: height + + + .. py:attribute:: href + + + .. py:attribute:: icon + + + .. py:attribute:: input_value + + + .. py:attribute:: large + + + .. py:attribute:: left + + + .. py:attribute:: light + + + .. py:attribute:: link + + + .. py:attribute:: loading + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: nuxt + + + .. py:attribute:: outlined + + + .. py:attribute:: replace + + + .. py:attribute:: retain_focus_on_click + + + .. py:attribute:: right + + + .. py:attribute:: ripple + + + .. py:attribute:: rounded + + + .. py:attribute:: small + + + .. py:attribute:: tag + + + .. py:attribute:: target + + + .. py:attribute:: text + + + .. py:attribute:: tile + + + .. py:attribute:: to + + + .. py:attribute:: top + + + .. py:attribute:: type + + + .. py:attribute:: value + + + .. py:attribute:: width + + + .. py:attribute:: x_large + + + .. py:attribute:: x_small + + +.. py:class:: BtnToggle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: background_color + + + .. py:attribute:: borderless + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: group + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: multiple + + + .. py:attribute:: rounded + + + .. py:attribute:: shaped + + + .. py:attribute:: tile + + + .. py:attribute:: value + + +.. py:class:: Calendar(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: end + + + .. py:attribute:: event_color + + + .. py:attribute:: event_end + + + .. py:attribute:: event_height + + + .. py:attribute:: event_margin_bottom + + + .. py:attribute:: event_more + + + .. py:attribute:: event_more_text + + + .. py:attribute:: event_name + + + .. py:attribute:: event_overlap_mode + + + .. py:attribute:: event_overlap_threshold + + + .. py:attribute:: event_ripple + + + .. py:attribute:: event_start + + + .. py:attribute:: event_text_color + + + .. py:attribute:: events + + + .. py:attribute:: first_interval + + + .. py:attribute:: hide_header + + + .. py:attribute:: interval_count + + + .. py:attribute:: interval_height + + + .. py:attribute:: interval_minutes + + + .. py:attribute:: interval_width + + + .. py:attribute:: light + + + .. py:attribute:: locale + + + .. py:attribute:: max_days + + + .. py:attribute:: min_weeks + + + .. py:attribute:: now + + + .. py:attribute:: short_intervals + + + .. py:attribute:: short_months + + + .. py:attribute:: short_weekdays + + + .. py:attribute:: show_month_on_first + + + .. py:attribute:: start + + + .. py:attribute:: type + + + .. py:attribute:: value + + + .. py:attribute:: weekdays + + +.. py:class:: CalendarDaily(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: end + + + .. py:attribute:: first_interval + + + .. py:attribute:: hide_header + + + .. py:attribute:: interval_count + + + .. py:attribute:: interval_height + + + .. py:attribute:: interval_minutes + + + .. py:attribute:: interval_width + + + .. py:attribute:: light + + + .. py:attribute:: locale + + + .. py:attribute:: max_days + + + .. py:attribute:: now + + + .. py:attribute:: short_intervals + + + .. py:attribute:: short_weekdays + + + .. py:attribute:: start + + + .. py:attribute:: weekdays + + +.. py:class:: CalendarMonthly(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: end + + + .. py:attribute:: hide_header + + + .. py:attribute:: light + + + .. py:attribute:: locale + + + .. py:attribute:: min_weeks + + + .. py:attribute:: now + + + .. py:attribute:: short_months + + + .. py:attribute:: short_weekdays + + + .. py:attribute:: show_month_on_first + + + .. py:attribute:: start + + + .. py:attribute:: weekdays + + +.. py:class:: CalendarWeekly(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: end + + + .. py:attribute:: hide_header + + + .. py:attribute:: light + + + .. py:attribute:: locale + + + .. py:attribute:: min_weeks + + + .. py:attribute:: now + + + .. py:attribute:: short_months + + + .. py:attribute:: short_weekdays + + + .. py:attribute:: show_month_on_first + + + .. py:attribute:: start + + + .. py:attribute:: weekdays + + +.. py:class:: Card(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: append + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: elevation + + + .. py:attribute:: exact + + + .. py:attribute:: exact_active_class + + + .. py:attribute:: flat + + + .. py:attribute:: height + + + .. py:attribute:: hover + + + .. py:attribute:: href + + + .. py:attribute:: img + + + .. py:attribute:: light + + + .. py:attribute:: link + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: nuxt + + + .. py:attribute:: outlined + + + .. py:attribute:: raised + + + .. py:attribute:: replace + + + .. py:attribute:: ripple + + + .. py:attribute:: shaped + + + .. py:attribute:: tag + + + .. py:attribute:: target + + + .. py:attribute:: tile + + + .. py:attribute:: to + + + .. py:attribute:: width + + +.. py:class:: CardActions(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: CardSubtitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: CardText(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: CardTitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: Carousel(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: continuous + + + .. py:attribute:: cycle + + + .. py:attribute:: dark + + + .. py:attribute:: delimiter_icon + + + .. py:attribute:: height + + + .. py:attribute:: hide_delimiter_background + + + .. py:attribute:: hide_delimiters + + + .. py:attribute:: interval + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: multiple + + + .. py:attribute:: next_icon + + + .. py:attribute:: prev_icon + + + .. py:attribute:: progress + + + .. py:attribute:: progress_color + + + .. py:attribute:: reverse + + + .. py:attribute:: show_arrows + + + .. py:attribute:: show_arrows_on_hover + + + .. py:attribute:: touch + + + .. py:attribute:: touchless + + + .. py:attribute:: value + + + .. py:attribute:: vertical + + + .. py:attribute:: vertical_delimiters + + +.. py:class:: CarouselItem(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: append + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: exact + + + .. py:attribute:: exact_active_class + + + .. py:attribute:: href + + + .. py:attribute:: link + + + .. py:attribute:: nuxt + + + .. py:attribute:: replace + + + .. py:attribute:: reverse_transition + + + .. py:attribute:: ripple + + + .. py:attribute:: tag + + + .. py:attribute:: target + + + .. py:attribute:: to + + + .. py:attribute:: transition + + + .. py:attribute:: value + + +.. py:class:: CarouselReverseTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: CarouselTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: Checkbox(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: background_color + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: false_value + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: indeterminate + + + .. py:attribute:: indeterminate_icon + + + .. py:attribute:: input_value + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loading + + + .. py:attribute:: messages + + + .. py:attribute:: multiple + + + .. py:attribute:: off_icon + + + .. py:attribute:: on_icon + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: ripple + + + .. py:attribute:: rules + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: true_value + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + +.. py:class:: Chip(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active + + + .. py:attribute:: active_class + + + .. py:attribute:: append + + + .. py:attribute:: close_ + + + .. py:attribute:: close_icon + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: draggable + + + .. py:attribute:: exact + + + .. py:attribute:: exact_active_class + + + .. py:attribute:: filter + + + .. py:attribute:: filter_icon + + + .. py:attribute:: href + + + .. py:attribute:: input_value + + + .. py:attribute:: label + + + .. py:attribute:: large + + + .. py:attribute:: light + + + .. py:attribute:: link + + + .. py:attribute:: nuxt + + + .. py:attribute:: outlined + + + .. py:attribute:: pill + + + .. py:attribute:: replace + + + .. py:attribute:: ripple + + + .. py:attribute:: small + + + .. py:attribute:: tag + + + .. py:attribute:: target + + + .. py:attribute:: text_color + + + .. py:attribute:: to + + + .. py:attribute:: value + + + .. py:attribute:: x_large + + + .. py:attribute:: x_small + + +.. py:class:: ChipGroup(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: center_active + + + .. py:attribute:: color + + + .. py:attribute:: column + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: mobile_break_point + + + .. py:attribute:: multiple + + + .. py:attribute:: next_icon + + + .. py:attribute:: prev_icon + + + .. py:attribute:: show_arrows + + + .. py:attribute:: value + + +.. py:class:: Col(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: align_self + + + .. py:attribute:: cols + + + .. py:attribute:: lg + + + .. py:attribute:: md + + + .. py:attribute:: offset + + + .. py:attribute:: offset_lg + + + .. py:attribute:: offset_md + + + .. py:attribute:: offset_sm + + + .. py:attribute:: offset_xl + + + .. py:attribute:: order + + + .. py:attribute:: order_lg + + + .. py:attribute:: order_md + + + .. py:attribute:: order_sm + + + .. py:attribute:: order_xl + + + .. py:attribute:: sm + + + .. py:attribute:: tag + + + .. py:attribute:: xl + + +.. py:class:: ColorPicker(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: canvas_height + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: dot_size + + + .. py:attribute:: flat + + + .. py:attribute:: hide_canvas + + + .. py:attribute:: hide_inputs + + + .. py:attribute:: hide_mode_switch + + + .. py:attribute:: light + + + .. py:attribute:: mode + + + .. py:attribute:: show_swatches + + + .. py:attribute:: swatches + + + .. py:attribute:: swatches_max_height + + + .. py:attribute:: value + + + .. py:attribute:: width + + +.. py:class:: ColorPickerCanvas(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: disabled + + + .. py:attribute:: dot_size + + + .. py:attribute:: height + + + .. py:attribute:: width + + +.. py:class:: ColorPickerSwatches(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: swatches + + +.. py:class:: Combobox(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: allow_overflow + + + .. py:attribute:: append_icon + + + .. py:attribute:: append_outer_icon + + + .. py:attribute:: attach + + + .. py:attribute:: auto_select_first + + + .. py:attribute:: autofocus + + + .. py:attribute:: background_color + + + .. py:attribute:: cache_items + + + .. py:attribute:: chips + + + .. py:attribute:: clear_icon + + + .. py:attribute:: clearable + + + .. py:attribute:: color + + + .. py:attribute:: counter + + + .. py:attribute:: dark + + + .. py:attribute:: deletable_chips + + + .. py:attribute:: delimiters + + + .. py:attribute:: dense + + + .. py:attribute:: disable_lookup + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: filled + + + .. py:attribute:: flat + + + .. py:attribute:: full_width + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hide_no_data + + + .. py:attribute:: hide_selected + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: item_color + + + .. py:attribute:: item_disabled + + + .. py:attribute:: item_text + + + .. py:attribute:: item_value + + + .. py:attribute:: items + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: menu_props + + + .. py:attribute:: messages + + + .. py:attribute:: multiple + + + .. py:attribute:: no_data_text + + + .. py:attribute:: no_filter + + + .. py:attribute:: open_on_clear + + + .. py:attribute:: outlined + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: placeholder + + + .. py:attribute:: prefix + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: prepend_inner_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: return_object + + + .. py:attribute:: reverse + + + .. py:attribute:: rounded + + + .. py:attribute:: rules + + + .. py:attribute:: search_input + + + .. py:attribute:: shaped + + + .. py:attribute:: single_line + + + .. py:attribute:: small_chips + + + .. py:attribute:: solo + + + .. py:attribute:: solo_inverted + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: suffix + + + .. py:attribute:: type + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + +.. py:class:: Container(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: fluid + + + .. py:attribute:: id + + + .. py:attribute:: ma_0 + + + .. py:attribute:: ma_1 + + + .. py:attribute:: ma_2 + + + .. py:attribute:: ma_3 + + + .. py:attribute:: ma_4 + + + .. py:attribute:: ma_5 + + + .. py:attribute:: ma_auto + + + .. py:attribute:: mb_0 + + + .. py:attribute:: mb_1 + + + .. py:attribute:: mb_2 + + + .. py:attribute:: mb_3 + + + .. py:attribute:: mb_4 + + + .. py:attribute:: mb_5 + + + .. py:attribute:: mb_auto + + + .. py:attribute:: ml_0 + + + .. py:attribute:: ml_1 + + + .. py:attribute:: ml_2 + + + .. py:attribute:: ml_3 + + + .. py:attribute:: ml_4 + + + .. py:attribute:: ml_5 + + + .. py:attribute:: ml_auto + + + .. py:attribute:: mr_0 + + + .. py:attribute:: mr_1 + + + .. py:attribute:: mr_2 + + + .. py:attribute:: mr_3 + + + .. py:attribute:: mr_4 + + + .. py:attribute:: mr_5 + + + .. py:attribute:: mr_auto + + + .. py:attribute:: mt_0 + + + .. py:attribute:: mt_1 + + + .. py:attribute:: mt_2 + + + .. py:attribute:: mt_3 + + + .. py:attribute:: mt_4 + + + .. py:attribute:: mt_5 + + + .. py:attribute:: mt_auto + + + .. py:attribute:: mx_0 + + + .. py:attribute:: mx_1 + + + .. py:attribute:: mx_2 + + + .. py:attribute:: mx_3 + + + .. py:attribute:: mx_4 + + + .. py:attribute:: mx_5 + + + .. py:attribute:: mx_auto + + + .. py:attribute:: my_0 + + + .. py:attribute:: my_1 + + + .. py:attribute:: my_2 + + + .. py:attribute:: my_3 + + + .. py:attribute:: my_4 + + + .. py:attribute:: my_5 + + + .. py:attribute:: my_auto + + + .. py:attribute:: pa_0 + + + .. py:attribute:: pa_1 + + + .. py:attribute:: pa_2 + + + .. py:attribute:: pa_3 + + + .. py:attribute:: pa_4 + + + .. py:attribute:: pa_5 + + + .. py:attribute:: pa_auto + + + .. py:attribute:: pb_0 + + + .. py:attribute:: pb_1 + + + .. py:attribute:: pb_2 + + + .. py:attribute:: pb_3 + + + .. py:attribute:: pb_4 + + + .. py:attribute:: pb_5 + + + .. py:attribute:: pb_auto + + + .. py:attribute:: pl_0 + + + .. py:attribute:: pl_1 + + + .. py:attribute:: pl_2 + + + .. py:attribute:: pl_3 + + + .. py:attribute:: pl_4 + + + .. py:attribute:: pl_5 + + + .. py:attribute:: pl_auto + + + .. py:attribute:: pr_0 + + + .. py:attribute:: pr_1 + + + .. py:attribute:: pr_2 + + + .. py:attribute:: pr_3 + + + .. py:attribute:: pr_4 + + + .. py:attribute:: pr_5 + + + .. py:attribute:: pr_auto + + + .. py:attribute:: pt_0 + + + .. py:attribute:: pt_1 + + + .. py:attribute:: pt_2 + + + .. py:attribute:: pt_3 + + + .. py:attribute:: pt_4 + + + .. py:attribute:: pt_5 + + + .. py:attribute:: pt_auto + + + .. py:attribute:: px_0 + + + .. py:attribute:: px_1 + + + .. py:attribute:: px_2 + + + .. py:attribute:: px_3 + + + .. py:attribute:: px_4 + + + .. py:attribute:: px_5 + + + .. py:attribute:: px_auto + + + .. py:attribute:: py_0 + + + .. py:attribute:: py_1 + + + .. py:attribute:: py_2 + + + .. py:attribute:: py_3 + + + .. py:attribute:: py_4 + + + .. py:attribute:: py_5 + + + .. py:attribute:: py_auto + + + .. py:attribute:: tag + + +.. py:class:: Content(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: ma_0 + + + .. py:attribute:: ma_1 + + + .. py:attribute:: ma_2 + + + .. py:attribute:: ma_3 + + + .. py:attribute:: ma_4 + + + .. py:attribute:: ma_5 + + + .. py:attribute:: ma_auto + + + .. py:attribute:: mb_0 + + + .. py:attribute:: mb_1 + + + .. py:attribute:: mb_2 + + + .. py:attribute:: mb_3 + + + .. py:attribute:: mb_4 + + + .. py:attribute:: mb_5 + + + .. py:attribute:: mb_auto + + + .. py:attribute:: ml_0 + + + .. py:attribute:: ml_1 + + + .. py:attribute:: ml_2 + + + .. py:attribute:: ml_3 + + + .. py:attribute:: ml_4 + + + .. py:attribute:: ml_5 + + + .. py:attribute:: ml_auto + + + .. py:attribute:: mr_0 + + + .. py:attribute:: mr_1 + + + .. py:attribute:: mr_2 + + + .. py:attribute:: mr_3 + + + .. py:attribute:: mr_4 + + + .. py:attribute:: mr_5 + + + .. py:attribute:: mr_auto + + + .. py:attribute:: mt_0 + + + .. py:attribute:: mt_1 + + + .. py:attribute:: mt_2 + + + .. py:attribute:: mt_3 + + + .. py:attribute:: mt_4 + + + .. py:attribute:: mt_5 + + + .. py:attribute:: mt_auto + + + .. py:attribute:: mx_0 + + + .. py:attribute:: mx_1 + + + .. py:attribute:: mx_2 + + + .. py:attribute:: mx_3 + + + .. py:attribute:: mx_4 + + + .. py:attribute:: mx_5 + + + .. py:attribute:: mx_auto + + + .. py:attribute:: my_0 + + + .. py:attribute:: my_1 + + + .. py:attribute:: my_2 + + + .. py:attribute:: my_3 + + + .. py:attribute:: my_4 + + + .. py:attribute:: my_5 + + + .. py:attribute:: my_auto + + + .. py:attribute:: pa_0 + + + .. py:attribute:: pa_1 + + + .. py:attribute:: pa_2 + + + .. py:attribute:: pa_3 + + + .. py:attribute:: pa_4 + + + .. py:attribute:: pa_5 + + + .. py:attribute:: pa_auto + + + .. py:attribute:: pb_0 + + + .. py:attribute:: pb_1 + + + .. py:attribute:: pb_2 + + + .. py:attribute:: pb_3 + + + .. py:attribute:: pb_4 + + + .. py:attribute:: pb_5 + + + .. py:attribute:: pb_auto + + + .. py:attribute:: pl_0 + + + .. py:attribute:: pl_1 + + + .. py:attribute:: pl_2 + + + .. py:attribute:: pl_3 + + + .. py:attribute:: pl_4 + + + .. py:attribute:: pl_5 + + + .. py:attribute:: pl_auto + + + .. py:attribute:: pr_0 + + + .. py:attribute:: pr_1 + + + .. py:attribute:: pr_2 + + + .. py:attribute:: pr_3 + + + .. py:attribute:: pr_4 + + + .. py:attribute:: pr_5 + + + .. py:attribute:: pr_auto + + + .. py:attribute:: pt_0 + + + .. py:attribute:: pt_1 + + + .. py:attribute:: pt_2 + + + .. py:attribute:: pt_3 + + + .. py:attribute:: pt_4 + + + .. py:attribute:: pt_5 + + + .. py:attribute:: pt_auto + + + .. py:attribute:: px_0 + + + .. py:attribute:: px_1 + + + .. py:attribute:: px_2 + + + .. py:attribute:: px_3 + + + .. py:attribute:: px_4 + + + .. py:attribute:: px_5 + + + .. py:attribute:: px_auto + + + .. py:attribute:: py_0 + + + .. py:attribute:: py_1 + + + .. py:attribute:: py_2 + + + .. py:attribute:: py_3 + + + .. py:attribute:: py_4 + + + .. py:attribute:: py_5 + + + .. py:attribute:: py_auto + + + .. py:attribute:: tag + + +.. py:class:: Counter(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: max + + + .. py:attribute:: value + + +.. py:class:: Data(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: disable_filtering + + + .. py:attribute:: disable_pagination + + + .. py:attribute:: disable_sort + + + .. py:attribute:: group_by + + + .. py:attribute:: group_desc + + + .. py:attribute:: items + + + .. py:attribute:: items_per_page + + + .. py:attribute:: locale + + + .. py:attribute:: multi_sort + + + .. py:attribute:: must_sort + + + .. py:attribute:: options + + + .. py:attribute:: page + + + .. py:attribute:: search + + + .. py:attribute:: server_items_length + + + .. py:attribute:: sort_by + + + .. py:attribute:: sort_desc + + +.. py:class:: DataFooter(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: disable_items_per_page + + + .. py:attribute:: disable_pagination + + + .. py:attribute:: first_icon + + + .. py:attribute:: items_per_page_all_text + + + .. py:attribute:: items_per_page_options + + + .. py:attribute:: items_per_page_text + + + .. py:attribute:: last_icon + + + .. py:attribute:: next_icon + + + .. py:attribute:: options + + + .. py:attribute:: page_text + + + .. py:attribute:: pagination + + + .. py:attribute:: prev_icon + + + .. py:attribute:: show_current_page + + + .. py:attribute:: show_first_last_page + + +.. py:class:: DataIterator(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: disable_filtering + + + .. py:attribute:: disable_pagination + + + .. py:attribute:: disable_sort + + + .. py:attribute:: expanded + + + .. py:attribute:: footer_props + + + .. py:attribute:: group_by + + + .. py:attribute:: group_desc + + + .. py:attribute:: hide_default_footer + + + .. py:attribute:: item_key + + + .. py:attribute:: items + + + .. py:attribute:: items_per_page + + + .. py:attribute:: light + + + .. py:attribute:: loading + + + .. py:attribute:: loading_text + + + .. py:attribute:: locale + + + .. py:attribute:: mobile_breakpoint + + + .. py:attribute:: multi_sort + + + .. py:attribute:: must_sort + + + .. py:attribute:: no_data_text + + + .. py:attribute:: no_results_text + + + .. py:attribute:: options + + + .. py:attribute:: page + + + .. py:attribute:: search + + + .. py:attribute:: selectable_key + + + .. py:attribute:: server_items_length + + + .. py:attribute:: single_expand + + + .. py:attribute:: single_select + + + .. py:attribute:: sort_by + + + .. py:attribute:: sort_desc + + + .. py:attribute:: value + + +.. py:class:: DataTable(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: calculate_widths + + + .. py:attribute:: caption + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disable_filtering + + + .. py:attribute:: disable_pagination + + + .. py:attribute:: disable_sort + + + .. py:attribute:: expand_icon + + + .. py:attribute:: expanded + + + .. py:attribute:: fixed_header + + + .. py:attribute:: footer_props + + + .. py:attribute:: group_by + + + .. py:attribute:: group_desc + + + .. py:attribute:: header_props + + + .. py:attribute:: headers + + + .. py:attribute:: headers_length + + + .. py:attribute:: height + + + .. py:attribute:: hide_default_footer + + + .. py:attribute:: hide_default_header + + + .. py:attribute:: item_key + + + .. py:attribute:: items + + + .. py:attribute:: items_per_page + + + .. py:attribute:: light + + + .. py:attribute:: loading + + + .. py:attribute:: loading_text + + + .. py:attribute:: locale + + + .. py:attribute:: mobile_breakpoint + + + .. py:attribute:: multi_sort + + + .. py:attribute:: must_sort + + + .. py:attribute:: no_data_text + + + .. py:attribute:: no_results_text + + + .. py:attribute:: options + + + .. py:attribute:: page + + + .. py:attribute:: search + + + .. py:attribute:: selectable_key + + + .. py:attribute:: server_items_length + + + .. py:attribute:: show_expand + + + .. py:attribute:: show_group_by + + + .. py:attribute:: show_select + + + .. py:attribute:: single_expand + + + .. py:attribute:: single_select + + + .. py:attribute:: sort_by + + + .. py:attribute:: sort_desc + + + .. py:attribute:: value + + +.. py:class:: DataTableHeader(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: mobile + + +.. py:class:: DatePicker(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: event_color + + + .. py:attribute:: events + + + .. py:attribute:: first_day_of_week + + + .. py:attribute:: full_width + + + .. py:attribute:: header_color + + + .. py:attribute:: landscape + + + .. py:attribute:: light + + + .. py:attribute:: locale + + + .. py:attribute:: locale_first_day_of_year + + + .. py:attribute:: max + + + .. py:attribute:: min + + + .. py:attribute:: multiple + + + .. py:attribute:: next_icon + + + .. py:attribute:: no_title + + + .. py:attribute:: picker_date + + + .. py:attribute:: prev_icon + + + .. py:attribute:: range + + + .. py:attribute:: reactive + + + .. py:attribute:: readonly + + + .. py:attribute:: scrollable + + + .. py:attribute:: selected_items_text + + + .. py:attribute:: show_current + + + .. py:attribute:: show_week + + + .. py:attribute:: type + + + .. py:attribute:: value + + + .. py:attribute:: width + + + .. py:attribute:: year_icon + + +.. py:class:: DatePickerDateTable(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: current + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: event_color + + + .. py:attribute:: events + + + .. py:attribute:: first_day_of_week + + + .. py:attribute:: light + + + .. py:attribute:: locale + + + .. py:attribute:: locale_first_day_of_year + + + .. py:attribute:: max + + + .. py:attribute:: min + + + .. py:attribute:: range + + + .. py:attribute:: readonly + + + .. py:attribute:: scrollable + + + .. py:attribute:: show_week + + + .. py:attribute:: table_date + + + .. py:attribute:: value + + +.. py:class:: DatePickerHeader(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: light + + + .. py:attribute:: locale + + + .. py:attribute:: max + + + .. py:attribute:: min + + + .. py:attribute:: next_icon + + + .. py:attribute:: prev_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: value + + +.. py:class:: DatePickerMonthTable(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: current + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: event_color + + + .. py:attribute:: events + + + .. py:attribute:: light + + + .. py:attribute:: locale + + + .. py:attribute:: max + + + .. py:attribute:: min + + + .. py:attribute:: range + + + .. py:attribute:: readonly + + + .. py:attribute:: scrollable + + + .. py:attribute:: table_date + + + .. py:attribute:: value + + +.. py:class:: DatePickerTitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: date + + + .. py:attribute:: disabled + + + .. py:attribute:: readonly + + + .. py:attribute:: selecting_year + + + .. py:attribute:: value + + + .. py:attribute:: year + + + .. py:attribute:: year_icon + + +.. py:class:: DatePickerYears(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: locale + + + .. py:attribute:: max + + + .. py:attribute:: min + + + .. py:attribute:: readonly + + + .. py:attribute:: value + + +.. py:class:: Dialog(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: activator + + + .. py:attribute:: attach + + + .. py:attribute:: close_delay + + + .. py:attribute:: content_class + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: fullscreen + + + .. py:attribute:: hide_overlay + + + .. py:attribute:: internal_activator + + + .. py:attribute:: light + + + .. py:attribute:: max_width + + + .. py:attribute:: no_click_animation + + + .. py:attribute:: open_delay + + + .. py:attribute:: open_on_hover + + + .. py:attribute:: origin + + + .. py:attribute:: overlay_color + + + .. py:attribute:: overlay_opacity + + + .. py:attribute:: persistent + + + .. py:attribute:: retain_focus + + + .. py:attribute:: return_value + + + .. py:attribute:: scrollable + + + .. py:attribute:: transition + + + .. py:attribute:: value + + + .. py:attribute:: width + + +.. py:class:: DialogBottomTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: DialogTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: Divider(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: inset + + + .. py:attribute:: light + + + .. py:attribute:: vertical + + +.. py:class:: EditDialog(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: cancel_text + + + .. py:attribute:: dark + + + .. py:attribute:: eager + + + .. py:attribute:: large + + + .. py:attribute:: light + + + .. py:attribute:: persistent + + + .. py:attribute:: return_value + + + .. py:attribute:: save_text + + + .. py:attribute:: transition + + +.. py:class:: ExpandTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: mode + + +.. py:class:: ExpandXTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: mode + + +.. py:class:: ExpansionPanel(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: disabled + + + .. py:attribute:: readonly + + +.. py:class:: ExpansionPanelContent(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: eager + + +.. py:class:: ExpansionPanelHeader(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: disable_icon_rotate + + + .. py:attribute:: expand_icon + + + .. py:attribute:: hide_actions + + + .. py:attribute:: ripple + + +.. py:class:: ExpansionPanels(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: accordion + + + .. py:attribute:: active_class + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: flat + + + .. py:attribute:: focusable + + + .. py:attribute:: hover + + + .. py:attribute:: inset + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: multiple + + + .. py:attribute:: popout + + + .. py:attribute:: readonly + + + .. py:attribute:: tile + + + .. py:attribute:: value + + +.. py:class:: FabTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: FadeTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: FileInput(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: append_outer_icon + + + .. py:attribute:: autofocus + + + .. py:attribute:: background_color + + + .. py:attribute:: chips + + + .. py:attribute:: clear_icon + + + .. py:attribute:: clearable + + + .. py:attribute:: color + + + .. py:attribute:: counter + + + .. py:attribute:: counter_size_string + + + .. py:attribute:: counter_string + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: filled + + + .. py:attribute:: flat + + + .. py:attribute:: full_width + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: messages + + + .. py:attribute:: multiple + + + .. py:attribute:: outlined + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: placeholder + + + .. py:attribute:: prefix + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: prepend_inner_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: reverse + + + .. py:attribute:: rounded + + + .. py:attribute:: rules + + + .. py:attribute:: shaped + + + .. py:attribute:: show_size + + + .. py:attribute:: single_line + + + .. py:attribute:: small_chips + + + .. py:attribute:: solo + + + .. py:attribute:: solo_inverted + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: suffix + + + .. py:attribute:: truncate_length + + + .. py:attribute:: type + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + +.. py:class:: Flex(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: align_self_baseline + + + .. py:attribute:: align_self_center + + + .. py:attribute:: align_self_end + + + .. py:attribute:: align_self_start + + + .. py:attribute:: grow + + + .. py:attribute:: id + + + .. py:attribute:: lg1 + + + .. py:attribute:: lg10 + + + .. py:attribute:: lg11 + + + .. py:attribute:: lg12 + + + .. py:attribute:: lg2 + + + .. py:attribute:: lg3 + + + .. py:attribute:: lg4 + + + .. py:attribute:: lg5 + + + .. py:attribute:: lg6 + + + .. py:attribute:: lg7 + + + .. py:attribute:: lg8 + + + .. py:attribute:: lg9 + + + .. py:attribute:: ma_0 + + + .. py:attribute:: ma_1 + + + .. py:attribute:: ma_2 + + + .. py:attribute:: ma_3 + + + .. py:attribute:: ma_4 + + + .. py:attribute:: ma_5 + + + .. py:attribute:: ma_auto + + + .. py:attribute:: mb_0 + + + .. py:attribute:: mb_1 + + + .. py:attribute:: mb_2 + + + .. py:attribute:: mb_3 + + + .. py:attribute:: mb_4 + + + .. py:attribute:: mb_5 + + + .. py:attribute:: mb_auto + + + .. py:attribute:: md1 + + + .. py:attribute:: md10 + + + .. py:attribute:: md11 + + + .. py:attribute:: md12 + + + .. py:attribute:: md2 + + + .. py:attribute:: md3 + + + .. py:attribute:: md4 + + + .. py:attribute:: md5 + + + .. py:attribute:: md6 + + + .. py:attribute:: md7 + + + .. py:attribute:: md8 + + + .. py:attribute:: md9 + + + .. py:attribute:: ml_0 + + + .. py:attribute:: ml_1 + + + .. py:attribute:: ml_2 + + + .. py:attribute:: ml_3 + + + .. py:attribute:: ml_4 + + + .. py:attribute:: ml_5 + + + .. py:attribute:: ml_auto + + + .. py:attribute:: mr_0 + + + .. py:attribute:: mr_1 + + + .. py:attribute:: mr_2 + + + .. py:attribute:: mr_3 + + + .. py:attribute:: mr_4 + + + .. py:attribute:: mr_5 + + + .. py:attribute:: mr_auto + + + .. py:attribute:: mt_0 + + + .. py:attribute:: mt_1 + + + .. py:attribute:: mt_2 + + + .. py:attribute:: mt_3 + + + .. py:attribute:: mt_4 + + + .. py:attribute:: mt_5 + + + .. py:attribute:: mt_auto + + + .. py:attribute:: mx_0 + + + .. py:attribute:: mx_1 + + + .. py:attribute:: mx_2 + + + .. py:attribute:: mx_3 + + + .. py:attribute:: mx_4 + + + .. py:attribute:: mx_5 + + + .. py:attribute:: mx_auto + + + .. py:attribute:: my_0 + + + .. py:attribute:: my_1 + + + .. py:attribute:: my_2 + + + .. py:attribute:: my_3 + + + .. py:attribute:: my_4 + + + .. py:attribute:: my_5 + + + .. py:attribute:: my_auto + + + .. py:attribute:: offset_lg0 + + + .. py:attribute:: offset_lg1 + + + .. py:attribute:: offset_lg10 + + + .. py:attribute:: offset_lg11 + + + .. py:attribute:: offset_lg12 + + + .. py:attribute:: offset_lg2 + + + .. py:attribute:: offset_lg3 + + + .. py:attribute:: offset_lg4 + + + .. py:attribute:: offset_lg5 + + + .. py:attribute:: offset_lg6 + + + .. py:attribute:: offset_lg7 + + + .. py:attribute:: offset_lg8 + + + .. py:attribute:: offset_lg9 + + + .. py:attribute:: offset_md0 + + + .. py:attribute:: offset_md1 + + + .. py:attribute:: offset_md10 + + + .. py:attribute:: offset_md11 + + + .. py:attribute:: offset_md12 + + + .. py:attribute:: offset_md2 + + + .. py:attribute:: offset_md3 + + + .. py:attribute:: offset_md4 + + + .. py:attribute:: offset_md5 + + + .. py:attribute:: offset_md6 + + + .. py:attribute:: offset_md7 + + + .. py:attribute:: offset_md8 + + + .. py:attribute:: offset_md9 + + + .. py:attribute:: offset_sm0 + + + .. py:attribute:: offset_sm1 + + + .. py:attribute:: offset_sm10 + + + .. py:attribute:: offset_sm11 + + + .. py:attribute:: offset_sm12 + + + .. py:attribute:: offset_sm2 + + + .. py:attribute:: offset_sm3 + + + .. py:attribute:: offset_sm4 + + + .. py:attribute:: offset_sm5 + + + .. py:attribute:: offset_sm6 + + + .. py:attribute:: offset_sm7 + + + .. py:attribute:: offset_sm8 + + + .. py:attribute:: offset_sm9 + + + .. py:attribute:: offset_xl0 + + + .. py:attribute:: offset_xl1 + + + .. py:attribute:: offset_xl10 + + + .. py:attribute:: offset_xl11 + + + .. py:attribute:: offset_xl12 + + + .. py:attribute:: offset_xl2 + + + .. py:attribute:: offset_xl3 + + + .. py:attribute:: offset_xl4 + + + .. py:attribute:: offset_xl5 + + + .. py:attribute:: offset_xl6 + + + .. py:attribute:: offset_xl7 + + + .. py:attribute:: offset_xl8 + + + .. py:attribute:: offset_xl9 + + + .. py:attribute:: offset_xs0 + + + .. py:attribute:: offset_xs1 + + + .. py:attribute:: offset_xs10 + + + .. py:attribute:: offset_xs11 + + + .. py:attribute:: offset_xs12 + + + .. py:attribute:: offset_xs2 + + + .. py:attribute:: offset_xs3 + + + .. py:attribute:: offset_xs4 + + + .. py:attribute:: offset_xs5 + + + .. py:attribute:: offset_xs6 + + + .. py:attribute:: offset_xs7 + + + .. py:attribute:: offset_xs8 + + + .. py:attribute:: offset_xs9 + + + .. py:attribute:: order_lg1 + + + .. py:attribute:: order_lg10 + + + .. py:attribute:: order_lg11 + + + .. py:attribute:: order_lg12 + + + .. py:attribute:: order_lg2 + + + .. py:attribute:: order_lg3 + + + .. py:attribute:: order_lg4 + + + .. py:attribute:: order_lg5 + + + .. py:attribute:: order_lg6 + + + .. py:attribute:: order_lg7 + + + .. py:attribute:: order_lg8 + + + .. py:attribute:: order_lg9 + + + .. py:attribute:: order_md1 + + + .. py:attribute:: order_md10 + + + .. py:attribute:: order_md11 + + + .. py:attribute:: order_md12 + + + .. py:attribute:: order_md2 + + + .. py:attribute:: order_md3 + + + .. py:attribute:: order_md4 + + + .. py:attribute:: order_md5 + + + .. py:attribute:: order_md6 + + + .. py:attribute:: order_md7 + + + .. py:attribute:: order_md8 + + + .. py:attribute:: order_md9 + + + .. py:attribute:: order_sm1 + + + .. py:attribute:: order_sm10 + + + .. py:attribute:: order_sm11 + + + .. py:attribute:: order_sm12 + + + .. py:attribute:: order_sm2 + + + .. py:attribute:: order_sm3 + + + .. py:attribute:: order_sm4 + + + .. py:attribute:: order_sm5 + + + .. py:attribute:: order_sm6 + + + .. py:attribute:: order_sm7 + + + .. py:attribute:: order_sm8 + + + .. py:attribute:: order_sm9 + + + .. py:attribute:: order_xl1 + + + .. py:attribute:: order_xl10 + + + .. py:attribute:: order_xl11 + + + .. py:attribute:: order_xl12 + + + .. py:attribute:: order_xl2 + + + .. py:attribute:: order_xl3 + + + .. py:attribute:: order_xl4 + + + .. py:attribute:: order_xl5 + + + .. py:attribute:: order_xl6 + + + .. py:attribute:: order_xl7 + + + .. py:attribute:: order_xl8 + + + .. py:attribute:: order_xl9 + + + .. py:attribute:: order_xs1 + + + .. py:attribute:: order_xs10 + + + .. py:attribute:: order_xs11 + + + .. py:attribute:: order_xs12 + + + .. py:attribute:: order_xs2 + + + .. py:attribute:: order_xs3 + + + .. py:attribute:: order_xs4 + + + .. py:attribute:: order_xs5 + + + .. py:attribute:: order_xs6 + + + .. py:attribute:: order_xs7 + + + .. py:attribute:: order_xs8 + + + .. py:attribute:: order_xs9 + + + .. py:attribute:: pa_0 + + + .. py:attribute:: pa_1 + + + .. py:attribute:: pa_2 + + + .. py:attribute:: pa_3 + + + .. py:attribute:: pa_4 + + + .. py:attribute:: pa_5 + + + .. py:attribute:: pa_auto + + + .. py:attribute:: pb_0 + + + .. py:attribute:: pb_1 + + + .. py:attribute:: pb_2 + + + .. py:attribute:: pb_3 + + + .. py:attribute:: pb_4 + + + .. py:attribute:: pb_5 + + + .. py:attribute:: pb_auto + + + .. py:attribute:: pl_0 + + + .. py:attribute:: pl_1 + + + .. py:attribute:: pl_2 + + + .. py:attribute:: pl_3 + + + .. py:attribute:: pl_4 + + + .. py:attribute:: pl_5 + + + .. py:attribute:: pl_auto + + + .. py:attribute:: pr_0 + + + .. py:attribute:: pr_1 + + + .. py:attribute:: pr_2 + + + .. py:attribute:: pr_3 + + + .. py:attribute:: pr_4 + + + .. py:attribute:: pr_5 + + + .. py:attribute:: pr_auto + + + .. py:attribute:: pt_0 + + + .. py:attribute:: pt_1 + + + .. py:attribute:: pt_2 + + + .. py:attribute:: pt_3 + + + .. py:attribute:: pt_4 + + + .. py:attribute:: pt_5 + + + .. py:attribute:: pt_auto + + + .. py:attribute:: px_0 + + + .. py:attribute:: px_1 + + + .. py:attribute:: px_2 + + + .. py:attribute:: px_3 + + + .. py:attribute:: px_4 + + + .. py:attribute:: px_5 + + + .. py:attribute:: px_auto + + + .. py:attribute:: py_0 + + + .. py:attribute:: py_1 + + + .. py:attribute:: py_2 + + + .. py:attribute:: py_3 + + + .. py:attribute:: py_4 + + + .. py:attribute:: py_5 + + + .. py:attribute:: py_auto + + + .. py:attribute:: shrink + + + .. py:attribute:: sm1 + + + .. py:attribute:: sm10 + + + .. py:attribute:: sm11 + + + .. py:attribute:: sm12 + + + .. py:attribute:: sm2 + + + .. py:attribute:: sm3 + + + .. py:attribute:: sm4 + + + .. py:attribute:: sm5 + + + .. py:attribute:: sm6 + + + .. py:attribute:: sm7 + + + .. py:attribute:: sm8 + + + .. py:attribute:: sm9 + + + .. py:attribute:: tag + + + .. py:attribute:: xl1 + + + .. py:attribute:: xl10 + + + .. py:attribute:: xl11 + + + .. py:attribute:: xl12 + + + .. py:attribute:: xl2 + + + .. py:attribute:: xl3 + + + .. py:attribute:: xl4 + + + .. py:attribute:: xl5 + + + .. py:attribute:: xl6 + + + .. py:attribute:: xl7 + + + .. py:attribute:: xl8 + + + .. py:attribute:: xl9 + + + .. py:attribute:: xs1 + + + .. py:attribute:: xs10 + + + .. py:attribute:: xs11 + + + .. py:attribute:: xs12 + + + .. py:attribute:: xs2 + + + .. py:attribute:: xs3 + + + .. py:attribute:: xs4 + + + .. py:attribute:: xs5 + + + .. py:attribute:: xs6 + + + .. py:attribute:: xs7 + + + .. py:attribute:: xs8 + + + .. py:attribute:: xs9 + + +.. py:class:: Footer(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: app + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: elevation + + + .. py:attribute:: fixed + + + .. py:attribute:: height + + + .. py:attribute:: inset + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: padless + + + .. py:attribute:: tag + + + .. py:attribute:: tile + + + .. py:attribute:: width + + +.. py:class:: Form(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: lazy_validation + + + .. py:attribute:: value + + +.. py:class:: Hover(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: close_delay + + + .. py:attribute:: disabled + + + .. py:attribute:: open_delay + + + .. py:attribute:: value + + +.. py:class:: Icon(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: large + + + .. py:attribute:: left + + + .. py:attribute:: light + + + .. py:attribute:: right + + + .. py:attribute:: size + + + .. py:attribute:: small + + + .. py:attribute:: tag + + + .. py:attribute:: x_large + + + .. py:attribute:: x_small + + +.. py:class:: Img(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: alt + + + .. py:attribute:: aspect_ratio + + + .. py:attribute:: contain + + + .. py:attribute:: eager + + + .. py:attribute:: gradient + + + .. py:attribute:: height + + + .. py:attribute:: lazy_src + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: options + + + .. py:attribute:: position + + + .. py:attribute:: sizes + + + .. py:attribute:: src + + + .. py:attribute:: srcset + + + .. py:attribute:: transition + + + .. py:attribute:: width + + +.. py:class:: Input(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: background_color + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loading + + + .. py:attribute:: messages + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: rules + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + +.. py:class:: Item(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: disabled + + + .. py:attribute:: value + + +.. py:class:: ItemGroup(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: multiple + + + .. py:attribute:: value + + +.. py:class:: Label(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: focused + + + .. py:attribute:: for_ + + + .. py:attribute:: left + + + .. py:attribute:: light + + + .. py:attribute:: right + + + .. py:attribute:: value + + +.. py:class:: Layout(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: align_baseline + + + .. py:attribute:: align_center + + + .. py:attribute:: align_content_center + + + .. py:attribute:: align_content_end + + + .. py:attribute:: align_content_space_around + + + .. py:attribute:: align_content_space_between + + + .. py:attribute:: align_content_start + + + .. py:attribute:: align_end + + + .. py:attribute:: align_start + + + .. py:attribute:: column + + + .. py:attribute:: d_block + + + .. py:attribute:: d_contents + + + .. py:attribute:: d_flex + + + .. py:attribute:: d_grid + + + .. py:attribute:: d_inherit + + + .. py:attribute:: d_initial + + + .. py:attribute:: d_inline + + + .. py:attribute:: d_inline_block + + + .. py:attribute:: d_inline_flex + + + .. py:attribute:: d_inline_grid + + + .. py:attribute:: d_inline_table + + + .. py:attribute:: d_list_item + + + .. py:attribute:: d_none + + + .. py:attribute:: d_run_in + + + .. py:attribute:: d_table + + + .. py:attribute:: d_table_caption + + + .. py:attribute:: d_table_cell + + + .. py:attribute:: d_table_column + + + .. py:attribute:: d_table_column_group + + + .. py:attribute:: d_table_footer_group + + + .. py:attribute:: d_table_header_group + + + .. py:attribute:: d_table_row + + + .. py:attribute:: d_table_row_group + + + .. py:attribute:: fill_height + + + .. py:attribute:: id + + + .. py:attribute:: justify_center + + + .. py:attribute:: justify_end + + + .. py:attribute:: justify_space_around + + + .. py:attribute:: justify_space_between + + + .. py:attribute:: justify_start + + + .. py:attribute:: ma_0 + + + .. py:attribute:: ma_1 + + + .. py:attribute:: ma_2 + + + .. py:attribute:: ma_3 + + + .. py:attribute:: ma_4 + + + .. py:attribute:: ma_5 + + + .. py:attribute:: ma_auto + + + .. py:attribute:: mb_0 + + + .. py:attribute:: mb_1 + + + .. py:attribute:: mb_2 + + + .. py:attribute:: mb_3 + + + .. py:attribute:: mb_4 + + + .. py:attribute:: mb_5 + + + .. py:attribute:: mb_auto + + + .. py:attribute:: ml_0 + + + .. py:attribute:: ml_1 + + + .. py:attribute:: ml_2 + + + .. py:attribute:: ml_3 + + + .. py:attribute:: ml_4 + + + .. py:attribute:: ml_5 + + + .. py:attribute:: ml_auto + + + .. py:attribute:: mr_0 + + + .. py:attribute:: mr_1 + + + .. py:attribute:: mr_2 + + + .. py:attribute:: mr_3 + + + .. py:attribute:: mr_4 + + + .. py:attribute:: mr_5 + + + .. py:attribute:: mr_auto + + + .. py:attribute:: mt_0 + + + .. py:attribute:: mt_1 + + + .. py:attribute:: mt_2 + + + .. py:attribute:: mt_3 + + + .. py:attribute:: mt_4 + + + .. py:attribute:: mt_5 + + + .. py:attribute:: mt_auto + + + .. py:attribute:: mx_0 + + + .. py:attribute:: mx_1 + + + .. py:attribute:: mx_2 + + + .. py:attribute:: mx_3 + + + .. py:attribute:: mx_4 + + + .. py:attribute:: mx_5 + + + .. py:attribute:: mx_auto + + + .. py:attribute:: my_0 + + + .. py:attribute:: my_1 + + + .. py:attribute:: my_2 + + + .. py:attribute:: my_3 + + + .. py:attribute:: my_4 + + + .. py:attribute:: my_5 + + + .. py:attribute:: my_auto + + + .. py:attribute:: pa_0 + + + .. py:attribute:: pa_1 + + + .. py:attribute:: pa_2 + + + .. py:attribute:: pa_3 + + + .. py:attribute:: pa_4 + + + .. py:attribute:: pa_5 + + + .. py:attribute:: pa_auto + + + .. py:attribute:: pb_0 + + + .. py:attribute:: pb_1 + + + .. py:attribute:: pb_2 + + + .. py:attribute:: pb_3 + + + .. py:attribute:: pb_4 + + + .. py:attribute:: pb_5 + + + .. py:attribute:: pb_auto + + + .. py:attribute:: pl_0 + + + .. py:attribute:: pl_1 + + + .. py:attribute:: pl_2 + + + .. py:attribute:: pl_3 + + + .. py:attribute:: pl_4 + + + .. py:attribute:: pl_5 + + + .. py:attribute:: pl_auto + + + .. py:attribute:: pr_0 + + + .. py:attribute:: pr_1 + + + .. py:attribute:: pr_2 + + + .. py:attribute:: pr_3 + + + .. py:attribute:: pr_4 + + + .. py:attribute:: pr_5 + + + .. py:attribute:: pr_auto + + + .. py:attribute:: pt_0 + + + .. py:attribute:: pt_1 + + + .. py:attribute:: pt_2 + + + .. py:attribute:: pt_3 + + + .. py:attribute:: pt_4 + + + .. py:attribute:: pt_5 + + + .. py:attribute:: pt_auto + + + .. py:attribute:: px_0 + + + .. py:attribute:: px_1 + + + .. py:attribute:: px_2 + + + .. py:attribute:: px_3 + + + .. py:attribute:: px_4 + + + .. py:attribute:: px_5 + + + .. py:attribute:: px_auto + + + .. py:attribute:: py_0 + + + .. py:attribute:: py_1 + + + .. py:attribute:: py_2 + + + .. py:attribute:: py_3 + + + .. py:attribute:: py_4 + + + .. py:attribute:: py_5 + + + .. py:attribute:: py_auto + + + .. py:attribute:: reverse + + + .. py:attribute:: row + + + .. py:attribute:: tag + + + .. py:attribute:: wrap + + +.. py:class:: Lazy(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: min_height + + + .. py:attribute:: options + + + .. py:attribute:: tag + + + .. py:attribute:: transition + + + .. py:attribute:: value + + +.. py:class:: List(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: elevation + + + .. py:attribute:: expand + + + .. py:attribute:: flat + + + .. py:attribute:: height + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: nav + + + .. py:attribute:: rounded + + + .. py:attribute:: shaped + + + .. py:attribute:: subheader + + + .. py:attribute:: tag + + + .. py:attribute:: three_line + + + .. py:attribute:: tile + + + .. py:attribute:: two_line + + + .. py:attribute:: width + + +.. py:class:: ListGroup(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: append_icon + + + .. py:attribute:: color + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: group + + + .. py:attribute:: no_action + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: ripple + + + .. py:attribute:: sub_group + + + .. py:attribute:: value + + +.. py:class:: ListItem(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: append + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: exact + + + .. py:attribute:: exact_active_class + + + .. py:attribute:: href + + + .. py:attribute:: inactive + + + .. py:attribute:: input_value + + + .. py:attribute:: light + + + .. py:attribute:: link + + + .. py:attribute:: nuxt + + + .. py:attribute:: replace + + + .. py:attribute:: ripple + + + .. py:attribute:: selectable + + + .. py:attribute:: tag + + + .. py:attribute:: target + + + .. py:attribute:: three_line + + + .. py:attribute:: to + + + .. py:attribute:: two_line + + + .. py:attribute:: value + + +.. py:class:: ListItemAction(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: ListItemActionText(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: ListItemAvatar(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: height + + + .. py:attribute:: horizontal + + + .. py:attribute:: left + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: right + + + .. py:attribute:: size + + + .. py:attribute:: tile + + + .. py:attribute:: width + + +.. py:class:: ListItemContent(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: ListItemGroup(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: multiple + + + .. py:attribute:: value + + +.. py:class:: ListItemIcon(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: ListItemSubtitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: ListItemTitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: Menu(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: activator + + + .. py:attribute:: allow_overflow + + + .. py:attribute:: attach + + + .. py:attribute:: auto + + + .. py:attribute:: bottom + + + .. py:attribute:: close_delay + + + .. py:attribute:: close_on_click + + + .. py:attribute:: close_on_content_click + + + .. py:attribute:: content_class + + + .. py:attribute:: dark + + + .. py:attribute:: disable_keys + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: fixed + + + .. py:attribute:: internal_activator + + + .. py:attribute:: left + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_width + + + .. py:attribute:: nudge_bottom + + + .. py:attribute:: nudge_left + + + .. py:attribute:: nudge_right + + + .. py:attribute:: nudge_top + + + .. py:attribute:: nudge_width + + + .. py:attribute:: offset_overflow + + + .. py:attribute:: offset_x + + + .. py:attribute:: offset_y + + + .. py:attribute:: open_delay + + + .. py:attribute:: open_on_click + + + .. py:attribute:: open_on_hover + + + .. py:attribute:: origin + + + .. py:attribute:: position_x + + + .. py:attribute:: position_y + + + .. py:attribute:: return_value + + + .. py:attribute:: right + + + .. py:attribute:: top + + + .. py:attribute:: transition + + + .. py:attribute:: value + + + .. py:attribute:: z_index + + +.. py:class:: MenuTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: Messages(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: value + + +.. py:class:: NavigationDrawer(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: app + + + .. py:attribute:: bottom + + + .. py:attribute:: clipped + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disable_resize_watcher + + + .. py:attribute:: disable_route_watcher + + + .. py:attribute:: expand_on_hover + + + .. py:attribute:: fixed + + + .. py:attribute:: floating + + + .. py:attribute:: height + + + .. py:attribute:: hide_overlay + + + .. py:attribute:: light + + + .. py:attribute:: mini_variant + + + .. py:attribute:: mini_variant_width + + + .. py:attribute:: mobile_break_point + + + .. py:attribute:: overlay_color + + + .. py:attribute:: overlay_opacity + + + .. py:attribute:: permanent + + + .. py:attribute:: right + + + .. py:attribute:: src + + + .. py:attribute:: stateless + + + .. py:attribute:: tag + + + .. py:attribute:: temporary + + + .. py:attribute:: touchless + + + .. py:attribute:: value + + + .. py:attribute:: width + + +.. py:class:: OverflowBtn(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: allow_overflow + + + .. py:attribute:: append_icon + + + .. py:attribute:: append_outer_icon + + + .. py:attribute:: attach + + + .. py:attribute:: auto_select_first + + + .. py:attribute:: autofocus + + + .. py:attribute:: background_color + + + .. py:attribute:: cache_items + + + .. py:attribute:: chips + + + .. py:attribute:: clear_icon + + + .. py:attribute:: clearable + + + .. py:attribute:: color + + + .. py:attribute:: counter + + + .. py:attribute:: dark + + + .. py:attribute:: deletable_chips + + + .. py:attribute:: dense + + + .. py:attribute:: disable_lookup + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: editable + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: filled + + + .. py:attribute:: flat + + + .. py:attribute:: full_width + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hide_no_data + + + .. py:attribute:: hide_selected + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: item_color + + + .. py:attribute:: item_disabled + + + .. py:attribute:: item_text + + + .. py:attribute:: item_value + + + .. py:attribute:: items + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: menu_props + + + .. py:attribute:: messages + + + .. py:attribute:: multiple + + + .. py:attribute:: no_data_text + + + .. py:attribute:: no_filter + + + .. py:attribute:: open_on_clear + + + .. py:attribute:: outlined + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: placeholder + + + .. py:attribute:: prefix + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: prepend_inner_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: return_object + + + .. py:attribute:: reverse + + + .. py:attribute:: rounded + + + .. py:attribute:: rules + + + .. py:attribute:: search_input + + + .. py:attribute:: segmented + + + .. py:attribute:: shaped + + + .. py:attribute:: single_line + + + .. py:attribute:: small_chips + + + .. py:attribute:: solo + + + .. py:attribute:: solo_inverted + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: suffix + + + .. py:attribute:: type + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + +.. py:class:: Overlay(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: opacity + + + .. py:attribute:: value + + + .. py:attribute:: z_index + + +.. py:class:: Pagination(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: circle + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: length + + + .. py:attribute:: light + + + .. py:attribute:: next_icon + + + .. py:attribute:: prev_icon + + + .. py:attribute:: total_visible + + + .. py:attribute:: value + + +.. py:class:: Parallax(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: alt + + + .. py:attribute:: height + + + .. py:attribute:: src + + +.. py:class:: Picker(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: full_width + + + .. py:attribute:: landscape + + + .. py:attribute:: light + + + .. py:attribute:: no_title + + + .. py:attribute:: transition + + + .. py:attribute:: width + + +.. py:class:: ProgressCircular(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: button + + + .. py:attribute:: color + + + .. py:attribute:: indeterminate + + + .. py:attribute:: rotate + + + .. py:attribute:: size + + + .. py:attribute:: value + + + .. py:attribute:: width + + +.. py:class:: ProgressLinear(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: active + + + .. py:attribute:: background_color + + + .. py:attribute:: background_opacity + + + .. py:attribute:: bottom + + + .. py:attribute:: buffer_value + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: fixed + + + .. py:attribute:: height + + + .. py:attribute:: indeterminate + + + .. py:attribute:: light + + + .. py:attribute:: query + + + .. py:attribute:: rounded + + + .. py:attribute:: stream + + + .. py:attribute:: striped + + + .. py:attribute:: top + + + .. py:attribute:: value + + +.. py:class:: Radio(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: id + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: name + + + .. py:attribute:: off_icon + + + .. py:attribute:: on_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: ripple + + + .. py:attribute:: value + + +.. py:class:: RadioGroup(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: append_icon + + + .. py:attribute:: background_color + + + .. py:attribute:: color + + + .. py:attribute:: column + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loading + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: messages + + + .. py:attribute:: multiple + + + .. py:attribute:: name + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: row + + + .. py:attribute:: rules + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + +.. py:class:: RangeSlider(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: background_color + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: inverse_label + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: max + + + .. py:attribute:: messages + + + .. py:attribute:: min + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: rules + + + .. py:attribute:: step + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: thumb_color + + + .. py:attribute:: thumb_label + + + .. py:attribute:: thumb_size + + + .. py:attribute:: tick_labels + + + .. py:attribute:: tick_size + + + .. py:attribute:: ticks + + + .. py:attribute:: track_color + + + .. py:attribute:: track_fill_color + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + + .. py:attribute:: vertical + + +.. py:class:: Rating(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: background_color + + + .. py:attribute:: clearable + + + .. py:attribute:: close_delay + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: empty_icon + + + .. py:attribute:: full_icon + + + .. py:attribute:: half_icon + + + .. py:attribute:: half_increments + + + .. py:attribute:: hover + + + .. py:attribute:: large + + + .. py:attribute:: length + + + .. py:attribute:: light + + + .. py:attribute:: open_delay + + + .. py:attribute:: readonly + + + .. py:attribute:: ripple + + + .. py:attribute:: size + + + .. py:attribute:: small + + + .. py:attribute:: value + + + .. py:attribute:: x_large + + + .. py:attribute:: x_small + + +.. py:class:: Responsive(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: aspect_ratio + + + .. py:attribute:: height + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: width + + +.. py:class:: Row(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: align + + + .. py:attribute:: align_content + + + .. py:attribute:: align_content_lg + + + .. py:attribute:: align_content_md + + + .. py:attribute:: align_content_sm + + + .. py:attribute:: align_content_xl + + + .. py:attribute:: align_lg + + + .. py:attribute:: align_md + + + .. py:attribute:: align_sm + + + .. py:attribute:: align_xl + + + .. py:attribute:: dense + + + .. py:attribute:: justify + + + .. py:attribute:: justify_lg + + + .. py:attribute:: justify_md + + + .. py:attribute:: justify_sm + + + .. py:attribute:: justify_xl + + + .. py:attribute:: no_gutters + + + .. py:attribute:: tag + + +.. py:class:: ScaleTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: ScrollXReverseTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: ScrollXTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: ScrollYReverseTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: ScrollYTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: Select(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: append_outer_icon + + + .. py:attribute:: attach + + + .. py:attribute:: autofocus + + + .. py:attribute:: background_color + + + .. py:attribute:: cache_items + + + .. py:attribute:: chips + + + .. py:attribute:: clear_icon + + + .. py:attribute:: clearable + + + .. py:attribute:: color + + + .. py:attribute:: counter + + + .. py:attribute:: dark + + + .. py:attribute:: deletable_chips + + + .. py:attribute:: dense + + + .. py:attribute:: disable_lookup + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: filled + + + .. py:attribute:: flat + + + .. py:attribute:: full_width + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hide_selected + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: item_color + + + .. py:attribute:: item_disabled + + + .. py:attribute:: item_text + + + .. py:attribute:: item_value + + + .. py:attribute:: items + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: menu_props + + + .. py:attribute:: messages + + + .. py:attribute:: multiple + + + .. py:attribute:: no_data_text + + + .. py:attribute:: open_on_clear + + + .. py:attribute:: outlined + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: placeholder + + + .. py:attribute:: prefix + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: prepend_inner_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: return_object + + + .. py:attribute:: reverse + + + .. py:attribute:: rounded + + + .. py:attribute:: rules + + + .. py:attribute:: shaped + + + .. py:attribute:: single_line + + + .. py:attribute:: small_chips + + + .. py:attribute:: solo + + + .. py:attribute:: solo_inverted + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: suffix + + + .. py:attribute:: type + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + +.. py:class:: Sheet(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: elevation + + + .. py:attribute:: height + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: tag + + + .. py:attribute:: tile + + + .. py:attribute:: width + + +.. py:class:: SimpleCheckbox(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: indeterminate + + + .. py:attribute:: indeterminate_icon + + + .. py:attribute:: light + + + .. py:attribute:: off_icon + + + .. py:attribute:: on_icon + + + .. py:attribute:: ripple + + + .. py:attribute:: value + + +.. py:class:: SimpleTable(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: fixed_header + + + .. py:attribute:: height + + + .. py:attribute:: light + + +.. py:class:: SkeletonLoader(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: boilerplate + + + .. py:attribute:: dark + + + .. py:attribute:: elevation + + + .. py:attribute:: height + + + .. py:attribute:: light + + + .. py:attribute:: loading + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: tile + + + .. py:attribute:: transition + + + .. py:attribute:: type + + + .. py:attribute:: types + + + .. py:attribute:: width + + +.. py:class:: SlideGroup(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: center_active + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: mobile_break_point + + + .. py:attribute:: multiple + + + .. py:attribute:: next_icon + + + .. py:attribute:: prev_icon + + + .. py:attribute:: show_arrows + + + .. py:attribute:: value + + +.. py:class:: SlideItem(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: disabled + + + .. py:attribute:: value + + +.. py:class:: SlideXReverseTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: SlideXTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: SlideYReverseTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: SlideYTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: Slider(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: background_color + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: inverse_label + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: max + + + .. py:attribute:: messages + + + .. py:attribute:: min + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: rules + + + .. py:attribute:: step + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: thumb_color + + + .. py:attribute:: thumb_label + + + .. py:attribute:: thumb_size + + + .. py:attribute:: tick_labels + + + .. py:attribute:: tick_size + + + .. py:attribute:: ticks + + + .. py:attribute:: track_color + + + .. py:attribute:: track_fill_color + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + + .. py:attribute:: vertical + + +.. py:class:: Snackbar(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: bottom + + + .. py:attribute:: color + + + .. py:attribute:: left + + + .. py:attribute:: multi_line + + + .. py:attribute:: right + + + .. py:attribute:: timeout + + + .. py:attribute:: top + + + .. py:attribute:: value + + + .. py:attribute:: vertical + + +.. py:class:: Spacer(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: Sparkline(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: auto_draw + + + .. py:attribute:: auto_draw_duration + + + .. py:attribute:: auto_draw_easing + + + .. py:attribute:: auto_line_width + + + .. py:attribute:: color + + + .. py:attribute:: fill + + + .. py:attribute:: gradient + + + .. py:attribute:: gradient_direction + + + .. py:attribute:: height + + + .. py:attribute:: label_size + + + .. py:attribute:: labels + + + .. py:attribute:: line_width + + + .. py:attribute:: padding + + + .. py:attribute:: show_labels + + + .. py:attribute:: smooth + + + .. py:attribute:: type + + + .. py:attribute:: value + + + .. py:attribute:: width + + +.. py:class:: SpeedDial(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: bottom + + + .. py:attribute:: direction + + + .. py:attribute:: fixed + + + .. py:attribute:: left + + + .. py:attribute:: mode + + + .. py:attribute:: open_on_hover + + + .. py:attribute:: origin + + + .. py:attribute:: right + + + .. py:attribute:: top + + + .. py:attribute:: transition + + + .. py:attribute:: value + + +.. py:class:: Stepper(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: alt_labels + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: non_linear + + + .. py:attribute:: value + + + .. py:attribute:: vertical + + +.. py:class:: StepperContent(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: step + + +.. py:class:: StepperHeader(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: StepperItems(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: StepperStep(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: complete + + + .. py:attribute:: complete_icon + + + .. py:attribute:: edit_icon + + + .. py:attribute:: editable + + + .. py:attribute:: error_icon + + + .. py:attribute:: rules + + + .. py:attribute:: step + + +.. py:class:: Subheader(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: inset + + + .. py:attribute:: light + + +.. py:class:: Switch(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: background_color + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: false_value + + + .. py:attribute:: flat + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: input_value + + + .. py:attribute:: inset + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loading + + + .. py:attribute:: messages + + + .. py:attribute:: multiple + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: ripple + + + .. py:attribute:: rules + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: true_value + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + +.. py:class:: SystemBar(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: app + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: fixed + + + .. py:attribute:: height + + + .. py:attribute:: light + + + .. py:attribute:: lights_out + + + .. py:attribute:: window + + +.. py:class:: Tab(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: append + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: exact + + + .. py:attribute:: exact_active_class + + + .. py:attribute:: href + + + .. py:attribute:: light + + + .. py:attribute:: link + + + .. py:attribute:: nuxt + + + .. py:attribute:: replace + + + .. py:attribute:: ripple + + + .. py:attribute:: tag + + + .. py:attribute:: target + + + .. py:attribute:: to + + +.. py:class:: TabItem(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: id + + + .. py:attribute:: reverse_transition + + + .. py:attribute:: transition + + + .. py:attribute:: value + + +.. py:class:: TabReverseTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: TabTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: TableOverflow(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: Tabs(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: align_with_title + + + .. py:attribute:: background_color + + + .. py:attribute:: center_active + + + .. py:attribute:: centered + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: fixed_tabs + + + .. py:attribute:: grow + + + .. py:attribute:: height + + + .. py:attribute:: hide_slider + + + .. py:attribute:: icons_and_text + + + .. py:attribute:: light + + + .. py:attribute:: mobile_break_point + + + .. py:attribute:: next_icon + + + .. py:attribute:: optional + + + .. py:attribute:: prev_icon + + + .. py:attribute:: right + + + .. py:attribute:: show_arrows + + + .. py:attribute:: slider_color + + + .. py:attribute:: slider_size + + + .. py:attribute:: value + + + .. py:attribute:: vertical + + +.. py:class:: TabsItems(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: continuous + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: multiple + + + .. py:attribute:: next_icon + + + .. py:attribute:: prev_icon + + + .. py:attribute:: reverse + + + .. py:attribute:: show_arrows + + + .. py:attribute:: show_arrows_on_hover + + + .. py:attribute:: touch + + + .. py:attribute:: touchless + + + .. py:attribute:: value + + + .. py:attribute:: vertical + + +.. py:class:: TabsSlider(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + +.. py:class:: Text(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: value + + +.. py:class:: TextField(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: append_outer_icon + + + .. py:attribute:: autofocus + + + .. py:attribute:: background_color + + + .. py:attribute:: clear_icon + + + .. py:attribute:: clearable + + + .. py:attribute:: color + + + .. py:attribute:: counter + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: filled + + + .. py:attribute:: flat + + + .. py:attribute:: full_width + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: messages + + + .. py:attribute:: outlined + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: placeholder + + + .. py:attribute:: prefix + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: prepend_inner_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: reverse + + + .. py:attribute:: rounded + + + .. py:attribute:: rules + + + .. py:attribute:: shaped + + + .. py:attribute:: single_line + + + .. py:attribute:: solo + + + .. py:attribute:: solo_inverted + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: suffix + + + .. py:attribute:: type + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + +.. py:class:: Textarea(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: append_outer_icon + + + .. py:attribute:: auto_grow + + + .. py:attribute:: autofocus + + + .. py:attribute:: background_color + + + .. py:attribute:: clear_icon + + + .. py:attribute:: clearable + + + .. py:attribute:: color + + + .. py:attribute:: counter + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: filled + + + .. py:attribute:: flat + + + .. py:attribute:: full_width + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: messages + + + .. py:attribute:: no_resize + + + .. py:attribute:: outlined + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: placeholder + + + .. py:attribute:: prefix + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: prepend_inner_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: reverse + + + .. py:attribute:: rounded + + + .. py:attribute:: row_height + + + .. py:attribute:: rows + + + .. py:attribute:: rules + + + .. py:attribute:: shaped + + + .. py:attribute:: single_line + + + .. py:attribute:: solo + + + .. py:attribute:: solo_inverted + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: suffix + + + .. py:attribute:: type + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + +.. py:class:: ThemeProvider(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: root + + +.. py:class:: TimePicker(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: allowed_hours + + + .. py:attribute:: allowed_minutes + + + .. py:attribute:: allowed_seconds + + + .. py:attribute:: ampm_in_title + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: format + + + .. py:attribute:: full_width + + + .. py:attribute:: header_color + + + .. py:attribute:: landscape + + + .. py:attribute:: light + + + .. py:attribute:: max + + + .. py:attribute:: min + + + .. py:attribute:: no_title + + + .. py:attribute:: readonly + + + .. py:attribute:: scrollable + + + .. py:attribute:: use_seconds + + + .. py:attribute:: value + + + .. py:attribute:: width + + +.. py:class:: TimePickerClock(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: ampm + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: double + + + .. py:attribute:: light + + + .. py:attribute:: max + + + .. py:attribute:: min + + + .. py:attribute:: readonly + + + .. py:attribute:: rotate + + + .. py:attribute:: scrollable + + + .. py:attribute:: step + + + .. py:attribute:: value + + +.. py:class:: TimePickerTitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: ampm + + + .. py:attribute:: ampm_readonly + + + .. py:attribute:: color + + + .. py:attribute:: disabled + + + .. py:attribute:: hour + + + .. py:attribute:: minute + + + .. py:attribute:: period + + + .. py:attribute:: readonly + + + .. py:attribute:: second + + + .. py:attribute:: selecting + + + .. py:attribute:: use_seconds + + +.. py:class:: Timeline(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: align_top + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: light + + + .. py:attribute:: reverse + + +.. py:class:: TimelineItem(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: fill_dot + + + .. py:attribute:: hide_dot + + + .. py:attribute:: icon + + + .. py:attribute:: icon_color + + + .. py:attribute:: large + + + .. py:attribute:: left + + + .. py:attribute:: light + + + .. py:attribute:: right + + + .. py:attribute:: small + + +.. py:class:: Toolbar(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: bottom + + + .. py:attribute:: collapse + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: elevation + + + .. py:attribute:: extended + + + .. py:attribute:: extension_height + + + .. py:attribute:: flat + + + .. py:attribute:: floating + + + .. py:attribute:: height + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: prominent + + + .. py:attribute:: short + + + .. py:attribute:: src + + + .. py:attribute:: tag + + + .. py:attribute:: tile + + + .. py:attribute:: width + + +.. py:class:: ToolbarItems(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: ToolbarTitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: Tooltip(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: activator + + + .. py:attribute:: allow_overflow + + + .. py:attribute:: attach + + + .. py:attribute:: bottom + + + .. py:attribute:: close_delay + + + .. py:attribute:: color + + + .. py:attribute:: content_class + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: fixed + + + .. py:attribute:: internal_activator + + + .. py:attribute:: left + + + .. py:attribute:: light + + + .. py:attribute:: max_width + + + .. py:attribute:: min_width + + + .. py:attribute:: nudge_bottom + + + .. py:attribute:: nudge_left + + + .. py:attribute:: nudge_right + + + .. py:attribute:: nudge_top + + + .. py:attribute:: nudge_width + + + .. py:attribute:: offset_overflow + + + .. py:attribute:: open_delay + + + .. py:attribute:: open_on_click + + + .. py:attribute:: open_on_hover + + + .. py:attribute:: position_x + + + .. py:attribute:: position_y + + + .. py:attribute:: right + + + .. py:attribute:: tag + + + .. py:attribute:: top + + + .. py:attribute:: transition + + + .. py:attribute:: value + + + .. py:attribute:: z_index + + +.. py:class:: Treeview(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: activatable + + + .. py:attribute:: active + + + .. py:attribute:: active_class + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: expand_icon + + + .. py:attribute:: hoverable + + + .. py:attribute:: indeterminate_icon + + + .. py:attribute:: item_children + + + .. py:attribute:: item_disabled + + + .. py:attribute:: item_key + + + .. py:attribute:: item_text + + + .. py:attribute:: items + + + .. py:attribute:: light + + + .. py:attribute:: loading_icon + + + .. py:attribute:: multiple_active + + + .. py:attribute:: off_icon + + + .. py:attribute:: on_icon + + + .. py:attribute:: open_ + + + .. py:attribute:: open_all + + + .. py:attribute:: open_on_click + + + .. py:attribute:: return_object + + + .. py:attribute:: rounded + + + .. py:attribute:: search + + + .. py:attribute:: selectable + + + .. py:attribute:: selected_color + + + .. py:attribute:: selection_type + + + .. py:attribute:: shaped + + + .. py:attribute:: transition + + + .. py:attribute:: value + + +.. py:class:: TreeviewNode(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: activatable + + + .. py:attribute:: active_class + + + .. py:attribute:: color + + + .. py:attribute:: expand_icon + + + .. py:attribute:: indeterminate_icon + + + .. py:attribute:: item + + + .. py:attribute:: item_children + + + .. py:attribute:: item_disabled + + + .. py:attribute:: item_key + + + .. py:attribute:: item_text + + + .. py:attribute:: level + + + .. py:attribute:: loading_icon + + + .. py:attribute:: off_icon + + + .. py:attribute:: on_icon + + + .. py:attribute:: open_on_click + + + .. py:attribute:: rounded + + + .. py:attribute:: selectable + + + .. py:attribute:: selected_color + + + .. py:attribute:: shaped + + + .. py:attribute:: transition + + +.. py:class:: VirtualTable(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: chunk_size + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: fixed_header + + + .. py:attribute:: header_height + + + .. py:attribute:: height + + + .. py:attribute:: items + + + .. py:attribute:: light + + + .. py:attribute:: row_height + + +.. py:class:: VuetifyWidget(**kwargs) + + Bases: :py:obj:`ipyvue.VueWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: Window(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: continuous + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: multiple + + + .. py:attribute:: next_icon + + + .. py:attribute:: prev_icon + + + .. py:attribute:: reverse + + + .. py:attribute:: show_arrows + + + .. py:attribute:: show_arrows_on_hover + + + .. py:attribute:: touch + + + .. py:attribute:: touchless + + + .. py:attribute:: value + + + .. py:attribute:: vertical + + +.. py:class:: WindowItem(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: reverse_transition + + + .. py:attribute:: transition + + + .. py:attribute:: value + + diff --git a/docs/autoapi/ipyvuetify/index.rst b/docs/autoapi/ipyvuetify/index.rst new file mode 100644 index 00000000..9765cb6b --- /dev/null +++ b/docs/autoapi/ipyvuetify/index.rst @@ -0,0 +1,11107 @@ +ipyvuetify +========== + +.. py:module:: ipyvuetify + + +Submodules +---------- + +.. toctree:: + :maxdepth: 1 + + /autoapi/ipyvuetify/Themes/index + /autoapi/ipyvuetify/components/index + /autoapi/ipyvuetify/extra/index + + +Attributes +---------- + +.. autoapisummary:: + + ipyvuetify.theme + + +Classes +------- + +.. autoapisummary:: + + ipyvuetify.Alert + ipyvuetify.App + ipyvuetify.AppBar + ipyvuetify.AppBarNavIcon + ipyvuetify.Autocomplete + ipyvuetify.Avatar + ipyvuetify.Badge + ipyvuetify.Banner + ipyvuetify.BottomNavigation + ipyvuetify.BottomSheet + ipyvuetify.Breadcrumbs + ipyvuetify.BreadcrumbsDivider + ipyvuetify.BreadcrumbsItem + ipyvuetify.Btn + ipyvuetify.BtnToggle + ipyvuetify.Calendar + ipyvuetify.CalendarDaily + ipyvuetify.CalendarMonthly + ipyvuetify.CalendarWeekly + ipyvuetify.Card + ipyvuetify.CardActions + ipyvuetify.CardSubtitle + ipyvuetify.CardText + ipyvuetify.CardTitle + ipyvuetify.Carousel + ipyvuetify.CarouselItem + ipyvuetify.CarouselReverseTransition + ipyvuetify.CarouselTransition + ipyvuetify.Checkbox + ipyvuetify.Chip + ipyvuetify.ChipGroup + ipyvuetify.Col + ipyvuetify.ColorPicker + ipyvuetify.ColorPickerCanvas + ipyvuetify.ColorPickerSwatches + ipyvuetify.Combobox + ipyvuetify.Container + ipyvuetify.Content + ipyvuetify.Counter + ipyvuetify.Data + ipyvuetify.DataFooter + ipyvuetify.DataIterator + ipyvuetify.DataTable + ipyvuetify.DataTableHeader + ipyvuetify.DatePicker + ipyvuetify.DatePickerDateTable + ipyvuetify.DatePickerHeader + ipyvuetify.DatePickerMonthTable + ipyvuetify.DatePickerTitle + ipyvuetify.DatePickerYears + ipyvuetify.Dialog + ipyvuetify.DialogBottomTransition + ipyvuetify.DialogTransition + ipyvuetify.Divider + ipyvuetify.EditDialog + ipyvuetify.ExpandTransition + ipyvuetify.ExpandXTransition + ipyvuetify.ExpansionPanel + ipyvuetify.ExpansionPanelContent + ipyvuetify.ExpansionPanelHeader + ipyvuetify.ExpansionPanels + ipyvuetify.FabTransition + ipyvuetify.FadeTransition + ipyvuetify.FileInput + ipyvuetify.Flex + ipyvuetify.Footer + ipyvuetify.Form + ipyvuetify.Hover + ipyvuetify.Html + ipyvuetify.Icon + ipyvuetify.Img + ipyvuetify.Input + ipyvuetify.Item + ipyvuetify.ItemGroup + ipyvuetify.Label + ipyvuetify.Layout + ipyvuetify.Lazy + ipyvuetify.List + ipyvuetify.ListGroup + ipyvuetify.ListItem + ipyvuetify.ListItemAction + ipyvuetify.ListItemActionText + ipyvuetify.ListItemAvatar + ipyvuetify.ListItemContent + ipyvuetify.ListItemGroup + ipyvuetify.ListItemIcon + ipyvuetify.ListItemSubtitle + ipyvuetify.ListItemTitle + ipyvuetify.Menu + ipyvuetify.MenuTransition + ipyvuetify.Messages + ipyvuetify.NavigationDrawer + ipyvuetify.OverflowBtn + ipyvuetify.Overlay + ipyvuetify.Pagination + ipyvuetify.Parallax + ipyvuetify.Picker + ipyvuetify.ProgressCircular + ipyvuetify.ProgressLinear + ipyvuetify.Radio + ipyvuetify.RadioGroup + ipyvuetify.RangeSlider + ipyvuetify.Rating + ipyvuetify.Responsive + ipyvuetify.Row + ipyvuetify.ScaleTransition + ipyvuetify.ScrollXReverseTransition + ipyvuetify.ScrollXTransition + ipyvuetify.ScrollYReverseTransition + ipyvuetify.ScrollYTransition + ipyvuetify.Select + ipyvuetify.Sheet + ipyvuetify.SimpleCheckbox + ipyvuetify.SimpleTable + ipyvuetify.SkeletonLoader + ipyvuetify.SlideGroup + ipyvuetify.SlideItem + ipyvuetify.SlideXReverseTransition + ipyvuetify.SlideXTransition + ipyvuetify.SlideYReverseTransition + ipyvuetify.SlideYTransition + ipyvuetify.Slider + ipyvuetify.Snackbar + ipyvuetify.Spacer + ipyvuetify.Sparkline + ipyvuetify.SpeedDial + ipyvuetify.Stepper + ipyvuetify.StepperContent + ipyvuetify.StepperHeader + ipyvuetify.StepperItems + ipyvuetify.StepperStep + ipyvuetify.Subheader + ipyvuetify.Switch + ipyvuetify.SystemBar + ipyvuetify.Tab + ipyvuetify.TabItem + ipyvuetify.TabReverseTransition + ipyvuetify.TabTransition + ipyvuetify.TableOverflow + ipyvuetify.Tabs + ipyvuetify.TabsItems + ipyvuetify.TabsSlider + ipyvuetify.Text + ipyvuetify.TextField + ipyvuetify.Textarea + ipyvuetify.ThemeProvider + ipyvuetify.TimePicker + ipyvuetify.TimePickerClock + ipyvuetify.TimePickerTitle + ipyvuetify.Timeline + ipyvuetify.TimelineItem + ipyvuetify.Toolbar + ipyvuetify.ToolbarItems + ipyvuetify.ToolbarTitle + ipyvuetify.Tooltip + ipyvuetify.Treeview + ipyvuetify.TreeviewNode + ipyvuetify.VirtualTable + ipyvuetify.VuetifyTemplate + ipyvuetify.VuetifyWidget + ipyvuetify.Window + ipyvuetify.WindowItem + + +Package Contents +---------------- + +.. py:class:: Alert(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: border + + + .. py:attribute:: close_label + + + .. py:attribute:: color + + + .. py:attribute:: colored_border + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: dismissible + + + .. py:attribute:: elevation + + + .. py:attribute:: height + + + .. py:attribute:: icon + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + + .. py:attribute:: outlined + + + .. py:attribute:: prominent + + + .. py:attribute:: tag + + + .. py:attribute:: text + + + .. py:attribute:: tile + + + .. py:attribute:: transition + + + .. py:attribute:: type + + + .. py:attribute:: value + + + .. py:attribute:: width + + +.. py:class:: App(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: id + + + .. py:attribute:: light + + +.. py:class:: AppBar(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: app + + + .. py:attribute:: bottom + + + .. py:attribute:: clipped_left + + + .. py:attribute:: clipped_right + + + .. py:attribute:: collapse + + + .. py:attribute:: collapse_on_scroll + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: elevate_on_scroll + + + .. py:attribute:: elevation + + + .. py:attribute:: extended + + + .. py:attribute:: extension_height + + + .. py:attribute:: fade_img_on_scroll + + + .. py:attribute:: fixed + + + .. py:attribute:: flat + + + .. py:attribute:: floating + + + .. py:attribute:: height + + + .. py:attribute:: hide_on_scroll + + + .. py:attribute:: inverted_scroll + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: prominent + + + .. py:attribute:: scroll_off_screen + + + .. py:attribute:: scroll_target + + + .. py:attribute:: scroll_threshold + + + .. py:attribute:: short + + + .. py:attribute:: shrink_on_scroll + + + .. py:attribute:: src + + + .. py:attribute:: tag + + + .. py:attribute:: tile + + + .. py:attribute:: value + + + .. py:attribute:: width + + +.. py:class:: AppBarNavIcon(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: Autocomplete(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: allow_overflow + + + .. py:attribute:: append_icon + + + .. py:attribute:: append_outer_icon + + + .. py:attribute:: attach + + + .. py:attribute:: auto_select_first + + + .. py:attribute:: autofocus + + + .. py:attribute:: background_color + + + .. py:attribute:: cache_items + + + .. py:attribute:: chips + + + .. py:attribute:: clear_icon + + + .. py:attribute:: clearable + + + .. py:attribute:: color + + + .. py:attribute:: counter + + + .. py:attribute:: dark + + + .. py:attribute:: deletable_chips + + + .. py:attribute:: dense + + + .. py:attribute:: disable_lookup + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: filled + + + .. py:attribute:: flat + + + .. py:attribute:: full_width + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hide_no_data + + + .. py:attribute:: hide_selected + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: item_color + + + .. py:attribute:: item_disabled + + + .. py:attribute:: item_text + + + .. py:attribute:: item_value + + + .. py:attribute:: items + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: menu_props + + + .. py:attribute:: messages + + + .. py:attribute:: multiple + + + .. py:attribute:: no_data_text + + + .. py:attribute:: no_filter + + + .. py:attribute:: open_on_clear + + + .. py:attribute:: outlined + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: placeholder + + + .. py:attribute:: prefix + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: prepend_inner_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: return_object + + + .. py:attribute:: reverse + + + .. py:attribute:: rounded + + + .. py:attribute:: rules + + + .. py:attribute:: search_input + + + .. py:attribute:: shaped + + + .. py:attribute:: single_line + + + .. py:attribute:: small_chips + + + .. py:attribute:: solo + + + .. py:attribute:: solo_inverted + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: suffix + + + .. py:attribute:: type + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + +.. py:class:: Avatar(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: height + + + .. py:attribute:: left + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: right + + + .. py:attribute:: size + + + .. py:attribute:: tile + + + .. py:attribute:: width + + +.. py:class:: Badge(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: avatar + + + .. py:attribute:: bordered + + + .. py:attribute:: bottom + + + .. py:attribute:: color + + + .. py:attribute:: content + + + .. py:attribute:: dark + + + .. py:attribute:: dot + + + .. py:attribute:: icon + + + .. py:attribute:: inline + + + .. py:attribute:: label + + + .. py:attribute:: left + + + .. py:attribute:: light + + + .. py:attribute:: mode + + + .. py:attribute:: offset_x + + + .. py:attribute:: offset_y + + + .. py:attribute:: origin + + + .. py:attribute:: overlap + + + .. py:attribute:: tile + + + .. py:attribute:: transition + + + .. py:attribute:: value + + +.. py:class:: Banner(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: app + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: elevation + + + .. py:attribute:: height + + + .. py:attribute:: icon + + + .. py:attribute:: icon_color + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: mobile_break_point + + + .. py:attribute:: single_line + + + .. py:attribute:: sticky + + + .. py:attribute:: tag + + + .. py:attribute:: tile + + + .. py:attribute:: value + + + .. py:attribute:: width + + +.. py:class:: BottomNavigation(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: active_class + + + .. py:attribute:: app + + + .. py:attribute:: background_color + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: fixed + + + .. py:attribute:: grow + + + .. py:attribute:: height + + + .. py:attribute:: hide_on_scroll + + + .. py:attribute:: horizontal + + + .. py:attribute:: input_value + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: scroll_target + + + .. py:attribute:: scroll_threshold + + + .. py:attribute:: shift + + + .. py:attribute:: value + + + .. py:attribute:: width + + +.. py:class:: BottomSheet(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: activator + + + .. py:attribute:: attach + + + .. py:attribute:: close_delay + + + .. py:attribute:: content_class + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: fullscreen + + + .. py:attribute:: hide_overlay + + + .. py:attribute:: inset + + + .. py:attribute:: internal_activator + + + .. py:attribute:: light + + + .. py:attribute:: max_width + + + .. py:attribute:: no_click_animation + + + .. py:attribute:: open_delay + + + .. py:attribute:: open_on_hover + + + .. py:attribute:: origin + + + .. py:attribute:: overlay_color + + + .. py:attribute:: overlay_opacity + + + .. py:attribute:: persistent + + + .. py:attribute:: retain_focus + + + .. py:attribute:: return_value + + + .. py:attribute:: scrollable + + + .. py:attribute:: transition + + + .. py:attribute:: value + + + .. py:attribute:: width + + +.. py:class:: Breadcrumbs(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: divider + + + .. py:attribute:: items + + + .. py:attribute:: large + + + .. py:attribute:: light + + +.. py:class:: BreadcrumbsDivider(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: BreadcrumbsItem(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: append + + + .. py:attribute:: disabled + + + .. py:attribute:: exact + + + .. py:attribute:: exact_active_class + + + .. py:attribute:: href + + + .. py:attribute:: link + + + .. py:attribute:: nuxt + + + .. py:attribute:: replace + + + .. py:attribute:: ripple + + + .. py:attribute:: tag + + + .. py:attribute:: target + + + .. py:attribute:: to + + +.. py:class:: Btn(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: active_class + + + .. py:attribute:: append + + + .. py:attribute:: block + + + .. py:attribute:: bottom + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: depressed + + + .. py:attribute:: disabled + + + .. py:attribute:: elevation + + + .. py:attribute:: exact + + + .. py:attribute:: exact_active_class + + + .. py:attribute:: fab + + + .. py:attribute:: fixed + + + .. py:attribute:: height + + + .. py:attribute:: href + + + .. py:attribute:: icon + + + .. py:attribute:: input_value + + + .. py:attribute:: large + + + .. py:attribute:: left + + + .. py:attribute:: light + + + .. py:attribute:: link + + + .. py:attribute:: loading + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: nuxt + + + .. py:attribute:: outlined + + + .. py:attribute:: replace + + + .. py:attribute:: retain_focus_on_click + + + .. py:attribute:: right + + + .. py:attribute:: ripple + + + .. py:attribute:: rounded + + + .. py:attribute:: small + + + .. py:attribute:: tag + + + .. py:attribute:: target + + + .. py:attribute:: text + + + .. py:attribute:: tile + + + .. py:attribute:: to + + + .. py:attribute:: top + + + .. py:attribute:: type + + + .. py:attribute:: value + + + .. py:attribute:: width + + + .. py:attribute:: x_large + + + .. py:attribute:: x_small + + +.. py:class:: BtnToggle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: background_color + + + .. py:attribute:: borderless + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: group + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: multiple + + + .. py:attribute:: rounded + + + .. py:attribute:: shaped + + + .. py:attribute:: tile + + + .. py:attribute:: value + + +.. py:class:: Calendar(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: end + + + .. py:attribute:: event_color + + + .. py:attribute:: event_end + + + .. py:attribute:: event_height + + + .. py:attribute:: event_margin_bottom + + + .. py:attribute:: event_more + + + .. py:attribute:: event_more_text + + + .. py:attribute:: event_name + + + .. py:attribute:: event_overlap_mode + + + .. py:attribute:: event_overlap_threshold + + + .. py:attribute:: event_ripple + + + .. py:attribute:: event_start + + + .. py:attribute:: event_text_color + + + .. py:attribute:: events + + + .. py:attribute:: first_interval + + + .. py:attribute:: hide_header + + + .. py:attribute:: interval_count + + + .. py:attribute:: interval_height + + + .. py:attribute:: interval_minutes + + + .. py:attribute:: interval_width + + + .. py:attribute:: light + + + .. py:attribute:: locale + + + .. py:attribute:: max_days + + + .. py:attribute:: min_weeks + + + .. py:attribute:: now + + + .. py:attribute:: short_intervals + + + .. py:attribute:: short_months + + + .. py:attribute:: short_weekdays + + + .. py:attribute:: show_month_on_first + + + .. py:attribute:: start + + + .. py:attribute:: type + + + .. py:attribute:: value + + + .. py:attribute:: weekdays + + +.. py:class:: CalendarDaily(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: end + + + .. py:attribute:: first_interval + + + .. py:attribute:: hide_header + + + .. py:attribute:: interval_count + + + .. py:attribute:: interval_height + + + .. py:attribute:: interval_minutes + + + .. py:attribute:: interval_width + + + .. py:attribute:: light + + + .. py:attribute:: locale + + + .. py:attribute:: max_days + + + .. py:attribute:: now + + + .. py:attribute:: short_intervals + + + .. py:attribute:: short_weekdays + + + .. py:attribute:: start + + + .. py:attribute:: weekdays + + +.. py:class:: CalendarMonthly(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: end + + + .. py:attribute:: hide_header + + + .. py:attribute:: light + + + .. py:attribute:: locale + + + .. py:attribute:: min_weeks + + + .. py:attribute:: now + + + .. py:attribute:: short_months + + + .. py:attribute:: short_weekdays + + + .. py:attribute:: show_month_on_first + + + .. py:attribute:: start + + + .. py:attribute:: weekdays + + +.. py:class:: CalendarWeekly(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: end + + + .. py:attribute:: hide_header + + + .. py:attribute:: light + + + .. py:attribute:: locale + + + .. py:attribute:: min_weeks + + + .. py:attribute:: now + + + .. py:attribute:: short_months + + + .. py:attribute:: short_weekdays + + + .. py:attribute:: show_month_on_first + + + .. py:attribute:: start + + + .. py:attribute:: weekdays + + +.. py:class:: Card(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: append + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: elevation + + + .. py:attribute:: exact + + + .. py:attribute:: exact_active_class + + + .. py:attribute:: flat + + + .. py:attribute:: height + + + .. py:attribute:: hover + + + .. py:attribute:: href + + + .. py:attribute:: img + + + .. py:attribute:: light + + + .. py:attribute:: link + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: nuxt + + + .. py:attribute:: outlined + + + .. py:attribute:: raised + + + .. py:attribute:: replace + + + .. py:attribute:: ripple + + + .. py:attribute:: shaped + + + .. py:attribute:: tag + + + .. py:attribute:: target + + + .. py:attribute:: tile + + + .. py:attribute:: to + + + .. py:attribute:: width + + +.. py:class:: CardActions(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: CardSubtitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: CardText(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: CardTitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: Carousel(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: continuous + + + .. py:attribute:: cycle + + + .. py:attribute:: dark + + + .. py:attribute:: delimiter_icon + + + .. py:attribute:: height + + + .. py:attribute:: hide_delimiter_background + + + .. py:attribute:: hide_delimiters + + + .. py:attribute:: interval + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: multiple + + + .. py:attribute:: next_icon + + + .. py:attribute:: prev_icon + + + .. py:attribute:: progress + + + .. py:attribute:: progress_color + + + .. py:attribute:: reverse + + + .. py:attribute:: show_arrows + + + .. py:attribute:: show_arrows_on_hover + + + .. py:attribute:: touch + + + .. py:attribute:: touchless + + + .. py:attribute:: value + + + .. py:attribute:: vertical + + + .. py:attribute:: vertical_delimiters + + +.. py:class:: CarouselItem(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: append + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: exact + + + .. py:attribute:: exact_active_class + + + .. py:attribute:: href + + + .. py:attribute:: link + + + .. py:attribute:: nuxt + + + .. py:attribute:: replace + + + .. py:attribute:: reverse_transition + + + .. py:attribute:: ripple + + + .. py:attribute:: tag + + + .. py:attribute:: target + + + .. py:attribute:: to + + + .. py:attribute:: transition + + + .. py:attribute:: value + + +.. py:class:: CarouselReverseTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: CarouselTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: Checkbox(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: background_color + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: false_value + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: indeterminate + + + .. py:attribute:: indeterminate_icon + + + .. py:attribute:: input_value + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loading + + + .. py:attribute:: messages + + + .. py:attribute:: multiple + + + .. py:attribute:: off_icon + + + .. py:attribute:: on_icon + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: ripple + + + .. py:attribute:: rules + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: true_value + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + +.. py:class:: Chip(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active + + + .. py:attribute:: active_class + + + .. py:attribute:: append + + + .. py:attribute:: close_ + + + .. py:attribute:: close_icon + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: draggable + + + .. py:attribute:: exact + + + .. py:attribute:: exact_active_class + + + .. py:attribute:: filter + + + .. py:attribute:: filter_icon + + + .. py:attribute:: href + + + .. py:attribute:: input_value + + + .. py:attribute:: label + + + .. py:attribute:: large + + + .. py:attribute:: light + + + .. py:attribute:: link + + + .. py:attribute:: nuxt + + + .. py:attribute:: outlined + + + .. py:attribute:: pill + + + .. py:attribute:: replace + + + .. py:attribute:: ripple + + + .. py:attribute:: small + + + .. py:attribute:: tag + + + .. py:attribute:: target + + + .. py:attribute:: text_color + + + .. py:attribute:: to + + + .. py:attribute:: value + + + .. py:attribute:: x_large + + + .. py:attribute:: x_small + + +.. py:class:: ChipGroup(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: center_active + + + .. py:attribute:: color + + + .. py:attribute:: column + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: mobile_break_point + + + .. py:attribute:: multiple + + + .. py:attribute:: next_icon + + + .. py:attribute:: prev_icon + + + .. py:attribute:: show_arrows + + + .. py:attribute:: value + + +.. py:class:: Col(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: align_self + + + .. py:attribute:: cols + + + .. py:attribute:: lg + + + .. py:attribute:: md + + + .. py:attribute:: offset + + + .. py:attribute:: offset_lg + + + .. py:attribute:: offset_md + + + .. py:attribute:: offset_sm + + + .. py:attribute:: offset_xl + + + .. py:attribute:: order + + + .. py:attribute:: order_lg + + + .. py:attribute:: order_md + + + .. py:attribute:: order_sm + + + .. py:attribute:: order_xl + + + .. py:attribute:: sm + + + .. py:attribute:: tag + + + .. py:attribute:: xl + + +.. py:class:: ColorPicker(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: canvas_height + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: dot_size + + + .. py:attribute:: flat + + + .. py:attribute:: hide_canvas + + + .. py:attribute:: hide_inputs + + + .. py:attribute:: hide_mode_switch + + + .. py:attribute:: light + + + .. py:attribute:: mode + + + .. py:attribute:: show_swatches + + + .. py:attribute:: swatches + + + .. py:attribute:: swatches_max_height + + + .. py:attribute:: value + + + .. py:attribute:: width + + +.. py:class:: ColorPickerCanvas(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: disabled + + + .. py:attribute:: dot_size + + + .. py:attribute:: height + + + .. py:attribute:: width + + +.. py:class:: ColorPickerSwatches(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: swatches + + +.. py:class:: Combobox(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: allow_overflow + + + .. py:attribute:: append_icon + + + .. py:attribute:: append_outer_icon + + + .. py:attribute:: attach + + + .. py:attribute:: auto_select_first + + + .. py:attribute:: autofocus + + + .. py:attribute:: background_color + + + .. py:attribute:: cache_items + + + .. py:attribute:: chips + + + .. py:attribute:: clear_icon + + + .. py:attribute:: clearable + + + .. py:attribute:: color + + + .. py:attribute:: counter + + + .. py:attribute:: dark + + + .. py:attribute:: deletable_chips + + + .. py:attribute:: delimiters + + + .. py:attribute:: dense + + + .. py:attribute:: disable_lookup + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: filled + + + .. py:attribute:: flat + + + .. py:attribute:: full_width + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hide_no_data + + + .. py:attribute:: hide_selected + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: item_color + + + .. py:attribute:: item_disabled + + + .. py:attribute:: item_text + + + .. py:attribute:: item_value + + + .. py:attribute:: items + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: menu_props + + + .. py:attribute:: messages + + + .. py:attribute:: multiple + + + .. py:attribute:: no_data_text + + + .. py:attribute:: no_filter + + + .. py:attribute:: open_on_clear + + + .. py:attribute:: outlined + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: placeholder + + + .. py:attribute:: prefix + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: prepend_inner_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: return_object + + + .. py:attribute:: reverse + + + .. py:attribute:: rounded + + + .. py:attribute:: rules + + + .. py:attribute:: search_input + + + .. py:attribute:: shaped + + + .. py:attribute:: single_line + + + .. py:attribute:: small_chips + + + .. py:attribute:: solo + + + .. py:attribute:: solo_inverted + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: suffix + + + .. py:attribute:: type + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + +.. py:class:: Container(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: fluid + + + .. py:attribute:: id + + + .. py:attribute:: ma_0 + + + .. py:attribute:: ma_1 + + + .. py:attribute:: ma_2 + + + .. py:attribute:: ma_3 + + + .. py:attribute:: ma_4 + + + .. py:attribute:: ma_5 + + + .. py:attribute:: ma_auto + + + .. py:attribute:: mb_0 + + + .. py:attribute:: mb_1 + + + .. py:attribute:: mb_2 + + + .. py:attribute:: mb_3 + + + .. py:attribute:: mb_4 + + + .. py:attribute:: mb_5 + + + .. py:attribute:: mb_auto + + + .. py:attribute:: ml_0 + + + .. py:attribute:: ml_1 + + + .. py:attribute:: ml_2 + + + .. py:attribute:: ml_3 + + + .. py:attribute:: ml_4 + + + .. py:attribute:: ml_5 + + + .. py:attribute:: ml_auto + + + .. py:attribute:: mr_0 + + + .. py:attribute:: mr_1 + + + .. py:attribute:: mr_2 + + + .. py:attribute:: mr_3 + + + .. py:attribute:: mr_4 + + + .. py:attribute:: mr_5 + + + .. py:attribute:: mr_auto + + + .. py:attribute:: mt_0 + + + .. py:attribute:: mt_1 + + + .. py:attribute:: mt_2 + + + .. py:attribute:: mt_3 + + + .. py:attribute:: mt_4 + + + .. py:attribute:: mt_5 + + + .. py:attribute:: mt_auto + + + .. py:attribute:: mx_0 + + + .. py:attribute:: mx_1 + + + .. py:attribute:: mx_2 + + + .. py:attribute:: mx_3 + + + .. py:attribute:: mx_4 + + + .. py:attribute:: mx_5 + + + .. py:attribute:: mx_auto + + + .. py:attribute:: my_0 + + + .. py:attribute:: my_1 + + + .. py:attribute:: my_2 + + + .. py:attribute:: my_3 + + + .. py:attribute:: my_4 + + + .. py:attribute:: my_5 + + + .. py:attribute:: my_auto + + + .. py:attribute:: pa_0 + + + .. py:attribute:: pa_1 + + + .. py:attribute:: pa_2 + + + .. py:attribute:: pa_3 + + + .. py:attribute:: pa_4 + + + .. py:attribute:: pa_5 + + + .. py:attribute:: pa_auto + + + .. py:attribute:: pb_0 + + + .. py:attribute:: pb_1 + + + .. py:attribute:: pb_2 + + + .. py:attribute:: pb_3 + + + .. py:attribute:: pb_4 + + + .. py:attribute:: pb_5 + + + .. py:attribute:: pb_auto + + + .. py:attribute:: pl_0 + + + .. py:attribute:: pl_1 + + + .. py:attribute:: pl_2 + + + .. py:attribute:: pl_3 + + + .. py:attribute:: pl_4 + + + .. py:attribute:: pl_5 + + + .. py:attribute:: pl_auto + + + .. py:attribute:: pr_0 + + + .. py:attribute:: pr_1 + + + .. py:attribute:: pr_2 + + + .. py:attribute:: pr_3 + + + .. py:attribute:: pr_4 + + + .. py:attribute:: pr_5 + + + .. py:attribute:: pr_auto + + + .. py:attribute:: pt_0 + + + .. py:attribute:: pt_1 + + + .. py:attribute:: pt_2 + + + .. py:attribute:: pt_3 + + + .. py:attribute:: pt_4 + + + .. py:attribute:: pt_5 + + + .. py:attribute:: pt_auto + + + .. py:attribute:: px_0 + + + .. py:attribute:: px_1 + + + .. py:attribute:: px_2 + + + .. py:attribute:: px_3 + + + .. py:attribute:: px_4 + + + .. py:attribute:: px_5 + + + .. py:attribute:: px_auto + + + .. py:attribute:: py_0 + + + .. py:attribute:: py_1 + + + .. py:attribute:: py_2 + + + .. py:attribute:: py_3 + + + .. py:attribute:: py_4 + + + .. py:attribute:: py_5 + + + .. py:attribute:: py_auto + + + .. py:attribute:: tag + + +.. py:class:: Content(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: ma_0 + + + .. py:attribute:: ma_1 + + + .. py:attribute:: ma_2 + + + .. py:attribute:: ma_3 + + + .. py:attribute:: ma_4 + + + .. py:attribute:: ma_5 + + + .. py:attribute:: ma_auto + + + .. py:attribute:: mb_0 + + + .. py:attribute:: mb_1 + + + .. py:attribute:: mb_2 + + + .. py:attribute:: mb_3 + + + .. py:attribute:: mb_4 + + + .. py:attribute:: mb_5 + + + .. py:attribute:: mb_auto + + + .. py:attribute:: ml_0 + + + .. py:attribute:: ml_1 + + + .. py:attribute:: ml_2 + + + .. py:attribute:: ml_3 + + + .. py:attribute:: ml_4 + + + .. py:attribute:: ml_5 + + + .. py:attribute:: ml_auto + + + .. py:attribute:: mr_0 + + + .. py:attribute:: mr_1 + + + .. py:attribute:: mr_2 + + + .. py:attribute:: mr_3 + + + .. py:attribute:: mr_4 + + + .. py:attribute:: mr_5 + + + .. py:attribute:: mr_auto + + + .. py:attribute:: mt_0 + + + .. py:attribute:: mt_1 + + + .. py:attribute:: mt_2 + + + .. py:attribute:: mt_3 + + + .. py:attribute:: mt_4 + + + .. py:attribute:: mt_5 + + + .. py:attribute:: mt_auto + + + .. py:attribute:: mx_0 + + + .. py:attribute:: mx_1 + + + .. py:attribute:: mx_2 + + + .. py:attribute:: mx_3 + + + .. py:attribute:: mx_4 + + + .. py:attribute:: mx_5 + + + .. py:attribute:: mx_auto + + + .. py:attribute:: my_0 + + + .. py:attribute:: my_1 + + + .. py:attribute:: my_2 + + + .. py:attribute:: my_3 + + + .. py:attribute:: my_4 + + + .. py:attribute:: my_5 + + + .. py:attribute:: my_auto + + + .. py:attribute:: pa_0 + + + .. py:attribute:: pa_1 + + + .. py:attribute:: pa_2 + + + .. py:attribute:: pa_3 + + + .. py:attribute:: pa_4 + + + .. py:attribute:: pa_5 + + + .. py:attribute:: pa_auto + + + .. py:attribute:: pb_0 + + + .. py:attribute:: pb_1 + + + .. py:attribute:: pb_2 + + + .. py:attribute:: pb_3 + + + .. py:attribute:: pb_4 + + + .. py:attribute:: pb_5 + + + .. py:attribute:: pb_auto + + + .. py:attribute:: pl_0 + + + .. py:attribute:: pl_1 + + + .. py:attribute:: pl_2 + + + .. py:attribute:: pl_3 + + + .. py:attribute:: pl_4 + + + .. py:attribute:: pl_5 + + + .. py:attribute:: pl_auto + + + .. py:attribute:: pr_0 + + + .. py:attribute:: pr_1 + + + .. py:attribute:: pr_2 + + + .. py:attribute:: pr_3 + + + .. py:attribute:: pr_4 + + + .. py:attribute:: pr_5 + + + .. py:attribute:: pr_auto + + + .. py:attribute:: pt_0 + + + .. py:attribute:: pt_1 + + + .. py:attribute:: pt_2 + + + .. py:attribute:: pt_3 + + + .. py:attribute:: pt_4 + + + .. py:attribute:: pt_5 + + + .. py:attribute:: pt_auto + + + .. py:attribute:: px_0 + + + .. py:attribute:: px_1 + + + .. py:attribute:: px_2 + + + .. py:attribute:: px_3 + + + .. py:attribute:: px_4 + + + .. py:attribute:: px_5 + + + .. py:attribute:: px_auto + + + .. py:attribute:: py_0 + + + .. py:attribute:: py_1 + + + .. py:attribute:: py_2 + + + .. py:attribute:: py_3 + + + .. py:attribute:: py_4 + + + .. py:attribute:: py_5 + + + .. py:attribute:: py_auto + + + .. py:attribute:: tag + + +.. py:class:: Counter(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: max + + + .. py:attribute:: value + + +.. py:class:: Data(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: disable_filtering + + + .. py:attribute:: disable_pagination + + + .. py:attribute:: disable_sort + + + .. py:attribute:: group_by + + + .. py:attribute:: group_desc + + + .. py:attribute:: items + + + .. py:attribute:: items_per_page + + + .. py:attribute:: locale + + + .. py:attribute:: multi_sort + + + .. py:attribute:: must_sort + + + .. py:attribute:: options + + + .. py:attribute:: page + + + .. py:attribute:: search + + + .. py:attribute:: server_items_length + + + .. py:attribute:: sort_by + + + .. py:attribute:: sort_desc + + +.. py:class:: DataFooter(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: disable_items_per_page + + + .. py:attribute:: disable_pagination + + + .. py:attribute:: first_icon + + + .. py:attribute:: items_per_page_all_text + + + .. py:attribute:: items_per_page_options + + + .. py:attribute:: items_per_page_text + + + .. py:attribute:: last_icon + + + .. py:attribute:: next_icon + + + .. py:attribute:: options + + + .. py:attribute:: page_text + + + .. py:attribute:: pagination + + + .. py:attribute:: prev_icon + + + .. py:attribute:: show_current_page + + + .. py:attribute:: show_first_last_page + + +.. py:class:: DataIterator(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: disable_filtering + + + .. py:attribute:: disable_pagination + + + .. py:attribute:: disable_sort + + + .. py:attribute:: expanded + + + .. py:attribute:: footer_props + + + .. py:attribute:: group_by + + + .. py:attribute:: group_desc + + + .. py:attribute:: hide_default_footer + + + .. py:attribute:: item_key + + + .. py:attribute:: items + + + .. py:attribute:: items_per_page + + + .. py:attribute:: light + + + .. py:attribute:: loading + + + .. py:attribute:: loading_text + + + .. py:attribute:: locale + + + .. py:attribute:: mobile_breakpoint + + + .. py:attribute:: multi_sort + + + .. py:attribute:: must_sort + + + .. py:attribute:: no_data_text + + + .. py:attribute:: no_results_text + + + .. py:attribute:: options + + + .. py:attribute:: page + + + .. py:attribute:: search + + + .. py:attribute:: selectable_key + + + .. py:attribute:: server_items_length + + + .. py:attribute:: single_expand + + + .. py:attribute:: single_select + + + .. py:attribute:: sort_by + + + .. py:attribute:: sort_desc + + + .. py:attribute:: value + + +.. py:class:: DataTable(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: calculate_widths + + + .. py:attribute:: caption + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disable_filtering + + + .. py:attribute:: disable_pagination + + + .. py:attribute:: disable_sort + + + .. py:attribute:: expand_icon + + + .. py:attribute:: expanded + + + .. py:attribute:: fixed_header + + + .. py:attribute:: footer_props + + + .. py:attribute:: group_by + + + .. py:attribute:: group_desc + + + .. py:attribute:: header_props + + + .. py:attribute:: headers + + + .. py:attribute:: headers_length + + + .. py:attribute:: height + + + .. py:attribute:: hide_default_footer + + + .. py:attribute:: hide_default_header + + + .. py:attribute:: item_key + + + .. py:attribute:: items + + + .. py:attribute:: items_per_page + + + .. py:attribute:: light + + + .. py:attribute:: loading + + + .. py:attribute:: loading_text + + + .. py:attribute:: locale + + + .. py:attribute:: mobile_breakpoint + + + .. py:attribute:: multi_sort + + + .. py:attribute:: must_sort + + + .. py:attribute:: no_data_text + + + .. py:attribute:: no_results_text + + + .. py:attribute:: options + + + .. py:attribute:: page + + + .. py:attribute:: search + + + .. py:attribute:: selectable_key + + + .. py:attribute:: server_items_length + + + .. py:attribute:: show_expand + + + .. py:attribute:: show_group_by + + + .. py:attribute:: show_select + + + .. py:attribute:: single_expand + + + .. py:attribute:: single_select + + + .. py:attribute:: sort_by + + + .. py:attribute:: sort_desc + + + .. py:attribute:: value + + +.. py:class:: DataTableHeader(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: mobile + + +.. py:class:: DatePicker(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: event_color + + + .. py:attribute:: events + + + .. py:attribute:: first_day_of_week + + + .. py:attribute:: full_width + + + .. py:attribute:: header_color + + + .. py:attribute:: landscape + + + .. py:attribute:: light + + + .. py:attribute:: locale + + + .. py:attribute:: locale_first_day_of_year + + + .. py:attribute:: max + + + .. py:attribute:: min + + + .. py:attribute:: multiple + + + .. py:attribute:: next_icon + + + .. py:attribute:: no_title + + + .. py:attribute:: picker_date + + + .. py:attribute:: prev_icon + + + .. py:attribute:: range + + + .. py:attribute:: reactive + + + .. py:attribute:: readonly + + + .. py:attribute:: scrollable + + + .. py:attribute:: selected_items_text + + + .. py:attribute:: show_current + + + .. py:attribute:: show_week + + + .. py:attribute:: type + + + .. py:attribute:: value + + + .. py:attribute:: width + + + .. py:attribute:: year_icon + + +.. py:class:: DatePickerDateTable(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: current + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: event_color + + + .. py:attribute:: events + + + .. py:attribute:: first_day_of_week + + + .. py:attribute:: light + + + .. py:attribute:: locale + + + .. py:attribute:: locale_first_day_of_year + + + .. py:attribute:: max + + + .. py:attribute:: min + + + .. py:attribute:: range + + + .. py:attribute:: readonly + + + .. py:attribute:: scrollable + + + .. py:attribute:: show_week + + + .. py:attribute:: table_date + + + .. py:attribute:: value + + +.. py:class:: DatePickerHeader(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: light + + + .. py:attribute:: locale + + + .. py:attribute:: max + + + .. py:attribute:: min + + + .. py:attribute:: next_icon + + + .. py:attribute:: prev_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: value + + +.. py:class:: DatePickerMonthTable(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: current + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: event_color + + + .. py:attribute:: events + + + .. py:attribute:: light + + + .. py:attribute:: locale + + + .. py:attribute:: max + + + .. py:attribute:: min + + + .. py:attribute:: range + + + .. py:attribute:: readonly + + + .. py:attribute:: scrollable + + + .. py:attribute:: table_date + + + .. py:attribute:: value + + +.. py:class:: DatePickerTitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: date + + + .. py:attribute:: disabled + + + .. py:attribute:: readonly + + + .. py:attribute:: selecting_year + + + .. py:attribute:: value + + + .. py:attribute:: year + + + .. py:attribute:: year_icon + + +.. py:class:: DatePickerYears(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: locale + + + .. py:attribute:: max + + + .. py:attribute:: min + + + .. py:attribute:: readonly + + + .. py:attribute:: value + + +.. py:class:: Dialog(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: activator + + + .. py:attribute:: attach + + + .. py:attribute:: close_delay + + + .. py:attribute:: content_class + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: fullscreen + + + .. py:attribute:: hide_overlay + + + .. py:attribute:: internal_activator + + + .. py:attribute:: light + + + .. py:attribute:: max_width + + + .. py:attribute:: no_click_animation + + + .. py:attribute:: open_delay + + + .. py:attribute:: open_on_hover + + + .. py:attribute:: origin + + + .. py:attribute:: overlay_color + + + .. py:attribute:: overlay_opacity + + + .. py:attribute:: persistent + + + .. py:attribute:: retain_focus + + + .. py:attribute:: return_value + + + .. py:attribute:: scrollable + + + .. py:attribute:: transition + + + .. py:attribute:: value + + + .. py:attribute:: width + + +.. py:class:: DialogBottomTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: DialogTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: Divider(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: inset + + + .. py:attribute:: light + + + .. py:attribute:: vertical + + +.. py:class:: EditDialog(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: cancel_text + + + .. py:attribute:: dark + + + .. py:attribute:: eager + + + .. py:attribute:: large + + + .. py:attribute:: light + + + .. py:attribute:: persistent + + + .. py:attribute:: return_value + + + .. py:attribute:: save_text + + + .. py:attribute:: transition + + +.. py:class:: ExpandTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: mode + + +.. py:class:: ExpandXTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: mode + + +.. py:class:: ExpansionPanel(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: disabled + + + .. py:attribute:: readonly + + +.. py:class:: ExpansionPanelContent(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: eager + + +.. py:class:: ExpansionPanelHeader(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: disable_icon_rotate + + + .. py:attribute:: expand_icon + + + .. py:attribute:: hide_actions + + + .. py:attribute:: ripple + + +.. py:class:: ExpansionPanels(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: accordion + + + .. py:attribute:: active_class + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: flat + + + .. py:attribute:: focusable + + + .. py:attribute:: hover + + + .. py:attribute:: inset + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: multiple + + + .. py:attribute:: popout + + + .. py:attribute:: readonly + + + .. py:attribute:: tile + + + .. py:attribute:: value + + +.. py:class:: FabTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: FadeTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: FileInput(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: append_outer_icon + + + .. py:attribute:: autofocus + + + .. py:attribute:: background_color + + + .. py:attribute:: chips + + + .. py:attribute:: clear_icon + + + .. py:attribute:: clearable + + + .. py:attribute:: color + + + .. py:attribute:: counter + + + .. py:attribute:: counter_size_string + + + .. py:attribute:: counter_string + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: filled + + + .. py:attribute:: flat + + + .. py:attribute:: full_width + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: messages + + + .. py:attribute:: multiple + + + .. py:attribute:: outlined + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: placeholder + + + .. py:attribute:: prefix + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: prepend_inner_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: reverse + + + .. py:attribute:: rounded + + + .. py:attribute:: rules + + + .. py:attribute:: shaped + + + .. py:attribute:: show_size + + + .. py:attribute:: single_line + + + .. py:attribute:: small_chips + + + .. py:attribute:: solo + + + .. py:attribute:: solo_inverted + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: suffix + + + .. py:attribute:: truncate_length + + + .. py:attribute:: type + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + +.. py:class:: Flex(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: align_self_baseline + + + .. py:attribute:: align_self_center + + + .. py:attribute:: align_self_end + + + .. py:attribute:: align_self_start + + + .. py:attribute:: grow + + + .. py:attribute:: id + + + .. py:attribute:: lg1 + + + .. py:attribute:: lg10 + + + .. py:attribute:: lg11 + + + .. py:attribute:: lg12 + + + .. py:attribute:: lg2 + + + .. py:attribute:: lg3 + + + .. py:attribute:: lg4 + + + .. py:attribute:: lg5 + + + .. py:attribute:: lg6 + + + .. py:attribute:: lg7 + + + .. py:attribute:: lg8 + + + .. py:attribute:: lg9 + + + .. py:attribute:: ma_0 + + + .. py:attribute:: ma_1 + + + .. py:attribute:: ma_2 + + + .. py:attribute:: ma_3 + + + .. py:attribute:: ma_4 + + + .. py:attribute:: ma_5 + + + .. py:attribute:: ma_auto + + + .. py:attribute:: mb_0 + + + .. py:attribute:: mb_1 + + + .. py:attribute:: mb_2 + + + .. py:attribute:: mb_3 + + + .. py:attribute:: mb_4 + + + .. py:attribute:: mb_5 + + + .. py:attribute:: mb_auto + + + .. py:attribute:: md1 + + + .. py:attribute:: md10 + + + .. py:attribute:: md11 + + + .. py:attribute:: md12 + + + .. py:attribute:: md2 + + + .. py:attribute:: md3 + + + .. py:attribute:: md4 + + + .. py:attribute:: md5 + + + .. py:attribute:: md6 + + + .. py:attribute:: md7 + + + .. py:attribute:: md8 + + + .. py:attribute:: md9 + + + .. py:attribute:: ml_0 + + + .. py:attribute:: ml_1 + + + .. py:attribute:: ml_2 + + + .. py:attribute:: ml_3 + + + .. py:attribute:: ml_4 + + + .. py:attribute:: ml_5 + + + .. py:attribute:: ml_auto + + + .. py:attribute:: mr_0 + + + .. py:attribute:: mr_1 + + + .. py:attribute:: mr_2 + + + .. py:attribute:: mr_3 + + + .. py:attribute:: mr_4 + + + .. py:attribute:: mr_5 + + + .. py:attribute:: mr_auto + + + .. py:attribute:: mt_0 + + + .. py:attribute:: mt_1 + + + .. py:attribute:: mt_2 + + + .. py:attribute:: mt_3 + + + .. py:attribute:: mt_4 + + + .. py:attribute:: mt_5 + + + .. py:attribute:: mt_auto + + + .. py:attribute:: mx_0 + + + .. py:attribute:: mx_1 + + + .. py:attribute:: mx_2 + + + .. py:attribute:: mx_3 + + + .. py:attribute:: mx_4 + + + .. py:attribute:: mx_5 + + + .. py:attribute:: mx_auto + + + .. py:attribute:: my_0 + + + .. py:attribute:: my_1 + + + .. py:attribute:: my_2 + + + .. py:attribute:: my_3 + + + .. py:attribute:: my_4 + + + .. py:attribute:: my_5 + + + .. py:attribute:: my_auto + + + .. py:attribute:: offset_lg0 + + + .. py:attribute:: offset_lg1 + + + .. py:attribute:: offset_lg10 + + + .. py:attribute:: offset_lg11 + + + .. py:attribute:: offset_lg12 + + + .. py:attribute:: offset_lg2 + + + .. py:attribute:: offset_lg3 + + + .. py:attribute:: offset_lg4 + + + .. py:attribute:: offset_lg5 + + + .. py:attribute:: offset_lg6 + + + .. py:attribute:: offset_lg7 + + + .. py:attribute:: offset_lg8 + + + .. py:attribute:: offset_lg9 + + + .. py:attribute:: offset_md0 + + + .. py:attribute:: offset_md1 + + + .. py:attribute:: offset_md10 + + + .. py:attribute:: offset_md11 + + + .. py:attribute:: offset_md12 + + + .. py:attribute:: offset_md2 + + + .. py:attribute:: offset_md3 + + + .. py:attribute:: offset_md4 + + + .. py:attribute:: offset_md5 + + + .. py:attribute:: offset_md6 + + + .. py:attribute:: offset_md7 + + + .. py:attribute:: offset_md8 + + + .. py:attribute:: offset_md9 + + + .. py:attribute:: offset_sm0 + + + .. py:attribute:: offset_sm1 + + + .. py:attribute:: offset_sm10 + + + .. py:attribute:: offset_sm11 + + + .. py:attribute:: offset_sm12 + + + .. py:attribute:: offset_sm2 + + + .. py:attribute:: offset_sm3 + + + .. py:attribute:: offset_sm4 + + + .. py:attribute:: offset_sm5 + + + .. py:attribute:: offset_sm6 + + + .. py:attribute:: offset_sm7 + + + .. py:attribute:: offset_sm8 + + + .. py:attribute:: offset_sm9 + + + .. py:attribute:: offset_xl0 + + + .. py:attribute:: offset_xl1 + + + .. py:attribute:: offset_xl10 + + + .. py:attribute:: offset_xl11 + + + .. py:attribute:: offset_xl12 + + + .. py:attribute:: offset_xl2 + + + .. py:attribute:: offset_xl3 + + + .. py:attribute:: offset_xl4 + + + .. py:attribute:: offset_xl5 + + + .. py:attribute:: offset_xl6 + + + .. py:attribute:: offset_xl7 + + + .. py:attribute:: offset_xl8 + + + .. py:attribute:: offset_xl9 + + + .. py:attribute:: offset_xs0 + + + .. py:attribute:: offset_xs1 + + + .. py:attribute:: offset_xs10 + + + .. py:attribute:: offset_xs11 + + + .. py:attribute:: offset_xs12 + + + .. py:attribute:: offset_xs2 + + + .. py:attribute:: offset_xs3 + + + .. py:attribute:: offset_xs4 + + + .. py:attribute:: offset_xs5 + + + .. py:attribute:: offset_xs6 + + + .. py:attribute:: offset_xs7 + + + .. py:attribute:: offset_xs8 + + + .. py:attribute:: offset_xs9 + + + .. py:attribute:: order_lg1 + + + .. py:attribute:: order_lg10 + + + .. py:attribute:: order_lg11 + + + .. py:attribute:: order_lg12 + + + .. py:attribute:: order_lg2 + + + .. py:attribute:: order_lg3 + + + .. py:attribute:: order_lg4 + + + .. py:attribute:: order_lg5 + + + .. py:attribute:: order_lg6 + + + .. py:attribute:: order_lg7 + + + .. py:attribute:: order_lg8 + + + .. py:attribute:: order_lg9 + + + .. py:attribute:: order_md1 + + + .. py:attribute:: order_md10 + + + .. py:attribute:: order_md11 + + + .. py:attribute:: order_md12 + + + .. py:attribute:: order_md2 + + + .. py:attribute:: order_md3 + + + .. py:attribute:: order_md4 + + + .. py:attribute:: order_md5 + + + .. py:attribute:: order_md6 + + + .. py:attribute:: order_md7 + + + .. py:attribute:: order_md8 + + + .. py:attribute:: order_md9 + + + .. py:attribute:: order_sm1 + + + .. py:attribute:: order_sm10 + + + .. py:attribute:: order_sm11 + + + .. py:attribute:: order_sm12 + + + .. py:attribute:: order_sm2 + + + .. py:attribute:: order_sm3 + + + .. py:attribute:: order_sm4 + + + .. py:attribute:: order_sm5 + + + .. py:attribute:: order_sm6 + + + .. py:attribute:: order_sm7 + + + .. py:attribute:: order_sm8 + + + .. py:attribute:: order_sm9 + + + .. py:attribute:: order_xl1 + + + .. py:attribute:: order_xl10 + + + .. py:attribute:: order_xl11 + + + .. py:attribute:: order_xl12 + + + .. py:attribute:: order_xl2 + + + .. py:attribute:: order_xl3 + + + .. py:attribute:: order_xl4 + + + .. py:attribute:: order_xl5 + + + .. py:attribute:: order_xl6 + + + .. py:attribute:: order_xl7 + + + .. py:attribute:: order_xl8 + + + .. py:attribute:: order_xl9 + + + .. py:attribute:: order_xs1 + + + .. py:attribute:: order_xs10 + + + .. py:attribute:: order_xs11 + + + .. py:attribute:: order_xs12 + + + .. py:attribute:: order_xs2 + + + .. py:attribute:: order_xs3 + + + .. py:attribute:: order_xs4 + + + .. py:attribute:: order_xs5 + + + .. py:attribute:: order_xs6 + + + .. py:attribute:: order_xs7 + + + .. py:attribute:: order_xs8 + + + .. py:attribute:: order_xs9 + + + .. py:attribute:: pa_0 + + + .. py:attribute:: pa_1 + + + .. py:attribute:: pa_2 + + + .. py:attribute:: pa_3 + + + .. py:attribute:: pa_4 + + + .. py:attribute:: pa_5 + + + .. py:attribute:: pa_auto + + + .. py:attribute:: pb_0 + + + .. py:attribute:: pb_1 + + + .. py:attribute:: pb_2 + + + .. py:attribute:: pb_3 + + + .. py:attribute:: pb_4 + + + .. py:attribute:: pb_5 + + + .. py:attribute:: pb_auto + + + .. py:attribute:: pl_0 + + + .. py:attribute:: pl_1 + + + .. py:attribute:: pl_2 + + + .. py:attribute:: pl_3 + + + .. py:attribute:: pl_4 + + + .. py:attribute:: pl_5 + + + .. py:attribute:: pl_auto + + + .. py:attribute:: pr_0 + + + .. py:attribute:: pr_1 + + + .. py:attribute:: pr_2 + + + .. py:attribute:: pr_3 + + + .. py:attribute:: pr_4 + + + .. py:attribute:: pr_5 + + + .. py:attribute:: pr_auto + + + .. py:attribute:: pt_0 + + + .. py:attribute:: pt_1 + + + .. py:attribute:: pt_2 + + + .. py:attribute:: pt_3 + + + .. py:attribute:: pt_4 + + + .. py:attribute:: pt_5 + + + .. py:attribute:: pt_auto + + + .. py:attribute:: px_0 + + + .. py:attribute:: px_1 + + + .. py:attribute:: px_2 + + + .. py:attribute:: px_3 + + + .. py:attribute:: px_4 + + + .. py:attribute:: px_5 + + + .. py:attribute:: px_auto + + + .. py:attribute:: py_0 + + + .. py:attribute:: py_1 + + + .. py:attribute:: py_2 + + + .. py:attribute:: py_3 + + + .. py:attribute:: py_4 + + + .. py:attribute:: py_5 + + + .. py:attribute:: py_auto + + + .. py:attribute:: shrink + + + .. py:attribute:: sm1 + + + .. py:attribute:: sm10 + + + .. py:attribute:: sm11 + + + .. py:attribute:: sm12 + + + .. py:attribute:: sm2 + + + .. py:attribute:: sm3 + + + .. py:attribute:: sm4 + + + .. py:attribute:: sm5 + + + .. py:attribute:: sm6 + + + .. py:attribute:: sm7 + + + .. py:attribute:: sm8 + + + .. py:attribute:: sm9 + + + .. py:attribute:: tag + + + .. py:attribute:: xl1 + + + .. py:attribute:: xl10 + + + .. py:attribute:: xl11 + + + .. py:attribute:: xl12 + + + .. py:attribute:: xl2 + + + .. py:attribute:: xl3 + + + .. py:attribute:: xl4 + + + .. py:attribute:: xl5 + + + .. py:attribute:: xl6 + + + .. py:attribute:: xl7 + + + .. py:attribute:: xl8 + + + .. py:attribute:: xl9 + + + .. py:attribute:: xs1 + + + .. py:attribute:: xs10 + + + .. py:attribute:: xs11 + + + .. py:attribute:: xs12 + + + .. py:attribute:: xs2 + + + .. py:attribute:: xs3 + + + .. py:attribute:: xs4 + + + .. py:attribute:: xs5 + + + .. py:attribute:: xs6 + + + .. py:attribute:: xs7 + + + .. py:attribute:: xs8 + + + .. py:attribute:: xs9 + + +.. py:class:: Footer(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: app + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: elevation + + + .. py:attribute:: fixed + + + .. py:attribute:: height + + + .. py:attribute:: inset + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: padless + + + .. py:attribute:: tag + + + .. py:attribute:: tile + + + .. py:attribute:: width + + +.. py:class:: Form(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: lazy_validation + + + .. py:attribute:: value + + +.. py:class:: Hover(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: close_delay + + + .. py:attribute:: disabled + + + .. py:attribute:: open_delay + + + .. py:attribute:: value + + +.. py:class:: Html(**kwargs) + + Bases: :py:obj:`ipyvue.Html` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: Icon(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: large + + + .. py:attribute:: left + + + .. py:attribute:: light + + + .. py:attribute:: right + + + .. py:attribute:: size + + + .. py:attribute:: small + + + .. py:attribute:: tag + + + .. py:attribute:: x_large + + + .. py:attribute:: x_small + + +.. py:class:: Img(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: alt + + + .. py:attribute:: aspect_ratio + + + .. py:attribute:: contain + + + .. py:attribute:: eager + + + .. py:attribute:: gradient + + + .. py:attribute:: height + + + .. py:attribute:: lazy_src + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: options + + + .. py:attribute:: position + + + .. py:attribute:: sizes + + + .. py:attribute:: src + + + .. py:attribute:: srcset + + + .. py:attribute:: transition + + + .. py:attribute:: width + + +.. py:class:: Input(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: background_color + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loading + + + .. py:attribute:: messages + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: rules + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + +.. py:class:: Item(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: disabled + + + .. py:attribute:: value + + +.. py:class:: ItemGroup(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: multiple + + + .. py:attribute:: value + + +.. py:class:: Label(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: focused + + + .. py:attribute:: for_ + + + .. py:attribute:: left + + + .. py:attribute:: light + + + .. py:attribute:: right + + + .. py:attribute:: value + + +.. py:class:: Layout(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: align_baseline + + + .. py:attribute:: align_center + + + .. py:attribute:: align_content_center + + + .. py:attribute:: align_content_end + + + .. py:attribute:: align_content_space_around + + + .. py:attribute:: align_content_space_between + + + .. py:attribute:: align_content_start + + + .. py:attribute:: align_end + + + .. py:attribute:: align_start + + + .. py:attribute:: column + + + .. py:attribute:: d_block + + + .. py:attribute:: d_contents + + + .. py:attribute:: d_flex + + + .. py:attribute:: d_grid + + + .. py:attribute:: d_inherit + + + .. py:attribute:: d_initial + + + .. py:attribute:: d_inline + + + .. py:attribute:: d_inline_block + + + .. py:attribute:: d_inline_flex + + + .. py:attribute:: d_inline_grid + + + .. py:attribute:: d_inline_table + + + .. py:attribute:: d_list_item + + + .. py:attribute:: d_none + + + .. py:attribute:: d_run_in + + + .. py:attribute:: d_table + + + .. py:attribute:: d_table_caption + + + .. py:attribute:: d_table_cell + + + .. py:attribute:: d_table_column + + + .. py:attribute:: d_table_column_group + + + .. py:attribute:: d_table_footer_group + + + .. py:attribute:: d_table_header_group + + + .. py:attribute:: d_table_row + + + .. py:attribute:: d_table_row_group + + + .. py:attribute:: fill_height + + + .. py:attribute:: id + + + .. py:attribute:: justify_center + + + .. py:attribute:: justify_end + + + .. py:attribute:: justify_space_around + + + .. py:attribute:: justify_space_between + + + .. py:attribute:: justify_start + + + .. py:attribute:: ma_0 + + + .. py:attribute:: ma_1 + + + .. py:attribute:: ma_2 + + + .. py:attribute:: ma_3 + + + .. py:attribute:: ma_4 + + + .. py:attribute:: ma_5 + + + .. py:attribute:: ma_auto + + + .. py:attribute:: mb_0 + + + .. py:attribute:: mb_1 + + + .. py:attribute:: mb_2 + + + .. py:attribute:: mb_3 + + + .. py:attribute:: mb_4 + + + .. py:attribute:: mb_5 + + + .. py:attribute:: mb_auto + + + .. py:attribute:: ml_0 + + + .. py:attribute:: ml_1 + + + .. py:attribute:: ml_2 + + + .. py:attribute:: ml_3 + + + .. py:attribute:: ml_4 + + + .. py:attribute:: ml_5 + + + .. py:attribute:: ml_auto + + + .. py:attribute:: mr_0 + + + .. py:attribute:: mr_1 + + + .. py:attribute:: mr_2 + + + .. py:attribute:: mr_3 + + + .. py:attribute:: mr_4 + + + .. py:attribute:: mr_5 + + + .. py:attribute:: mr_auto + + + .. py:attribute:: mt_0 + + + .. py:attribute:: mt_1 + + + .. py:attribute:: mt_2 + + + .. py:attribute:: mt_3 + + + .. py:attribute:: mt_4 + + + .. py:attribute:: mt_5 + + + .. py:attribute:: mt_auto + + + .. py:attribute:: mx_0 + + + .. py:attribute:: mx_1 + + + .. py:attribute:: mx_2 + + + .. py:attribute:: mx_3 + + + .. py:attribute:: mx_4 + + + .. py:attribute:: mx_5 + + + .. py:attribute:: mx_auto + + + .. py:attribute:: my_0 + + + .. py:attribute:: my_1 + + + .. py:attribute:: my_2 + + + .. py:attribute:: my_3 + + + .. py:attribute:: my_4 + + + .. py:attribute:: my_5 + + + .. py:attribute:: my_auto + + + .. py:attribute:: pa_0 + + + .. py:attribute:: pa_1 + + + .. py:attribute:: pa_2 + + + .. py:attribute:: pa_3 + + + .. py:attribute:: pa_4 + + + .. py:attribute:: pa_5 + + + .. py:attribute:: pa_auto + + + .. py:attribute:: pb_0 + + + .. py:attribute:: pb_1 + + + .. py:attribute:: pb_2 + + + .. py:attribute:: pb_3 + + + .. py:attribute:: pb_4 + + + .. py:attribute:: pb_5 + + + .. py:attribute:: pb_auto + + + .. py:attribute:: pl_0 + + + .. py:attribute:: pl_1 + + + .. py:attribute:: pl_2 + + + .. py:attribute:: pl_3 + + + .. py:attribute:: pl_4 + + + .. py:attribute:: pl_5 + + + .. py:attribute:: pl_auto + + + .. py:attribute:: pr_0 + + + .. py:attribute:: pr_1 + + + .. py:attribute:: pr_2 + + + .. py:attribute:: pr_3 + + + .. py:attribute:: pr_4 + + + .. py:attribute:: pr_5 + + + .. py:attribute:: pr_auto + + + .. py:attribute:: pt_0 + + + .. py:attribute:: pt_1 + + + .. py:attribute:: pt_2 + + + .. py:attribute:: pt_3 + + + .. py:attribute:: pt_4 + + + .. py:attribute:: pt_5 + + + .. py:attribute:: pt_auto + + + .. py:attribute:: px_0 + + + .. py:attribute:: px_1 + + + .. py:attribute:: px_2 + + + .. py:attribute:: px_3 + + + .. py:attribute:: px_4 + + + .. py:attribute:: px_5 + + + .. py:attribute:: px_auto + + + .. py:attribute:: py_0 + + + .. py:attribute:: py_1 + + + .. py:attribute:: py_2 + + + .. py:attribute:: py_3 + + + .. py:attribute:: py_4 + + + .. py:attribute:: py_5 + + + .. py:attribute:: py_auto + + + .. py:attribute:: reverse + + + .. py:attribute:: row + + + .. py:attribute:: tag + + + .. py:attribute:: wrap + + +.. py:class:: Lazy(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: min_height + + + .. py:attribute:: options + + + .. py:attribute:: tag + + + .. py:attribute:: transition + + + .. py:attribute:: value + + +.. py:class:: List(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: elevation + + + .. py:attribute:: expand + + + .. py:attribute:: flat + + + .. py:attribute:: height + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: nav + + + .. py:attribute:: rounded + + + .. py:attribute:: shaped + + + .. py:attribute:: subheader + + + .. py:attribute:: tag + + + .. py:attribute:: three_line + + + .. py:attribute:: tile + + + .. py:attribute:: two_line + + + .. py:attribute:: width + + +.. py:class:: ListGroup(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: append_icon + + + .. py:attribute:: color + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: group + + + .. py:attribute:: no_action + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: ripple + + + .. py:attribute:: sub_group + + + .. py:attribute:: value + + +.. py:class:: ListItem(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: append + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: exact + + + .. py:attribute:: exact_active_class + + + .. py:attribute:: href + + + .. py:attribute:: inactive + + + .. py:attribute:: input_value + + + .. py:attribute:: light + + + .. py:attribute:: link + + + .. py:attribute:: nuxt + + + .. py:attribute:: replace + + + .. py:attribute:: ripple + + + .. py:attribute:: selectable + + + .. py:attribute:: tag + + + .. py:attribute:: target + + + .. py:attribute:: three_line + + + .. py:attribute:: to + + + .. py:attribute:: two_line + + + .. py:attribute:: value + + +.. py:class:: ListItemAction(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: ListItemActionText(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: ListItemAvatar(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: height + + + .. py:attribute:: horizontal + + + .. py:attribute:: left + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: right + + + .. py:attribute:: size + + + .. py:attribute:: tile + + + .. py:attribute:: width + + +.. py:class:: ListItemContent(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: ListItemGroup(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: multiple + + + .. py:attribute:: value + + +.. py:class:: ListItemIcon(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: ListItemSubtitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: ListItemTitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: Menu(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: activator + + + .. py:attribute:: allow_overflow + + + .. py:attribute:: attach + + + .. py:attribute:: auto + + + .. py:attribute:: bottom + + + .. py:attribute:: close_delay + + + .. py:attribute:: close_on_click + + + .. py:attribute:: close_on_content_click + + + .. py:attribute:: content_class + + + .. py:attribute:: dark + + + .. py:attribute:: disable_keys + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: fixed + + + .. py:attribute:: internal_activator + + + .. py:attribute:: left + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_width + + + .. py:attribute:: nudge_bottom + + + .. py:attribute:: nudge_left + + + .. py:attribute:: nudge_right + + + .. py:attribute:: nudge_top + + + .. py:attribute:: nudge_width + + + .. py:attribute:: offset_overflow + + + .. py:attribute:: offset_x + + + .. py:attribute:: offset_y + + + .. py:attribute:: open_delay + + + .. py:attribute:: open_on_click + + + .. py:attribute:: open_on_hover + + + .. py:attribute:: origin + + + .. py:attribute:: position_x + + + .. py:attribute:: position_y + + + .. py:attribute:: return_value + + + .. py:attribute:: right + + + .. py:attribute:: top + + + .. py:attribute:: transition + + + .. py:attribute:: value + + + .. py:attribute:: z_index + + +.. py:class:: MenuTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: Messages(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: value + + +.. py:class:: NavigationDrawer(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: app + + + .. py:attribute:: bottom + + + .. py:attribute:: clipped + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disable_resize_watcher + + + .. py:attribute:: disable_route_watcher + + + .. py:attribute:: expand_on_hover + + + .. py:attribute:: fixed + + + .. py:attribute:: floating + + + .. py:attribute:: height + + + .. py:attribute:: hide_overlay + + + .. py:attribute:: light + + + .. py:attribute:: mini_variant + + + .. py:attribute:: mini_variant_width + + + .. py:attribute:: mobile_break_point + + + .. py:attribute:: overlay_color + + + .. py:attribute:: overlay_opacity + + + .. py:attribute:: permanent + + + .. py:attribute:: right + + + .. py:attribute:: src + + + .. py:attribute:: stateless + + + .. py:attribute:: tag + + + .. py:attribute:: temporary + + + .. py:attribute:: touchless + + + .. py:attribute:: value + + + .. py:attribute:: width + + +.. py:class:: OverflowBtn(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: allow_overflow + + + .. py:attribute:: append_icon + + + .. py:attribute:: append_outer_icon + + + .. py:attribute:: attach + + + .. py:attribute:: auto_select_first + + + .. py:attribute:: autofocus + + + .. py:attribute:: background_color + + + .. py:attribute:: cache_items + + + .. py:attribute:: chips + + + .. py:attribute:: clear_icon + + + .. py:attribute:: clearable + + + .. py:attribute:: color + + + .. py:attribute:: counter + + + .. py:attribute:: dark + + + .. py:attribute:: deletable_chips + + + .. py:attribute:: dense + + + .. py:attribute:: disable_lookup + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: editable + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: filled + + + .. py:attribute:: flat + + + .. py:attribute:: full_width + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hide_no_data + + + .. py:attribute:: hide_selected + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: item_color + + + .. py:attribute:: item_disabled + + + .. py:attribute:: item_text + + + .. py:attribute:: item_value + + + .. py:attribute:: items + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: menu_props + + + .. py:attribute:: messages + + + .. py:attribute:: multiple + + + .. py:attribute:: no_data_text + + + .. py:attribute:: no_filter + + + .. py:attribute:: open_on_clear + + + .. py:attribute:: outlined + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: placeholder + + + .. py:attribute:: prefix + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: prepend_inner_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: return_object + + + .. py:attribute:: reverse + + + .. py:attribute:: rounded + + + .. py:attribute:: rules + + + .. py:attribute:: search_input + + + .. py:attribute:: segmented + + + .. py:attribute:: shaped + + + .. py:attribute:: single_line + + + .. py:attribute:: small_chips + + + .. py:attribute:: solo + + + .. py:attribute:: solo_inverted + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: suffix + + + .. py:attribute:: type + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + +.. py:class:: Overlay(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: opacity + + + .. py:attribute:: value + + + .. py:attribute:: z_index + + +.. py:class:: Pagination(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: circle + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: length + + + .. py:attribute:: light + + + .. py:attribute:: next_icon + + + .. py:attribute:: prev_icon + + + .. py:attribute:: total_visible + + + .. py:attribute:: value + + +.. py:class:: Parallax(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: alt + + + .. py:attribute:: height + + + .. py:attribute:: src + + +.. py:class:: Picker(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: full_width + + + .. py:attribute:: landscape + + + .. py:attribute:: light + + + .. py:attribute:: no_title + + + .. py:attribute:: transition + + + .. py:attribute:: width + + +.. py:class:: ProgressCircular(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: button + + + .. py:attribute:: color + + + .. py:attribute:: indeterminate + + + .. py:attribute:: rotate + + + .. py:attribute:: size + + + .. py:attribute:: value + + + .. py:attribute:: width + + +.. py:class:: ProgressLinear(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: active + + + .. py:attribute:: background_color + + + .. py:attribute:: background_opacity + + + .. py:attribute:: bottom + + + .. py:attribute:: buffer_value + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: fixed + + + .. py:attribute:: height + + + .. py:attribute:: indeterminate + + + .. py:attribute:: light + + + .. py:attribute:: query + + + .. py:attribute:: rounded + + + .. py:attribute:: stream + + + .. py:attribute:: striped + + + .. py:attribute:: top + + + .. py:attribute:: value + + +.. py:class:: Radio(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: id + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: name + + + .. py:attribute:: off_icon + + + .. py:attribute:: on_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: ripple + + + .. py:attribute:: value + + +.. py:class:: RadioGroup(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: append_icon + + + .. py:attribute:: background_color + + + .. py:attribute:: color + + + .. py:attribute:: column + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loading + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: messages + + + .. py:attribute:: multiple + + + .. py:attribute:: name + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: row + + + .. py:attribute:: rules + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + +.. py:class:: RangeSlider(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: background_color + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: inverse_label + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: max + + + .. py:attribute:: messages + + + .. py:attribute:: min + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: rules + + + .. py:attribute:: step + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: thumb_color + + + .. py:attribute:: thumb_label + + + .. py:attribute:: thumb_size + + + .. py:attribute:: tick_labels + + + .. py:attribute:: tick_size + + + .. py:attribute:: ticks + + + .. py:attribute:: track_color + + + .. py:attribute:: track_fill_color + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + + .. py:attribute:: vertical + + +.. py:class:: Rating(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: background_color + + + .. py:attribute:: clearable + + + .. py:attribute:: close_delay + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: empty_icon + + + .. py:attribute:: full_icon + + + .. py:attribute:: half_icon + + + .. py:attribute:: half_increments + + + .. py:attribute:: hover + + + .. py:attribute:: large + + + .. py:attribute:: length + + + .. py:attribute:: light + + + .. py:attribute:: open_delay + + + .. py:attribute:: readonly + + + .. py:attribute:: ripple + + + .. py:attribute:: size + + + .. py:attribute:: small + + + .. py:attribute:: value + + + .. py:attribute:: x_large + + + .. py:attribute:: x_small + + +.. py:class:: Responsive(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: aspect_ratio + + + .. py:attribute:: height + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: width + + +.. py:class:: Row(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: align + + + .. py:attribute:: align_content + + + .. py:attribute:: align_content_lg + + + .. py:attribute:: align_content_md + + + .. py:attribute:: align_content_sm + + + .. py:attribute:: align_content_xl + + + .. py:attribute:: align_lg + + + .. py:attribute:: align_md + + + .. py:attribute:: align_sm + + + .. py:attribute:: align_xl + + + .. py:attribute:: dense + + + .. py:attribute:: justify + + + .. py:attribute:: justify_lg + + + .. py:attribute:: justify_md + + + .. py:attribute:: justify_sm + + + .. py:attribute:: justify_xl + + + .. py:attribute:: no_gutters + + + .. py:attribute:: tag + + +.. py:class:: ScaleTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: ScrollXReverseTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: ScrollXTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: ScrollYReverseTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: ScrollYTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: Select(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: append_outer_icon + + + .. py:attribute:: attach + + + .. py:attribute:: autofocus + + + .. py:attribute:: background_color + + + .. py:attribute:: cache_items + + + .. py:attribute:: chips + + + .. py:attribute:: clear_icon + + + .. py:attribute:: clearable + + + .. py:attribute:: color + + + .. py:attribute:: counter + + + .. py:attribute:: dark + + + .. py:attribute:: deletable_chips + + + .. py:attribute:: dense + + + .. py:attribute:: disable_lookup + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: filled + + + .. py:attribute:: flat + + + .. py:attribute:: full_width + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hide_selected + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: item_color + + + .. py:attribute:: item_disabled + + + .. py:attribute:: item_text + + + .. py:attribute:: item_value + + + .. py:attribute:: items + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: menu_props + + + .. py:attribute:: messages + + + .. py:attribute:: multiple + + + .. py:attribute:: no_data_text + + + .. py:attribute:: open_on_clear + + + .. py:attribute:: outlined + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: placeholder + + + .. py:attribute:: prefix + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: prepend_inner_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: return_object + + + .. py:attribute:: reverse + + + .. py:attribute:: rounded + + + .. py:attribute:: rules + + + .. py:attribute:: shaped + + + .. py:attribute:: single_line + + + .. py:attribute:: small_chips + + + .. py:attribute:: solo + + + .. py:attribute:: solo_inverted + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: suffix + + + .. py:attribute:: type + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + +.. py:class:: Sheet(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: elevation + + + .. py:attribute:: height + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: tag + + + .. py:attribute:: tile + + + .. py:attribute:: width + + +.. py:class:: SimpleCheckbox(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: indeterminate + + + .. py:attribute:: indeterminate_icon + + + .. py:attribute:: light + + + .. py:attribute:: off_icon + + + .. py:attribute:: on_icon + + + .. py:attribute:: ripple + + + .. py:attribute:: value + + +.. py:class:: SimpleTable(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: fixed_header + + + .. py:attribute:: height + + + .. py:attribute:: light + + +.. py:class:: SkeletonLoader(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: boilerplate + + + .. py:attribute:: dark + + + .. py:attribute:: elevation + + + .. py:attribute:: height + + + .. py:attribute:: light + + + .. py:attribute:: loading + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: tile + + + .. py:attribute:: transition + + + .. py:attribute:: type + + + .. py:attribute:: types + + + .. py:attribute:: width + + +.. py:class:: SlideGroup(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: center_active + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: mobile_break_point + + + .. py:attribute:: multiple + + + .. py:attribute:: next_icon + + + .. py:attribute:: prev_icon + + + .. py:attribute:: show_arrows + + + .. py:attribute:: value + + +.. py:class:: SlideItem(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: disabled + + + .. py:attribute:: value + + +.. py:class:: SlideXReverseTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: SlideXTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: SlideYReverseTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: SlideYTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: Slider(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: background_color + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: inverse_label + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: max + + + .. py:attribute:: messages + + + .. py:attribute:: min + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: rules + + + .. py:attribute:: step + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: thumb_color + + + .. py:attribute:: thumb_label + + + .. py:attribute:: thumb_size + + + .. py:attribute:: tick_labels + + + .. py:attribute:: tick_size + + + .. py:attribute:: ticks + + + .. py:attribute:: track_color + + + .. py:attribute:: track_fill_color + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + + .. py:attribute:: vertical + + +.. py:class:: Snackbar(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: bottom + + + .. py:attribute:: color + + + .. py:attribute:: left + + + .. py:attribute:: multi_line + + + .. py:attribute:: right + + + .. py:attribute:: timeout + + + .. py:attribute:: top + + + .. py:attribute:: value + + + .. py:attribute:: vertical + + +.. py:class:: Spacer(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: Sparkline(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: auto_draw + + + .. py:attribute:: auto_draw_duration + + + .. py:attribute:: auto_draw_easing + + + .. py:attribute:: auto_line_width + + + .. py:attribute:: color + + + .. py:attribute:: fill + + + .. py:attribute:: gradient + + + .. py:attribute:: gradient_direction + + + .. py:attribute:: height + + + .. py:attribute:: label_size + + + .. py:attribute:: labels + + + .. py:attribute:: line_width + + + .. py:attribute:: padding + + + .. py:attribute:: show_labels + + + .. py:attribute:: smooth + + + .. py:attribute:: type + + + .. py:attribute:: value + + + .. py:attribute:: width + + +.. py:class:: SpeedDial(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: bottom + + + .. py:attribute:: direction + + + .. py:attribute:: fixed + + + .. py:attribute:: left + + + .. py:attribute:: mode + + + .. py:attribute:: open_on_hover + + + .. py:attribute:: origin + + + .. py:attribute:: right + + + .. py:attribute:: top + + + .. py:attribute:: transition + + + .. py:attribute:: value + + +.. py:class:: Stepper(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: alt_labels + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: non_linear + + + .. py:attribute:: value + + + .. py:attribute:: vertical + + +.. py:class:: StepperContent(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: step + + +.. py:class:: StepperHeader(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: StepperItems(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: StepperStep(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: complete + + + .. py:attribute:: complete_icon + + + .. py:attribute:: edit_icon + + + .. py:attribute:: editable + + + .. py:attribute:: error_icon + + + .. py:attribute:: rules + + + .. py:attribute:: step + + +.. py:class:: Subheader(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: inset + + + .. py:attribute:: light + + +.. py:class:: Switch(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: background_color + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: false_value + + + .. py:attribute:: flat + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: input_value + + + .. py:attribute:: inset + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loading + + + .. py:attribute:: messages + + + .. py:attribute:: multiple + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: ripple + + + .. py:attribute:: rules + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: true_value + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + +.. py:class:: SystemBar(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: app + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: fixed + + + .. py:attribute:: height + + + .. py:attribute:: light + + + .. py:attribute:: lights_out + + + .. py:attribute:: window + + +.. py:class:: Tab(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: append + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: exact + + + .. py:attribute:: exact_active_class + + + .. py:attribute:: href + + + .. py:attribute:: light + + + .. py:attribute:: link + + + .. py:attribute:: nuxt + + + .. py:attribute:: replace + + + .. py:attribute:: ripple + + + .. py:attribute:: tag + + + .. py:attribute:: target + + + .. py:attribute:: to + + +.. py:class:: TabItem(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: id + + + .. py:attribute:: reverse_transition + + + .. py:attribute:: transition + + + .. py:attribute:: value + + +.. py:class:: TabReverseTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: TabTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + + +.. py:class:: TableOverflow(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: Tabs(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: align_with_title + + + .. py:attribute:: background_color + + + .. py:attribute:: center_active + + + .. py:attribute:: centered + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: fixed_tabs + + + .. py:attribute:: grow + + + .. py:attribute:: height + + + .. py:attribute:: hide_slider + + + .. py:attribute:: icons_and_text + + + .. py:attribute:: light + + + .. py:attribute:: mobile_break_point + + + .. py:attribute:: next_icon + + + .. py:attribute:: optional + + + .. py:attribute:: prev_icon + + + .. py:attribute:: right + + + .. py:attribute:: show_arrows + + + .. py:attribute:: slider_color + + + .. py:attribute:: slider_size + + + .. py:attribute:: value + + + .. py:attribute:: vertical + + +.. py:class:: TabsItems(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: continuous + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: multiple + + + .. py:attribute:: next_icon + + + .. py:attribute:: prev_icon + + + .. py:attribute:: reverse + + + .. py:attribute:: show_arrows + + + .. py:attribute:: show_arrows_on_hover + + + .. py:attribute:: touch + + + .. py:attribute:: touchless + + + .. py:attribute:: value + + + .. py:attribute:: vertical + + +.. py:class:: TabsSlider(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + +.. py:class:: Text(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: value + + +.. py:class:: TextField(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: append_outer_icon + + + .. py:attribute:: autofocus + + + .. py:attribute:: background_color + + + .. py:attribute:: clear_icon + + + .. py:attribute:: clearable + + + .. py:attribute:: color + + + .. py:attribute:: counter + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: filled + + + .. py:attribute:: flat + + + .. py:attribute:: full_width + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: messages + + + .. py:attribute:: outlined + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: placeholder + + + .. py:attribute:: prefix + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: prepend_inner_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: reverse + + + .. py:attribute:: rounded + + + .. py:attribute:: rules + + + .. py:attribute:: shaped + + + .. py:attribute:: single_line + + + .. py:attribute:: solo + + + .. py:attribute:: solo_inverted + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: suffix + + + .. py:attribute:: type + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + +.. py:class:: Textarea(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: append_icon + + + .. py:attribute:: append_outer_icon + + + .. py:attribute:: auto_grow + + + .. py:attribute:: autofocus + + + .. py:attribute:: background_color + + + .. py:attribute:: clear_icon + + + .. py:attribute:: clearable + + + .. py:attribute:: color + + + .. py:attribute:: counter + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: disabled + + + .. py:attribute:: error + + + .. py:attribute:: error_count + + + .. py:attribute:: error_messages + + + .. py:attribute:: filled + + + .. py:attribute:: flat + + + .. py:attribute:: full_width + + + .. py:attribute:: height + + + .. py:attribute:: hide_details + + + .. py:attribute:: hint + + + .. py:attribute:: id + + + .. py:attribute:: label + + + .. py:attribute:: light + + + .. py:attribute:: loader_height + + + .. py:attribute:: loading + + + .. py:attribute:: messages + + + .. py:attribute:: no_resize + + + .. py:attribute:: outlined + + + .. py:attribute:: persistent_hint + + + .. py:attribute:: placeholder + + + .. py:attribute:: prefix + + + .. py:attribute:: prepend_icon + + + .. py:attribute:: prepend_inner_icon + + + .. py:attribute:: readonly + + + .. py:attribute:: reverse + + + .. py:attribute:: rounded + + + .. py:attribute:: row_height + + + .. py:attribute:: rows + + + .. py:attribute:: rules + + + .. py:attribute:: shaped + + + .. py:attribute:: single_line + + + .. py:attribute:: solo + + + .. py:attribute:: solo_inverted + + + .. py:attribute:: success + + + .. py:attribute:: success_messages + + + .. py:attribute:: suffix + + + .. py:attribute:: type + + + .. py:attribute:: validate_on_blur + + + .. py:attribute:: value + + +.. py:class:: ThemeProvider(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: root + + +.. py:class:: TimePicker(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: allowed_hours + + + .. py:attribute:: allowed_minutes + + + .. py:attribute:: allowed_seconds + + + .. py:attribute:: ampm_in_title + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: format + + + .. py:attribute:: full_width + + + .. py:attribute:: header_color + + + .. py:attribute:: landscape + + + .. py:attribute:: light + + + .. py:attribute:: max + + + .. py:attribute:: min + + + .. py:attribute:: no_title + + + .. py:attribute:: readonly + + + .. py:attribute:: scrollable + + + .. py:attribute:: use_seconds + + + .. py:attribute:: value + + + .. py:attribute:: width + + +.. py:class:: TimePickerClock(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: ampm + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: double + + + .. py:attribute:: light + + + .. py:attribute:: max + + + .. py:attribute:: min + + + .. py:attribute:: readonly + + + .. py:attribute:: rotate + + + .. py:attribute:: scrollable + + + .. py:attribute:: step + + + .. py:attribute:: value + + +.. py:class:: TimePickerTitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: ampm + + + .. py:attribute:: ampm_readonly + + + .. py:attribute:: color + + + .. py:attribute:: disabled + + + .. py:attribute:: hour + + + .. py:attribute:: minute + + + .. py:attribute:: period + + + .. py:attribute:: readonly + + + .. py:attribute:: second + + + .. py:attribute:: selecting + + + .. py:attribute:: use_seconds + + +.. py:class:: Timeline(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: align_top + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: light + + + .. py:attribute:: reverse + + +.. py:class:: TimelineItem(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: fill_dot + + + .. py:attribute:: hide_dot + + + .. py:attribute:: icon + + + .. py:attribute:: icon_color + + + .. py:attribute:: large + + + .. py:attribute:: left + + + .. py:attribute:: light + + + .. py:attribute:: right + + + .. py:attribute:: small + + +.. py:class:: Toolbar(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: bottom + + + .. py:attribute:: collapse + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: elevation + + + .. py:attribute:: extended + + + .. py:attribute:: extension_height + + + .. py:attribute:: flat + + + .. py:attribute:: floating + + + .. py:attribute:: height + + + .. py:attribute:: light + + + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: min_height + + + .. py:attribute:: min_width + + + .. py:attribute:: prominent + + + .. py:attribute:: short + + + .. py:attribute:: src + + + .. py:attribute:: tag + + + .. py:attribute:: tile + + + .. py:attribute:: width + + +.. py:class:: ToolbarItems(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: ToolbarTitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: Tooltip(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: absolute + + + .. py:attribute:: activator + + + .. py:attribute:: allow_overflow + + + .. py:attribute:: attach + + + .. py:attribute:: bottom + + + .. py:attribute:: close_delay + + + .. py:attribute:: color + + + .. py:attribute:: content_class + + + .. py:attribute:: dark + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: fixed + + + .. py:attribute:: internal_activator + + + .. py:attribute:: left + + + .. py:attribute:: light + + + .. py:attribute:: max_width + + + .. py:attribute:: min_width + + + .. py:attribute:: nudge_bottom + + + .. py:attribute:: nudge_left + + + .. py:attribute:: nudge_right + + + .. py:attribute:: nudge_top + + + .. py:attribute:: nudge_width + + + .. py:attribute:: offset_overflow + + + .. py:attribute:: open_delay + + + .. py:attribute:: open_on_click + + + .. py:attribute:: open_on_hover + + + .. py:attribute:: position_x + + + .. py:attribute:: position_y + + + .. py:attribute:: right + + + .. py:attribute:: tag + + + .. py:attribute:: top + + + .. py:attribute:: transition + + + .. py:attribute:: value + + + .. py:attribute:: z_index + + +.. py:class:: Treeview(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: activatable + + + .. py:attribute:: active + + + .. py:attribute:: active_class + + + .. py:attribute:: color + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: expand_icon + + + .. py:attribute:: hoverable + + + .. py:attribute:: indeterminate_icon + + + .. py:attribute:: item_children + + + .. py:attribute:: item_disabled + + + .. py:attribute:: item_key + + + .. py:attribute:: item_text + + + .. py:attribute:: items + + + .. py:attribute:: light + + + .. py:attribute:: loading_icon + + + .. py:attribute:: multiple_active + + + .. py:attribute:: off_icon + + + .. py:attribute:: on_icon + + + .. py:attribute:: open_ + + + .. py:attribute:: open_all + + + .. py:attribute:: open_on_click + + + .. py:attribute:: return_object + + + .. py:attribute:: rounded + + + .. py:attribute:: search + + + .. py:attribute:: selectable + + + .. py:attribute:: selected_color + + + .. py:attribute:: selection_type + + + .. py:attribute:: shaped + + + .. py:attribute:: transition + + + .. py:attribute:: value + + +.. py:class:: TreeviewNode(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: activatable + + + .. py:attribute:: active_class + + + .. py:attribute:: color + + + .. py:attribute:: expand_icon + + + .. py:attribute:: indeterminate_icon + + + .. py:attribute:: item + + + .. py:attribute:: item_children + + + .. py:attribute:: item_disabled + + + .. py:attribute:: item_key + + + .. py:attribute:: item_text + + + .. py:attribute:: level + + + .. py:attribute:: loading_icon + + + .. py:attribute:: off_icon + + + .. py:attribute:: on_icon + + + .. py:attribute:: open_on_click + + + .. py:attribute:: rounded + + + .. py:attribute:: selectable + + + .. py:attribute:: selected_color + + + .. py:attribute:: shaped + + + .. py:attribute:: transition + + +.. py:class:: VirtualTable(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: chunk_size + + + .. py:attribute:: dark + + + .. py:attribute:: dense + + + .. py:attribute:: fixed_header + + + .. py:attribute:: header_height + + + .. py:attribute:: height + + + .. py:attribute:: items + + + .. py:attribute:: light + + + .. py:attribute:: row_height + + +.. py:class:: VuetifyTemplate(*args, **kwargs) + + Bases: :py:obj:`ipyvue.VueTemplate` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: VuetifyWidget(**kwargs) + + Bases: :py:obj:`ipyvue.VueWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + +.. py:class:: Window(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: continuous + + + .. py:attribute:: dark + + + .. py:attribute:: light + + + .. py:attribute:: mandatory + + + .. py:attribute:: max + + + .. py:attribute:: multiple + + + .. py:attribute:: next_icon + + + .. py:attribute:: prev_icon + + + .. py:attribute:: reverse + + + .. py:attribute:: show_arrows + + + .. py:attribute:: show_arrows_on_hover + + + .. py:attribute:: touch + + + .. py:attribute:: touchless + + + .. py:attribute:: value + + + .. py:attribute:: vertical + + +.. py:class:: WindowItem(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: active_class + + + .. py:attribute:: disabled + + + .. py:attribute:: eager + + + .. py:attribute:: reverse_transition + + + .. py:attribute:: transition + + + .. py:attribute:: value + + +.. py:data:: theme + diff --git a/docs/conf.py b/docs/conf.py index 36dd7e4f..6f3b9e37 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -15,7 +15,7 @@ # -- General configuration --------------------------------------------------- -extensions = ["jupyter_sphinx", "sphinx_rtd_theme", "sphinx_design", "autoapi.extension"] +extensions = ["jupyter_sphinx", "sphinx_design", "autoapi.extension"] templates_path = ["_templates"] exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] @@ -64,6 +64,7 @@ autodoc_typehints = "description" autoapi_dirs = ["../ipyvuetify"] autoapi_member_order = "groupwise" +autoapi_keep_files = True autoapi_options = [ "members", "undoc-members", @@ -74,7 +75,7 @@ def skip_submodules(app, what, name, obj, skip, options): - """Ignore the modules and packages taht are private + """Ignore the modules and packages that are private Only necessary for those that are not using a leading underscore """ diff --git a/pyproject.toml b/pyproject.toml index 7207e383..6497157b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,18 +37,8 @@ content-type = "text/markdown" [project.optional-dependencies] dev = ["nox", "pre-commit", "mypy"] -test = ["pytest", "pytest-playwright", "jupyterlab<4", "solara[pytest]"] -doc = ["sphinx<7", "jupyter-sphinx", "ipykernel", "pydata-sphinx-theme", "sphinx-autoapi"] +doc = ["sphinx", "jupyter-sphinx", "ipykernel", "pydata-sphinx-theme", "sphinx-autoapi", "sphinx-design", "astroid>3"] test = ["pytest", "pytest-playwright<0.6", "nbformat<5.10", "jupyterlab<4", "solara[pytest]"] -doc = [ - "sphinx<7", - "jupyter-sphinx", - "ipykernel", - "pydata-sphinx-theme", - "sphinx-autoapi", - "sphinx-design", - "sphinx_rtd_theme", -] [tool.setuptools] include-package-data = true From 0ec1e61033e8c9a6528a083e59ee2d0d26be6520 Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Thu, 20 Nov 2025 20:22:27 +0000 Subject: [PATCH 014/110] fix: migrate pre-commit config --- .pre-commit-config.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 0207538a..7cbbcf15 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -3,7 +3,7 @@ repos: rev: "22.3.0" hooks: - id: black - stages: [commit] + stages: [pre-commit] - repo: "https://github.com/commitizen-tools/commitizen" rev: "v2.18.0" hooks: @@ -13,15 +13,15 @@ repos: rev: "0.5.0" hooks: - id: nbstripout - stages: [commit] + stages: [pre-commit] - repo: "https://github.com/pre-commit/mirrors-prettier" rev: "v2.7.1" hooks: - id: prettier - stages: [commit] + stages: [pre-commit] - repo: https://github.com/charliermarsh/ruff-pre-commit rev: "v0.0.213" hooks: - id: ruff - stages: [commit] + stages: [pre-commit] From a421b9cf1bef8610236609aeae50292cdf96e74f Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Thu, 20 Nov 2025 20:44:17 +0000 Subject: [PATCH 015/110] feat: one class one page --- .../{generated/Alert/index.rst => Alert.rst} | 21 +- docs/autoapi/ipyvuetify/App.rst | 26 + .../AppBar/index.rst => AppBar.rst} | 21 +- docs/autoapi/ipyvuetify/AppBarNavIcon.rst | 17 + .../index.rst => Autocomplete.rst} | 21 +- .../ListItemAvatar/index.rst => Avatar.rst} | 24 +- .../{generated/Badge/index.rst => Badge.rst} | 21 +- .../Banner/index.rst => Banner.rst} | 21 +- .../index.rst => BottomNavigation.rst} | 21 +- .../Dialog/index.rst => BottomSheet.rst} | 24 +- .../Breadcrumbs/index.rst => Breadcrumbs.rst} | 21 +- .../index.rst => BreadcrumbsDivider.rst} | 19 +- .../index.rst => BreadcrumbsItem.rst} | 21 +- .../{generated/Btn/index.rst => Btn.rst} | 21 +- .../BtnToggle/index.rst => BtnToggle.rst} | 21 +- .../Calendar/index.rst => Calendar.rst} | 21 +- .../index.rst => CalendarDaily.rst} | 21 +- .../index.rst => CalendarMonthly.rst} | 21 +- .../index.rst => CalendarWeekly.rst} | 21 +- .../{generated/Card/index.rst => Card.rst} | 21 +- docs/autoapi/ipyvuetify/CardActions.rst | 17 + docs/autoapi/ipyvuetify/CardSubtitle.rst | 17 + docs/autoapi/ipyvuetify/CardText.rst | 17 + docs/autoapi/ipyvuetify/CardTitle.rst | 17 + .../Carousel/index.rst => Carousel.rst} | 21 +- .../index.rst => CarouselItem.rst} | 21 +- ...ndex.rst => CarouselReverseTransition.rst} | 19 +- .../autoapi/ipyvuetify/CarouselTransition.rst | 32 + .../Checkbox/index.rst => Checkbox.rst} | 21 +- .../{generated/Chip/index.rst => Chip.rst} | 21 +- .../ChipGroup/index.rst => ChipGroup.rst} | 21 +- .../{generated/Col/index.rst => Col.rst} | 21 +- .../ColorPicker/index.rst => ColorPicker.rst} | 21 +- .../index.rst => ColorPickerCanvas.rst} | 21 +- .../index.rst => ColorPickerSwatches.rst} | 30 +- .../Combobox/index.rst => Combobox.rst} | 21 +- .../Content/index.rst => Container.rst} | 27 +- .../Container/index.rst => Content.rst} | 27 +- .../{generated/Text/index.rst => Counter.rst} | 30 +- .../{generated/Data/index.rst => Data.rst} | 21 +- .../DataFooter/index.rst => DataFooter.rst} | 21 +- .../index.rst => DataIterator.rst} | 21 +- .../DataTable/index.rst => DataTable.rst} | 21 +- docs/autoapi/ipyvuetify/DataTableHeader.rst | 20 + .../DatePicker/index.rst => DatePicker.rst} | 21 +- .../index.rst => DatePickerDateTable.rst} | 21 +- .../index.rst => DatePickerHeader.rst} | 21 +- .../index.rst => DatePickerMonthTable.rst} | 21 +- .../index.rst => DatePickerTitle.rst} | 21 +- .../index.rst => DatePickerYears.rst} | 21 +- .../BottomSheet/index.rst => Dialog.rst} | 24 +- .../ipyvuetify/DialogBottomTransition.rst | 32 + docs/autoapi/ipyvuetify/DialogTransition.rst | 32 + .../Divider/index.rst => Divider.rst} | 21 +- .../EditDialog/index.rst => EditDialog.rst} | 21 +- .../Spacer/index.rst => ExpandTransition.rst} | 20 +- docs/autoapi/ipyvuetify/ExpandXTransition.rst | 20 + .../index.rst => ExpansionPanel.rst} | 21 +- .../index.rst => ExpansionPanelContent.rst} | 23 +- .../index.rst => ExpansionPanelHeader.rst} | 29 +- .../index.rst => ExpansionPanels.rst} | 21 +- docs/autoapi/ipyvuetify/FabTransition.rst | 32 + docs/autoapi/ipyvuetify/FadeTransition.rst | 32 + .../FileInput/index.rst => FileInput.rst} | 21 +- .../{generated/Flex/index.rst => Flex.rst} | 21 +- .../Footer/index.rst => Footer.rst} | 21 +- .../{generated/Form/index.rst => Form.rst} | 21 +- .../{generated/Hover/index.rst => Hover.rst} | 21 +- .../ipyvuetify/{Html/index.rst => Html.rst} | 17 +- .../{generated/Icon/index.rst => Icon.rst} | 21 +- .../{generated/Img/index.rst => Img.rst} | 21 +- .../{generated/Input/index.rst => Input.rst} | 21 +- .../{generated/Item/index.rst => Item.rst} | 21 +- .../Counter/index.rst => ItemGroup.rst} | 30 +- .../{generated/Label/index.rst => Label.rst} | 21 +- .../Layout/index.rst => Layout.rst} | 21 +- .../{generated/Lazy/index.rst => Lazy.rst} | 21 +- .../{generated/List/index.rst => List.rst} | 21 +- .../ListGroup/index.rst => ListGroup.rst} | 21 +- .../ListItem/index.rst => ListItem.rst} | 21 +- docs/autoapi/ipyvuetify/ListItemAction.rst | 17 + .../autoapi/ipyvuetify/ListItemActionText.rst | 17 + .../Avatar/index.rst => ListItemAvatar.rst} | 24 +- docs/autoapi/ipyvuetify/ListItemContent.rst | 17 + .../ItemGroup/index.rst => ListItemGroup.rst} | 24 +- docs/autoapi/ipyvuetify/ListItemIcon.rst | 17 + docs/autoapi/ipyvuetify/ListItemSubtitle.rst | 17 + docs/autoapi/ipyvuetify/ListItemTitle.rst | 17 + .../{generated/Menu/index.rst => Menu.rst} | 21 +- docs/autoapi/ipyvuetify/MenuTransition.rst | 32 + .../Messages/index.rst => Messages.rst} | 21 +- .../index.rst => NavigationDrawer.rst} | 21 +- .../OverflowBtn/index.rst => OverflowBtn.rst} | 21 +- .../Overlay/index.rst => Overlay.rst} | 21 +- .../Pagination/index.rst => Pagination.rst} | 21 +- .../Parallax/index.rst => Parallax.rst} | 21 +- .../Picker/index.rst => Picker.rst} | 21 +- .../index.rst => ProgressCircular.rst} | 21 +- .../index.rst => ProgressLinear.rst} | 21 +- .../{generated/Radio/index.rst => Radio.rst} | 21 +- .../RadioGroup/index.rst => RadioGroup.rst} | 21 +- .../Slider/index.rst => RangeSlider.rst} | 21 +- .../Rating/index.rst => Rating.rst} | 21 +- .../Responsive/index.rst => Responsive.rst} | 21 +- .../{generated/Row/index.rst => Row.rst} | 21 +- docs/autoapi/ipyvuetify/ScaleTransition.rst | 32 + ...index.rst => ScrollXReverseTransition.rst} | 19 +- docs/autoapi/ipyvuetify/ScrollXTransition.rst | 32 + ...index.rst => ScrollYReverseTransition.rst} | 19 +- docs/autoapi/ipyvuetify/ScrollYTransition.rst | 32 + .../Select/index.rst => Select.rst} | 21 +- .../{generated/Sheet/index.rst => Sheet.rst} | 21 +- .../index.rst => SimpleCheckbox.rst} | 21 +- .../SimpleTable/index.rst => SimpleTable.rst} | 21 +- .../index.rst => SkeletonLoader.rst} | 21 +- .../SlideGroup/index.rst => SlideGroup.rst} | 21 +- .../SlideItem/index.rst => SlideItem.rst} | 21 +- .../index.rst => SlideXReverseTransition.rst} | 19 +- docs/autoapi/ipyvuetify/SlideXTransition.rst | 32 + .../index.rst => SlideYReverseTransition.rst} | 19 +- docs/autoapi/ipyvuetify/SlideYTransition.rst | 32 + .../RangeSlider/index.rst => Slider.rst} | 21 +- .../Snackbar/index.rst => Snackbar.rst} | 21 +- docs/autoapi/ipyvuetify/Spacer.rst | 17 + .../Sparkline/index.rst => Sparkline.rst} | 21 +- .../SpeedDial/index.rst => SpeedDial.rst} | 21 +- .../Stepper/index.rst => Stepper.rst} | 21 +- docs/autoapi/ipyvuetify/StepperContent.rst | 20 + docs/autoapi/ipyvuetify/StepperHeader.rst | 17 + docs/autoapi/ipyvuetify/StepperItems.rst | 17 + .../StepperStep/index.rst => StepperStep.rst} | 21 +- docs/autoapi/ipyvuetify/Subheader.rst | 26 + .../Switch/index.rst => Switch.rst} | 21 +- .../SystemBar/index.rst => SystemBar.rst} | 21 +- .../{generated/Tab/index.rst => Tab.rst} | 21 +- .../TabItem/index.rst => TabItem.rst} | 21 +- .../ipyvuetify/TabReverseTransition.rst | 32 + docs/autoapi/ipyvuetify/TabTransition.rst | 32 + docs/autoapi/ipyvuetify/TableOverflow.rst | 17 + .../{generated/Tabs/index.rst => Tabs.rst} | 21 +- .../Window/index.rst => TabsItems.rst} | 21 +- docs/autoapi/ipyvuetify/TabsSlider.rst | 20 + docs/autoapi/ipyvuetify/Text.rst | 20 + .../TextField/index.rst => TextField.rst} | 21 +- .../Textarea/index.rst => Textarea.rst} | 21 +- .../App/index.rst => ThemeProvider.rst} | 23 +- .../TimePicker/index.rst => TimePicker.rst} | 21 +- .../index.rst => TimePickerClock.rst} | 21 +- .../index.rst => TimePickerTitle.rst} | 21 +- .../Timeline/index.rst => Timeline.rst} | 21 +- .../index.rst => TimelineItem.rst} | 21 +- .../Toolbar/index.rst => Toolbar.rst} | 21 +- docs/autoapi/ipyvuetify/ToolbarItems.rst | 17 + docs/autoapi/ipyvuetify/ToolbarTitle.rst | 17 + .../Tooltip/index.rst => Tooltip.rst} | 21 +- .../Treeview/index.rst => Treeview.rst} | 21 +- .../index.rst => TreeviewNode.rst} | 21 +- .../index.rst => VirtualTable.rst} | 21 +- .../index.rst => VuetifyTemplate.rst} | 17 +- docs/autoapi/ipyvuetify/VuetifyWidget.rst | 17 + .../TabsItems/index.rst => Window.rst} | 21 +- .../WindowItem/index.rst => WindowItem.rst} | 21 +- .../autoapi/ipyvuetify/components/CodeGen.rst | 10 + docs/autoapi/ipyvuetify/components/index.rst | 13 +- docs/autoapi/ipyvuetify/extra/FileInput.rst | 83 + .../ipyvuetify/extra/file_input/FileInput.rst | 83 + .../ipyvuetify/extra/file_input/index.rst | 89 +- docs/autoapi/ipyvuetify/extra/index.rst | 89 +- .../generated/AppBarNavIcon/index.rst | 32 - .../generated/BreadcrumbsDivider/index.rst | 32 - .../generated/CardSubtitle/index.rst | 32 - .../ipyvuetify/generated/CardTitle/index.rst | 32 - .../CarouselReverseTransition/index.rst | 47 - .../generated/CarouselTransition/index.rst | 47 - .../generated/ColorPickerSwatches/index.rst | 50 - .../generated/DataTableHeader/index.rst | 35 - .../DialogBottomTransition/index.rst | 47 - .../generated/DialogTransition/index.rst | 47 - .../generated/ExpandTransition/index.rst | 35 - .../generated/ExpandXTransition/index.rst | 35 - .../generated/ExpansionPanelContent/index.rst | 38 - .../generated/ExpansionPanelHeader/index.rst | 47 - .../generated/ListItemAction/index.rst | 32 - .../generated/ListItemActionText/index.rst | 32 - .../generated/ListItemContent/index.rst | 32 - .../generated/ListItemGroup/index.rst | 56 - .../generated/ListItemIcon/index.rst | 32 - .../generated/ListItemSubtitle/index.rst | 32 - .../generated/ListItemTitle/index.rst | 32 - .../ScrollXReverseTransition/index.rst | 47 - .../generated/ScrollXTransition/index.rst | 47 - .../ScrollYReverseTransition/index.rst | 47 - .../generated/ScrollYTransition/index.rst | 47 - .../SlideXReverseTransition/index.rst | 47 - .../generated/SlideXTransition/index.rst | 47 - .../SlideYReverseTransition/index.rst | 47 - .../generated/SlideYTransition/index.rst | 47 - .../generated/StepperContent/index.rst | 35 - .../generated/StepperHeader/index.rst | 32 - .../generated/StepperItems/index.rst | 32 - .../generated/TabReverseTransition/index.rst | 47 - .../generated/TableOverflow/index.rst | 32 - .../generated/ThemeProvider/index.rst | 41 - .../generated/ToolbarItems/index.rst | 32 - .../generated/ToolbarTitle/index.rst | 32 - .../generated/VuetifyWidget/index.rst | 32 - docs/autoapi/ipyvuetify/generated/index.rst | 11222 ---------------- docs/autoapi/ipyvuetify/index.rst | 11074 +-------------- docs/conf.py | 1 + 209 files changed, 1652 insertions(+), 26030 deletions(-) rename docs/autoapi/ipyvuetify/{generated/Alert/index.rst => Alert.rst} (81%) create mode 100644 docs/autoapi/ipyvuetify/App.rst rename docs/autoapi/ipyvuetify/{generated/AppBar/index.rst => AppBar.rst} (85%) create mode 100644 docs/autoapi/ipyvuetify/AppBarNavIcon.rst rename docs/autoapi/ipyvuetify/{generated/Autocomplete/index.rst => Autocomplete.rst} (90%) rename docs/autoapi/ipyvuetify/{generated/ListItemAvatar/index.rst => Avatar.rst} (63%) rename docs/autoapi/ipyvuetify/{generated/Badge/index.rst => Badge.rst} (77%) rename docs/autoapi/ipyvuetify/{generated/Banner/index.rst => Banner.rst} (77%) rename docs/autoapi/ipyvuetify/{generated/BottomNavigation/index.rst => BottomNavigation.rst} (76%) rename docs/autoapi/ipyvuetify/{generated/Dialog/index.rst => BottomSheet.rst} (81%) rename docs/autoapi/ipyvuetify/{generated/Breadcrumbs/index.rst => Breadcrumbs.rst} (58%) rename docs/autoapi/ipyvuetify/{generated/CardText/index.rst => BreadcrumbsDivider.rst} (54%) rename docs/autoapi/ipyvuetify/{generated/BreadcrumbsItem/index.rst => BreadcrumbsItem.rst} (68%) rename docs/autoapi/ipyvuetify/{generated/Btn/index.rst => Btn.rst} (87%) rename docs/autoapi/ipyvuetify/{generated/BtnToggle/index.rst => BtnToggle.rst} (72%) rename docs/autoapi/ipyvuetify/{generated/Calendar/index.rst => Calendar.rst} (85%) rename docs/autoapi/ipyvuetify/{generated/CalendarDaily/index.rst => CalendarDaily.rst} (73%) rename docs/autoapi/ipyvuetify/{generated/CalendarWeekly/index.rst => CalendarMonthly.rst} (69%) rename docs/autoapi/ipyvuetify/{generated/CalendarMonthly/index.rst => CalendarWeekly.rst} (68%) rename docs/autoapi/ipyvuetify/{generated/Card/index.rst => Card.rst} (84%) create mode 100644 docs/autoapi/ipyvuetify/CardActions.rst create mode 100644 docs/autoapi/ipyvuetify/CardSubtitle.rst create mode 100644 docs/autoapi/ipyvuetify/CardText.rst create mode 100644 docs/autoapi/ipyvuetify/CardTitle.rst rename docs/autoapi/ipyvuetify/{generated/Carousel/index.rst => Carousel.rst} (80%) rename docs/autoapi/ipyvuetify/{generated/CarouselItem/index.rst => CarouselItem.rst} (73%) rename docs/autoapi/ipyvuetify/{generated/ScaleTransition/index.rst => CarouselReverseTransition.rst} (62%) create mode 100644 docs/autoapi/ipyvuetify/CarouselTransition.rst rename docs/autoapi/ipyvuetify/{generated/Checkbox/index.rst => Checkbox.rst} (84%) rename docs/autoapi/ipyvuetify/{generated/Chip/index.rst => Chip.rst} (84%) rename docs/autoapi/ipyvuetify/{generated/ChipGroup/index.rst => ChipGroup.rst} (72%) rename docs/autoapi/ipyvuetify/{generated/Col/index.rst => Col.rst} (76%) rename docs/autoapi/ipyvuetify/{generated/ColorPicker/index.rst => ColorPicker.rst} (72%) rename docs/autoapi/ipyvuetify/{generated/ColorPickerCanvas/index.rst => ColorPickerCanvas.rst} (55%) rename docs/autoapi/ipyvuetify/{generated/Subheader/index.rst => ColorPickerSwatches.rst} (56%) rename docs/autoapi/ipyvuetify/{generated/Combobox/index.rst => Combobox.rst} (90%) rename docs/autoapi/ipyvuetify/{generated/Content/index.rst => Container.rst} (92%) rename docs/autoapi/ipyvuetify/{generated/Container/index.rst => Content.rst} (90%) rename docs/autoapi/ipyvuetify/{generated/Text/index.rst => Counter.rst} (54%) rename docs/autoapi/ipyvuetify/{generated/Data/index.rst => Data.rst} (77%) rename docs/autoapi/ipyvuetify/{generated/DataFooter/index.rst => DataFooter.rst} (74%) rename docs/autoapi/ipyvuetify/{generated/DataIterator/index.rst => DataIterator.rst} (82%) rename docs/autoapi/ipyvuetify/{generated/DataTable/index.rst => DataTable.rst} (87%) create mode 100644 docs/autoapi/ipyvuetify/DataTableHeader.rst rename docs/autoapi/ipyvuetify/{generated/DatePicker/index.rst => DatePicker.rst} (81%) rename docs/autoapi/ipyvuetify/{generated/DatePickerDateTable/index.rst => DatePickerDateTable.rst} (71%) rename docs/autoapi/ipyvuetify/{generated/DatePickerHeader/index.rst => DatePickerHeader.rst} (65%) rename docs/autoapi/ipyvuetify/{generated/DatePickerMonthTable/index.rst => DatePickerMonthTable.rst} (67%) rename docs/autoapi/ipyvuetify/{generated/DatePickerTitle/index.rst => DatePickerTitle.rst} (61%) rename docs/autoapi/ipyvuetify/{generated/DatePickerYears/index.rst => DatePickerYears.rst} (57%) rename docs/autoapi/ipyvuetify/{generated/BottomSheet/index.rst => Dialog.rst} (78%) create mode 100644 docs/autoapi/ipyvuetify/DialogBottomTransition.rst create mode 100644 docs/autoapi/ipyvuetify/DialogTransition.rst rename docs/autoapi/ipyvuetify/{generated/Divider/index.rst => Divider.rst} (58%) rename docs/autoapi/ipyvuetify/{generated/EditDialog/index.rst => EditDialog.rst} (66%) rename docs/autoapi/ipyvuetify/{generated/Spacer/index.rst => ExpandTransition.rst} (55%) create mode 100644 docs/autoapi/ipyvuetify/ExpandXTransition.rst rename docs/autoapi/ipyvuetify/{generated/ExpansionPanel/index.rst => ExpansionPanel.rst} (53%) rename docs/autoapi/ipyvuetify/{generated/CardActions/index.rst => ExpansionPanelContent.rst} (53%) rename docs/autoapi/ipyvuetify/{generated/TabsSlider/index.rst => ExpansionPanelHeader.rst} (57%) rename docs/autoapi/ipyvuetify/{generated/ExpansionPanels/index.rst => ExpansionPanels.rst} (70%) create mode 100644 docs/autoapi/ipyvuetify/FabTransition.rst create mode 100644 docs/autoapi/ipyvuetify/FadeTransition.rst rename docs/autoapi/ipyvuetify/{generated/FileInput/index.rst => FileInput.rst} (88%) rename docs/autoapi/ipyvuetify/{generated/Flex/index.rst => Flex.rst} (97%) rename docs/autoapi/ipyvuetify/{generated/Footer/index.rst => Footer.rst} (75%) rename docs/autoapi/ipyvuetify/{generated/Form/index.rst => Form.rst} (56%) rename docs/autoapi/ipyvuetify/{generated/Hover/index.rst => Hover.rst} (60%) rename docs/autoapi/ipyvuetify/{Html/index.rst => Html.rst} (59%) rename docs/autoapi/ipyvuetify/{generated/Icon/index.rst => Icon.rst} (72%) rename docs/autoapi/ipyvuetify/{generated/Img/index.rst => Img.rst} (77%) rename docs/autoapi/ipyvuetify/{generated/Input/index.rst => Input.rst} (81%) rename docs/autoapi/ipyvuetify/{generated/Item/index.rst => Item.rst} (59%) rename docs/autoapi/ipyvuetify/{generated/Counter/index.rst => ItemGroup.rst} (59%) rename docs/autoapi/ipyvuetify/{generated/Label/index.rst => Label.rst} (69%) rename docs/autoapi/ipyvuetify/{generated/Layout/index.rst => Layout.rst} (94%) rename docs/autoapi/ipyvuetify/{generated/Lazy/index.rst => Lazy.rst} (62%) rename docs/autoapi/ipyvuetify/{generated/List/index.rst => List.rst} (79%) rename docs/autoapi/ipyvuetify/{generated/ListGroup/index.rst => ListGroup.rst} (69%) rename docs/autoapi/ipyvuetify/{generated/ListItem/index.rst => ListItem.rst} (78%) create mode 100644 docs/autoapi/ipyvuetify/ListItemAction.rst create mode 100644 docs/autoapi/ipyvuetify/ListItemActionText.rst rename docs/autoapi/ipyvuetify/{generated/Avatar/index.rst => ListItemAvatar.rst} (70%) create mode 100644 docs/autoapi/ipyvuetify/ListItemContent.rst rename docs/autoapi/ipyvuetify/{generated/ItemGroup/index.rst => ListItemGroup.rst} (63%) create mode 100644 docs/autoapi/ipyvuetify/ListItemIcon.rst create mode 100644 docs/autoapi/ipyvuetify/ListItemSubtitle.rst create mode 100644 docs/autoapi/ipyvuetify/ListItemTitle.rst rename docs/autoapi/ipyvuetify/{generated/Menu/index.rst => Menu.rst} (87%) create mode 100644 docs/autoapi/ipyvuetify/MenuTransition.rst rename docs/autoapi/ipyvuetify/{generated/Messages/index.rst => Messages.rst} (57%) rename docs/autoapi/ipyvuetify/{generated/NavigationDrawer/index.rst => NavigationDrawer.rst} (79%) rename docs/autoapi/ipyvuetify/{generated/OverflowBtn/index.rst => OverflowBtn.rst} (90%) rename docs/autoapi/ipyvuetify/{generated/Overlay/index.rst => Overlay.rst} (64%) rename docs/autoapi/ipyvuetify/{generated/Pagination/index.rst => Pagination.rst} (67%) rename docs/autoapi/ipyvuetify/{generated/Parallax/index.rst => Parallax.rst} (55%) rename docs/autoapi/ipyvuetify/{generated/Picker/index.rst => Picker.rst} (66%) rename docs/autoapi/ipyvuetify/{generated/ProgressCircular/index.rst => ProgressCircular.rst} (59%) rename docs/autoapi/ipyvuetify/{generated/ProgressLinear/index.rst => ProgressLinear.rst} (73%) rename docs/autoapi/ipyvuetify/{generated/Radio/index.rst => Radio.rst} (72%) rename docs/autoapi/ipyvuetify/{generated/RadioGroup/index.rst => RadioGroup.rst} (82%) rename docs/autoapi/ipyvuetify/{generated/Slider/index.rst => RangeSlider.rst} (86%) rename docs/autoapi/ipyvuetify/{generated/Rating/index.rst => Rating.rst} (79%) rename docs/autoapi/ipyvuetify/{generated/Responsive/index.rst => Responsive.rst} (63%) rename docs/autoapi/ipyvuetify/{generated/Row/index.rst => Row.rst} (78%) create mode 100644 docs/autoapi/ipyvuetify/ScaleTransition.rst rename docs/autoapi/ipyvuetify/{generated/MenuTransition/index.rst => ScrollXReverseTransition.rst} (62%) create mode 100644 docs/autoapi/ipyvuetify/ScrollXTransition.rst rename docs/autoapi/ipyvuetify/{generated/FadeTransition/index.rst => ScrollYReverseTransition.rst} (62%) create mode 100644 docs/autoapi/ipyvuetify/ScrollYTransition.rst rename docs/autoapi/ipyvuetify/{generated/Select/index.rst => Select.rst} (90%) rename docs/autoapi/ipyvuetify/{generated/Sheet/index.rst => Sheet.rst} (71%) rename docs/autoapi/ipyvuetify/{generated/SimpleCheckbox/index.rst => SimpleCheckbox.rst} (65%) rename docs/autoapi/ipyvuetify/{generated/SimpleTable/index.rst => SimpleTable.rst} (58%) rename docs/autoapi/ipyvuetify/{generated/SkeletonLoader/index.rst => SkeletonLoader.rst} (70%) rename docs/autoapi/ipyvuetify/{generated/SlideGroup/index.rst => SlideGroup.rst} (70%) rename docs/autoapi/ipyvuetify/{generated/SlideItem/index.rst => SlideItem.rst} (56%) rename docs/autoapi/ipyvuetify/{generated/TabTransition/index.rst => SlideXReverseTransition.rst} (63%) create mode 100644 docs/autoapi/ipyvuetify/SlideXTransition.rst rename docs/autoapi/ipyvuetify/{generated/FabTransition/index.rst => SlideYReverseTransition.rst} (63%) create mode 100644 docs/autoapi/ipyvuetify/SlideYTransition.rst rename docs/autoapi/ipyvuetify/{generated/RangeSlider/index.rst => Slider.rst} (84%) rename docs/autoapi/ipyvuetify/{generated/Snackbar/index.rst => Snackbar.rst} (67%) create mode 100644 docs/autoapi/ipyvuetify/Spacer.rst rename docs/autoapi/ipyvuetify/{generated/Sparkline/index.rst => Sparkline.rst} (76%) rename docs/autoapi/ipyvuetify/{generated/SpeedDial/index.rst => SpeedDial.rst} (69%) rename docs/autoapi/ipyvuetify/{generated/Stepper/index.rst => Stepper.rst} (62%) create mode 100644 docs/autoapi/ipyvuetify/StepperContent.rst create mode 100644 docs/autoapi/ipyvuetify/StepperHeader.rst create mode 100644 docs/autoapi/ipyvuetify/StepperItems.rst rename docs/autoapi/ipyvuetify/{generated/StepperStep/index.rst => StepperStep.rst} (64%) create mode 100644 docs/autoapi/ipyvuetify/Subheader.rst rename docs/autoapi/ipyvuetify/{generated/Switch/index.rst => Switch.rst} (83%) rename docs/autoapi/ipyvuetify/{generated/SystemBar/index.rst => SystemBar.rst} (65%) rename docs/autoapi/ipyvuetify/{generated/Tab/index.rst => Tab.rst} (75%) rename docs/autoapi/ipyvuetify/{generated/TabItem/index.rst => TabItem.rst} (65%) create mode 100644 docs/autoapi/ipyvuetify/TabReverseTransition.rst create mode 100644 docs/autoapi/ipyvuetify/TabTransition.rst create mode 100644 docs/autoapi/ipyvuetify/TableOverflow.rst rename docs/autoapi/ipyvuetify/{generated/Tabs/index.rst => Tabs.rst} (81%) rename docs/autoapi/ipyvuetify/{generated/Window/index.rst => TabsItems.rst} (75%) create mode 100644 docs/autoapi/ipyvuetify/TabsSlider.rst create mode 100644 docs/autoapi/ipyvuetify/Text.rst rename docs/autoapi/ipyvuetify/{generated/TextField/index.rst => TextField.rst} (86%) rename docs/autoapi/ipyvuetify/{generated/Textarea/index.rst => Textarea.rst} (87%) rename docs/autoapi/ipyvuetify/{generated/App/index.rst => ThemeProvider.rst} (58%) rename docs/autoapi/ipyvuetify/{generated/TimePicker/index.rst => TimePicker.rst} (76%) rename docs/autoapi/ipyvuetify/{generated/TimePickerClock/index.rst => TimePickerClock.rst} (67%) rename docs/autoapi/ipyvuetify/{generated/TimePickerTitle/index.rst => TimePickerTitle.rst} (66%) rename docs/autoapi/ipyvuetify/{generated/Timeline/index.rst => Timeline.rst} (60%) rename docs/autoapi/ipyvuetify/{generated/TimelineItem/index.rst => TimelineItem.rst} (66%) rename docs/autoapi/ipyvuetify/{generated/Toolbar/index.rst => Toolbar.rst} (79%) create mode 100644 docs/autoapi/ipyvuetify/ToolbarItems.rst create mode 100644 docs/autoapi/ipyvuetify/ToolbarTitle.rst rename docs/autoapi/ipyvuetify/{generated/Tooltip/index.rst => Tooltip.rst} (84%) rename docs/autoapi/ipyvuetify/{generated/Treeview/index.rst => Treeview.rst} (83%) rename docs/autoapi/ipyvuetify/{generated/TreeviewNode/index.rst => TreeviewNode.rst} (76%) rename docs/autoapi/ipyvuetify/{generated/VirtualTable/index.rst => VirtualTable.rst} (65%) rename docs/autoapi/ipyvuetify/{VuetifyTemplate/index.rst => VuetifyTemplate.rst} (55%) create mode 100644 docs/autoapi/ipyvuetify/VuetifyWidget.rst rename docs/autoapi/ipyvuetify/{generated/TabsItems/index.rst => Window.rst} (74%) rename docs/autoapi/ipyvuetify/{generated/WindowItem/index.rst => WindowItem.rst} (62%) create mode 100644 docs/autoapi/ipyvuetify/components/CodeGen.rst create mode 100644 docs/autoapi/ipyvuetify/extra/FileInput.rst create mode 100644 docs/autoapi/ipyvuetify/extra/file_input/FileInput.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/AppBarNavIcon/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/BreadcrumbsDivider/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/CardSubtitle/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/CardTitle/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/CarouselReverseTransition/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/CarouselTransition/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/ColorPickerSwatches/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/DataTableHeader/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/DialogBottomTransition/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/DialogTransition/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/ExpandTransition/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/ExpandXTransition/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/ExpansionPanelContent/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/ExpansionPanelHeader/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/ListItemAction/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/ListItemActionText/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/ListItemContent/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/ListItemGroup/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/ListItemIcon/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/ListItemSubtitle/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/ListItemTitle/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/ScrollXReverseTransition/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/ScrollXTransition/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/ScrollYReverseTransition/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/ScrollYTransition/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/SlideXReverseTransition/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/SlideXTransition/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/SlideYReverseTransition/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/SlideYTransition/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/StepperContent/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/StepperHeader/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/StepperItems/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/TabReverseTransition/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/TableOverflow/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/ThemeProvider/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/ToolbarItems/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/ToolbarTitle/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/VuetifyWidget/index.rst delete mode 100644 docs/autoapi/ipyvuetify/generated/index.rst diff --git a/docs/autoapi/ipyvuetify/generated/Alert/index.rst b/docs/autoapi/ipyvuetify/Alert.rst similarity index 81% rename from docs/autoapi/ipyvuetify/generated/Alert/index.rst rename to docs/autoapi/ipyvuetify/Alert.rst index 4c19415b..c8f53790 100644 --- a/docs/autoapi/ipyvuetify/generated/Alert/index.rst +++ b/docs/autoapi/ipyvuetify/Alert.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Alert -========================== +ipyvuetify.Alert +================ -.. py:module:: ipyvuetify.generated.Alert - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Alert.Alert - - -Module Contents ---------------- - -.. py:class:: Alert(**kwargs) +.. py:class:: ipyvuetify.Alert(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -107,4 +93,3 @@ Module Contents .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/App.rst b/docs/autoapi/ipyvuetify/App.rst new file mode 100644 index 00000000..faa2eca7 --- /dev/null +++ b/docs/autoapi/ipyvuetify/App.rst @@ -0,0 +1,26 @@ +ipyvuetify.App +============== + +.. py:class:: ipyvuetify.App(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: id + + + .. py:attribute:: light + diff --git a/docs/autoapi/ipyvuetify/generated/AppBar/index.rst b/docs/autoapi/ipyvuetify/AppBar.rst similarity index 85% rename from docs/autoapi/ipyvuetify/generated/AppBar/index.rst rename to docs/autoapi/ipyvuetify/AppBar.rst index 14757d13..9f092bb8 100644 --- a/docs/autoapi/ipyvuetify/generated/AppBar/index.rst +++ b/docs/autoapi/ipyvuetify/AppBar.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.AppBar -=========================== +ipyvuetify.AppBar +================= -.. py:module:: ipyvuetify.generated.AppBar - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.AppBar.AppBar - - -Module Contents ---------------- - -.. py:class:: AppBar(**kwargs) +.. py:class:: ipyvuetify.AppBar(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -140,4 +126,3 @@ Module Contents .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/AppBarNavIcon.rst b/docs/autoapi/ipyvuetify/AppBarNavIcon.rst new file mode 100644 index 00000000..5f5043ee --- /dev/null +++ b/docs/autoapi/ipyvuetify/AppBarNavIcon.rst @@ -0,0 +1,17 @@ +ipyvuetify.AppBarNavIcon +======================== + +.. py:class:: ipyvuetify.AppBarNavIcon(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + diff --git a/docs/autoapi/ipyvuetify/generated/Autocomplete/index.rst b/docs/autoapi/ipyvuetify/Autocomplete.rst similarity index 90% rename from docs/autoapi/ipyvuetify/generated/Autocomplete/index.rst rename to docs/autoapi/ipyvuetify/Autocomplete.rst index f1bf5456..917385dd 100644 --- a/docs/autoapi/ipyvuetify/generated/Autocomplete/index.rst +++ b/docs/autoapi/ipyvuetify/Autocomplete.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Autocomplete -================================= +ipyvuetify.Autocomplete +======================= -.. py:module:: ipyvuetify.generated.Autocomplete - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Autocomplete.Autocomplete - - -Module Contents ---------------- - -.. py:class:: Autocomplete(**kwargs) +.. py:class:: ipyvuetify.Autocomplete(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -236,4 +222,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/ListItemAvatar/index.rst b/docs/autoapi/ipyvuetify/Avatar.rst similarity index 63% rename from docs/autoapi/ipyvuetify/generated/ListItemAvatar/index.rst rename to docs/autoapi/ipyvuetify/Avatar.rst index 730daaf8..88bf22eb 100644 --- a/docs/autoapi/ipyvuetify/generated/ListItemAvatar/index.rst +++ b/docs/autoapi/ipyvuetify/Avatar.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.ListItemAvatar -=================================== +ipyvuetify.Avatar +================= -.. py:module:: ipyvuetify.generated.ListItemAvatar - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ListItemAvatar.ListItemAvatar - - -Module Contents ---------------- - -.. py:class:: ListItemAvatar(**kwargs) +.. py:class:: ipyvuetify.Avatar(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -36,9 +22,6 @@ Module Contents .. py:attribute:: height - .. py:attribute:: horizontal - - .. py:attribute:: left @@ -65,4 +48,3 @@ Module Contents .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/generated/Badge/index.rst b/docs/autoapi/ipyvuetify/Badge.rst similarity index 77% rename from docs/autoapi/ipyvuetify/generated/Badge/index.rst rename to docs/autoapi/ipyvuetify/Badge.rst index 283d8943..7eeb7dc1 100644 --- a/docs/autoapi/ipyvuetify/generated/Badge/index.rst +++ b/docs/autoapi/ipyvuetify/Badge.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Badge -========================== +ipyvuetify.Badge +================ -.. py:module:: ipyvuetify.generated.Badge - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Badge.Badge - - -Module Contents ---------------- - -.. py:class:: Badge(**kwargs) +.. py:class:: ipyvuetify.Badge(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -89,4 +75,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/Banner/index.rst b/docs/autoapi/ipyvuetify/Banner.rst similarity index 77% rename from docs/autoapi/ipyvuetify/generated/Banner/index.rst rename to docs/autoapi/ipyvuetify/Banner.rst index e4141ead..d656b0a1 100644 --- a/docs/autoapi/ipyvuetify/generated/Banner/index.rst +++ b/docs/autoapi/ipyvuetify/Banner.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Banner -=========================== +ipyvuetify.Banner +================= -.. py:module:: ipyvuetify.generated.Banner - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Banner.Banner - - -Module Contents ---------------- - -.. py:class:: Banner(**kwargs) +.. py:class:: ipyvuetify.Banner(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -86,4 +72,3 @@ Module Contents .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/generated/BottomNavigation/index.rst b/docs/autoapi/ipyvuetify/BottomNavigation.rst similarity index 76% rename from docs/autoapi/ipyvuetify/generated/BottomNavigation/index.rst rename to docs/autoapi/ipyvuetify/BottomNavigation.rst index 2477ce94..6320b173 100644 --- a/docs/autoapi/ipyvuetify/generated/BottomNavigation/index.rst +++ b/docs/autoapi/ipyvuetify/BottomNavigation.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.BottomNavigation -===================================== +ipyvuetify.BottomNavigation +=========================== -.. py:module:: ipyvuetify.generated.BottomNavigation - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.BottomNavigation.BottomNavigation - - -Module Contents ---------------- - -.. py:class:: BottomNavigation(**kwargs) +.. py:class:: ipyvuetify.BottomNavigation(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -98,4 +84,3 @@ Module Contents .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/generated/Dialog/index.rst b/docs/autoapi/ipyvuetify/BottomSheet.rst similarity index 81% rename from docs/autoapi/ipyvuetify/generated/Dialog/index.rst rename to docs/autoapi/ipyvuetify/BottomSheet.rst index 0c2fd51b..56abedf3 100644 --- a/docs/autoapi/ipyvuetify/generated/Dialog/index.rst +++ b/docs/autoapi/ipyvuetify/BottomSheet.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Dialog -=========================== +ipyvuetify.BottomSheet +====================== -.. py:module:: ipyvuetify.generated.Dialog - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Dialog.Dialog - - -Module Contents ---------------- - -.. py:class:: Dialog(**kwargs) +.. py:class:: ipyvuetify.BottomSheet(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -57,6 +43,9 @@ Module Contents .. py:attribute:: hide_overlay + .. py:attribute:: inset + + .. py:attribute:: internal_activator @@ -104,4 +93,3 @@ Module Contents .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/generated/Breadcrumbs/index.rst b/docs/autoapi/ipyvuetify/Breadcrumbs.rst similarity index 58% rename from docs/autoapi/ipyvuetify/generated/Breadcrumbs/index.rst rename to docs/autoapi/ipyvuetify/Breadcrumbs.rst index ac36460e..4af35132 100644 --- a/docs/autoapi/ipyvuetify/generated/Breadcrumbs/index.rst +++ b/docs/autoapi/ipyvuetify/Breadcrumbs.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Breadcrumbs -================================ +ipyvuetify.Breadcrumbs +====================== -.. py:module:: ipyvuetify.generated.Breadcrumbs - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Breadcrumbs.Breadcrumbs - - -Module Contents ---------------- - -.. py:class:: Breadcrumbs(**kwargs) +.. py:class:: ipyvuetify.Breadcrumbs(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -44,4 +30,3 @@ Module Contents .. py:attribute:: light - diff --git a/docs/autoapi/ipyvuetify/generated/CardText/index.rst b/docs/autoapi/ipyvuetify/BreadcrumbsDivider.rst similarity index 54% rename from docs/autoapi/ipyvuetify/generated/CardText/index.rst rename to docs/autoapi/ipyvuetify/BreadcrumbsDivider.rst index c905bc63..b7f7192f 100644 --- a/docs/autoapi/ipyvuetify/generated/CardText/index.rst +++ b/docs/autoapi/ipyvuetify/BreadcrumbsDivider.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.CardText +ipyvuetify.BreadcrumbsDivider ============================= -.. py:module:: ipyvuetify.generated.CardText - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.CardText.CardText - - -Module Contents ---------------- - -.. py:class:: CardText(**kwargs) +.. py:class:: ipyvuetify.BreadcrumbsDivider(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -29,4 +15,3 @@ Module Contents layout: InstanceDict(Layout) widget layout - diff --git a/docs/autoapi/ipyvuetify/generated/BreadcrumbsItem/index.rst b/docs/autoapi/ipyvuetify/BreadcrumbsItem.rst similarity index 68% rename from docs/autoapi/ipyvuetify/generated/BreadcrumbsItem/index.rst rename to docs/autoapi/ipyvuetify/BreadcrumbsItem.rst index 1017bc00..454597d0 100644 --- a/docs/autoapi/ipyvuetify/generated/BreadcrumbsItem/index.rst +++ b/docs/autoapi/ipyvuetify/BreadcrumbsItem.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.BreadcrumbsItem -==================================== +ipyvuetify.BreadcrumbsItem +========================== -.. py:module:: ipyvuetify.generated.BreadcrumbsItem - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.BreadcrumbsItem.BreadcrumbsItem - - -Module Contents ---------------- - -.. py:class:: BreadcrumbsItem(**kwargs) +.. py:class:: ipyvuetify.BreadcrumbsItem(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -68,4 +54,3 @@ Module Contents .. py:attribute:: to - diff --git a/docs/autoapi/ipyvuetify/generated/Btn/index.rst b/docs/autoapi/ipyvuetify/Btn.rst similarity index 87% rename from docs/autoapi/ipyvuetify/generated/Btn/index.rst rename to docs/autoapi/ipyvuetify/Btn.rst index bdfc7825..c05872b0 100644 --- a/docs/autoapi/ipyvuetify/generated/Btn/index.rst +++ b/docs/autoapi/ipyvuetify/Btn.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Btn -======================== +ipyvuetify.Btn +============== -.. py:module:: ipyvuetify.generated.Btn - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Btn.Btn - - -Module Contents ---------------- - -.. py:class:: Btn(**kwargs) +.. py:class:: ipyvuetify.Btn(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -167,4 +153,3 @@ Module Contents .. py:attribute:: x_small - diff --git a/docs/autoapi/ipyvuetify/generated/BtnToggle/index.rst b/docs/autoapi/ipyvuetify/BtnToggle.rst similarity index 72% rename from docs/autoapi/ipyvuetify/generated/BtnToggle/index.rst rename to docs/autoapi/ipyvuetify/BtnToggle.rst index 73f41239..64ffcffa 100644 --- a/docs/autoapi/ipyvuetify/generated/BtnToggle/index.rst +++ b/docs/autoapi/ipyvuetify/BtnToggle.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.BtnToggle -============================== +ipyvuetify.BtnToggle +==================== -.. py:module:: ipyvuetify.generated.BtnToggle - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.BtnToggle.BtnToggle - - -Module Contents ---------------- - -.. py:class:: BtnToggle(**kwargs) +.. py:class:: ipyvuetify.BtnToggle(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -74,4 +60,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/Calendar/index.rst b/docs/autoapi/ipyvuetify/Calendar.rst similarity index 85% rename from docs/autoapi/ipyvuetify/generated/Calendar/index.rst rename to docs/autoapi/ipyvuetify/Calendar.rst index 3e9be113..59a7d5b1 100644 --- a/docs/autoapi/ipyvuetify/generated/Calendar/index.rst +++ b/docs/autoapi/ipyvuetify/Calendar.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Calendar -============================= +ipyvuetify.Calendar +=================== -.. py:module:: ipyvuetify.generated.Calendar - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Calendar.Calendar - - -Module Contents ---------------- - -.. py:class:: Calendar(**kwargs) +.. py:class:: ipyvuetify.Calendar(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -134,4 +120,3 @@ Module Contents .. py:attribute:: weekdays - diff --git a/docs/autoapi/ipyvuetify/generated/CalendarDaily/index.rst b/docs/autoapi/ipyvuetify/CalendarDaily.rst similarity index 73% rename from docs/autoapi/ipyvuetify/generated/CalendarDaily/index.rst rename to docs/autoapi/ipyvuetify/CalendarDaily.rst index 9083a52d..712bf13a 100644 --- a/docs/autoapi/ipyvuetify/generated/CalendarDaily/index.rst +++ b/docs/autoapi/ipyvuetify/CalendarDaily.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.CalendarDaily -================================== +ipyvuetify.CalendarDaily +======================== -.. py:module:: ipyvuetify.generated.CalendarDaily - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.CalendarDaily.CalendarDaily - - -Module Contents ---------------- - -.. py:class:: CalendarDaily(**kwargs) +.. py:class:: ipyvuetify.CalendarDaily(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -80,4 +66,3 @@ Module Contents .. py:attribute:: weekdays - diff --git a/docs/autoapi/ipyvuetify/generated/CalendarWeekly/index.rst b/docs/autoapi/ipyvuetify/CalendarMonthly.rst similarity index 69% rename from docs/autoapi/ipyvuetify/generated/CalendarWeekly/index.rst rename to docs/autoapi/ipyvuetify/CalendarMonthly.rst index 41a93e47..a4cba556 100644 --- a/docs/autoapi/ipyvuetify/generated/CalendarWeekly/index.rst +++ b/docs/autoapi/ipyvuetify/CalendarMonthly.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.CalendarWeekly -=================================== +ipyvuetify.CalendarMonthly +========================== -.. py:module:: ipyvuetify.generated.CalendarWeekly - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.CalendarWeekly.CalendarWeekly - - -Module Contents ---------------- - -.. py:class:: CalendarWeekly(**kwargs) +.. py:class:: ipyvuetify.CalendarMonthly(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -68,4 +54,3 @@ Module Contents .. py:attribute:: weekdays - diff --git a/docs/autoapi/ipyvuetify/generated/CalendarMonthly/index.rst b/docs/autoapi/ipyvuetify/CalendarWeekly.rst similarity index 68% rename from docs/autoapi/ipyvuetify/generated/CalendarMonthly/index.rst rename to docs/autoapi/ipyvuetify/CalendarWeekly.rst index ea5c3d5d..78eb89d4 100644 --- a/docs/autoapi/ipyvuetify/generated/CalendarMonthly/index.rst +++ b/docs/autoapi/ipyvuetify/CalendarWeekly.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.CalendarMonthly -==================================== +ipyvuetify.CalendarWeekly +========================= -.. py:module:: ipyvuetify.generated.CalendarMonthly - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.CalendarMonthly.CalendarMonthly - - -Module Contents ---------------- - -.. py:class:: CalendarMonthly(**kwargs) +.. py:class:: ipyvuetify.CalendarWeekly(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -68,4 +54,3 @@ Module Contents .. py:attribute:: weekdays - diff --git a/docs/autoapi/ipyvuetify/generated/Card/index.rst b/docs/autoapi/ipyvuetify/Card.rst similarity index 84% rename from docs/autoapi/ipyvuetify/generated/Card/index.rst rename to docs/autoapi/ipyvuetify/Card.rst index 52030c30..799be162 100644 --- a/docs/autoapi/ipyvuetify/generated/Card/index.rst +++ b/docs/autoapi/ipyvuetify/Card.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Card -========================= +ipyvuetify.Card +=============== -.. py:module:: ipyvuetify.generated.Card - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Card.Card - - -Module Contents ---------------- - -.. py:class:: Card(**kwargs) +.. py:class:: ipyvuetify.Card(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -125,4 +111,3 @@ Module Contents .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/CardActions.rst b/docs/autoapi/ipyvuetify/CardActions.rst new file mode 100644 index 00000000..d6e897b7 --- /dev/null +++ b/docs/autoapi/ipyvuetify/CardActions.rst @@ -0,0 +1,17 @@ +ipyvuetify.CardActions +====================== + +.. py:class:: ipyvuetify.CardActions(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + diff --git a/docs/autoapi/ipyvuetify/CardSubtitle.rst b/docs/autoapi/ipyvuetify/CardSubtitle.rst new file mode 100644 index 00000000..e2db50e6 --- /dev/null +++ b/docs/autoapi/ipyvuetify/CardSubtitle.rst @@ -0,0 +1,17 @@ +ipyvuetify.CardSubtitle +======================= + +.. py:class:: ipyvuetify.CardSubtitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + diff --git a/docs/autoapi/ipyvuetify/CardText.rst b/docs/autoapi/ipyvuetify/CardText.rst new file mode 100644 index 00000000..eb40d1e2 --- /dev/null +++ b/docs/autoapi/ipyvuetify/CardText.rst @@ -0,0 +1,17 @@ +ipyvuetify.CardText +=================== + +.. py:class:: ipyvuetify.CardText(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + diff --git a/docs/autoapi/ipyvuetify/CardTitle.rst b/docs/autoapi/ipyvuetify/CardTitle.rst new file mode 100644 index 00000000..a4b9ba63 --- /dev/null +++ b/docs/autoapi/ipyvuetify/CardTitle.rst @@ -0,0 +1,17 @@ +ipyvuetify.CardTitle +==================== + +.. py:class:: ipyvuetify.CardTitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + diff --git a/docs/autoapi/ipyvuetify/generated/Carousel/index.rst b/docs/autoapi/ipyvuetify/Carousel.rst similarity index 80% rename from docs/autoapi/ipyvuetify/generated/Carousel/index.rst rename to docs/autoapi/ipyvuetify/Carousel.rst index 123199e0..4735d6df 100644 --- a/docs/autoapi/ipyvuetify/generated/Carousel/index.rst +++ b/docs/autoapi/ipyvuetify/Carousel.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Carousel -============================= +ipyvuetify.Carousel +=================== -.. py:module:: ipyvuetify.generated.Carousel - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Carousel.Carousel - - -Module Contents ---------------- - -.. py:class:: Carousel(**kwargs) +.. py:class:: ipyvuetify.Carousel(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -104,4 +90,3 @@ Module Contents .. py:attribute:: vertical_delimiters - diff --git a/docs/autoapi/ipyvuetify/generated/CarouselItem/index.rst b/docs/autoapi/ipyvuetify/CarouselItem.rst similarity index 73% rename from docs/autoapi/ipyvuetify/generated/CarouselItem/index.rst rename to docs/autoapi/ipyvuetify/CarouselItem.rst index d7943e91..ca0d106f 100644 --- a/docs/autoapi/ipyvuetify/generated/CarouselItem/index.rst +++ b/docs/autoapi/ipyvuetify/CarouselItem.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.CarouselItem -================================= +ipyvuetify.CarouselItem +======================= -.. py:module:: ipyvuetify.generated.CarouselItem - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.CarouselItem.CarouselItem - - -Module Contents ---------------- - -.. py:class:: CarouselItem(**kwargs) +.. py:class:: ipyvuetify.CarouselItem(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -80,4 +66,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/ScaleTransition/index.rst b/docs/autoapi/ipyvuetify/CarouselReverseTransition.rst similarity index 62% rename from docs/autoapi/ipyvuetify/generated/ScaleTransition/index.rst rename to docs/autoapi/ipyvuetify/CarouselReverseTransition.rst index d40bb67b..c3801275 100644 --- a/docs/autoapi/ipyvuetify/generated/ScaleTransition/index.rst +++ b/docs/autoapi/ipyvuetify/CarouselReverseTransition.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.ScaleTransition +ipyvuetify.CarouselReverseTransition ==================================== -.. py:module:: ipyvuetify.generated.ScaleTransition - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ScaleTransition.ScaleTransition - - -Module Contents ---------------- - -.. py:class:: ScaleTransition(**kwargs) +.. py:class:: ipyvuetify.CarouselReverseTransition(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -44,4 +30,3 @@ Module Contents .. py:attribute:: origin - diff --git a/docs/autoapi/ipyvuetify/CarouselTransition.rst b/docs/autoapi/ipyvuetify/CarouselTransition.rst new file mode 100644 index 00000000..16676ecf --- /dev/null +++ b/docs/autoapi/ipyvuetify/CarouselTransition.rst @@ -0,0 +1,32 @@ +ipyvuetify.CarouselTransition +============================= + +.. py:class:: ipyvuetify.CarouselTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + diff --git a/docs/autoapi/ipyvuetify/generated/Checkbox/index.rst b/docs/autoapi/ipyvuetify/Checkbox.rst similarity index 84% rename from docs/autoapi/ipyvuetify/generated/Checkbox/index.rst rename to docs/autoapi/ipyvuetify/Checkbox.rst index f3cf5709..d357170d 100644 --- a/docs/autoapi/ipyvuetify/generated/Checkbox/index.rst +++ b/docs/autoapi/ipyvuetify/Checkbox.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Checkbox -============================= +ipyvuetify.Checkbox +=================== -.. py:module:: ipyvuetify.generated.Checkbox - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Checkbox.Checkbox - - -Module Contents ---------------- - -.. py:class:: Checkbox(**kwargs) +.. py:class:: ipyvuetify.Checkbox(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -131,4 +117,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/Chip/index.rst b/docs/autoapi/ipyvuetify/Chip.rst similarity index 84% rename from docs/autoapi/ipyvuetify/generated/Chip/index.rst rename to docs/autoapi/ipyvuetify/Chip.rst index b76ab78d..d46470ca 100644 --- a/docs/autoapi/ipyvuetify/generated/Chip/index.rst +++ b/docs/autoapi/ipyvuetify/Chip.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Chip -========================= +ipyvuetify.Chip +=============== -.. py:module:: ipyvuetify.generated.Chip - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Chip.Chip - - -Module Contents ---------------- - -.. py:class:: Chip(**kwargs) +.. py:class:: ipyvuetify.Chip(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -125,4 +111,3 @@ Module Contents .. py:attribute:: x_small - diff --git a/docs/autoapi/ipyvuetify/generated/ChipGroup/index.rst b/docs/autoapi/ipyvuetify/ChipGroup.rst similarity index 72% rename from docs/autoapi/ipyvuetify/generated/ChipGroup/index.rst rename to docs/autoapi/ipyvuetify/ChipGroup.rst index 174cc71d..9ce9c317 100644 --- a/docs/autoapi/ipyvuetify/generated/ChipGroup/index.rst +++ b/docs/autoapi/ipyvuetify/ChipGroup.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.ChipGroup -============================== +ipyvuetify.ChipGroup +==================== -.. py:module:: ipyvuetify.generated.ChipGroup - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ChipGroup.ChipGroup - - -Module Contents ---------------- - -.. py:class:: ChipGroup(**kwargs) +.. py:class:: ipyvuetify.ChipGroup(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -71,4 +57,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/Col/index.rst b/docs/autoapi/ipyvuetify/Col.rst similarity index 76% rename from docs/autoapi/ipyvuetify/generated/Col/index.rst rename to docs/autoapi/ipyvuetify/Col.rst index 479b35a6..75954598 100644 --- a/docs/autoapi/ipyvuetify/generated/Col/index.rst +++ b/docs/autoapi/ipyvuetify/Col.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Col -======================== +ipyvuetify.Col +============== -.. py:module:: ipyvuetify.generated.Col - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Col.Col - - -Module Contents ---------------- - -.. py:class:: Col(**kwargs) +.. py:class:: ipyvuetify.Col(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -80,4 +66,3 @@ Module Contents .. py:attribute:: xl - diff --git a/docs/autoapi/ipyvuetify/generated/ColorPicker/index.rst b/docs/autoapi/ipyvuetify/ColorPicker.rst similarity index 72% rename from docs/autoapi/ipyvuetify/generated/ColorPicker/index.rst rename to docs/autoapi/ipyvuetify/ColorPicker.rst index 89993d1a..005018b9 100644 --- a/docs/autoapi/ipyvuetify/generated/ColorPicker/index.rst +++ b/docs/autoapi/ipyvuetify/ColorPicker.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.ColorPicker -================================ +ipyvuetify.ColorPicker +====================== -.. py:module:: ipyvuetify.generated.ColorPicker - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ColorPicker.ColorPicker - - -Module Contents ---------------- - -.. py:class:: ColorPicker(**kwargs) +.. py:class:: ipyvuetify.ColorPicker(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -74,4 +60,3 @@ Module Contents .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/generated/ColorPickerCanvas/index.rst b/docs/autoapi/ipyvuetify/ColorPickerCanvas.rst similarity index 55% rename from docs/autoapi/ipyvuetify/generated/ColorPickerCanvas/index.rst rename to docs/autoapi/ipyvuetify/ColorPickerCanvas.rst index ae2093dc..1764379f 100644 --- a/docs/autoapi/ipyvuetify/generated/ColorPickerCanvas/index.rst +++ b/docs/autoapi/ipyvuetify/ColorPickerCanvas.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.ColorPickerCanvas -====================================== +ipyvuetify.ColorPickerCanvas +============================ -.. py:module:: ipyvuetify.generated.ColorPickerCanvas - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ColorPickerCanvas.ColorPickerCanvas - - -Module Contents ---------------- - -.. py:class:: ColorPickerCanvas(**kwargs) +.. py:class:: ipyvuetify.ColorPickerCanvas(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -44,4 +30,3 @@ Module Contents .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/generated/Subheader/index.rst b/docs/autoapi/ipyvuetify/ColorPickerSwatches.rst similarity index 56% rename from docs/autoapi/ipyvuetify/generated/Subheader/index.rst rename to docs/autoapi/ipyvuetify/ColorPickerSwatches.rst index 19b3f4c5..9073fc38 100644 --- a/docs/autoapi/ipyvuetify/generated/Subheader/index.rst +++ b/docs/autoapi/ipyvuetify/ColorPickerSwatches.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Subheader +ipyvuetify.ColorPickerSwatches ============================== -.. py:module:: ipyvuetify.generated.Subheader - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Subheader.Subheader - - -Module Contents ---------------- - -.. py:class:: Subheader(**kwargs) +.. py:class:: ipyvuetify.ColorPickerSwatches(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -30,12 +16,20 @@ Module Contents widget layout - .. py:attribute:: dark + .. py:attribute:: color - .. py:attribute:: inset + .. py:attribute:: dark .. py:attribute:: light + .. py:attribute:: max_height + + + .. py:attribute:: max_width + + + .. py:attribute:: swatches + diff --git a/docs/autoapi/ipyvuetify/generated/Combobox/index.rst b/docs/autoapi/ipyvuetify/Combobox.rst similarity index 90% rename from docs/autoapi/ipyvuetify/generated/Combobox/index.rst rename to docs/autoapi/ipyvuetify/Combobox.rst index 1aef347a..e04a0405 100644 --- a/docs/autoapi/ipyvuetify/generated/Combobox/index.rst +++ b/docs/autoapi/ipyvuetify/Combobox.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Combobox -============================= +ipyvuetify.Combobox +=================== -.. py:module:: ipyvuetify.generated.Combobox - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Combobox.Combobox - - -Module Contents ---------------- - -.. py:class:: Combobox(**kwargs) +.. py:class:: ipyvuetify.Combobox(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -239,4 +225,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/Content/index.rst b/docs/autoapi/ipyvuetify/Container.rst similarity index 92% rename from docs/autoapi/ipyvuetify/generated/Content/index.rst rename to docs/autoapi/ipyvuetify/Container.rst index e980ce35..e1f9ffe0 100644 --- a/docs/autoapi/ipyvuetify/generated/Content/index.rst +++ b/docs/autoapi/ipyvuetify/Container.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Content -============================ +ipyvuetify.Container +==================== -.. py:module:: ipyvuetify.generated.Content - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Content.Content - - -Module Contents ---------------- - -.. py:class:: Content(**kwargs) +.. py:class:: ipyvuetify.Container(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -30,6 +16,12 @@ Module Contents widget layout + .. py:attribute:: fluid + + + .. py:attribute:: id + + .. py:attribute:: ma_0 @@ -326,4 +318,3 @@ Module Contents .. py:attribute:: tag - diff --git a/docs/autoapi/ipyvuetify/generated/Container/index.rst b/docs/autoapi/ipyvuetify/Content.rst similarity index 90% rename from docs/autoapi/ipyvuetify/generated/Container/index.rst rename to docs/autoapi/ipyvuetify/Content.rst index 61d6c5af..9d65cc8e 100644 --- a/docs/autoapi/ipyvuetify/generated/Container/index.rst +++ b/docs/autoapi/ipyvuetify/Content.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Container -============================== +ipyvuetify.Content +================== -.. py:module:: ipyvuetify.generated.Container - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Container.Container - - -Module Contents ---------------- - -.. py:class:: Container(**kwargs) +.. py:class:: ipyvuetify.Content(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -30,12 +16,6 @@ Module Contents widget layout - .. py:attribute:: fluid - - - .. py:attribute:: id - - .. py:attribute:: ma_0 @@ -332,4 +312,3 @@ Module Contents .. py:attribute:: tag - diff --git a/docs/autoapi/ipyvuetify/generated/Text/index.rst b/docs/autoapi/ipyvuetify/Counter.rst similarity index 54% rename from docs/autoapi/ipyvuetify/generated/Text/index.rst rename to docs/autoapi/ipyvuetify/Counter.rst index 0886665c..18449f52 100644 --- a/docs/autoapi/ipyvuetify/generated/Text/index.rst +++ b/docs/autoapi/ipyvuetify/Counter.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Text -========================= +ipyvuetify.Counter +================== -.. py:module:: ipyvuetify.generated.Text - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Text.Text - - -Module Contents ---------------- - -.. py:class:: Text(**kwargs) +.. py:class:: ipyvuetify.Counter(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -30,6 +16,14 @@ Module Contents widget layout - .. py:attribute:: value + .. py:attribute:: dark + + + .. py:attribute:: light + + .. py:attribute:: max + + + .. py:attribute:: value diff --git a/docs/autoapi/ipyvuetify/generated/Data/index.rst b/docs/autoapi/ipyvuetify/Data.rst similarity index 77% rename from docs/autoapi/ipyvuetify/generated/Data/index.rst rename to docs/autoapi/ipyvuetify/Data.rst index 294c6a74..433a2db8 100644 --- a/docs/autoapi/ipyvuetify/generated/Data/index.rst +++ b/docs/autoapi/ipyvuetify/Data.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Data -========================= +ipyvuetify.Data +=============== -.. py:module:: ipyvuetify.generated.Data - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Data.Data - - -Module Contents ---------------- - -.. py:class:: Data(**kwargs) +.. py:class:: ipyvuetify.Data(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -77,4 +63,3 @@ Module Contents .. py:attribute:: sort_desc - diff --git a/docs/autoapi/ipyvuetify/generated/DataFooter/index.rst b/docs/autoapi/ipyvuetify/DataFooter.rst similarity index 74% rename from docs/autoapi/ipyvuetify/generated/DataFooter/index.rst rename to docs/autoapi/ipyvuetify/DataFooter.rst index 21b45f57..097e6873 100644 --- a/docs/autoapi/ipyvuetify/generated/DataFooter/index.rst +++ b/docs/autoapi/ipyvuetify/DataFooter.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.DataFooter -=============================== +ipyvuetify.DataFooter +===================== -.. py:module:: ipyvuetify.generated.DataFooter - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.DataFooter.DataFooter - - -Module Contents ---------------- - -.. py:class:: DataFooter(**kwargs) +.. py:class:: ipyvuetify.DataFooter(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -71,4 +57,3 @@ Module Contents .. py:attribute:: show_first_last_page - diff --git a/docs/autoapi/ipyvuetify/generated/DataIterator/index.rst b/docs/autoapi/ipyvuetify/DataIterator.rst similarity index 82% rename from docs/autoapi/ipyvuetify/generated/DataIterator/index.rst rename to docs/autoapi/ipyvuetify/DataIterator.rst index 91dc1785..2f447edb 100644 --- a/docs/autoapi/ipyvuetify/generated/DataIterator/index.rst +++ b/docs/autoapi/ipyvuetify/DataIterator.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.DataIterator -================================= +ipyvuetify.DataIterator +======================= -.. py:module:: ipyvuetify.generated.DataIterator - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.DataIterator.DataIterator - - -Module Contents ---------------- - -.. py:class:: DataIterator(**kwargs) +.. py:class:: ipyvuetify.DataIterator(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -122,4 +108,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/DataTable/index.rst b/docs/autoapi/ipyvuetify/DataTable.rst similarity index 87% rename from docs/autoapi/ipyvuetify/generated/DataTable/index.rst rename to docs/autoapi/ipyvuetify/DataTable.rst index a9c4d130..acd13d05 100644 --- a/docs/autoapi/ipyvuetify/generated/DataTable/index.rst +++ b/docs/autoapi/ipyvuetify/DataTable.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.DataTable -============================== +ipyvuetify.DataTable +==================== -.. py:module:: ipyvuetify.generated.DataTable - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.DataTable.DataTable - - -Module Contents ---------------- - -.. py:class:: DataTable(**kwargs) +.. py:class:: ipyvuetify.DataTable(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -161,4 +147,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/DataTableHeader.rst b/docs/autoapi/ipyvuetify/DataTableHeader.rst new file mode 100644 index 00000000..563c07db --- /dev/null +++ b/docs/autoapi/ipyvuetify/DataTableHeader.rst @@ -0,0 +1,20 @@ +ipyvuetify.DataTableHeader +========================== + +.. py:class:: ipyvuetify.DataTableHeader(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: mobile + diff --git a/docs/autoapi/ipyvuetify/generated/DatePicker/index.rst b/docs/autoapi/ipyvuetify/DatePicker.rst similarity index 81% rename from docs/autoapi/ipyvuetify/generated/DatePicker/index.rst rename to docs/autoapi/ipyvuetify/DatePicker.rst index d2d44083..d1d26df6 100644 --- a/docs/autoapi/ipyvuetify/generated/DatePicker/index.rst +++ b/docs/autoapi/ipyvuetify/DatePicker.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.DatePicker -=============================== +ipyvuetify.DatePicker +===================== -.. py:module:: ipyvuetify.generated.DatePicker - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.DatePicker.DatePicker - - -Module Contents ---------------- - -.. py:class:: DatePicker(**kwargs) +.. py:class:: ipyvuetify.DatePicker(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -119,4 +105,3 @@ Module Contents .. py:attribute:: year_icon - diff --git a/docs/autoapi/ipyvuetify/generated/DatePickerDateTable/index.rst b/docs/autoapi/ipyvuetify/DatePickerDateTable.rst similarity index 71% rename from docs/autoapi/ipyvuetify/generated/DatePickerDateTable/index.rst rename to docs/autoapi/ipyvuetify/DatePickerDateTable.rst index e770afad..75aab77e 100644 --- a/docs/autoapi/ipyvuetify/generated/DatePickerDateTable/index.rst +++ b/docs/autoapi/ipyvuetify/DatePickerDateTable.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.DatePickerDateTable -======================================== +ipyvuetify.DatePickerDateTable +============================== -.. py:module:: ipyvuetify.generated.DatePickerDateTable - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.DatePickerDateTable.DatePickerDateTable - - -Module Contents ---------------- - -.. py:class:: DatePickerDateTable(**kwargs) +.. py:class:: ipyvuetify.DatePickerDateTable(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -83,4 +69,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/DatePickerHeader/index.rst b/docs/autoapi/ipyvuetify/DatePickerHeader.rst similarity index 65% rename from docs/autoapi/ipyvuetify/generated/DatePickerHeader/index.rst rename to docs/autoapi/ipyvuetify/DatePickerHeader.rst index 4da1a4a4..d51888ea 100644 --- a/docs/autoapi/ipyvuetify/generated/DatePickerHeader/index.rst +++ b/docs/autoapi/ipyvuetify/DatePickerHeader.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.DatePickerHeader -===================================== +ipyvuetify.DatePickerHeader +=========================== -.. py:module:: ipyvuetify.generated.DatePickerHeader - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.DatePickerHeader.DatePickerHeader - - -Module Contents ---------------- - -.. py:class:: DatePickerHeader(**kwargs) +.. py:class:: ipyvuetify.DatePickerHeader(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -62,4 +48,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/DatePickerMonthTable/index.rst b/docs/autoapi/ipyvuetify/DatePickerMonthTable.rst similarity index 67% rename from docs/autoapi/ipyvuetify/generated/DatePickerMonthTable/index.rst rename to docs/autoapi/ipyvuetify/DatePickerMonthTable.rst index 3dcfe45a..c5a88e78 100644 --- a/docs/autoapi/ipyvuetify/generated/DatePickerMonthTable/index.rst +++ b/docs/autoapi/ipyvuetify/DatePickerMonthTable.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.DatePickerMonthTable -========================================= +ipyvuetify.DatePickerMonthTable +=============================== -.. py:module:: ipyvuetify.generated.DatePickerMonthTable - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.DatePickerMonthTable.DatePickerMonthTable - - -Module Contents ---------------- - -.. py:class:: DatePickerMonthTable(**kwargs) +.. py:class:: ipyvuetify.DatePickerMonthTable(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -74,4 +60,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/DatePickerTitle/index.rst b/docs/autoapi/ipyvuetify/DatePickerTitle.rst similarity index 61% rename from docs/autoapi/ipyvuetify/generated/DatePickerTitle/index.rst rename to docs/autoapi/ipyvuetify/DatePickerTitle.rst index 38be8721..e6022386 100644 --- a/docs/autoapi/ipyvuetify/generated/DatePickerTitle/index.rst +++ b/docs/autoapi/ipyvuetify/DatePickerTitle.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.DatePickerTitle -==================================== +ipyvuetify.DatePickerTitle +========================== -.. py:module:: ipyvuetify.generated.DatePickerTitle - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.DatePickerTitle.DatePickerTitle - - -Module Contents ---------------- - -.. py:class:: DatePickerTitle(**kwargs) +.. py:class:: ipyvuetify.DatePickerTitle(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -53,4 +39,3 @@ Module Contents .. py:attribute:: year_icon - diff --git a/docs/autoapi/ipyvuetify/generated/DatePickerYears/index.rst b/docs/autoapi/ipyvuetify/DatePickerYears.rst similarity index 57% rename from docs/autoapi/ipyvuetify/generated/DatePickerYears/index.rst rename to docs/autoapi/ipyvuetify/DatePickerYears.rst index 2af6a71d..587e5d66 100644 --- a/docs/autoapi/ipyvuetify/generated/DatePickerYears/index.rst +++ b/docs/autoapi/ipyvuetify/DatePickerYears.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.DatePickerYears -==================================== +ipyvuetify.DatePickerYears +========================== -.. py:module:: ipyvuetify.generated.DatePickerYears - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.DatePickerYears.DatePickerYears - - -Module Contents ---------------- - -.. py:class:: DatePickerYears(**kwargs) +.. py:class:: ipyvuetify.DatePickerYears(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -47,4 +33,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/BottomSheet/index.rst b/docs/autoapi/ipyvuetify/Dialog.rst similarity index 78% rename from docs/autoapi/ipyvuetify/generated/BottomSheet/index.rst rename to docs/autoapi/ipyvuetify/Dialog.rst index f435683e..07e208c0 100644 --- a/docs/autoapi/ipyvuetify/generated/BottomSheet/index.rst +++ b/docs/autoapi/ipyvuetify/Dialog.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.BottomSheet -================================ +ipyvuetify.Dialog +================= -.. py:module:: ipyvuetify.generated.BottomSheet - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.BottomSheet.BottomSheet - - -Module Contents ---------------- - -.. py:class:: BottomSheet(**kwargs) +.. py:class:: ipyvuetify.Dialog(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -57,9 +43,6 @@ Module Contents .. py:attribute:: hide_overlay - .. py:attribute:: inset - - .. py:attribute:: internal_activator @@ -107,4 +90,3 @@ Module Contents .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/DialogBottomTransition.rst b/docs/autoapi/ipyvuetify/DialogBottomTransition.rst new file mode 100644 index 00000000..ce6da4ad --- /dev/null +++ b/docs/autoapi/ipyvuetify/DialogBottomTransition.rst @@ -0,0 +1,32 @@ +ipyvuetify.DialogBottomTransition +================================= + +.. py:class:: ipyvuetify.DialogBottomTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + diff --git a/docs/autoapi/ipyvuetify/DialogTransition.rst b/docs/autoapi/ipyvuetify/DialogTransition.rst new file mode 100644 index 00000000..eb71753d --- /dev/null +++ b/docs/autoapi/ipyvuetify/DialogTransition.rst @@ -0,0 +1,32 @@ +ipyvuetify.DialogTransition +=========================== + +.. py:class:: ipyvuetify.DialogTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + diff --git a/docs/autoapi/ipyvuetify/generated/Divider/index.rst b/docs/autoapi/ipyvuetify/Divider.rst similarity index 58% rename from docs/autoapi/ipyvuetify/generated/Divider/index.rst rename to docs/autoapi/ipyvuetify/Divider.rst index fe9af9a6..cbe920bd 100644 --- a/docs/autoapi/ipyvuetify/generated/Divider/index.rst +++ b/docs/autoapi/ipyvuetify/Divider.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Divider -============================ +ipyvuetify.Divider +================== -.. py:module:: ipyvuetify.generated.Divider - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Divider.Divider - - -Module Contents ---------------- - -.. py:class:: Divider(**kwargs) +.. py:class:: ipyvuetify.Divider(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -41,4 +27,3 @@ Module Contents .. py:attribute:: vertical - diff --git a/docs/autoapi/ipyvuetify/generated/EditDialog/index.rst b/docs/autoapi/ipyvuetify/EditDialog.rst similarity index 66% rename from docs/autoapi/ipyvuetify/generated/EditDialog/index.rst rename to docs/autoapi/ipyvuetify/EditDialog.rst index 21c744c7..9fa6312e 100644 --- a/docs/autoapi/ipyvuetify/generated/EditDialog/index.rst +++ b/docs/autoapi/ipyvuetify/EditDialog.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.EditDialog -=============================== +ipyvuetify.EditDialog +===================== -.. py:module:: ipyvuetify.generated.EditDialog - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.EditDialog.EditDialog - - -Module Contents ---------------- - -.. py:class:: EditDialog(**kwargs) +.. py:class:: ipyvuetify.EditDialog(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -56,4 +42,3 @@ Module Contents .. py:attribute:: transition - diff --git a/docs/autoapi/ipyvuetify/generated/Spacer/index.rst b/docs/autoapi/ipyvuetify/ExpandTransition.rst similarity index 55% rename from docs/autoapi/ipyvuetify/generated/Spacer/index.rst rename to docs/autoapi/ipyvuetify/ExpandTransition.rst index 7ad5f652..3c541150 100644 --- a/docs/autoapi/ipyvuetify/generated/Spacer/index.rst +++ b/docs/autoapi/ipyvuetify/ExpandTransition.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Spacer +ipyvuetify.ExpandTransition =========================== -.. py:module:: ipyvuetify.generated.Spacer - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Spacer.Spacer - - -Module Contents ---------------- - -.. py:class:: Spacer(**kwargs) +.. py:class:: ipyvuetify.ExpandTransition(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -30,3 +16,5 @@ Module Contents widget layout + .. py:attribute:: mode + diff --git a/docs/autoapi/ipyvuetify/ExpandXTransition.rst b/docs/autoapi/ipyvuetify/ExpandXTransition.rst new file mode 100644 index 00000000..ae59cc4d --- /dev/null +++ b/docs/autoapi/ipyvuetify/ExpandXTransition.rst @@ -0,0 +1,20 @@ +ipyvuetify.ExpandXTransition +============================ + +.. py:class:: ipyvuetify.ExpandXTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: mode + diff --git a/docs/autoapi/ipyvuetify/generated/ExpansionPanel/index.rst b/docs/autoapi/ipyvuetify/ExpansionPanel.rst similarity index 53% rename from docs/autoapi/ipyvuetify/generated/ExpansionPanel/index.rst rename to docs/autoapi/ipyvuetify/ExpansionPanel.rst index 9c12c10c..b2619f60 100644 --- a/docs/autoapi/ipyvuetify/generated/ExpansionPanel/index.rst +++ b/docs/autoapi/ipyvuetify/ExpansionPanel.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.ExpansionPanel -=================================== +ipyvuetify.ExpansionPanel +========================= -.. py:module:: ipyvuetify.generated.ExpansionPanel - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ExpansionPanel.ExpansionPanel - - -Module Contents ---------------- - -.. py:class:: ExpansionPanel(**kwargs) +.. py:class:: ipyvuetify.ExpansionPanel(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -38,4 +24,3 @@ Module Contents .. py:attribute:: readonly - diff --git a/docs/autoapi/ipyvuetify/generated/CardActions/index.rst b/docs/autoapi/ipyvuetify/ExpansionPanelContent.rst similarity index 53% rename from docs/autoapi/ipyvuetify/generated/CardActions/index.rst rename to docs/autoapi/ipyvuetify/ExpansionPanelContent.rst index de6fc222..934518ff 100644 --- a/docs/autoapi/ipyvuetify/generated/CardActions/index.rst +++ b/docs/autoapi/ipyvuetify/ExpansionPanelContent.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.CardActions +ipyvuetify.ExpansionPanelContent ================================ -.. py:module:: ipyvuetify.generated.CardActions - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.CardActions.CardActions - - -Module Contents ---------------- - -.. py:class:: CardActions(**kwargs) +.. py:class:: ipyvuetify.ExpansionPanelContent(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -30,3 +16,8 @@ Module Contents widget layout + .. py:attribute:: color + + + .. py:attribute:: eager + diff --git a/docs/autoapi/ipyvuetify/generated/TabsSlider/index.rst b/docs/autoapi/ipyvuetify/ExpansionPanelHeader.rst similarity index 57% rename from docs/autoapi/ipyvuetify/generated/TabsSlider/index.rst rename to docs/autoapi/ipyvuetify/ExpansionPanelHeader.rst index 8a574bf8..3431d601 100644 --- a/docs/autoapi/ipyvuetify/generated/TabsSlider/index.rst +++ b/docs/autoapi/ipyvuetify/ExpansionPanelHeader.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.TabsSlider +ipyvuetify.ExpansionPanelHeader =============================== -.. py:module:: ipyvuetify.generated.TabsSlider - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.TabsSlider.TabsSlider - - -Module Contents ---------------- - -.. py:class:: TabsSlider(**kwargs) +.. py:class:: ipyvuetify.ExpansionPanelHeader(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -33,3 +19,14 @@ Module Contents .. py:attribute:: color + .. py:attribute:: disable_icon_rotate + + + .. py:attribute:: expand_icon + + + .. py:attribute:: hide_actions + + + .. py:attribute:: ripple + diff --git a/docs/autoapi/ipyvuetify/generated/ExpansionPanels/index.rst b/docs/autoapi/ipyvuetify/ExpansionPanels.rst similarity index 70% rename from docs/autoapi/ipyvuetify/generated/ExpansionPanels/index.rst rename to docs/autoapi/ipyvuetify/ExpansionPanels.rst index b2a17165..bfba632a 100644 --- a/docs/autoapi/ipyvuetify/generated/ExpansionPanels/index.rst +++ b/docs/autoapi/ipyvuetify/ExpansionPanels.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.ExpansionPanels -==================================== +ipyvuetify.ExpansionPanels +========================== -.. py:module:: ipyvuetify.generated.ExpansionPanels - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ExpansionPanels.ExpansionPanels - - -Module Contents ---------------- - -.. py:class:: ExpansionPanels(**kwargs) +.. py:class:: ipyvuetify.ExpansionPanels(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -77,4 +63,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/FabTransition.rst b/docs/autoapi/ipyvuetify/FabTransition.rst new file mode 100644 index 00000000..93a89e4d --- /dev/null +++ b/docs/autoapi/ipyvuetify/FabTransition.rst @@ -0,0 +1,32 @@ +ipyvuetify.FabTransition +======================== + +.. py:class:: ipyvuetify.FabTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + diff --git a/docs/autoapi/ipyvuetify/FadeTransition.rst b/docs/autoapi/ipyvuetify/FadeTransition.rst new file mode 100644 index 00000000..880078c2 --- /dev/null +++ b/docs/autoapi/ipyvuetify/FadeTransition.rst @@ -0,0 +1,32 @@ +ipyvuetify.FadeTransition +========================= + +.. py:class:: ipyvuetify.FadeTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + diff --git a/docs/autoapi/ipyvuetify/generated/FileInput/index.rst b/docs/autoapi/ipyvuetify/FileInput.rst similarity index 88% rename from docs/autoapi/ipyvuetify/generated/FileInput/index.rst rename to docs/autoapi/ipyvuetify/FileInput.rst index 456125d4..1a4dc884 100644 --- a/docs/autoapi/ipyvuetify/generated/FileInput/index.rst +++ b/docs/autoapi/ipyvuetify/FileInput.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.FileInput -============================== +ipyvuetify.FileInput +==================== -.. py:module:: ipyvuetify.generated.FileInput - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.FileInput.FileInput - - -Module Contents ---------------- - -.. py:class:: FileInput(**kwargs) +.. py:class:: ipyvuetify.FileInput(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -188,4 +174,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/Flex/index.rst b/docs/autoapi/ipyvuetify/Flex.rst similarity index 97% rename from docs/autoapi/ipyvuetify/generated/Flex/index.rst rename to docs/autoapi/ipyvuetify/Flex.rst index 8786731d..ac243617 100644 --- a/docs/autoapi/ipyvuetify/generated/Flex/index.rst +++ b/docs/autoapi/ipyvuetify/Flex.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Flex -========================= +ipyvuetify.Flex +=============== -.. py:module:: ipyvuetify.generated.Flex - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Flex.Flex - - -Module Contents ---------------- - -.. py:class:: Flex(**kwargs) +.. py:class:: ipyvuetify.Flex(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -902,4 +888,3 @@ Module Contents .. py:attribute:: xs9 - diff --git a/docs/autoapi/ipyvuetify/generated/Footer/index.rst b/docs/autoapi/ipyvuetify/Footer.rst similarity index 75% rename from docs/autoapi/ipyvuetify/generated/Footer/index.rst rename to docs/autoapi/ipyvuetify/Footer.rst index 9019cbdf..0d0f4bf4 100644 --- a/docs/autoapi/ipyvuetify/generated/Footer/index.rst +++ b/docs/autoapi/ipyvuetify/Footer.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Footer -=========================== +ipyvuetify.Footer +================= -.. py:module:: ipyvuetify.generated.Footer - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Footer.Footer - - -Module Contents ---------------- - -.. py:class:: Footer(**kwargs) +.. py:class:: ipyvuetify.Footer(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -80,4 +66,3 @@ Module Contents .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/generated/Form/index.rst b/docs/autoapi/ipyvuetify/Form.rst similarity index 56% rename from docs/autoapi/ipyvuetify/generated/Form/index.rst rename to docs/autoapi/ipyvuetify/Form.rst index dc4e80ba..f021dbfa 100644 --- a/docs/autoapi/ipyvuetify/generated/Form/index.rst +++ b/docs/autoapi/ipyvuetify/Form.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Form -========================= +ipyvuetify.Form +=============== -.. py:module:: ipyvuetify.generated.Form - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Form.Form - - -Module Contents ---------------- - -.. py:class:: Form(**kwargs) +.. py:class:: ipyvuetify.Form(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -35,4 +21,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/Hover/index.rst b/docs/autoapi/ipyvuetify/Hover.rst similarity index 60% rename from docs/autoapi/ipyvuetify/generated/Hover/index.rst rename to docs/autoapi/ipyvuetify/Hover.rst index 3d1ee700..49ff64f2 100644 --- a/docs/autoapi/ipyvuetify/generated/Hover/index.rst +++ b/docs/autoapi/ipyvuetify/Hover.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Hover -========================== +ipyvuetify.Hover +================ -.. py:module:: ipyvuetify.generated.Hover - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Hover.Hover - - -Module Contents ---------------- - -.. py:class:: Hover(**kwargs) +.. py:class:: ipyvuetify.Hover(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -41,4 +27,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/Html/index.rst b/docs/autoapi/ipyvuetify/Html.rst similarity index 59% rename from docs/autoapi/ipyvuetify/Html/index.rst rename to docs/autoapi/ipyvuetify/Html.rst index 873a2132..b030f515 100644 --- a/docs/autoapi/ipyvuetify/Html/index.rst +++ b/docs/autoapi/ipyvuetify/Html.rst @@ -1,21 +1,7 @@ ipyvuetify.Html =============== -.. py:module:: ipyvuetify.Html - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.Html.Html - - -Module Contents ---------------- - -.. py:class:: Html(**kwargs) +.. py:class:: ipyvuetify.Html(**kwargs) Bases: :py:obj:`ipyvue.Html` @@ -29,4 +15,3 @@ Module Contents layout: InstanceDict(Layout) widget layout - diff --git a/docs/autoapi/ipyvuetify/generated/Icon/index.rst b/docs/autoapi/ipyvuetify/Icon.rst similarity index 72% rename from docs/autoapi/ipyvuetify/generated/Icon/index.rst rename to docs/autoapi/ipyvuetify/Icon.rst index 2f738fb1..ecb2d385 100644 --- a/docs/autoapi/ipyvuetify/generated/Icon/index.rst +++ b/docs/autoapi/ipyvuetify/Icon.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Icon -========================= +ipyvuetify.Icon +=============== -.. py:module:: ipyvuetify.generated.Icon - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Icon.Icon - - -Module Contents ---------------- - -.. py:class:: Icon(**kwargs) +.. py:class:: ipyvuetify.Icon(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -68,4 +54,3 @@ Module Contents .. py:attribute:: x_small - diff --git a/docs/autoapi/ipyvuetify/generated/Img/index.rst b/docs/autoapi/ipyvuetify/Img.rst similarity index 77% rename from docs/autoapi/ipyvuetify/generated/Img/index.rst rename to docs/autoapi/ipyvuetify/Img.rst index f07d52c9..77448a2b 100644 --- a/docs/autoapi/ipyvuetify/generated/Img/index.rst +++ b/docs/autoapi/ipyvuetify/Img.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Img -======================== +ipyvuetify.Img +============== -.. py:module:: ipyvuetify.generated.Img - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Img.Img - - -Module Contents ---------------- - -.. py:class:: Img(**kwargs) +.. py:class:: ipyvuetify.Img(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -83,4 +69,3 @@ Module Contents .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/generated/Input/index.rst b/docs/autoapi/ipyvuetify/Input.rst similarity index 81% rename from docs/autoapi/ipyvuetify/generated/Input/index.rst rename to docs/autoapi/ipyvuetify/Input.rst index 070a23ed..660dd6d1 100644 --- a/docs/autoapi/ipyvuetify/generated/Input/index.rst +++ b/docs/autoapi/ipyvuetify/Input.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Input -========================== +ipyvuetify.Input +================ -.. py:module:: ipyvuetify.generated.Input - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Input.Input - - -Module Contents ---------------- - -.. py:class:: Input(**kwargs) +.. py:class:: ipyvuetify.Input(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -104,4 +90,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/Item/index.rst b/docs/autoapi/ipyvuetify/Item.rst similarity index 59% rename from docs/autoapi/ipyvuetify/generated/Item/index.rst rename to docs/autoapi/ipyvuetify/Item.rst index ba50cec6..d904b13c 100644 --- a/docs/autoapi/ipyvuetify/generated/Item/index.rst +++ b/docs/autoapi/ipyvuetify/Item.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Item -========================= +ipyvuetify.Item +=============== -.. py:module:: ipyvuetify.generated.Item - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Item.Item - - -Module Contents ---------------- - -.. py:class:: Item(**kwargs) +.. py:class:: ipyvuetify.Item(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -38,4 +24,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/Counter/index.rst b/docs/autoapi/ipyvuetify/ItemGroup.rst similarity index 59% rename from docs/autoapi/ipyvuetify/generated/Counter/index.rst rename to docs/autoapi/ipyvuetify/ItemGroup.rst index e22a1353..c3a6f87b 100644 --- a/docs/autoapi/ipyvuetify/generated/Counter/index.rst +++ b/docs/autoapi/ipyvuetify/ItemGroup.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Counter -============================ +ipyvuetify.ItemGroup +==================== -.. py:module:: ipyvuetify.generated.Counter - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Counter.Counter - - -Module Contents ---------------- - -.. py:class:: Counter(**kwargs) +.. py:class:: ipyvuetify.ItemGroup(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -30,15 +16,23 @@ Module Contents widget layout + .. py:attribute:: active_class + + .. py:attribute:: dark .. py:attribute:: light + .. py:attribute:: mandatory + + .. py:attribute:: max - .. py:attribute:: value + .. py:attribute:: multiple + + .. py:attribute:: value diff --git a/docs/autoapi/ipyvuetify/generated/Label/index.rst b/docs/autoapi/ipyvuetify/Label.rst similarity index 69% rename from docs/autoapi/ipyvuetify/generated/Label/index.rst rename to docs/autoapi/ipyvuetify/Label.rst index 5eac8250..d1d1da97 100644 --- a/docs/autoapi/ipyvuetify/generated/Label/index.rst +++ b/docs/autoapi/ipyvuetify/Label.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Label -========================== +ipyvuetify.Label +================ -.. py:module:: ipyvuetify.generated.Label - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Label.Label - - -Module Contents ---------------- - -.. py:class:: Label(**kwargs) +.. py:class:: ipyvuetify.Label(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -59,4 +45,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/Layout/index.rst b/docs/autoapi/ipyvuetify/Layout.rst similarity index 94% rename from docs/autoapi/ipyvuetify/generated/Layout/index.rst rename to docs/autoapi/ipyvuetify/Layout.rst index 0079706b..7cbef2af 100644 --- a/docs/autoapi/ipyvuetify/generated/Layout/index.rst +++ b/docs/autoapi/ipyvuetify/Layout.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Layout -=========================== +ipyvuetify.Layout +================= -.. py:module:: ipyvuetify.generated.Layout - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Layout.Layout - - -Module Contents ---------------- - -.. py:class:: Layout(**kwargs) +.. py:class:: ipyvuetify.Layout(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -455,4 +441,3 @@ Module Contents .. py:attribute:: wrap - diff --git a/docs/autoapi/ipyvuetify/generated/Lazy/index.rst b/docs/autoapi/ipyvuetify/Lazy.rst similarity index 62% rename from docs/autoapi/ipyvuetify/generated/Lazy/index.rst rename to docs/autoapi/ipyvuetify/Lazy.rst index 61d96ec0..fa65517f 100644 --- a/docs/autoapi/ipyvuetify/generated/Lazy/index.rst +++ b/docs/autoapi/ipyvuetify/Lazy.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Lazy -========================= +ipyvuetify.Lazy +=============== -.. py:module:: ipyvuetify.generated.Lazy - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Lazy.Lazy - - -Module Contents ---------------- - -.. py:class:: Lazy(**kwargs) +.. py:class:: ipyvuetify.Lazy(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -44,4 +30,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/List/index.rst b/docs/autoapi/ipyvuetify/List.rst similarity index 79% rename from docs/autoapi/ipyvuetify/generated/List/index.rst rename to docs/autoapi/ipyvuetify/List.rst index ef101188..fe4e04f3 100644 --- a/docs/autoapi/ipyvuetify/generated/List/index.rst +++ b/docs/autoapi/ipyvuetify/List.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.List -========================= +ipyvuetify.List +=============== -.. py:module:: ipyvuetify.generated.List - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.List.List - - -Module Contents ---------------- - -.. py:class:: List(**kwargs) +.. py:class:: ipyvuetify.List(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -95,4 +81,3 @@ Module Contents .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/generated/ListGroup/index.rst b/docs/autoapi/ipyvuetify/ListGroup.rst similarity index 69% rename from docs/autoapi/ipyvuetify/generated/ListGroup/index.rst rename to docs/autoapi/ipyvuetify/ListGroup.rst index e90a7dfc..3f496856 100644 --- a/docs/autoapi/ipyvuetify/generated/ListGroup/index.rst +++ b/docs/autoapi/ipyvuetify/ListGroup.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.ListGroup -============================== +ipyvuetify.ListGroup +==================== -.. py:module:: ipyvuetify.generated.ListGroup - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ListGroup.ListGroup - - -Module Contents ---------------- - -.. py:class:: ListGroup(**kwargs) +.. py:class:: ipyvuetify.ListGroup(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -62,4 +48,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/ListItem/index.rst b/docs/autoapi/ipyvuetify/ListItem.rst similarity index 78% rename from docs/autoapi/ipyvuetify/generated/ListItem/index.rst rename to docs/autoapi/ipyvuetify/ListItem.rst index 1b62371a..6a12368c 100644 --- a/docs/autoapi/ipyvuetify/generated/ListItem/index.rst +++ b/docs/autoapi/ipyvuetify/ListItem.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.ListItem -============================= +ipyvuetify.ListItem +=================== -.. py:module:: ipyvuetify.generated.ListItem - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ListItem.ListItem - - -Module Contents ---------------- - -.. py:class:: ListItem(**kwargs) +.. py:class:: ipyvuetify.ListItem(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -98,4 +84,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/ListItemAction.rst b/docs/autoapi/ipyvuetify/ListItemAction.rst new file mode 100644 index 00000000..46ef6f19 --- /dev/null +++ b/docs/autoapi/ipyvuetify/ListItemAction.rst @@ -0,0 +1,17 @@ +ipyvuetify.ListItemAction +========================= + +.. py:class:: ipyvuetify.ListItemAction(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + diff --git a/docs/autoapi/ipyvuetify/ListItemActionText.rst b/docs/autoapi/ipyvuetify/ListItemActionText.rst new file mode 100644 index 00000000..d379cdfb --- /dev/null +++ b/docs/autoapi/ipyvuetify/ListItemActionText.rst @@ -0,0 +1,17 @@ +ipyvuetify.ListItemActionText +============================= + +.. py:class:: ipyvuetify.ListItemActionText(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + diff --git a/docs/autoapi/ipyvuetify/generated/Avatar/index.rst b/docs/autoapi/ipyvuetify/ListItemAvatar.rst similarity index 70% rename from docs/autoapi/ipyvuetify/generated/Avatar/index.rst rename to docs/autoapi/ipyvuetify/ListItemAvatar.rst index 5e015c90..3a0b98b4 100644 --- a/docs/autoapi/ipyvuetify/generated/Avatar/index.rst +++ b/docs/autoapi/ipyvuetify/ListItemAvatar.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Avatar -=========================== +ipyvuetify.ListItemAvatar +========================= -.. py:module:: ipyvuetify.generated.Avatar - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Avatar.Avatar - - -Module Contents ---------------- - -.. py:class:: Avatar(**kwargs) +.. py:class:: ipyvuetify.ListItemAvatar(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -36,6 +22,9 @@ Module Contents .. py:attribute:: height + .. py:attribute:: horizontal + + .. py:attribute:: left @@ -62,4 +51,3 @@ Module Contents .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/ListItemContent.rst b/docs/autoapi/ipyvuetify/ListItemContent.rst new file mode 100644 index 00000000..d8931f1e --- /dev/null +++ b/docs/autoapi/ipyvuetify/ListItemContent.rst @@ -0,0 +1,17 @@ +ipyvuetify.ListItemContent +========================== + +.. py:class:: ipyvuetify.ListItemContent(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + diff --git a/docs/autoapi/ipyvuetify/generated/ItemGroup/index.rst b/docs/autoapi/ipyvuetify/ListItemGroup.rst similarity index 63% rename from docs/autoapi/ipyvuetify/generated/ItemGroup/index.rst rename to docs/autoapi/ipyvuetify/ListItemGroup.rst index 5b5e8dde..3d4dac1a 100644 --- a/docs/autoapi/ipyvuetify/generated/ItemGroup/index.rst +++ b/docs/autoapi/ipyvuetify/ListItemGroup.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.ItemGroup -============================== +ipyvuetify.ListItemGroup +======================== -.. py:module:: ipyvuetify.generated.ItemGroup - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ItemGroup.ItemGroup - - -Module Contents ---------------- - -.. py:class:: ItemGroup(**kwargs) +.. py:class:: ipyvuetify.ListItemGroup(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -33,6 +19,9 @@ Module Contents .. py:attribute:: active_class + .. py:attribute:: color + + .. py:attribute:: dark @@ -50,4 +39,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/ListItemIcon.rst b/docs/autoapi/ipyvuetify/ListItemIcon.rst new file mode 100644 index 00000000..44667b4f --- /dev/null +++ b/docs/autoapi/ipyvuetify/ListItemIcon.rst @@ -0,0 +1,17 @@ +ipyvuetify.ListItemIcon +======================= + +.. py:class:: ipyvuetify.ListItemIcon(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + diff --git a/docs/autoapi/ipyvuetify/ListItemSubtitle.rst b/docs/autoapi/ipyvuetify/ListItemSubtitle.rst new file mode 100644 index 00000000..33e25896 --- /dev/null +++ b/docs/autoapi/ipyvuetify/ListItemSubtitle.rst @@ -0,0 +1,17 @@ +ipyvuetify.ListItemSubtitle +=========================== + +.. py:class:: ipyvuetify.ListItemSubtitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + diff --git a/docs/autoapi/ipyvuetify/ListItemTitle.rst b/docs/autoapi/ipyvuetify/ListItemTitle.rst new file mode 100644 index 00000000..4dab4350 --- /dev/null +++ b/docs/autoapi/ipyvuetify/ListItemTitle.rst @@ -0,0 +1,17 @@ +ipyvuetify.ListItemTitle +======================== + +.. py:class:: ipyvuetify.ListItemTitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + diff --git a/docs/autoapi/ipyvuetify/generated/Menu/index.rst b/docs/autoapi/ipyvuetify/Menu.rst similarity index 87% rename from docs/autoapi/ipyvuetify/generated/Menu/index.rst rename to docs/autoapi/ipyvuetify/Menu.rst index 24be5ce9..d6f2dac3 100644 --- a/docs/autoapi/ipyvuetify/generated/Menu/index.rst +++ b/docs/autoapi/ipyvuetify/Menu.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Menu -========================= +ipyvuetify.Menu +=============== -.. py:module:: ipyvuetify.generated.Menu - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Menu.Menu - - -Module Contents ---------------- - -.. py:class:: Menu(**kwargs) +.. py:class:: ipyvuetify.Menu(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -152,4 +138,3 @@ Module Contents .. py:attribute:: z_index - diff --git a/docs/autoapi/ipyvuetify/MenuTransition.rst b/docs/autoapi/ipyvuetify/MenuTransition.rst new file mode 100644 index 00000000..c478bd15 --- /dev/null +++ b/docs/autoapi/ipyvuetify/MenuTransition.rst @@ -0,0 +1,32 @@ +ipyvuetify.MenuTransition +========================= + +.. py:class:: ipyvuetify.MenuTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + diff --git a/docs/autoapi/ipyvuetify/generated/Messages/index.rst b/docs/autoapi/ipyvuetify/Messages.rst similarity index 57% rename from docs/autoapi/ipyvuetify/generated/Messages/index.rst rename to docs/autoapi/ipyvuetify/Messages.rst index cf31bca0..d7f98dea 100644 --- a/docs/autoapi/ipyvuetify/generated/Messages/index.rst +++ b/docs/autoapi/ipyvuetify/Messages.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Messages -============================= +ipyvuetify.Messages +=================== -.. py:module:: ipyvuetify.generated.Messages - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Messages.Messages - - -Module Contents ---------------- - -.. py:class:: Messages(**kwargs) +.. py:class:: ipyvuetify.Messages(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -41,4 +27,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/NavigationDrawer/index.rst b/docs/autoapi/ipyvuetify/NavigationDrawer.rst similarity index 79% rename from docs/autoapi/ipyvuetify/generated/NavigationDrawer/index.rst rename to docs/autoapi/ipyvuetify/NavigationDrawer.rst index b1f50713..dc48d105 100644 --- a/docs/autoapi/ipyvuetify/generated/NavigationDrawer/index.rst +++ b/docs/autoapi/ipyvuetify/NavigationDrawer.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.NavigationDrawer -===================================== +ipyvuetify.NavigationDrawer +=========================== -.. py:module:: ipyvuetify.generated.NavigationDrawer - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.NavigationDrawer.NavigationDrawer - - -Module Contents ---------------- - -.. py:class:: NavigationDrawer(**kwargs) +.. py:class:: ipyvuetify.NavigationDrawer(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -113,4 +99,3 @@ Module Contents .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/generated/OverflowBtn/index.rst b/docs/autoapi/ipyvuetify/OverflowBtn.rst similarity index 90% rename from docs/autoapi/ipyvuetify/generated/OverflowBtn/index.rst rename to docs/autoapi/ipyvuetify/OverflowBtn.rst index 3cec566f..6ab3ea0c 100644 --- a/docs/autoapi/ipyvuetify/generated/OverflowBtn/index.rst +++ b/docs/autoapi/ipyvuetify/OverflowBtn.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.OverflowBtn -================================ +ipyvuetify.OverflowBtn +====================== -.. py:module:: ipyvuetify.generated.OverflowBtn - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.OverflowBtn.OverflowBtn - - -Module Contents ---------------- - -.. py:class:: OverflowBtn(**kwargs) +.. py:class:: ipyvuetify.OverflowBtn(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -242,4 +228,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/Overlay/index.rst b/docs/autoapi/ipyvuetify/Overlay.rst similarity index 64% rename from docs/autoapi/ipyvuetify/generated/Overlay/index.rst rename to docs/autoapi/ipyvuetify/Overlay.rst index 5aa4d30d..c50d479c 100644 --- a/docs/autoapi/ipyvuetify/generated/Overlay/index.rst +++ b/docs/autoapi/ipyvuetify/Overlay.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Overlay -============================ +ipyvuetify.Overlay +================== -.. py:module:: ipyvuetify.generated.Overlay - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Overlay.Overlay - - -Module Contents ---------------- - -.. py:class:: Overlay(**kwargs) +.. py:class:: ipyvuetify.Overlay(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -50,4 +36,3 @@ Module Contents .. py:attribute:: z_index - diff --git a/docs/autoapi/ipyvuetify/generated/Pagination/index.rst b/docs/autoapi/ipyvuetify/Pagination.rst similarity index 67% rename from docs/autoapi/ipyvuetify/generated/Pagination/index.rst rename to docs/autoapi/ipyvuetify/Pagination.rst index 8df190fa..caa3a921 100644 --- a/docs/autoapi/ipyvuetify/generated/Pagination/index.rst +++ b/docs/autoapi/ipyvuetify/Pagination.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Pagination -=============================== +ipyvuetify.Pagination +===================== -.. py:module:: ipyvuetify.generated.Pagination - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Pagination.Pagination - - -Module Contents ---------------- - -.. py:class:: Pagination(**kwargs) +.. py:class:: ipyvuetify.Pagination(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -59,4 +45,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/Parallax/index.rst b/docs/autoapi/ipyvuetify/Parallax.rst similarity index 55% rename from docs/autoapi/ipyvuetify/generated/Parallax/index.rst rename to docs/autoapi/ipyvuetify/Parallax.rst index a118613e..1ecf77ae 100644 --- a/docs/autoapi/ipyvuetify/generated/Parallax/index.rst +++ b/docs/autoapi/ipyvuetify/Parallax.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Parallax -============================= +ipyvuetify.Parallax +=================== -.. py:module:: ipyvuetify.generated.Parallax - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Parallax.Parallax - - -Module Contents ---------------- - -.. py:class:: Parallax(**kwargs) +.. py:class:: ipyvuetify.Parallax(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -38,4 +24,3 @@ Module Contents .. py:attribute:: src - diff --git a/docs/autoapi/ipyvuetify/generated/Picker/index.rst b/docs/autoapi/ipyvuetify/Picker.rst similarity index 66% rename from docs/autoapi/ipyvuetify/generated/Picker/index.rst rename to docs/autoapi/ipyvuetify/Picker.rst index 8c9ec27a..cce99f14 100644 --- a/docs/autoapi/ipyvuetify/generated/Picker/index.rst +++ b/docs/autoapi/ipyvuetify/Picker.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Picker -=========================== +ipyvuetify.Picker +================= -.. py:module:: ipyvuetify.generated.Picker - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Picker.Picker - - -Module Contents ---------------- - -.. py:class:: Picker(**kwargs) +.. py:class:: ipyvuetify.Picker(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -53,4 +39,3 @@ Module Contents .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/generated/ProgressCircular/index.rst b/docs/autoapi/ipyvuetify/ProgressCircular.rst similarity index 59% rename from docs/autoapi/ipyvuetify/generated/ProgressCircular/index.rst rename to docs/autoapi/ipyvuetify/ProgressCircular.rst index 0b238f59..c6c3d3b8 100644 --- a/docs/autoapi/ipyvuetify/generated/ProgressCircular/index.rst +++ b/docs/autoapi/ipyvuetify/ProgressCircular.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.ProgressCircular -===================================== +ipyvuetify.ProgressCircular +=========================== -.. py:module:: ipyvuetify.generated.ProgressCircular - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ProgressCircular.ProgressCircular - - -Module Contents ---------------- - -.. py:class:: ProgressCircular(**kwargs) +.. py:class:: ipyvuetify.ProgressCircular(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -50,4 +36,3 @@ Module Contents .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/generated/ProgressLinear/index.rst b/docs/autoapi/ipyvuetify/ProgressLinear.rst similarity index 73% rename from docs/autoapi/ipyvuetify/generated/ProgressLinear/index.rst rename to docs/autoapi/ipyvuetify/ProgressLinear.rst index 9c0ee22a..37f6f3e8 100644 --- a/docs/autoapi/ipyvuetify/generated/ProgressLinear/index.rst +++ b/docs/autoapi/ipyvuetify/ProgressLinear.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.ProgressLinear -=================================== +ipyvuetify.ProgressLinear +========================= -.. py:module:: ipyvuetify.generated.ProgressLinear - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ProgressLinear.ProgressLinear - - -Module Contents ---------------- - -.. py:class:: ProgressLinear(**kwargs) +.. py:class:: ipyvuetify.ProgressLinear(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -83,4 +69,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/Radio/index.rst b/docs/autoapi/ipyvuetify/Radio.rst similarity index 72% rename from docs/autoapi/ipyvuetify/generated/Radio/index.rst rename to docs/autoapi/ipyvuetify/Radio.rst index 8ddebff4..d9755c06 100644 --- a/docs/autoapi/ipyvuetify/generated/Radio/index.rst +++ b/docs/autoapi/ipyvuetify/Radio.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Radio -========================== +ipyvuetify.Radio +================ -.. py:module:: ipyvuetify.generated.Radio - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Radio.Radio - - -Module Contents ---------------- - -.. py:class:: Radio(**kwargs) +.. py:class:: ipyvuetify.Radio(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -68,4 +54,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/RadioGroup/index.rst b/docs/autoapi/ipyvuetify/RadioGroup.rst similarity index 82% rename from docs/autoapi/ipyvuetify/generated/RadioGroup/index.rst rename to docs/autoapi/ipyvuetify/RadioGroup.rst index 98bf5ab6..b7035698 100644 --- a/docs/autoapi/ipyvuetify/generated/RadioGroup/index.rst +++ b/docs/autoapi/ipyvuetify/RadioGroup.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.RadioGroup -=============================== +ipyvuetify.RadioGroup +===================== -.. py:module:: ipyvuetify.generated.RadioGroup - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.RadioGroup.RadioGroup - - -Module Contents ---------------- - -.. py:class:: RadioGroup(**kwargs) +.. py:class:: ipyvuetify.RadioGroup(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -125,4 +111,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/Slider/index.rst b/docs/autoapi/ipyvuetify/RangeSlider.rst similarity index 86% rename from docs/autoapi/ipyvuetify/generated/Slider/index.rst rename to docs/autoapi/ipyvuetify/RangeSlider.rst index 4e75b494..f6cd33fb 100644 --- a/docs/autoapi/ipyvuetify/generated/Slider/index.rst +++ b/docs/autoapi/ipyvuetify/RangeSlider.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Slider -=========================== +ipyvuetify.RangeSlider +====================== -.. py:module:: ipyvuetify.generated.Slider - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Slider.Slider - - -Module Contents ---------------- - -.. py:class:: Slider(**kwargs) +.. py:class:: ipyvuetify.RangeSlider(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -146,4 +132,3 @@ Module Contents .. py:attribute:: vertical - diff --git a/docs/autoapi/ipyvuetify/generated/Rating/index.rst b/docs/autoapi/ipyvuetify/Rating.rst similarity index 79% rename from docs/autoapi/ipyvuetify/generated/Rating/index.rst rename to docs/autoapi/ipyvuetify/Rating.rst index fccede55..2dd708dc 100644 --- a/docs/autoapi/ipyvuetify/generated/Rating/index.rst +++ b/docs/autoapi/ipyvuetify/Rating.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Rating -=========================== +ipyvuetify.Rating +================= -.. py:module:: ipyvuetify.generated.Rating - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Rating.Rating - - -Module Contents ---------------- - -.. py:class:: Rating(**kwargs) +.. py:class:: ipyvuetify.Rating(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -95,4 +81,3 @@ Module Contents .. py:attribute:: x_small - diff --git a/docs/autoapi/ipyvuetify/generated/Responsive/index.rst b/docs/autoapi/ipyvuetify/Responsive.rst similarity index 63% rename from docs/autoapi/ipyvuetify/generated/Responsive/index.rst rename to docs/autoapi/ipyvuetify/Responsive.rst index 0abf7b24..e6ab7c63 100644 --- a/docs/autoapi/ipyvuetify/generated/Responsive/index.rst +++ b/docs/autoapi/ipyvuetify/Responsive.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Responsive -=============================== +ipyvuetify.Responsive +===================== -.. py:module:: ipyvuetify.generated.Responsive - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Responsive.Responsive - - -Module Contents ---------------- - -.. py:class:: Responsive(**kwargs) +.. py:class:: ipyvuetify.Responsive(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -50,4 +36,3 @@ Module Contents .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/generated/Row/index.rst b/docs/autoapi/ipyvuetify/Row.rst similarity index 78% rename from docs/autoapi/ipyvuetify/generated/Row/index.rst rename to docs/autoapi/ipyvuetify/Row.rst index b1257296..0a6b09c2 100644 --- a/docs/autoapi/ipyvuetify/generated/Row/index.rst +++ b/docs/autoapi/ipyvuetify/Row.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Row -======================== +ipyvuetify.Row +============== -.. py:module:: ipyvuetify.generated.Row - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Row.Row - - -Module Contents ---------------- - -.. py:class:: Row(**kwargs) +.. py:class:: ipyvuetify.Row(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -83,4 +69,3 @@ Module Contents .. py:attribute:: tag - diff --git a/docs/autoapi/ipyvuetify/ScaleTransition.rst b/docs/autoapi/ipyvuetify/ScaleTransition.rst new file mode 100644 index 00000000..4ab4e38b --- /dev/null +++ b/docs/autoapi/ipyvuetify/ScaleTransition.rst @@ -0,0 +1,32 @@ +ipyvuetify.ScaleTransition +========================== + +.. py:class:: ipyvuetify.ScaleTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + diff --git a/docs/autoapi/ipyvuetify/generated/MenuTransition/index.rst b/docs/autoapi/ipyvuetify/ScrollXReverseTransition.rst similarity index 62% rename from docs/autoapi/ipyvuetify/generated/MenuTransition/index.rst rename to docs/autoapi/ipyvuetify/ScrollXReverseTransition.rst index e1427257..4daf884a 100644 --- a/docs/autoapi/ipyvuetify/generated/MenuTransition/index.rst +++ b/docs/autoapi/ipyvuetify/ScrollXReverseTransition.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.MenuTransition +ipyvuetify.ScrollXReverseTransition =================================== -.. py:module:: ipyvuetify.generated.MenuTransition - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.MenuTransition.MenuTransition - - -Module Contents ---------------- - -.. py:class:: MenuTransition(**kwargs) +.. py:class:: ipyvuetify.ScrollXReverseTransition(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -44,4 +30,3 @@ Module Contents .. py:attribute:: origin - diff --git a/docs/autoapi/ipyvuetify/ScrollXTransition.rst b/docs/autoapi/ipyvuetify/ScrollXTransition.rst new file mode 100644 index 00000000..0bf06f2e --- /dev/null +++ b/docs/autoapi/ipyvuetify/ScrollXTransition.rst @@ -0,0 +1,32 @@ +ipyvuetify.ScrollXTransition +============================ + +.. py:class:: ipyvuetify.ScrollXTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + diff --git a/docs/autoapi/ipyvuetify/generated/FadeTransition/index.rst b/docs/autoapi/ipyvuetify/ScrollYReverseTransition.rst similarity index 62% rename from docs/autoapi/ipyvuetify/generated/FadeTransition/index.rst rename to docs/autoapi/ipyvuetify/ScrollYReverseTransition.rst index 4779fa7b..6c917aaf 100644 --- a/docs/autoapi/ipyvuetify/generated/FadeTransition/index.rst +++ b/docs/autoapi/ipyvuetify/ScrollYReverseTransition.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.FadeTransition +ipyvuetify.ScrollYReverseTransition =================================== -.. py:module:: ipyvuetify.generated.FadeTransition - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.FadeTransition.FadeTransition - - -Module Contents ---------------- - -.. py:class:: FadeTransition(**kwargs) +.. py:class:: ipyvuetify.ScrollYReverseTransition(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -44,4 +30,3 @@ Module Contents .. py:attribute:: origin - diff --git a/docs/autoapi/ipyvuetify/ScrollYTransition.rst b/docs/autoapi/ipyvuetify/ScrollYTransition.rst new file mode 100644 index 00000000..8622fc72 --- /dev/null +++ b/docs/autoapi/ipyvuetify/ScrollYTransition.rst @@ -0,0 +1,32 @@ +ipyvuetify.ScrollYTransition +============================ + +.. py:class:: ipyvuetify.ScrollYTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + diff --git a/docs/autoapi/ipyvuetify/generated/Select/index.rst b/docs/autoapi/ipyvuetify/Select.rst similarity index 90% rename from docs/autoapi/ipyvuetify/generated/Select/index.rst rename to docs/autoapi/ipyvuetify/Select.rst index e89aee39..1968a408 100644 --- a/docs/autoapi/ipyvuetify/generated/Select/index.rst +++ b/docs/autoapi/ipyvuetify/Select.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Select -=========================== +ipyvuetify.Select +================= -.. py:module:: ipyvuetify.generated.Select - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Select.Select - - -Module Contents ---------------- - -.. py:class:: Select(**kwargs) +.. py:class:: ipyvuetify.Select(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -221,4 +207,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/Sheet/index.rst b/docs/autoapi/ipyvuetify/Sheet.rst similarity index 71% rename from docs/autoapi/ipyvuetify/generated/Sheet/index.rst rename to docs/autoapi/ipyvuetify/Sheet.rst index d41305fd..f56f4c3e 100644 --- a/docs/autoapi/ipyvuetify/generated/Sheet/index.rst +++ b/docs/autoapi/ipyvuetify/Sheet.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Sheet -========================== +ipyvuetify.Sheet +================ -.. py:module:: ipyvuetify.generated.Sheet - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Sheet.Sheet - - -Module Contents ---------------- - -.. py:class:: Sheet(**kwargs) +.. py:class:: ipyvuetify.Sheet(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -65,4 +51,3 @@ Module Contents .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/generated/SimpleCheckbox/index.rst b/docs/autoapi/ipyvuetify/SimpleCheckbox.rst similarity index 65% rename from docs/autoapi/ipyvuetify/generated/SimpleCheckbox/index.rst rename to docs/autoapi/ipyvuetify/SimpleCheckbox.rst index a6ccc156..6c1c294c 100644 --- a/docs/autoapi/ipyvuetify/generated/SimpleCheckbox/index.rst +++ b/docs/autoapi/ipyvuetify/SimpleCheckbox.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.SimpleCheckbox -=================================== +ipyvuetify.SimpleCheckbox +========================= -.. py:module:: ipyvuetify.generated.SimpleCheckbox - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.SimpleCheckbox.SimpleCheckbox - - -Module Contents ---------------- - -.. py:class:: SimpleCheckbox(**kwargs) +.. py:class:: ipyvuetify.SimpleCheckbox(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -59,4 +45,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/SimpleTable/index.rst b/docs/autoapi/ipyvuetify/SimpleTable.rst similarity index 58% rename from docs/autoapi/ipyvuetify/generated/SimpleTable/index.rst rename to docs/autoapi/ipyvuetify/SimpleTable.rst index ab38eebc..f18c3613 100644 --- a/docs/autoapi/ipyvuetify/generated/SimpleTable/index.rst +++ b/docs/autoapi/ipyvuetify/SimpleTable.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.SimpleTable -================================ +ipyvuetify.SimpleTable +====================== -.. py:module:: ipyvuetify.generated.SimpleTable - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.SimpleTable.SimpleTable - - -Module Contents ---------------- - -.. py:class:: SimpleTable(**kwargs) +.. py:class:: ipyvuetify.SimpleTable(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -44,4 +30,3 @@ Module Contents .. py:attribute:: light - diff --git a/docs/autoapi/ipyvuetify/generated/SkeletonLoader/index.rst b/docs/autoapi/ipyvuetify/SkeletonLoader.rst similarity index 70% rename from docs/autoapi/ipyvuetify/generated/SkeletonLoader/index.rst rename to docs/autoapi/ipyvuetify/SkeletonLoader.rst index eadb64a6..1bb7e718 100644 --- a/docs/autoapi/ipyvuetify/generated/SkeletonLoader/index.rst +++ b/docs/autoapi/ipyvuetify/SkeletonLoader.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.SkeletonLoader -=================================== +ipyvuetify.SkeletonLoader +========================= -.. py:module:: ipyvuetify.generated.SkeletonLoader - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.SkeletonLoader.SkeletonLoader - - -Module Contents ---------------- - -.. py:class:: SkeletonLoader(**kwargs) +.. py:class:: ipyvuetify.SkeletonLoader(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -74,4 +60,3 @@ Module Contents .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/generated/SlideGroup/index.rst b/docs/autoapi/ipyvuetify/SlideGroup.rst similarity index 70% rename from docs/autoapi/ipyvuetify/generated/SlideGroup/index.rst rename to docs/autoapi/ipyvuetify/SlideGroup.rst index d6c8748d..53eee727 100644 --- a/docs/autoapi/ipyvuetify/generated/SlideGroup/index.rst +++ b/docs/autoapi/ipyvuetify/SlideGroup.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.SlideGroup -=============================== +ipyvuetify.SlideGroup +===================== -.. py:module:: ipyvuetify.generated.SlideGroup - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.SlideGroup.SlideGroup - - -Module Contents ---------------- - -.. py:class:: SlideGroup(**kwargs) +.. py:class:: ipyvuetify.SlideGroup(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -65,4 +51,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/SlideItem/index.rst b/docs/autoapi/ipyvuetify/SlideItem.rst similarity index 56% rename from docs/autoapi/ipyvuetify/generated/SlideItem/index.rst rename to docs/autoapi/ipyvuetify/SlideItem.rst index 153a24e4..be715c17 100644 --- a/docs/autoapi/ipyvuetify/generated/SlideItem/index.rst +++ b/docs/autoapi/ipyvuetify/SlideItem.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.SlideItem -============================== +ipyvuetify.SlideItem +==================== -.. py:module:: ipyvuetify.generated.SlideItem - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.SlideItem.SlideItem - - -Module Contents ---------------- - -.. py:class:: SlideItem(**kwargs) +.. py:class:: ipyvuetify.SlideItem(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -38,4 +24,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/TabTransition/index.rst b/docs/autoapi/ipyvuetify/SlideXReverseTransition.rst similarity index 63% rename from docs/autoapi/ipyvuetify/generated/TabTransition/index.rst rename to docs/autoapi/ipyvuetify/SlideXReverseTransition.rst index 7884ca0e..e157cd30 100644 --- a/docs/autoapi/ipyvuetify/generated/TabTransition/index.rst +++ b/docs/autoapi/ipyvuetify/SlideXReverseTransition.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.TabTransition +ipyvuetify.SlideXReverseTransition ================================== -.. py:module:: ipyvuetify.generated.TabTransition - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.TabTransition.TabTransition - - -Module Contents ---------------- - -.. py:class:: TabTransition(**kwargs) +.. py:class:: ipyvuetify.SlideXReverseTransition(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -44,4 +30,3 @@ Module Contents .. py:attribute:: origin - diff --git a/docs/autoapi/ipyvuetify/SlideXTransition.rst b/docs/autoapi/ipyvuetify/SlideXTransition.rst new file mode 100644 index 00000000..712db043 --- /dev/null +++ b/docs/autoapi/ipyvuetify/SlideXTransition.rst @@ -0,0 +1,32 @@ +ipyvuetify.SlideXTransition +=========================== + +.. py:class:: ipyvuetify.SlideXTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + diff --git a/docs/autoapi/ipyvuetify/generated/FabTransition/index.rst b/docs/autoapi/ipyvuetify/SlideYReverseTransition.rst similarity index 63% rename from docs/autoapi/ipyvuetify/generated/FabTransition/index.rst rename to docs/autoapi/ipyvuetify/SlideYReverseTransition.rst index 1896addb..753043d0 100644 --- a/docs/autoapi/ipyvuetify/generated/FabTransition/index.rst +++ b/docs/autoapi/ipyvuetify/SlideYReverseTransition.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.FabTransition +ipyvuetify.SlideYReverseTransition ================================== -.. py:module:: ipyvuetify.generated.FabTransition - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.FabTransition.FabTransition - - -Module Contents ---------------- - -.. py:class:: FabTransition(**kwargs) +.. py:class:: ipyvuetify.SlideYReverseTransition(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -44,4 +30,3 @@ Module Contents .. py:attribute:: origin - diff --git a/docs/autoapi/ipyvuetify/SlideYTransition.rst b/docs/autoapi/ipyvuetify/SlideYTransition.rst new file mode 100644 index 00000000..9eacc9c4 --- /dev/null +++ b/docs/autoapi/ipyvuetify/SlideYTransition.rst @@ -0,0 +1,32 @@ +ipyvuetify.SlideYTransition +=========================== + +.. py:class:: ipyvuetify.SlideYTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + diff --git a/docs/autoapi/ipyvuetify/generated/RangeSlider/index.rst b/docs/autoapi/ipyvuetify/Slider.rst similarity index 84% rename from docs/autoapi/ipyvuetify/generated/RangeSlider/index.rst rename to docs/autoapi/ipyvuetify/Slider.rst index 06135db8..96e0a689 100644 --- a/docs/autoapi/ipyvuetify/generated/RangeSlider/index.rst +++ b/docs/autoapi/ipyvuetify/Slider.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.RangeSlider -================================ +ipyvuetify.Slider +================= -.. py:module:: ipyvuetify.generated.RangeSlider - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.RangeSlider.RangeSlider - - -Module Contents ---------------- - -.. py:class:: RangeSlider(**kwargs) +.. py:class:: ipyvuetify.Slider(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -146,4 +132,3 @@ Module Contents .. py:attribute:: vertical - diff --git a/docs/autoapi/ipyvuetify/generated/Snackbar/index.rst b/docs/autoapi/ipyvuetify/Snackbar.rst similarity index 67% rename from docs/autoapi/ipyvuetify/generated/Snackbar/index.rst rename to docs/autoapi/ipyvuetify/Snackbar.rst index 8ea2cd19..8653b355 100644 --- a/docs/autoapi/ipyvuetify/generated/Snackbar/index.rst +++ b/docs/autoapi/ipyvuetify/Snackbar.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Snackbar -============================= +ipyvuetify.Snackbar +=================== -.. py:module:: ipyvuetify.generated.Snackbar - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Snackbar.Snackbar - - -Module Contents ---------------- - -.. py:class:: Snackbar(**kwargs) +.. py:class:: ipyvuetify.Snackbar(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -59,4 +45,3 @@ Module Contents .. py:attribute:: vertical - diff --git a/docs/autoapi/ipyvuetify/Spacer.rst b/docs/autoapi/ipyvuetify/Spacer.rst new file mode 100644 index 00000000..3aa478cc --- /dev/null +++ b/docs/autoapi/ipyvuetify/Spacer.rst @@ -0,0 +1,17 @@ +ipyvuetify.Spacer +================= + +.. py:class:: ipyvuetify.Spacer(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + diff --git a/docs/autoapi/ipyvuetify/generated/Sparkline/index.rst b/docs/autoapi/ipyvuetify/Sparkline.rst similarity index 76% rename from docs/autoapi/ipyvuetify/generated/Sparkline/index.rst rename to docs/autoapi/ipyvuetify/Sparkline.rst index 8a169dd9..217ca4b9 100644 --- a/docs/autoapi/ipyvuetify/generated/Sparkline/index.rst +++ b/docs/autoapi/ipyvuetify/Sparkline.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Sparkline -============================== +ipyvuetify.Sparkline +==================== -.. py:module:: ipyvuetify.generated.Sparkline - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Sparkline.Sparkline - - -Module Contents ---------------- - -.. py:class:: Sparkline(**kwargs) +.. py:class:: ipyvuetify.Sparkline(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -83,4 +69,3 @@ Module Contents .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/generated/SpeedDial/index.rst b/docs/autoapi/ipyvuetify/SpeedDial.rst similarity index 69% rename from docs/autoapi/ipyvuetify/generated/SpeedDial/index.rst rename to docs/autoapi/ipyvuetify/SpeedDial.rst index 32d597f2..d7c324c5 100644 --- a/docs/autoapi/ipyvuetify/generated/SpeedDial/index.rst +++ b/docs/autoapi/ipyvuetify/SpeedDial.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.SpeedDial -============================== +ipyvuetify.SpeedDial +==================== -.. py:module:: ipyvuetify.generated.SpeedDial - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.SpeedDial.SpeedDial - - -Module Contents ---------------- - -.. py:class:: SpeedDial(**kwargs) +.. py:class:: ipyvuetify.SpeedDial(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -65,4 +51,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/Stepper/index.rst b/docs/autoapi/ipyvuetify/Stepper.rst similarity index 62% rename from docs/autoapi/ipyvuetify/generated/Stepper/index.rst rename to docs/autoapi/ipyvuetify/Stepper.rst index ab0911e9..9109d0a2 100644 --- a/docs/autoapi/ipyvuetify/generated/Stepper/index.rst +++ b/docs/autoapi/ipyvuetify/Stepper.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Stepper -============================ +ipyvuetify.Stepper +================== -.. py:module:: ipyvuetify.generated.Stepper - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Stepper.Stepper - - -Module Contents ---------------- - -.. py:class:: Stepper(**kwargs) +.. py:class:: ipyvuetify.Stepper(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -47,4 +33,3 @@ Module Contents .. py:attribute:: vertical - diff --git a/docs/autoapi/ipyvuetify/StepperContent.rst b/docs/autoapi/ipyvuetify/StepperContent.rst new file mode 100644 index 00000000..e87d00ea --- /dev/null +++ b/docs/autoapi/ipyvuetify/StepperContent.rst @@ -0,0 +1,20 @@ +ipyvuetify.StepperContent +========================= + +.. py:class:: ipyvuetify.StepperContent(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: step + diff --git a/docs/autoapi/ipyvuetify/StepperHeader.rst b/docs/autoapi/ipyvuetify/StepperHeader.rst new file mode 100644 index 00000000..44279e4a --- /dev/null +++ b/docs/autoapi/ipyvuetify/StepperHeader.rst @@ -0,0 +1,17 @@ +ipyvuetify.StepperHeader +======================== + +.. py:class:: ipyvuetify.StepperHeader(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + diff --git a/docs/autoapi/ipyvuetify/StepperItems.rst b/docs/autoapi/ipyvuetify/StepperItems.rst new file mode 100644 index 00000000..2f34da21 --- /dev/null +++ b/docs/autoapi/ipyvuetify/StepperItems.rst @@ -0,0 +1,17 @@ +ipyvuetify.StepperItems +======================= + +.. py:class:: ipyvuetify.StepperItems(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + diff --git a/docs/autoapi/ipyvuetify/generated/StepperStep/index.rst b/docs/autoapi/ipyvuetify/StepperStep.rst similarity index 64% rename from docs/autoapi/ipyvuetify/generated/StepperStep/index.rst rename to docs/autoapi/ipyvuetify/StepperStep.rst index 79f280f4..f69917b7 100644 --- a/docs/autoapi/ipyvuetify/generated/StepperStep/index.rst +++ b/docs/autoapi/ipyvuetify/StepperStep.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.StepperStep -================================ +ipyvuetify.StepperStep +====================== -.. py:module:: ipyvuetify.generated.StepperStep - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.StepperStep.StepperStep - - -Module Contents ---------------- - -.. py:class:: StepperStep(**kwargs) +.. py:class:: ipyvuetify.StepperStep(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -53,4 +39,3 @@ Module Contents .. py:attribute:: step - diff --git a/docs/autoapi/ipyvuetify/Subheader.rst b/docs/autoapi/ipyvuetify/Subheader.rst new file mode 100644 index 00000000..6f6ca620 --- /dev/null +++ b/docs/autoapi/ipyvuetify/Subheader.rst @@ -0,0 +1,26 @@ +ipyvuetify.Subheader +==================== + +.. py:class:: ipyvuetify.Subheader(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: dark + + + .. py:attribute:: inset + + + .. py:attribute:: light + diff --git a/docs/autoapi/ipyvuetify/generated/Switch/index.rst b/docs/autoapi/ipyvuetify/Switch.rst similarity index 83% rename from docs/autoapi/ipyvuetify/generated/Switch/index.rst rename to docs/autoapi/ipyvuetify/Switch.rst index d864052d..3369d783 100644 --- a/docs/autoapi/ipyvuetify/generated/Switch/index.rst +++ b/docs/autoapi/ipyvuetify/Switch.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Switch -=========================== +ipyvuetify.Switch +================= -.. py:module:: ipyvuetify.generated.Switch - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Switch.Switch - - -Module Contents ---------------- - -.. py:class:: Switch(**kwargs) +.. py:class:: ipyvuetify.Switch(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -125,4 +111,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/SystemBar/index.rst b/docs/autoapi/ipyvuetify/SystemBar.rst similarity index 65% rename from docs/autoapi/ipyvuetify/generated/SystemBar/index.rst rename to docs/autoapi/ipyvuetify/SystemBar.rst index 9253017c..c64437de 100644 --- a/docs/autoapi/ipyvuetify/generated/SystemBar/index.rst +++ b/docs/autoapi/ipyvuetify/SystemBar.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.SystemBar -============================== +ipyvuetify.SystemBar +==================== -.. py:module:: ipyvuetify.generated.SystemBar - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.SystemBar.SystemBar - - -Module Contents ---------------- - -.. py:class:: SystemBar(**kwargs) +.. py:class:: ipyvuetify.SystemBar(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -56,4 +42,3 @@ Module Contents .. py:attribute:: window - diff --git a/docs/autoapi/ipyvuetify/generated/Tab/index.rst b/docs/autoapi/ipyvuetify/Tab.rst similarity index 75% rename from docs/autoapi/ipyvuetify/generated/Tab/index.rst rename to docs/autoapi/ipyvuetify/Tab.rst index 709cd3a2..c353403d 100644 --- a/docs/autoapi/ipyvuetify/generated/Tab/index.rst +++ b/docs/autoapi/ipyvuetify/Tab.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Tab -======================== +ipyvuetify.Tab +============== -.. py:module:: ipyvuetify.generated.Tab - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Tab.Tab - - -Module Contents ---------------- - -.. py:class:: Tab(**kwargs) +.. py:class:: ipyvuetify.Tab(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -74,4 +60,3 @@ Module Contents .. py:attribute:: to - diff --git a/docs/autoapi/ipyvuetify/generated/TabItem/index.rst b/docs/autoapi/ipyvuetify/TabItem.rst similarity index 65% rename from docs/autoapi/ipyvuetify/generated/TabItem/index.rst rename to docs/autoapi/ipyvuetify/TabItem.rst index ae2ccab4..f2b48184 100644 --- a/docs/autoapi/ipyvuetify/generated/TabItem/index.rst +++ b/docs/autoapi/ipyvuetify/TabItem.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.TabItem -============================ +ipyvuetify.TabItem +================== -.. py:module:: ipyvuetify.generated.TabItem - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.TabItem.TabItem - - -Module Contents ---------------- - -.. py:class:: TabItem(**kwargs) +.. py:class:: ipyvuetify.TabItem(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -50,4 +36,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/TabReverseTransition.rst b/docs/autoapi/ipyvuetify/TabReverseTransition.rst new file mode 100644 index 00000000..a224cc15 --- /dev/null +++ b/docs/autoapi/ipyvuetify/TabReverseTransition.rst @@ -0,0 +1,32 @@ +ipyvuetify.TabReverseTransition +=============================== + +.. py:class:: ipyvuetify.TabReverseTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + diff --git a/docs/autoapi/ipyvuetify/TabTransition.rst b/docs/autoapi/ipyvuetify/TabTransition.rst new file mode 100644 index 00000000..85ce5ba3 --- /dev/null +++ b/docs/autoapi/ipyvuetify/TabTransition.rst @@ -0,0 +1,32 @@ +ipyvuetify.TabTransition +======================== + +.. py:class:: ipyvuetify.TabTransition(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: group + + + .. py:attribute:: hide_on_leave + + + .. py:attribute:: leave_absolute + + + .. py:attribute:: mode + + + .. py:attribute:: origin + diff --git a/docs/autoapi/ipyvuetify/TableOverflow.rst b/docs/autoapi/ipyvuetify/TableOverflow.rst new file mode 100644 index 00000000..98abb5fe --- /dev/null +++ b/docs/autoapi/ipyvuetify/TableOverflow.rst @@ -0,0 +1,17 @@ +ipyvuetify.TableOverflow +======================== + +.. py:class:: ipyvuetify.TableOverflow(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + diff --git a/docs/autoapi/ipyvuetify/generated/Tabs/index.rst b/docs/autoapi/ipyvuetify/Tabs.rst similarity index 81% rename from docs/autoapi/ipyvuetify/generated/Tabs/index.rst rename to docs/autoapi/ipyvuetify/Tabs.rst index 6199e018..c1a4e1e7 100644 --- a/docs/autoapi/ipyvuetify/generated/Tabs/index.rst +++ b/docs/autoapi/ipyvuetify/Tabs.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Tabs -========================= +ipyvuetify.Tabs +=============== -.. py:module:: ipyvuetify.generated.Tabs - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Tabs.Tabs - - -Module Contents ---------------- - -.. py:class:: Tabs(**kwargs) +.. py:class:: ipyvuetify.Tabs(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -98,4 +84,3 @@ Module Contents .. py:attribute:: vertical - diff --git a/docs/autoapi/ipyvuetify/generated/Window/index.rst b/docs/autoapi/ipyvuetify/TabsItems.rst similarity index 75% rename from docs/autoapi/ipyvuetify/generated/Window/index.rst rename to docs/autoapi/ipyvuetify/TabsItems.rst index 4479cf23..f793ab6c 100644 --- a/docs/autoapi/ipyvuetify/generated/Window/index.rst +++ b/docs/autoapi/ipyvuetify/TabsItems.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Window -=========================== +ipyvuetify.TabsItems +==================== -.. py:module:: ipyvuetify.generated.Window - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Window.Window - - -Module Contents ---------------- - -.. py:class:: Window(**kwargs) +.. py:class:: ipyvuetify.TabsItems(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -77,4 +63,3 @@ Module Contents .. py:attribute:: vertical - diff --git a/docs/autoapi/ipyvuetify/TabsSlider.rst b/docs/autoapi/ipyvuetify/TabsSlider.rst new file mode 100644 index 00000000..8115021c --- /dev/null +++ b/docs/autoapi/ipyvuetify/TabsSlider.rst @@ -0,0 +1,20 @@ +ipyvuetify.TabsSlider +===================== + +.. py:class:: ipyvuetify.TabsSlider(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: color + diff --git a/docs/autoapi/ipyvuetify/Text.rst b/docs/autoapi/ipyvuetify/Text.rst new file mode 100644 index 00000000..1d804e2d --- /dev/null +++ b/docs/autoapi/ipyvuetify/Text.rst @@ -0,0 +1,20 @@ +ipyvuetify.Text +=============== + +.. py:class:: ipyvuetify.Text(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:attribute:: value + diff --git a/docs/autoapi/ipyvuetify/generated/TextField/index.rst b/docs/autoapi/ipyvuetify/TextField.rst similarity index 86% rename from docs/autoapi/ipyvuetify/generated/TextField/index.rst rename to docs/autoapi/ipyvuetify/TextField.rst index aa757673..603016a1 100644 --- a/docs/autoapi/ipyvuetify/generated/TextField/index.rst +++ b/docs/autoapi/ipyvuetify/TextField.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.TextField -============================== +ipyvuetify.TextField +==================== -.. py:module:: ipyvuetify.generated.TextField - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.TextField.TextField - - -Module Contents ---------------- - -.. py:class:: TextField(**kwargs) +.. py:class:: ipyvuetify.TextField(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -167,4 +153,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/Textarea/index.rst b/docs/autoapi/ipyvuetify/Textarea.rst similarity index 87% rename from docs/autoapi/ipyvuetify/generated/Textarea/index.rst rename to docs/autoapi/ipyvuetify/Textarea.rst index 10b22819..d0150029 100644 --- a/docs/autoapi/ipyvuetify/generated/Textarea/index.rst +++ b/docs/autoapi/ipyvuetify/Textarea.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Textarea -============================= +ipyvuetify.Textarea +=================== -.. py:module:: ipyvuetify.generated.Textarea - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Textarea.Textarea - - -Module Contents ---------------- - -.. py:class:: Textarea(**kwargs) +.. py:class:: ipyvuetify.Textarea(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -179,4 +165,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/App/index.rst b/docs/autoapi/ipyvuetify/ThemeProvider.rst similarity index 58% rename from docs/autoapi/ipyvuetify/generated/App/index.rst rename to docs/autoapi/ipyvuetify/ThemeProvider.rst index b4670fbe..e72c3627 100644 --- a/docs/autoapi/ipyvuetify/generated/App/index.rst +++ b/docs/autoapi/ipyvuetify/ThemeProvider.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.App +ipyvuetify.ThemeProvider ======================== -.. py:module:: ipyvuetify.generated.App - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.App.App - - -Module Contents ---------------- - -.. py:class:: App(**kwargs) +.. py:class:: ipyvuetify.ThemeProvider(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -33,9 +19,8 @@ Module Contents .. py:attribute:: dark - .. py:attribute:: id - - .. py:attribute:: light + .. py:attribute:: root + diff --git a/docs/autoapi/ipyvuetify/generated/TimePicker/index.rst b/docs/autoapi/ipyvuetify/TimePicker.rst similarity index 76% rename from docs/autoapi/ipyvuetify/generated/TimePicker/index.rst rename to docs/autoapi/ipyvuetify/TimePicker.rst index 30e806dc..c2b9acd0 100644 --- a/docs/autoapi/ipyvuetify/generated/TimePicker/index.rst +++ b/docs/autoapi/ipyvuetify/TimePicker.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.TimePicker -=============================== +ipyvuetify.TimePicker +===================== -.. py:module:: ipyvuetify.generated.TimePicker - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.TimePicker.TimePicker - - -Module Contents ---------------- - -.. py:class:: TimePicker(**kwargs) +.. py:class:: ipyvuetify.TimePicker(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -89,4 +75,3 @@ Module Contents .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/generated/TimePickerClock/index.rst b/docs/autoapi/ipyvuetify/TimePickerClock.rst similarity index 67% rename from docs/autoapi/ipyvuetify/generated/TimePickerClock/index.rst rename to docs/autoapi/ipyvuetify/TimePickerClock.rst index b375eed9..6bab0c16 100644 --- a/docs/autoapi/ipyvuetify/generated/TimePickerClock/index.rst +++ b/docs/autoapi/ipyvuetify/TimePickerClock.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.TimePickerClock -==================================== +ipyvuetify.TimePickerClock +========================== -.. py:module:: ipyvuetify.generated.TimePickerClock - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.TimePickerClock.TimePickerClock - - -Module Contents ---------------- - -.. py:class:: TimePickerClock(**kwargs) +.. py:class:: ipyvuetify.TimePickerClock(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -68,4 +54,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/TimePickerTitle/index.rst b/docs/autoapi/ipyvuetify/TimePickerTitle.rst similarity index 66% rename from docs/autoapi/ipyvuetify/generated/TimePickerTitle/index.rst rename to docs/autoapi/ipyvuetify/TimePickerTitle.rst index 77a06aed..dddd913c 100644 --- a/docs/autoapi/ipyvuetify/generated/TimePickerTitle/index.rst +++ b/docs/autoapi/ipyvuetify/TimePickerTitle.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.TimePickerTitle -==================================== +ipyvuetify.TimePickerTitle +========================== -.. py:module:: ipyvuetify.generated.TimePickerTitle - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.TimePickerTitle.TimePickerTitle - - -Module Contents ---------------- - -.. py:class:: TimePickerTitle(**kwargs) +.. py:class:: ipyvuetify.TimePickerTitle(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -62,4 +48,3 @@ Module Contents .. py:attribute:: use_seconds - diff --git a/docs/autoapi/ipyvuetify/generated/Timeline/index.rst b/docs/autoapi/ipyvuetify/Timeline.rst similarity index 60% rename from docs/autoapi/ipyvuetify/generated/Timeline/index.rst rename to docs/autoapi/ipyvuetify/Timeline.rst index 85880d0c..282f95b4 100644 --- a/docs/autoapi/ipyvuetify/generated/Timeline/index.rst +++ b/docs/autoapi/ipyvuetify/Timeline.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Timeline -============================= +ipyvuetify.Timeline +=================== -.. py:module:: ipyvuetify.generated.Timeline - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Timeline.Timeline - - -Module Contents ---------------- - -.. py:class:: Timeline(**kwargs) +.. py:class:: ipyvuetify.Timeline(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -44,4 +30,3 @@ Module Contents .. py:attribute:: reverse - diff --git a/docs/autoapi/ipyvuetify/generated/TimelineItem/index.rst b/docs/autoapi/ipyvuetify/TimelineItem.rst similarity index 66% rename from docs/autoapi/ipyvuetify/generated/TimelineItem/index.rst rename to docs/autoapi/ipyvuetify/TimelineItem.rst index f291665d..6c40db76 100644 --- a/docs/autoapi/ipyvuetify/generated/TimelineItem/index.rst +++ b/docs/autoapi/ipyvuetify/TimelineItem.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.TimelineItem -================================= +ipyvuetify.TimelineItem +======================= -.. py:module:: ipyvuetify.generated.TimelineItem - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.TimelineItem.TimelineItem - - -Module Contents ---------------- - -.. py:class:: TimelineItem(**kwargs) +.. py:class:: ipyvuetify.TimelineItem(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -62,4 +48,3 @@ Module Contents .. py:attribute:: small - diff --git a/docs/autoapi/ipyvuetify/generated/Toolbar/index.rst b/docs/autoapi/ipyvuetify/Toolbar.rst similarity index 79% rename from docs/autoapi/ipyvuetify/generated/Toolbar/index.rst rename to docs/autoapi/ipyvuetify/Toolbar.rst index 27433b9c..7e6ffe5e 100644 --- a/docs/autoapi/ipyvuetify/generated/Toolbar/index.rst +++ b/docs/autoapi/ipyvuetify/Toolbar.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Toolbar -============================ +ipyvuetify.Toolbar +================== -.. py:module:: ipyvuetify.generated.Toolbar - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Toolbar.Toolbar - - -Module Contents ---------------- - -.. py:class:: Toolbar(**kwargs) +.. py:class:: ipyvuetify.Toolbar(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -98,4 +84,3 @@ Module Contents .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/ToolbarItems.rst b/docs/autoapi/ipyvuetify/ToolbarItems.rst new file mode 100644 index 00000000..1ec6ba93 --- /dev/null +++ b/docs/autoapi/ipyvuetify/ToolbarItems.rst @@ -0,0 +1,17 @@ +ipyvuetify.ToolbarItems +======================= + +.. py:class:: ipyvuetify.ToolbarItems(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + diff --git a/docs/autoapi/ipyvuetify/ToolbarTitle.rst b/docs/autoapi/ipyvuetify/ToolbarTitle.rst new file mode 100644 index 00000000..d578b664 --- /dev/null +++ b/docs/autoapi/ipyvuetify/ToolbarTitle.rst @@ -0,0 +1,17 @@ +ipyvuetify.ToolbarTitle +======================= + +.. py:class:: ipyvuetify.ToolbarTitle(**kwargs) + + Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + diff --git a/docs/autoapi/ipyvuetify/generated/Tooltip/index.rst b/docs/autoapi/ipyvuetify/Tooltip.rst similarity index 84% rename from docs/autoapi/ipyvuetify/generated/Tooltip/index.rst rename to docs/autoapi/ipyvuetify/Tooltip.rst index 72a2b702..5024b66c 100644 --- a/docs/autoapi/ipyvuetify/generated/Tooltip/index.rst +++ b/docs/autoapi/ipyvuetify/Tooltip.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Tooltip -============================ +ipyvuetify.Tooltip +================== -.. py:module:: ipyvuetify.generated.Tooltip - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Tooltip.Tooltip - - -Module Contents ---------------- - -.. py:class:: Tooltip(**kwargs) +.. py:class:: ipyvuetify.Tooltip(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -131,4 +117,3 @@ Module Contents .. py:attribute:: z_index - diff --git a/docs/autoapi/ipyvuetify/generated/Treeview/index.rst b/docs/autoapi/ipyvuetify/Treeview.rst similarity index 83% rename from docs/autoapi/ipyvuetify/generated/Treeview/index.rst rename to docs/autoapi/ipyvuetify/Treeview.rst index 3be16647..ea84fd59 100644 --- a/docs/autoapi/ipyvuetify/generated/Treeview/index.rst +++ b/docs/autoapi/ipyvuetify/Treeview.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.Treeview -============================= +ipyvuetify.Treeview +=================== -.. py:module:: ipyvuetify.generated.Treeview - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Treeview.Treeview - - -Module Contents ---------------- - -.. py:class:: Treeview(**kwargs) +.. py:class:: ipyvuetify.Treeview(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -122,4 +108,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/generated/TreeviewNode/index.rst b/docs/autoapi/ipyvuetify/TreeviewNode.rst similarity index 76% rename from docs/autoapi/ipyvuetify/generated/TreeviewNode/index.rst rename to docs/autoapi/ipyvuetify/TreeviewNode.rst index 1a5d9fe0..383cca9e 100644 --- a/docs/autoapi/ipyvuetify/generated/TreeviewNode/index.rst +++ b/docs/autoapi/ipyvuetify/TreeviewNode.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.TreeviewNode -================================= +ipyvuetify.TreeviewNode +======================= -.. py:module:: ipyvuetify.generated.TreeviewNode - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.TreeviewNode.TreeviewNode - - -Module Contents ---------------- - -.. py:class:: TreeviewNode(**kwargs) +.. py:class:: ipyvuetify.TreeviewNode(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -89,4 +75,3 @@ Module Contents .. py:attribute:: transition - diff --git a/docs/autoapi/ipyvuetify/generated/VirtualTable/index.rst b/docs/autoapi/ipyvuetify/VirtualTable.rst similarity index 65% rename from docs/autoapi/ipyvuetify/generated/VirtualTable/index.rst rename to docs/autoapi/ipyvuetify/VirtualTable.rst index 81c944c7..24eb3ad6 100644 --- a/docs/autoapi/ipyvuetify/generated/VirtualTable/index.rst +++ b/docs/autoapi/ipyvuetify/VirtualTable.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.VirtualTable -================================= +ipyvuetify.VirtualTable +======================= -.. py:module:: ipyvuetify.generated.VirtualTable - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.VirtualTable.VirtualTable - - -Module Contents ---------------- - -.. py:class:: VirtualTable(**kwargs) +.. py:class:: ipyvuetify.VirtualTable(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -56,4 +42,3 @@ Module Contents .. py:attribute:: row_height - diff --git a/docs/autoapi/ipyvuetify/VuetifyTemplate/index.rst b/docs/autoapi/ipyvuetify/VuetifyTemplate.rst similarity index 55% rename from docs/autoapi/ipyvuetify/VuetifyTemplate/index.rst rename to docs/autoapi/ipyvuetify/VuetifyTemplate.rst index 3880d340..3ed4b284 100644 --- a/docs/autoapi/ipyvuetify/VuetifyTemplate/index.rst +++ b/docs/autoapi/ipyvuetify/VuetifyTemplate.rst @@ -1,21 +1,7 @@ ipyvuetify.VuetifyTemplate ========================== -.. py:module:: ipyvuetify.VuetifyTemplate - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.VuetifyTemplate.VuetifyTemplate - - -Module Contents ---------------- - -.. py:class:: VuetifyTemplate(*args, **kwargs) +.. py:class:: ipyvuetify.VuetifyTemplate(*args, **kwargs) Bases: :py:obj:`ipyvue.VueTemplate` @@ -29,4 +15,3 @@ Module Contents layout: InstanceDict(Layout) widget layout - diff --git a/docs/autoapi/ipyvuetify/VuetifyWidget.rst b/docs/autoapi/ipyvuetify/VuetifyWidget.rst new file mode 100644 index 00000000..7d91e362 --- /dev/null +++ b/docs/autoapi/ipyvuetify/VuetifyWidget.rst @@ -0,0 +1,17 @@ +ipyvuetify.VuetifyWidget +======================== + +.. py:class:: ipyvuetify.VuetifyWidget(**kwargs) + + Bases: :py:obj:`ipyvue.VueWidget` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + diff --git a/docs/autoapi/ipyvuetify/generated/TabsItems/index.rst b/docs/autoapi/ipyvuetify/Window.rst similarity index 74% rename from docs/autoapi/ipyvuetify/generated/TabsItems/index.rst rename to docs/autoapi/ipyvuetify/Window.rst index 09ad16fb..f8c00315 100644 --- a/docs/autoapi/ipyvuetify/generated/TabsItems/index.rst +++ b/docs/autoapi/ipyvuetify/Window.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.TabsItems -============================== +ipyvuetify.Window +================= -.. py:module:: ipyvuetify.generated.TabsItems - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.TabsItems.TabsItems - - -Module Contents ---------------- - -.. py:class:: TabsItems(**kwargs) +.. py:class:: ipyvuetify.Window(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -77,4 +63,3 @@ Module Contents .. py:attribute:: vertical - diff --git a/docs/autoapi/ipyvuetify/generated/WindowItem/index.rst b/docs/autoapi/ipyvuetify/WindowItem.rst similarity index 62% rename from docs/autoapi/ipyvuetify/generated/WindowItem/index.rst rename to docs/autoapi/ipyvuetify/WindowItem.rst index b3d56d89..b6b6349b 100644 --- a/docs/autoapi/ipyvuetify/generated/WindowItem/index.rst +++ b/docs/autoapi/ipyvuetify/WindowItem.rst @@ -1,21 +1,7 @@ -ipyvuetify.generated.WindowItem -=============================== +ipyvuetify.WindowItem +===================== -.. py:module:: ipyvuetify.generated.WindowItem - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.WindowItem.WindowItem - - -Module Contents ---------------- - -.. py:class:: WindowItem(**kwargs) +.. py:class:: ipyvuetify.WindowItem(**kwargs) Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` @@ -47,4 +33,3 @@ Module Contents .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/components/CodeGen.rst b/docs/autoapi/ipyvuetify/components/CodeGen.rst new file mode 100644 index 00000000..6843bb61 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/CodeGen.rst @@ -0,0 +1,10 @@ +ipyvuetify.components.CodeGen +============================= + +.. py:class:: ipyvuetify.components.CodeGen + + Bases: :py:obj:`reacton.generate.CodeGen` + + + .. py:method:: has_callback(cls, name) + diff --git a/docs/autoapi/ipyvuetify/components/index.rst b/docs/autoapi/ipyvuetify/components/index.rst index 75ab2745..e6f65cac 100644 --- a/docs/autoapi/ipyvuetify/components/index.rst +++ b/docs/autoapi/ipyvuetify/components/index.rst @@ -7,6 +7,11 @@ ipyvuetify.components Classes ------- +.. toctree:: + :hidden: + + /autoapi/ipyvuetify/components/CodeGen + .. autoapisummary:: ipyvuetify.components.CodeGen @@ -184,14 +189,6 @@ Functions Module Contents --------------- -.. py:class:: CodeGen - - Bases: :py:obj:`reacton.generate.CodeGen` - - - .. py:method:: has_callback(cls, name) - - .. py:function:: Alert(**kwargs) .. py:function:: App(**kwargs) diff --git a/docs/autoapi/ipyvuetify/extra/FileInput.rst b/docs/autoapi/ipyvuetify/extra/FileInput.rst new file mode 100644 index 00000000..49e6a3c9 --- /dev/null +++ b/docs/autoapi/ipyvuetify/extra/FileInput.rst @@ -0,0 +1,83 @@ +ipyvuetify.extra.FileInput +========================== + +.. py:class:: ipyvuetify.extra.FileInput(**kwargs) + + Bases: :py:obj:`ipyvuetify.VuetifyTemplate` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:method:: clear() + + + .. py:method:: get_files(timeout=30) + + + .. py:method:: reset_stats() + + + .. py:method:: update_stats(file_index, bytes_read) + + + .. py:method:: vue_upload(content, buffers) + + + .. py:attribute:: accept + + + .. py:attribute:: chunk_listeners + + + .. py:attribute:: data + + + .. py:attribute:: directory + + + .. py:attribute:: disabled + + + .. py:attribute:: file_info + + + .. py:attribute:: multiple + + + .. py:attribute:: progress_indeterminate + + + .. py:attribute:: show_progress + + + .. py:attribute:: stats + :value: [] + + + + .. py:attribute:: template + + + .. py:attribute:: total_progress + + + .. py:attribute:: total_progress_inner + :value: 0 + + + + .. py:attribute:: total_size_inner + :value: 0 + + + + .. py:attribute:: version + diff --git a/docs/autoapi/ipyvuetify/extra/file_input/FileInput.rst b/docs/autoapi/ipyvuetify/extra/file_input/FileInput.rst new file mode 100644 index 00000000..03e612fd --- /dev/null +++ b/docs/autoapi/ipyvuetify/extra/file_input/FileInput.rst @@ -0,0 +1,83 @@ +ipyvuetify.extra.file_input.FileInput +===================================== + +.. py:class:: ipyvuetify.extra.file_input.FileInput(**kwargs) + + Bases: :py:obj:`ipyvuetify.VuetifyTemplate` + + + Widget that can be inserted into the DOM + + Parameters + ---------- + tooltip: str + tooltip caption + layout: InstanceDict(Layout) + widget layout + + + .. py:method:: clear() + + + .. py:method:: get_files(timeout=30) + + + .. py:method:: reset_stats() + + + .. py:method:: update_stats(file_index, bytes_read) + + + .. py:method:: vue_upload(content, buffers) + + + .. py:attribute:: accept + + + .. py:attribute:: chunk_listeners + + + .. py:attribute:: data + + + .. py:attribute:: directory + + + .. py:attribute:: disabled + + + .. py:attribute:: file_info + + + .. py:attribute:: multiple + + + .. py:attribute:: progress_indeterminate + + + .. py:attribute:: show_progress + + + .. py:attribute:: stats + :value: [] + + + + .. py:attribute:: template + + + .. py:attribute:: total_progress + + + .. py:attribute:: total_progress_inner + :value: 0 + + + + .. py:attribute:: total_size_inner + :value: 0 + + + + .. py:attribute:: version + diff --git a/docs/autoapi/ipyvuetify/extra/file_input/index.rst b/docs/autoapi/ipyvuetify/extra/file_input/index.rst index 71baa55c..aeba785b 100644 --- a/docs/autoapi/ipyvuetify/extra/file_input/index.rst +++ b/docs/autoapi/ipyvuetify/extra/file_input/index.rst @@ -7,92 +7,13 @@ ipyvuetify.extra.file_input Classes ------- -.. autoapisummary:: - - ipyvuetify.extra.file_input.FileInput - - -Module Contents ---------------- - -.. py:class:: FileInput(**kwargs) - - Bases: :py:obj:`ipyvuetify.VuetifyTemplate` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:method:: clear() - - - .. py:method:: get_files(timeout=30) - - - .. py:method:: reset_stats() - - - .. py:method:: update_stats(file_index, bytes_read) - - - .. py:method:: vue_upload(content, buffers) - - - .. py:attribute:: accept - - - .. py:attribute:: chunk_listeners - - - .. py:attribute:: data - - - .. py:attribute:: directory - - - .. py:attribute:: disabled - - - .. py:attribute:: file_info - - - .. py:attribute:: multiple - - - .. py:attribute:: progress_indeterminate - - - .. py:attribute:: show_progress - - - .. py:attribute:: stats - :value: [] - - - - .. py:attribute:: template - - - .. py:attribute:: total_progress - - - .. py:attribute:: total_progress_inner - :value: 0 - - - - .. py:attribute:: total_size_inner - :value: 0 +.. toctree:: + :hidden: + /autoapi/ipyvuetify/extra/file_input/FileInput +.. autoapisummary:: - .. py:attribute:: version + ipyvuetify.extra.file_input.FileInput diff --git a/docs/autoapi/ipyvuetify/extra/index.rst b/docs/autoapi/ipyvuetify/extra/index.rst index 016bf2ea..29bff9df 100644 --- a/docs/autoapi/ipyvuetify/extra/index.rst +++ b/docs/autoapi/ipyvuetify/extra/index.rst @@ -16,92 +16,13 @@ Submodules Classes ------- -.. autoapisummary:: - - ipyvuetify.extra.FileInput - - -Package Contents ----------------- - -.. py:class:: FileInput(**kwargs) - - Bases: :py:obj:`ipyvuetify.VuetifyTemplate` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:method:: clear() - - - .. py:method:: get_files(timeout=30) - - - .. py:method:: reset_stats() - - - .. py:method:: update_stats(file_index, bytes_read) - - - .. py:method:: vue_upload(content, buffers) - - - .. py:attribute:: accept - - - .. py:attribute:: chunk_listeners - - - .. py:attribute:: data - - - .. py:attribute:: directory - - - .. py:attribute:: disabled - - - .. py:attribute:: file_info - - - .. py:attribute:: multiple - - - .. py:attribute:: progress_indeterminate - - - .. py:attribute:: show_progress - - - .. py:attribute:: stats - :value: [] - - - - .. py:attribute:: template - - - .. py:attribute:: total_progress - - - .. py:attribute:: total_progress_inner - :value: 0 - - - - .. py:attribute:: total_size_inner - :value: 0 +.. toctree:: + :hidden: + /autoapi/ipyvuetify/extra/FileInput +.. autoapisummary:: - .. py:attribute:: version + ipyvuetify.extra.FileInput diff --git a/docs/autoapi/ipyvuetify/generated/AppBarNavIcon/index.rst b/docs/autoapi/ipyvuetify/generated/AppBarNavIcon/index.rst deleted file mode 100644 index 2f63d957..00000000 --- a/docs/autoapi/ipyvuetify/generated/AppBarNavIcon/index.rst +++ /dev/null @@ -1,32 +0,0 @@ -ipyvuetify.generated.AppBarNavIcon -================================== - -.. py:module:: ipyvuetify.generated.AppBarNavIcon - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.AppBarNavIcon.AppBarNavIcon - - -Module Contents ---------------- - -.. py:class:: AppBarNavIcon(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - diff --git a/docs/autoapi/ipyvuetify/generated/BreadcrumbsDivider/index.rst b/docs/autoapi/ipyvuetify/generated/BreadcrumbsDivider/index.rst deleted file mode 100644 index ad0c345f..00000000 --- a/docs/autoapi/ipyvuetify/generated/BreadcrumbsDivider/index.rst +++ /dev/null @@ -1,32 +0,0 @@ -ipyvuetify.generated.BreadcrumbsDivider -======================================= - -.. py:module:: ipyvuetify.generated.BreadcrumbsDivider - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.BreadcrumbsDivider.BreadcrumbsDivider - - -Module Contents ---------------- - -.. py:class:: BreadcrumbsDivider(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - diff --git a/docs/autoapi/ipyvuetify/generated/CardSubtitle/index.rst b/docs/autoapi/ipyvuetify/generated/CardSubtitle/index.rst deleted file mode 100644 index 41d798ae..00000000 --- a/docs/autoapi/ipyvuetify/generated/CardSubtitle/index.rst +++ /dev/null @@ -1,32 +0,0 @@ -ipyvuetify.generated.CardSubtitle -================================= - -.. py:module:: ipyvuetify.generated.CardSubtitle - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.CardSubtitle.CardSubtitle - - -Module Contents ---------------- - -.. py:class:: CardSubtitle(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - diff --git a/docs/autoapi/ipyvuetify/generated/CardTitle/index.rst b/docs/autoapi/ipyvuetify/generated/CardTitle/index.rst deleted file mode 100644 index 89c2dcc0..00000000 --- a/docs/autoapi/ipyvuetify/generated/CardTitle/index.rst +++ /dev/null @@ -1,32 +0,0 @@ -ipyvuetify.generated.CardTitle -============================== - -.. py:module:: ipyvuetify.generated.CardTitle - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.CardTitle.CardTitle - - -Module Contents ---------------- - -.. py:class:: CardTitle(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - diff --git a/docs/autoapi/ipyvuetify/generated/CarouselReverseTransition/index.rst b/docs/autoapi/ipyvuetify/generated/CarouselReverseTransition/index.rst deleted file mode 100644 index fb04ec5a..00000000 --- a/docs/autoapi/ipyvuetify/generated/CarouselReverseTransition/index.rst +++ /dev/null @@ -1,47 +0,0 @@ -ipyvuetify.generated.CarouselReverseTransition -============================================== - -.. py:module:: ipyvuetify.generated.CarouselReverseTransition - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.CarouselReverseTransition.CarouselReverseTransition - - -Module Contents ---------------- - -.. py:class:: CarouselReverseTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - diff --git a/docs/autoapi/ipyvuetify/generated/CarouselTransition/index.rst b/docs/autoapi/ipyvuetify/generated/CarouselTransition/index.rst deleted file mode 100644 index 83b6c0e2..00000000 --- a/docs/autoapi/ipyvuetify/generated/CarouselTransition/index.rst +++ /dev/null @@ -1,47 +0,0 @@ -ipyvuetify.generated.CarouselTransition -======================================= - -.. py:module:: ipyvuetify.generated.CarouselTransition - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.CarouselTransition.CarouselTransition - - -Module Contents ---------------- - -.. py:class:: CarouselTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - diff --git a/docs/autoapi/ipyvuetify/generated/ColorPickerSwatches/index.rst b/docs/autoapi/ipyvuetify/generated/ColorPickerSwatches/index.rst deleted file mode 100644 index 41388295..00000000 --- a/docs/autoapi/ipyvuetify/generated/ColorPickerSwatches/index.rst +++ /dev/null @@ -1,50 +0,0 @@ -ipyvuetify.generated.ColorPickerSwatches -======================================== - -.. py:module:: ipyvuetify.generated.ColorPickerSwatches - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ColorPickerSwatches.ColorPickerSwatches - - -Module Contents ---------------- - -.. py:class:: ColorPickerSwatches(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: swatches - - diff --git a/docs/autoapi/ipyvuetify/generated/DataTableHeader/index.rst b/docs/autoapi/ipyvuetify/generated/DataTableHeader/index.rst deleted file mode 100644 index cec039ff..00000000 --- a/docs/autoapi/ipyvuetify/generated/DataTableHeader/index.rst +++ /dev/null @@ -1,35 +0,0 @@ -ipyvuetify.generated.DataTableHeader -==================================== - -.. py:module:: ipyvuetify.generated.DataTableHeader - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.DataTableHeader.DataTableHeader - - -Module Contents ---------------- - -.. py:class:: DataTableHeader(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: mobile - - diff --git a/docs/autoapi/ipyvuetify/generated/DialogBottomTransition/index.rst b/docs/autoapi/ipyvuetify/generated/DialogBottomTransition/index.rst deleted file mode 100644 index d8f95df8..00000000 --- a/docs/autoapi/ipyvuetify/generated/DialogBottomTransition/index.rst +++ /dev/null @@ -1,47 +0,0 @@ -ipyvuetify.generated.DialogBottomTransition -=========================================== - -.. py:module:: ipyvuetify.generated.DialogBottomTransition - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.DialogBottomTransition.DialogBottomTransition - - -Module Contents ---------------- - -.. py:class:: DialogBottomTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - diff --git a/docs/autoapi/ipyvuetify/generated/DialogTransition/index.rst b/docs/autoapi/ipyvuetify/generated/DialogTransition/index.rst deleted file mode 100644 index a7cb8aa1..00000000 --- a/docs/autoapi/ipyvuetify/generated/DialogTransition/index.rst +++ /dev/null @@ -1,47 +0,0 @@ -ipyvuetify.generated.DialogTransition -===================================== - -.. py:module:: ipyvuetify.generated.DialogTransition - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.DialogTransition.DialogTransition - - -Module Contents ---------------- - -.. py:class:: DialogTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - diff --git a/docs/autoapi/ipyvuetify/generated/ExpandTransition/index.rst b/docs/autoapi/ipyvuetify/generated/ExpandTransition/index.rst deleted file mode 100644 index d818e60e..00000000 --- a/docs/autoapi/ipyvuetify/generated/ExpandTransition/index.rst +++ /dev/null @@ -1,35 +0,0 @@ -ipyvuetify.generated.ExpandTransition -===================================== - -.. py:module:: ipyvuetify.generated.ExpandTransition - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ExpandTransition.ExpandTransition - - -Module Contents ---------------- - -.. py:class:: ExpandTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: mode - - diff --git a/docs/autoapi/ipyvuetify/generated/ExpandXTransition/index.rst b/docs/autoapi/ipyvuetify/generated/ExpandXTransition/index.rst deleted file mode 100644 index e9376ddd..00000000 --- a/docs/autoapi/ipyvuetify/generated/ExpandXTransition/index.rst +++ /dev/null @@ -1,35 +0,0 @@ -ipyvuetify.generated.ExpandXTransition -====================================== - -.. py:module:: ipyvuetify.generated.ExpandXTransition - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ExpandXTransition.ExpandXTransition - - -Module Contents ---------------- - -.. py:class:: ExpandXTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: mode - - diff --git a/docs/autoapi/ipyvuetify/generated/ExpansionPanelContent/index.rst b/docs/autoapi/ipyvuetify/generated/ExpansionPanelContent/index.rst deleted file mode 100644 index dae7564f..00000000 --- a/docs/autoapi/ipyvuetify/generated/ExpansionPanelContent/index.rst +++ /dev/null @@ -1,38 +0,0 @@ -ipyvuetify.generated.ExpansionPanelContent -========================================== - -.. py:module:: ipyvuetify.generated.ExpansionPanelContent - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ExpansionPanelContent.ExpansionPanelContent - - -Module Contents ---------------- - -.. py:class:: ExpansionPanelContent(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: eager - - diff --git a/docs/autoapi/ipyvuetify/generated/ExpansionPanelHeader/index.rst b/docs/autoapi/ipyvuetify/generated/ExpansionPanelHeader/index.rst deleted file mode 100644 index 27364363..00000000 --- a/docs/autoapi/ipyvuetify/generated/ExpansionPanelHeader/index.rst +++ /dev/null @@ -1,47 +0,0 @@ -ipyvuetify.generated.ExpansionPanelHeader -========================================= - -.. py:module:: ipyvuetify.generated.ExpansionPanelHeader - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ExpansionPanelHeader.ExpansionPanelHeader - - -Module Contents ---------------- - -.. py:class:: ExpansionPanelHeader(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: disable_icon_rotate - - - .. py:attribute:: expand_icon - - - .. py:attribute:: hide_actions - - - .. py:attribute:: ripple - - diff --git a/docs/autoapi/ipyvuetify/generated/ListItemAction/index.rst b/docs/autoapi/ipyvuetify/generated/ListItemAction/index.rst deleted file mode 100644 index cec56bf0..00000000 --- a/docs/autoapi/ipyvuetify/generated/ListItemAction/index.rst +++ /dev/null @@ -1,32 +0,0 @@ -ipyvuetify.generated.ListItemAction -=================================== - -.. py:module:: ipyvuetify.generated.ListItemAction - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ListItemAction.ListItemAction - - -Module Contents ---------------- - -.. py:class:: ListItemAction(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - diff --git a/docs/autoapi/ipyvuetify/generated/ListItemActionText/index.rst b/docs/autoapi/ipyvuetify/generated/ListItemActionText/index.rst deleted file mode 100644 index ca59fb04..00000000 --- a/docs/autoapi/ipyvuetify/generated/ListItemActionText/index.rst +++ /dev/null @@ -1,32 +0,0 @@ -ipyvuetify.generated.ListItemActionText -======================================= - -.. py:module:: ipyvuetify.generated.ListItemActionText - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ListItemActionText.ListItemActionText - - -Module Contents ---------------- - -.. py:class:: ListItemActionText(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - diff --git a/docs/autoapi/ipyvuetify/generated/ListItemContent/index.rst b/docs/autoapi/ipyvuetify/generated/ListItemContent/index.rst deleted file mode 100644 index 52a33dca..00000000 --- a/docs/autoapi/ipyvuetify/generated/ListItemContent/index.rst +++ /dev/null @@ -1,32 +0,0 @@ -ipyvuetify.generated.ListItemContent -==================================== - -.. py:module:: ipyvuetify.generated.ListItemContent - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ListItemContent.ListItemContent - - -Module Contents ---------------- - -.. py:class:: ListItemContent(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - diff --git a/docs/autoapi/ipyvuetify/generated/ListItemGroup/index.rst b/docs/autoapi/ipyvuetify/generated/ListItemGroup/index.rst deleted file mode 100644 index 7c7ac643..00000000 --- a/docs/autoapi/ipyvuetify/generated/ListItemGroup/index.rst +++ /dev/null @@ -1,56 +0,0 @@ -ipyvuetify.generated.ListItemGroup -================================== - -.. py:module:: ipyvuetify.generated.ListItemGroup - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ListItemGroup.ListItemGroup - - -Module Contents ---------------- - -.. py:class:: ListItemGroup(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: multiple - - - .. py:attribute:: value - - diff --git a/docs/autoapi/ipyvuetify/generated/ListItemIcon/index.rst b/docs/autoapi/ipyvuetify/generated/ListItemIcon/index.rst deleted file mode 100644 index caf97b96..00000000 --- a/docs/autoapi/ipyvuetify/generated/ListItemIcon/index.rst +++ /dev/null @@ -1,32 +0,0 @@ -ipyvuetify.generated.ListItemIcon -================================= - -.. py:module:: ipyvuetify.generated.ListItemIcon - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ListItemIcon.ListItemIcon - - -Module Contents ---------------- - -.. py:class:: ListItemIcon(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - diff --git a/docs/autoapi/ipyvuetify/generated/ListItemSubtitle/index.rst b/docs/autoapi/ipyvuetify/generated/ListItemSubtitle/index.rst deleted file mode 100644 index b06951c6..00000000 --- a/docs/autoapi/ipyvuetify/generated/ListItemSubtitle/index.rst +++ /dev/null @@ -1,32 +0,0 @@ -ipyvuetify.generated.ListItemSubtitle -===================================== - -.. py:module:: ipyvuetify.generated.ListItemSubtitle - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ListItemSubtitle.ListItemSubtitle - - -Module Contents ---------------- - -.. py:class:: ListItemSubtitle(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - diff --git a/docs/autoapi/ipyvuetify/generated/ListItemTitle/index.rst b/docs/autoapi/ipyvuetify/generated/ListItemTitle/index.rst deleted file mode 100644 index 5a515dd1..00000000 --- a/docs/autoapi/ipyvuetify/generated/ListItemTitle/index.rst +++ /dev/null @@ -1,32 +0,0 @@ -ipyvuetify.generated.ListItemTitle -================================== - -.. py:module:: ipyvuetify.generated.ListItemTitle - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ListItemTitle.ListItemTitle - - -Module Contents ---------------- - -.. py:class:: ListItemTitle(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - diff --git a/docs/autoapi/ipyvuetify/generated/ScrollXReverseTransition/index.rst b/docs/autoapi/ipyvuetify/generated/ScrollXReverseTransition/index.rst deleted file mode 100644 index bc38e297..00000000 --- a/docs/autoapi/ipyvuetify/generated/ScrollXReverseTransition/index.rst +++ /dev/null @@ -1,47 +0,0 @@ -ipyvuetify.generated.ScrollXReverseTransition -============================================= - -.. py:module:: ipyvuetify.generated.ScrollXReverseTransition - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ScrollXReverseTransition.ScrollXReverseTransition - - -Module Contents ---------------- - -.. py:class:: ScrollXReverseTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - diff --git a/docs/autoapi/ipyvuetify/generated/ScrollXTransition/index.rst b/docs/autoapi/ipyvuetify/generated/ScrollXTransition/index.rst deleted file mode 100644 index b096e65d..00000000 --- a/docs/autoapi/ipyvuetify/generated/ScrollXTransition/index.rst +++ /dev/null @@ -1,47 +0,0 @@ -ipyvuetify.generated.ScrollXTransition -====================================== - -.. py:module:: ipyvuetify.generated.ScrollXTransition - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ScrollXTransition.ScrollXTransition - - -Module Contents ---------------- - -.. py:class:: ScrollXTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - diff --git a/docs/autoapi/ipyvuetify/generated/ScrollYReverseTransition/index.rst b/docs/autoapi/ipyvuetify/generated/ScrollYReverseTransition/index.rst deleted file mode 100644 index 0bbba1d7..00000000 --- a/docs/autoapi/ipyvuetify/generated/ScrollYReverseTransition/index.rst +++ /dev/null @@ -1,47 +0,0 @@ -ipyvuetify.generated.ScrollYReverseTransition -============================================= - -.. py:module:: ipyvuetify.generated.ScrollYReverseTransition - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ScrollYReverseTransition.ScrollYReverseTransition - - -Module Contents ---------------- - -.. py:class:: ScrollYReverseTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - diff --git a/docs/autoapi/ipyvuetify/generated/ScrollYTransition/index.rst b/docs/autoapi/ipyvuetify/generated/ScrollYTransition/index.rst deleted file mode 100644 index 17471b58..00000000 --- a/docs/autoapi/ipyvuetify/generated/ScrollYTransition/index.rst +++ /dev/null @@ -1,47 +0,0 @@ -ipyvuetify.generated.ScrollYTransition -====================================== - -.. py:module:: ipyvuetify.generated.ScrollYTransition - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ScrollYTransition.ScrollYTransition - - -Module Contents ---------------- - -.. py:class:: ScrollYTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - diff --git a/docs/autoapi/ipyvuetify/generated/SlideXReverseTransition/index.rst b/docs/autoapi/ipyvuetify/generated/SlideXReverseTransition/index.rst deleted file mode 100644 index fa5f9c66..00000000 --- a/docs/autoapi/ipyvuetify/generated/SlideXReverseTransition/index.rst +++ /dev/null @@ -1,47 +0,0 @@ -ipyvuetify.generated.SlideXReverseTransition -============================================ - -.. py:module:: ipyvuetify.generated.SlideXReverseTransition - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.SlideXReverseTransition.SlideXReverseTransition - - -Module Contents ---------------- - -.. py:class:: SlideXReverseTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - diff --git a/docs/autoapi/ipyvuetify/generated/SlideXTransition/index.rst b/docs/autoapi/ipyvuetify/generated/SlideXTransition/index.rst deleted file mode 100644 index 8a872e81..00000000 --- a/docs/autoapi/ipyvuetify/generated/SlideXTransition/index.rst +++ /dev/null @@ -1,47 +0,0 @@ -ipyvuetify.generated.SlideXTransition -===================================== - -.. py:module:: ipyvuetify.generated.SlideXTransition - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.SlideXTransition.SlideXTransition - - -Module Contents ---------------- - -.. py:class:: SlideXTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - diff --git a/docs/autoapi/ipyvuetify/generated/SlideYReverseTransition/index.rst b/docs/autoapi/ipyvuetify/generated/SlideYReverseTransition/index.rst deleted file mode 100644 index a57c0509..00000000 --- a/docs/autoapi/ipyvuetify/generated/SlideYReverseTransition/index.rst +++ /dev/null @@ -1,47 +0,0 @@ -ipyvuetify.generated.SlideYReverseTransition -============================================ - -.. py:module:: ipyvuetify.generated.SlideYReverseTransition - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.SlideYReverseTransition.SlideYReverseTransition - - -Module Contents ---------------- - -.. py:class:: SlideYReverseTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - diff --git a/docs/autoapi/ipyvuetify/generated/SlideYTransition/index.rst b/docs/autoapi/ipyvuetify/generated/SlideYTransition/index.rst deleted file mode 100644 index 19132e7e..00000000 --- a/docs/autoapi/ipyvuetify/generated/SlideYTransition/index.rst +++ /dev/null @@ -1,47 +0,0 @@ -ipyvuetify.generated.SlideYTransition -===================================== - -.. py:module:: ipyvuetify.generated.SlideYTransition - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.SlideYTransition.SlideYTransition - - -Module Contents ---------------- - -.. py:class:: SlideYTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - diff --git a/docs/autoapi/ipyvuetify/generated/StepperContent/index.rst b/docs/autoapi/ipyvuetify/generated/StepperContent/index.rst deleted file mode 100644 index e80346ed..00000000 --- a/docs/autoapi/ipyvuetify/generated/StepperContent/index.rst +++ /dev/null @@ -1,35 +0,0 @@ -ipyvuetify.generated.StepperContent -=================================== - -.. py:module:: ipyvuetify.generated.StepperContent - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.StepperContent.StepperContent - - -Module Contents ---------------- - -.. py:class:: StepperContent(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: step - - diff --git a/docs/autoapi/ipyvuetify/generated/StepperHeader/index.rst b/docs/autoapi/ipyvuetify/generated/StepperHeader/index.rst deleted file mode 100644 index 7b082201..00000000 --- a/docs/autoapi/ipyvuetify/generated/StepperHeader/index.rst +++ /dev/null @@ -1,32 +0,0 @@ -ipyvuetify.generated.StepperHeader -================================== - -.. py:module:: ipyvuetify.generated.StepperHeader - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.StepperHeader.StepperHeader - - -Module Contents ---------------- - -.. py:class:: StepperHeader(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - diff --git a/docs/autoapi/ipyvuetify/generated/StepperItems/index.rst b/docs/autoapi/ipyvuetify/generated/StepperItems/index.rst deleted file mode 100644 index 71c74aa4..00000000 --- a/docs/autoapi/ipyvuetify/generated/StepperItems/index.rst +++ /dev/null @@ -1,32 +0,0 @@ -ipyvuetify.generated.StepperItems -================================= - -.. py:module:: ipyvuetify.generated.StepperItems - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.StepperItems.StepperItems - - -Module Contents ---------------- - -.. py:class:: StepperItems(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - diff --git a/docs/autoapi/ipyvuetify/generated/TabReverseTransition/index.rst b/docs/autoapi/ipyvuetify/generated/TabReverseTransition/index.rst deleted file mode 100644 index fde774bf..00000000 --- a/docs/autoapi/ipyvuetify/generated/TabReverseTransition/index.rst +++ /dev/null @@ -1,47 +0,0 @@ -ipyvuetify.generated.TabReverseTransition -========================================= - -.. py:module:: ipyvuetify.generated.TabReverseTransition - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.TabReverseTransition.TabReverseTransition - - -Module Contents ---------------- - -.. py:class:: TabReverseTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - diff --git a/docs/autoapi/ipyvuetify/generated/TableOverflow/index.rst b/docs/autoapi/ipyvuetify/generated/TableOverflow/index.rst deleted file mode 100644 index f5d8b8b6..00000000 --- a/docs/autoapi/ipyvuetify/generated/TableOverflow/index.rst +++ /dev/null @@ -1,32 +0,0 @@ -ipyvuetify.generated.TableOverflow -================================== - -.. py:module:: ipyvuetify.generated.TableOverflow - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.TableOverflow.TableOverflow - - -Module Contents ---------------- - -.. py:class:: TableOverflow(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - diff --git a/docs/autoapi/ipyvuetify/generated/ThemeProvider/index.rst b/docs/autoapi/ipyvuetify/generated/ThemeProvider/index.rst deleted file mode 100644 index f8b54d3c..00000000 --- a/docs/autoapi/ipyvuetify/generated/ThemeProvider/index.rst +++ /dev/null @@ -1,41 +0,0 @@ -ipyvuetify.generated.ThemeProvider -================================== - -.. py:module:: ipyvuetify.generated.ThemeProvider - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ThemeProvider.ThemeProvider - - -Module Contents ---------------- - -.. py:class:: ThemeProvider(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: root - - diff --git a/docs/autoapi/ipyvuetify/generated/ToolbarItems/index.rst b/docs/autoapi/ipyvuetify/generated/ToolbarItems/index.rst deleted file mode 100644 index 50911205..00000000 --- a/docs/autoapi/ipyvuetify/generated/ToolbarItems/index.rst +++ /dev/null @@ -1,32 +0,0 @@ -ipyvuetify.generated.ToolbarItems -================================= - -.. py:module:: ipyvuetify.generated.ToolbarItems - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ToolbarItems.ToolbarItems - - -Module Contents ---------------- - -.. py:class:: ToolbarItems(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - diff --git a/docs/autoapi/ipyvuetify/generated/ToolbarTitle/index.rst b/docs/autoapi/ipyvuetify/generated/ToolbarTitle/index.rst deleted file mode 100644 index 86721d5f..00000000 --- a/docs/autoapi/ipyvuetify/generated/ToolbarTitle/index.rst +++ /dev/null @@ -1,32 +0,0 @@ -ipyvuetify.generated.ToolbarTitle -================================= - -.. py:module:: ipyvuetify.generated.ToolbarTitle - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.ToolbarTitle.ToolbarTitle - - -Module Contents ---------------- - -.. py:class:: ToolbarTitle(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - diff --git a/docs/autoapi/ipyvuetify/generated/VuetifyWidget/index.rst b/docs/autoapi/ipyvuetify/generated/VuetifyWidget/index.rst deleted file mode 100644 index 96a22845..00000000 --- a/docs/autoapi/ipyvuetify/generated/VuetifyWidget/index.rst +++ /dev/null @@ -1,32 +0,0 @@ -ipyvuetify.generated.VuetifyWidget -================================== - -.. py:module:: ipyvuetify.generated.VuetifyWidget - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.VuetifyWidget.VuetifyWidget - - -Module Contents ---------------- - -.. py:class:: VuetifyWidget(**kwargs) - - Bases: :py:obj:`ipyvue.VueWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - diff --git a/docs/autoapi/ipyvuetify/generated/index.rst b/docs/autoapi/ipyvuetify/generated/index.rst deleted file mode 100644 index 053f55cc..00000000 --- a/docs/autoapi/ipyvuetify/generated/index.rst +++ /dev/null @@ -1,11222 +0,0 @@ -ipyvuetify.generated -==================== - -.. py:module:: ipyvuetify.generated - - -Submodules ----------- - -.. toctree:: - :maxdepth: 1 - - /autoapi/ipyvuetify/generated/Alert/index - /autoapi/ipyvuetify/generated/App/index - /autoapi/ipyvuetify/generated/AppBar/index - /autoapi/ipyvuetify/generated/AppBarNavIcon/index - /autoapi/ipyvuetify/generated/Autocomplete/index - /autoapi/ipyvuetify/generated/Avatar/index - /autoapi/ipyvuetify/generated/Badge/index - /autoapi/ipyvuetify/generated/Banner/index - /autoapi/ipyvuetify/generated/BottomNavigation/index - /autoapi/ipyvuetify/generated/BottomSheet/index - /autoapi/ipyvuetify/generated/Breadcrumbs/index - /autoapi/ipyvuetify/generated/BreadcrumbsDivider/index - /autoapi/ipyvuetify/generated/BreadcrumbsItem/index - /autoapi/ipyvuetify/generated/Btn/index - /autoapi/ipyvuetify/generated/BtnToggle/index - /autoapi/ipyvuetify/generated/Calendar/index - /autoapi/ipyvuetify/generated/CalendarDaily/index - /autoapi/ipyvuetify/generated/CalendarMonthly/index - /autoapi/ipyvuetify/generated/CalendarWeekly/index - /autoapi/ipyvuetify/generated/Card/index - /autoapi/ipyvuetify/generated/CardActions/index - /autoapi/ipyvuetify/generated/CardSubtitle/index - /autoapi/ipyvuetify/generated/CardText/index - /autoapi/ipyvuetify/generated/CardTitle/index - /autoapi/ipyvuetify/generated/Carousel/index - /autoapi/ipyvuetify/generated/CarouselItem/index - /autoapi/ipyvuetify/generated/CarouselReverseTransition/index - /autoapi/ipyvuetify/generated/CarouselTransition/index - /autoapi/ipyvuetify/generated/Checkbox/index - /autoapi/ipyvuetify/generated/Chip/index - /autoapi/ipyvuetify/generated/ChipGroup/index - /autoapi/ipyvuetify/generated/Col/index - /autoapi/ipyvuetify/generated/ColorPicker/index - /autoapi/ipyvuetify/generated/ColorPickerCanvas/index - /autoapi/ipyvuetify/generated/ColorPickerSwatches/index - /autoapi/ipyvuetify/generated/Combobox/index - /autoapi/ipyvuetify/generated/Container/index - /autoapi/ipyvuetify/generated/Content/index - /autoapi/ipyvuetify/generated/Counter/index - /autoapi/ipyvuetify/generated/Data/index - /autoapi/ipyvuetify/generated/DataFooter/index - /autoapi/ipyvuetify/generated/DataIterator/index - /autoapi/ipyvuetify/generated/DataTable/index - /autoapi/ipyvuetify/generated/DataTableHeader/index - /autoapi/ipyvuetify/generated/DatePicker/index - /autoapi/ipyvuetify/generated/DatePickerDateTable/index - /autoapi/ipyvuetify/generated/DatePickerHeader/index - /autoapi/ipyvuetify/generated/DatePickerMonthTable/index - /autoapi/ipyvuetify/generated/DatePickerTitle/index - /autoapi/ipyvuetify/generated/DatePickerYears/index - /autoapi/ipyvuetify/generated/Dialog/index - /autoapi/ipyvuetify/generated/DialogBottomTransition/index - /autoapi/ipyvuetify/generated/DialogTransition/index - /autoapi/ipyvuetify/generated/Divider/index - /autoapi/ipyvuetify/generated/EditDialog/index - /autoapi/ipyvuetify/generated/ExpandTransition/index - /autoapi/ipyvuetify/generated/ExpandXTransition/index - /autoapi/ipyvuetify/generated/ExpansionPanel/index - /autoapi/ipyvuetify/generated/ExpansionPanelContent/index - /autoapi/ipyvuetify/generated/ExpansionPanelHeader/index - /autoapi/ipyvuetify/generated/ExpansionPanels/index - /autoapi/ipyvuetify/generated/FabTransition/index - /autoapi/ipyvuetify/generated/FadeTransition/index - /autoapi/ipyvuetify/generated/FileInput/index - /autoapi/ipyvuetify/generated/Flex/index - /autoapi/ipyvuetify/generated/Footer/index - /autoapi/ipyvuetify/generated/Form/index - /autoapi/ipyvuetify/generated/Hover/index - /autoapi/ipyvuetify/generated/Icon/index - /autoapi/ipyvuetify/generated/Img/index - /autoapi/ipyvuetify/generated/Input/index - /autoapi/ipyvuetify/generated/Item/index - /autoapi/ipyvuetify/generated/ItemGroup/index - /autoapi/ipyvuetify/generated/Label/index - /autoapi/ipyvuetify/generated/Layout/index - /autoapi/ipyvuetify/generated/Lazy/index - /autoapi/ipyvuetify/generated/List/index - /autoapi/ipyvuetify/generated/ListGroup/index - /autoapi/ipyvuetify/generated/ListItem/index - /autoapi/ipyvuetify/generated/ListItemAction/index - /autoapi/ipyvuetify/generated/ListItemActionText/index - /autoapi/ipyvuetify/generated/ListItemAvatar/index - /autoapi/ipyvuetify/generated/ListItemContent/index - /autoapi/ipyvuetify/generated/ListItemGroup/index - /autoapi/ipyvuetify/generated/ListItemIcon/index - /autoapi/ipyvuetify/generated/ListItemSubtitle/index - /autoapi/ipyvuetify/generated/ListItemTitle/index - /autoapi/ipyvuetify/generated/Menu/index - /autoapi/ipyvuetify/generated/MenuTransition/index - /autoapi/ipyvuetify/generated/Messages/index - /autoapi/ipyvuetify/generated/NavigationDrawer/index - /autoapi/ipyvuetify/generated/OverflowBtn/index - /autoapi/ipyvuetify/generated/Overlay/index - /autoapi/ipyvuetify/generated/Pagination/index - /autoapi/ipyvuetify/generated/Parallax/index - /autoapi/ipyvuetify/generated/Picker/index - /autoapi/ipyvuetify/generated/ProgressCircular/index - /autoapi/ipyvuetify/generated/ProgressLinear/index - /autoapi/ipyvuetify/generated/Radio/index - /autoapi/ipyvuetify/generated/RadioGroup/index - /autoapi/ipyvuetify/generated/RangeSlider/index - /autoapi/ipyvuetify/generated/Rating/index - /autoapi/ipyvuetify/generated/Responsive/index - /autoapi/ipyvuetify/generated/Row/index - /autoapi/ipyvuetify/generated/ScaleTransition/index - /autoapi/ipyvuetify/generated/ScrollXReverseTransition/index - /autoapi/ipyvuetify/generated/ScrollXTransition/index - /autoapi/ipyvuetify/generated/ScrollYReverseTransition/index - /autoapi/ipyvuetify/generated/ScrollYTransition/index - /autoapi/ipyvuetify/generated/Select/index - /autoapi/ipyvuetify/generated/Sheet/index - /autoapi/ipyvuetify/generated/SimpleCheckbox/index - /autoapi/ipyvuetify/generated/SimpleTable/index - /autoapi/ipyvuetify/generated/SkeletonLoader/index - /autoapi/ipyvuetify/generated/SlideGroup/index - /autoapi/ipyvuetify/generated/SlideItem/index - /autoapi/ipyvuetify/generated/SlideXReverseTransition/index - /autoapi/ipyvuetify/generated/SlideXTransition/index - /autoapi/ipyvuetify/generated/SlideYReverseTransition/index - /autoapi/ipyvuetify/generated/SlideYTransition/index - /autoapi/ipyvuetify/generated/Slider/index - /autoapi/ipyvuetify/generated/Snackbar/index - /autoapi/ipyvuetify/generated/Spacer/index - /autoapi/ipyvuetify/generated/Sparkline/index - /autoapi/ipyvuetify/generated/SpeedDial/index - /autoapi/ipyvuetify/generated/Stepper/index - /autoapi/ipyvuetify/generated/StepperContent/index - /autoapi/ipyvuetify/generated/StepperHeader/index - /autoapi/ipyvuetify/generated/StepperItems/index - /autoapi/ipyvuetify/generated/StepperStep/index - /autoapi/ipyvuetify/generated/Subheader/index - /autoapi/ipyvuetify/generated/Switch/index - /autoapi/ipyvuetify/generated/SystemBar/index - /autoapi/ipyvuetify/generated/Tab/index - /autoapi/ipyvuetify/generated/TabItem/index - /autoapi/ipyvuetify/generated/TabReverseTransition/index - /autoapi/ipyvuetify/generated/TabTransition/index - /autoapi/ipyvuetify/generated/TableOverflow/index - /autoapi/ipyvuetify/generated/Tabs/index - /autoapi/ipyvuetify/generated/TabsItems/index - /autoapi/ipyvuetify/generated/TabsSlider/index - /autoapi/ipyvuetify/generated/Text/index - /autoapi/ipyvuetify/generated/TextField/index - /autoapi/ipyvuetify/generated/Textarea/index - /autoapi/ipyvuetify/generated/ThemeProvider/index - /autoapi/ipyvuetify/generated/TimePicker/index - /autoapi/ipyvuetify/generated/TimePickerClock/index - /autoapi/ipyvuetify/generated/TimePickerTitle/index - /autoapi/ipyvuetify/generated/Timeline/index - /autoapi/ipyvuetify/generated/TimelineItem/index - /autoapi/ipyvuetify/generated/Toolbar/index - /autoapi/ipyvuetify/generated/ToolbarItems/index - /autoapi/ipyvuetify/generated/ToolbarTitle/index - /autoapi/ipyvuetify/generated/Tooltip/index - /autoapi/ipyvuetify/generated/Treeview/index - /autoapi/ipyvuetify/generated/TreeviewNode/index - /autoapi/ipyvuetify/generated/VirtualTable/index - /autoapi/ipyvuetify/generated/VuetifyWidget/index - /autoapi/ipyvuetify/generated/Window/index - /autoapi/ipyvuetify/generated/WindowItem/index - - -Classes -------- - -.. autoapisummary:: - - ipyvuetify.generated.Alert - ipyvuetify.generated.App - ipyvuetify.generated.AppBar - ipyvuetify.generated.AppBarNavIcon - ipyvuetify.generated.Autocomplete - ipyvuetify.generated.Avatar - ipyvuetify.generated.Badge - ipyvuetify.generated.Banner - ipyvuetify.generated.BottomNavigation - ipyvuetify.generated.BottomSheet - ipyvuetify.generated.Breadcrumbs - ipyvuetify.generated.BreadcrumbsDivider - ipyvuetify.generated.BreadcrumbsItem - ipyvuetify.generated.Btn - ipyvuetify.generated.BtnToggle - ipyvuetify.generated.Calendar - ipyvuetify.generated.CalendarDaily - ipyvuetify.generated.CalendarMonthly - ipyvuetify.generated.CalendarWeekly - ipyvuetify.generated.Card - ipyvuetify.generated.CardActions - ipyvuetify.generated.CardSubtitle - ipyvuetify.generated.CardText - ipyvuetify.generated.CardTitle - ipyvuetify.generated.Carousel - ipyvuetify.generated.CarouselItem - ipyvuetify.generated.CarouselReverseTransition - ipyvuetify.generated.CarouselTransition - ipyvuetify.generated.Checkbox - ipyvuetify.generated.Chip - ipyvuetify.generated.ChipGroup - ipyvuetify.generated.Col - ipyvuetify.generated.ColorPicker - ipyvuetify.generated.ColorPickerCanvas - ipyvuetify.generated.ColorPickerSwatches - ipyvuetify.generated.Combobox - ipyvuetify.generated.Container - ipyvuetify.generated.Content - ipyvuetify.generated.Counter - ipyvuetify.generated.Data - ipyvuetify.generated.DataFooter - ipyvuetify.generated.DataIterator - ipyvuetify.generated.DataTable - ipyvuetify.generated.DataTableHeader - ipyvuetify.generated.DatePicker - ipyvuetify.generated.DatePickerDateTable - ipyvuetify.generated.DatePickerHeader - ipyvuetify.generated.DatePickerMonthTable - ipyvuetify.generated.DatePickerTitle - ipyvuetify.generated.DatePickerYears - ipyvuetify.generated.Dialog - ipyvuetify.generated.DialogBottomTransition - ipyvuetify.generated.DialogTransition - ipyvuetify.generated.Divider - ipyvuetify.generated.EditDialog - ipyvuetify.generated.ExpandTransition - ipyvuetify.generated.ExpandXTransition - ipyvuetify.generated.ExpansionPanel - ipyvuetify.generated.ExpansionPanelContent - ipyvuetify.generated.ExpansionPanelHeader - ipyvuetify.generated.ExpansionPanels - ipyvuetify.generated.FabTransition - ipyvuetify.generated.FadeTransition - ipyvuetify.generated.FileInput - ipyvuetify.generated.Flex - ipyvuetify.generated.Footer - ipyvuetify.generated.Form - ipyvuetify.generated.Hover - ipyvuetify.generated.Icon - ipyvuetify.generated.Img - ipyvuetify.generated.Input - ipyvuetify.generated.Item - ipyvuetify.generated.ItemGroup - ipyvuetify.generated.Label - ipyvuetify.generated.Layout - ipyvuetify.generated.Lazy - ipyvuetify.generated.List - ipyvuetify.generated.ListGroup - ipyvuetify.generated.ListItem - ipyvuetify.generated.ListItemAction - ipyvuetify.generated.ListItemActionText - ipyvuetify.generated.ListItemAvatar - ipyvuetify.generated.ListItemContent - ipyvuetify.generated.ListItemGroup - ipyvuetify.generated.ListItemIcon - ipyvuetify.generated.ListItemSubtitle - ipyvuetify.generated.ListItemTitle - ipyvuetify.generated.Menu - ipyvuetify.generated.MenuTransition - ipyvuetify.generated.Messages - ipyvuetify.generated.NavigationDrawer - ipyvuetify.generated.OverflowBtn - ipyvuetify.generated.Overlay - ipyvuetify.generated.Pagination - ipyvuetify.generated.Parallax - ipyvuetify.generated.Picker - ipyvuetify.generated.ProgressCircular - ipyvuetify.generated.ProgressLinear - ipyvuetify.generated.Radio - ipyvuetify.generated.RadioGroup - ipyvuetify.generated.RangeSlider - ipyvuetify.generated.Rating - ipyvuetify.generated.Responsive - ipyvuetify.generated.Row - ipyvuetify.generated.ScaleTransition - ipyvuetify.generated.ScrollXReverseTransition - ipyvuetify.generated.ScrollXTransition - ipyvuetify.generated.ScrollYReverseTransition - ipyvuetify.generated.ScrollYTransition - ipyvuetify.generated.Select - ipyvuetify.generated.Sheet - ipyvuetify.generated.SimpleCheckbox - ipyvuetify.generated.SimpleTable - ipyvuetify.generated.SkeletonLoader - ipyvuetify.generated.SlideGroup - ipyvuetify.generated.SlideItem - ipyvuetify.generated.SlideXReverseTransition - ipyvuetify.generated.SlideXTransition - ipyvuetify.generated.SlideYReverseTransition - ipyvuetify.generated.SlideYTransition - ipyvuetify.generated.Slider - ipyvuetify.generated.Snackbar - ipyvuetify.generated.Spacer - ipyvuetify.generated.Sparkline - ipyvuetify.generated.SpeedDial - ipyvuetify.generated.Stepper - ipyvuetify.generated.StepperContent - ipyvuetify.generated.StepperHeader - ipyvuetify.generated.StepperItems - ipyvuetify.generated.StepperStep - ipyvuetify.generated.Subheader - ipyvuetify.generated.Switch - ipyvuetify.generated.SystemBar - ipyvuetify.generated.Tab - ipyvuetify.generated.TabItem - ipyvuetify.generated.TabReverseTransition - ipyvuetify.generated.TabTransition - ipyvuetify.generated.TableOverflow - ipyvuetify.generated.Tabs - ipyvuetify.generated.TabsItems - ipyvuetify.generated.TabsSlider - ipyvuetify.generated.Text - ipyvuetify.generated.TextField - ipyvuetify.generated.Textarea - ipyvuetify.generated.ThemeProvider - ipyvuetify.generated.TimePicker - ipyvuetify.generated.TimePickerClock - ipyvuetify.generated.TimePickerTitle - ipyvuetify.generated.Timeline - ipyvuetify.generated.TimelineItem - ipyvuetify.generated.Toolbar - ipyvuetify.generated.ToolbarItems - ipyvuetify.generated.ToolbarTitle - ipyvuetify.generated.Tooltip - ipyvuetify.generated.Treeview - ipyvuetify.generated.TreeviewNode - ipyvuetify.generated.VirtualTable - ipyvuetify.generated.VuetifyWidget - ipyvuetify.generated.Window - ipyvuetify.generated.WindowItem - - -Package Contents ----------------- - -.. py:class:: Alert(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: border - - - .. py:attribute:: close_label - - - .. py:attribute:: color - - - .. py:attribute:: colored_border - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: dismissible - - - .. py:attribute:: elevation - - - .. py:attribute:: height - - - .. py:attribute:: icon - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - - .. py:attribute:: outlined - - - .. py:attribute:: prominent - - - .. py:attribute:: tag - - - .. py:attribute:: text - - - .. py:attribute:: tile - - - .. py:attribute:: transition - - - .. py:attribute:: type - - - .. py:attribute:: value - - - .. py:attribute:: width - - -.. py:class:: App(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: dark - - - .. py:attribute:: id - - - .. py:attribute:: light - - -.. py:class:: AppBar(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: app - - - .. py:attribute:: bottom - - - .. py:attribute:: clipped_left - - - .. py:attribute:: clipped_right - - - .. py:attribute:: collapse - - - .. py:attribute:: collapse_on_scroll - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: elevate_on_scroll - - - .. py:attribute:: elevation - - - .. py:attribute:: extended - - - .. py:attribute:: extension_height - - - .. py:attribute:: fade_img_on_scroll - - - .. py:attribute:: fixed - - - .. py:attribute:: flat - - - .. py:attribute:: floating - - - .. py:attribute:: height - - - .. py:attribute:: hide_on_scroll - - - .. py:attribute:: inverted_scroll - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: prominent - - - .. py:attribute:: scroll_off_screen - - - .. py:attribute:: scroll_target - - - .. py:attribute:: scroll_threshold - - - .. py:attribute:: short - - - .. py:attribute:: shrink_on_scroll - - - .. py:attribute:: src - - - .. py:attribute:: tag - - - .. py:attribute:: tile - - - .. py:attribute:: value - - - .. py:attribute:: width - - -.. py:class:: AppBarNavIcon(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: Autocomplete(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: allow_overflow - - - .. py:attribute:: append_icon - - - .. py:attribute:: append_outer_icon - - - .. py:attribute:: attach - - - .. py:attribute:: auto_select_first - - - .. py:attribute:: autofocus - - - .. py:attribute:: background_color - - - .. py:attribute:: cache_items - - - .. py:attribute:: chips - - - .. py:attribute:: clear_icon - - - .. py:attribute:: clearable - - - .. py:attribute:: color - - - .. py:attribute:: counter - - - .. py:attribute:: dark - - - .. py:attribute:: deletable_chips - - - .. py:attribute:: dense - - - .. py:attribute:: disable_lookup - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: filled - - - .. py:attribute:: flat - - - .. py:attribute:: full_width - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hide_no_data - - - .. py:attribute:: hide_selected - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: item_color - - - .. py:attribute:: item_disabled - - - .. py:attribute:: item_text - - - .. py:attribute:: item_value - - - .. py:attribute:: items - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: menu_props - - - .. py:attribute:: messages - - - .. py:attribute:: multiple - - - .. py:attribute:: no_data_text - - - .. py:attribute:: no_filter - - - .. py:attribute:: open_on_clear - - - .. py:attribute:: outlined - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: placeholder - - - .. py:attribute:: prefix - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: prepend_inner_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: return_object - - - .. py:attribute:: reverse - - - .. py:attribute:: rounded - - - .. py:attribute:: rules - - - .. py:attribute:: search_input - - - .. py:attribute:: shaped - - - .. py:attribute:: single_line - - - .. py:attribute:: small_chips - - - .. py:attribute:: solo - - - .. py:attribute:: solo_inverted - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: suffix - - - .. py:attribute:: type - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - -.. py:class:: Avatar(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: height - - - .. py:attribute:: left - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: right - - - .. py:attribute:: size - - - .. py:attribute:: tile - - - .. py:attribute:: width - - -.. py:class:: Badge(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: avatar - - - .. py:attribute:: bordered - - - .. py:attribute:: bottom - - - .. py:attribute:: color - - - .. py:attribute:: content - - - .. py:attribute:: dark - - - .. py:attribute:: dot - - - .. py:attribute:: icon - - - .. py:attribute:: inline - - - .. py:attribute:: label - - - .. py:attribute:: left - - - .. py:attribute:: light - - - .. py:attribute:: mode - - - .. py:attribute:: offset_x - - - .. py:attribute:: offset_y - - - .. py:attribute:: origin - - - .. py:attribute:: overlap - - - .. py:attribute:: tile - - - .. py:attribute:: transition - - - .. py:attribute:: value - - -.. py:class:: Banner(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: app - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: elevation - - - .. py:attribute:: height - - - .. py:attribute:: icon - - - .. py:attribute:: icon_color - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: mobile_break_point - - - .. py:attribute:: single_line - - - .. py:attribute:: sticky - - - .. py:attribute:: tag - - - .. py:attribute:: tile - - - .. py:attribute:: value - - - .. py:attribute:: width - - -.. py:class:: BottomNavigation(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: active_class - - - .. py:attribute:: app - - - .. py:attribute:: background_color - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: fixed - - - .. py:attribute:: grow - - - .. py:attribute:: height - - - .. py:attribute:: hide_on_scroll - - - .. py:attribute:: horizontal - - - .. py:attribute:: input_value - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: scroll_target - - - .. py:attribute:: scroll_threshold - - - .. py:attribute:: shift - - - .. py:attribute:: value - - - .. py:attribute:: width - - -.. py:class:: BottomSheet(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: activator - - - .. py:attribute:: attach - - - .. py:attribute:: close_delay - - - .. py:attribute:: content_class - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: fullscreen - - - .. py:attribute:: hide_overlay - - - .. py:attribute:: inset - - - .. py:attribute:: internal_activator - - - .. py:attribute:: light - - - .. py:attribute:: max_width - - - .. py:attribute:: no_click_animation - - - .. py:attribute:: open_delay - - - .. py:attribute:: open_on_hover - - - .. py:attribute:: origin - - - .. py:attribute:: overlay_color - - - .. py:attribute:: overlay_opacity - - - .. py:attribute:: persistent - - - .. py:attribute:: retain_focus - - - .. py:attribute:: return_value - - - .. py:attribute:: scrollable - - - .. py:attribute:: transition - - - .. py:attribute:: value - - - .. py:attribute:: width - - -.. py:class:: Breadcrumbs(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: dark - - - .. py:attribute:: divider - - - .. py:attribute:: items - - - .. py:attribute:: large - - - .. py:attribute:: light - - -.. py:class:: BreadcrumbsDivider(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: BreadcrumbsItem(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: append - - - .. py:attribute:: disabled - - - .. py:attribute:: exact - - - .. py:attribute:: exact_active_class - - - .. py:attribute:: href - - - .. py:attribute:: link - - - .. py:attribute:: nuxt - - - .. py:attribute:: replace - - - .. py:attribute:: ripple - - - .. py:attribute:: tag - - - .. py:attribute:: target - - - .. py:attribute:: to - - -.. py:class:: Btn(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: active_class - - - .. py:attribute:: append - - - .. py:attribute:: block - - - .. py:attribute:: bottom - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: depressed - - - .. py:attribute:: disabled - - - .. py:attribute:: elevation - - - .. py:attribute:: exact - - - .. py:attribute:: exact_active_class - - - .. py:attribute:: fab - - - .. py:attribute:: fixed - - - .. py:attribute:: height - - - .. py:attribute:: href - - - .. py:attribute:: icon - - - .. py:attribute:: input_value - - - .. py:attribute:: large - - - .. py:attribute:: left - - - .. py:attribute:: light - - - .. py:attribute:: link - - - .. py:attribute:: loading - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: nuxt - - - .. py:attribute:: outlined - - - .. py:attribute:: replace - - - .. py:attribute:: retain_focus_on_click - - - .. py:attribute:: right - - - .. py:attribute:: ripple - - - .. py:attribute:: rounded - - - .. py:attribute:: small - - - .. py:attribute:: tag - - - .. py:attribute:: target - - - .. py:attribute:: text - - - .. py:attribute:: tile - - - .. py:attribute:: to - - - .. py:attribute:: top - - - .. py:attribute:: type - - - .. py:attribute:: value - - - .. py:attribute:: width - - - .. py:attribute:: x_large - - - .. py:attribute:: x_small - - -.. py:class:: BtnToggle(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: background_color - - - .. py:attribute:: borderless - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: group - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: multiple - - - .. py:attribute:: rounded - - - .. py:attribute:: shaped - - - .. py:attribute:: tile - - - .. py:attribute:: value - - -.. py:class:: Calendar(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: end - - - .. py:attribute:: event_color - - - .. py:attribute:: event_end - - - .. py:attribute:: event_height - - - .. py:attribute:: event_margin_bottom - - - .. py:attribute:: event_more - - - .. py:attribute:: event_more_text - - - .. py:attribute:: event_name - - - .. py:attribute:: event_overlap_mode - - - .. py:attribute:: event_overlap_threshold - - - .. py:attribute:: event_ripple - - - .. py:attribute:: event_start - - - .. py:attribute:: event_text_color - - - .. py:attribute:: events - - - .. py:attribute:: first_interval - - - .. py:attribute:: hide_header - - - .. py:attribute:: interval_count - - - .. py:attribute:: interval_height - - - .. py:attribute:: interval_minutes - - - .. py:attribute:: interval_width - - - .. py:attribute:: light - - - .. py:attribute:: locale - - - .. py:attribute:: max_days - - - .. py:attribute:: min_weeks - - - .. py:attribute:: now - - - .. py:attribute:: short_intervals - - - .. py:attribute:: short_months - - - .. py:attribute:: short_weekdays - - - .. py:attribute:: show_month_on_first - - - .. py:attribute:: start - - - .. py:attribute:: type - - - .. py:attribute:: value - - - .. py:attribute:: weekdays - - -.. py:class:: CalendarDaily(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: end - - - .. py:attribute:: first_interval - - - .. py:attribute:: hide_header - - - .. py:attribute:: interval_count - - - .. py:attribute:: interval_height - - - .. py:attribute:: interval_minutes - - - .. py:attribute:: interval_width - - - .. py:attribute:: light - - - .. py:attribute:: locale - - - .. py:attribute:: max_days - - - .. py:attribute:: now - - - .. py:attribute:: short_intervals - - - .. py:attribute:: short_weekdays - - - .. py:attribute:: start - - - .. py:attribute:: weekdays - - -.. py:class:: CalendarMonthly(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: end - - - .. py:attribute:: hide_header - - - .. py:attribute:: light - - - .. py:attribute:: locale - - - .. py:attribute:: min_weeks - - - .. py:attribute:: now - - - .. py:attribute:: short_months - - - .. py:attribute:: short_weekdays - - - .. py:attribute:: show_month_on_first - - - .. py:attribute:: start - - - .. py:attribute:: weekdays - - -.. py:class:: CalendarWeekly(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: end - - - .. py:attribute:: hide_header - - - .. py:attribute:: light - - - .. py:attribute:: locale - - - .. py:attribute:: min_weeks - - - .. py:attribute:: now - - - .. py:attribute:: short_months - - - .. py:attribute:: short_weekdays - - - .. py:attribute:: show_month_on_first - - - .. py:attribute:: start - - - .. py:attribute:: weekdays - - -.. py:class:: Card(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: append - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: elevation - - - .. py:attribute:: exact - - - .. py:attribute:: exact_active_class - - - .. py:attribute:: flat - - - .. py:attribute:: height - - - .. py:attribute:: hover - - - .. py:attribute:: href - - - .. py:attribute:: img - - - .. py:attribute:: light - - - .. py:attribute:: link - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: nuxt - - - .. py:attribute:: outlined - - - .. py:attribute:: raised - - - .. py:attribute:: replace - - - .. py:attribute:: ripple - - - .. py:attribute:: shaped - - - .. py:attribute:: tag - - - .. py:attribute:: target - - - .. py:attribute:: tile - - - .. py:attribute:: to - - - .. py:attribute:: width - - -.. py:class:: CardActions(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: CardSubtitle(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: CardText(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: CardTitle(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: Carousel(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: continuous - - - .. py:attribute:: cycle - - - .. py:attribute:: dark - - - .. py:attribute:: delimiter_icon - - - .. py:attribute:: height - - - .. py:attribute:: hide_delimiter_background - - - .. py:attribute:: hide_delimiters - - - .. py:attribute:: interval - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: multiple - - - .. py:attribute:: next_icon - - - .. py:attribute:: prev_icon - - - .. py:attribute:: progress - - - .. py:attribute:: progress_color - - - .. py:attribute:: reverse - - - .. py:attribute:: show_arrows - - - .. py:attribute:: show_arrows_on_hover - - - .. py:attribute:: touch - - - .. py:attribute:: touchless - - - .. py:attribute:: value - - - .. py:attribute:: vertical - - - .. py:attribute:: vertical_delimiters - - -.. py:class:: CarouselItem(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: append - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: exact - - - .. py:attribute:: exact_active_class - - - .. py:attribute:: href - - - .. py:attribute:: link - - - .. py:attribute:: nuxt - - - .. py:attribute:: replace - - - .. py:attribute:: reverse_transition - - - .. py:attribute:: ripple - - - .. py:attribute:: tag - - - .. py:attribute:: target - - - .. py:attribute:: to - - - .. py:attribute:: transition - - - .. py:attribute:: value - - -.. py:class:: CarouselReverseTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: CarouselTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: Checkbox(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: background_color - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: false_value - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: indeterminate - - - .. py:attribute:: indeterminate_icon - - - .. py:attribute:: input_value - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loading - - - .. py:attribute:: messages - - - .. py:attribute:: multiple - - - .. py:attribute:: off_icon - - - .. py:attribute:: on_icon - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: ripple - - - .. py:attribute:: rules - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: true_value - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - -.. py:class:: Chip(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active - - - .. py:attribute:: active_class - - - .. py:attribute:: append - - - .. py:attribute:: close_ - - - .. py:attribute:: close_icon - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: draggable - - - .. py:attribute:: exact - - - .. py:attribute:: exact_active_class - - - .. py:attribute:: filter - - - .. py:attribute:: filter_icon - - - .. py:attribute:: href - - - .. py:attribute:: input_value - - - .. py:attribute:: label - - - .. py:attribute:: large - - - .. py:attribute:: light - - - .. py:attribute:: link - - - .. py:attribute:: nuxt - - - .. py:attribute:: outlined - - - .. py:attribute:: pill - - - .. py:attribute:: replace - - - .. py:attribute:: ripple - - - .. py:attribute:: small - - - .. py:attribute:: tag - - - .. py:attribute:: target - - - .. py:attribute:: text_color - - - .. py:attribute:: to - - - .. py:attribute:: value - - - .. py:attribute:: x_large - - - .. py:attribute:: x_small - - -.. py:class:: ChipGroup(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: center_active - - - .. py:attribute:: color - - - .. py:attribute:: column - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: mobile_break_point - - - .. py:attribute:: multiple - - - .. py:attribute:: next_icon - - - .. py:attribute:: prev_icon - - - .. py:attribute:: show_arrows - - - .. py:attribute:: value - - -.. py:class:: Col(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: align_self - - - .. py:attribute:: cols - - - .. py:attribute:: lg - - - .. py:attribute:: md - - - .. py:attribute:: offset - - - .. py:attribute:: offset_lg - - - .. py:attribute:: offset_md - - - .. py:attribute:: offset_sm - - - .. py:attribute:: offset_xl - - - .. py:attribute:: order - - - .. py:attribute:: order_lg - - - .. py:attribute:: order_md - - - .. py:attribute:: order_sm - - - .. py:attribute:: order_xl - - - .. py:attribute:: sm - - - .. py:attribute:: tag - - - .. py:attribute:: xl - - -.. py:class:: ColorPicker(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: canvas_height - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: dot_size - - - .. py:attribute:: flat - - - .. py:attribute:: hide_canvas - - - .. py:attribute:: hide_inputs - - - .. py:attribute:: hide_mode_switch - - - .. py:attribute:: light - - - .. py:attribute:: mode - - - .. py:attribute:: show_swatches - - - .. py:attribute:: swatches - - - .. py:attribute:: swatches_max_height - - - .. py:attribute:: value - - - .. py:attribute:: width - - -.. py:class:: ColorPickerCanvas(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: disabled - - - .. py:attribute:: dot_size - - - .. py:attribute:: height - - - .. py:attribute:: width - - -.. py:class:: ColorPickerSwatches(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: swatches - - -.. py:class:: Combobox(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: allow_overflow - - - .. py:attribute:: append_icon - - - .. py:attribute:: append_outer_icon - - - .. py:attribute:: attach - - - .. py:attribute:: auto_select_first - - - .. py:attribute:: autofocus - - - .. py:attribute:: background_color - - - .. py:attribute:: cache_items - - - .. py:attribute:: chips - - - .. py:attribute:: clear_icon - - - .. py:attribute:: clearable - - - .. py:attribute:: color - - - .. py:attribute:: counter - - - .. py:attribute:: dark - - - .. py:attribute:: deletable_chips - - - .. py:attribute:: delimiters - - - .. py:attribute:: dense - - - .. py:attribute:: disable_lookup - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: filled - - - .. py:attribute:: flat - - - .. py:attribute:: full_width - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hide_no_data - - - .. py:attribute:: hide_selected - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: item_color - - - .. py:attribute:: item_disabled - - - .. py:attribute:: item_text - - - .. py:attribute:: item_value - - - .. py:attribute:: items - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: menu_props - - - .. py:attribute:: messages - - - .. py:attribute:: multiple - - - .. py:attribute:: no_data_text - - - .. py:attribute:: no_filter - - - .. py:attribute:: open_on_clear - - - .. py:attribute:: outlined - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: placeholder - - - .. py:attribute:: prefix - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: prepend_inner_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: return_object - - - .. py:attribute:: reverse - - - .. py:attribute:: rounded - - - .. py:attribute:: rules - - - .. py:attribute:: search_input - - - .. py:attribute:: shaped - - - .. py:attribute:: single_line - - - .. py:attribute:: small_chips - - - .. py:attribute:: solo - - - .. py:attribute:: solo_inverted - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: suffix - - - .. py:attribute:: type - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - -.. py:class:: Container(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: fluid - - - .. py:attribute:: id - - - .. py:attribute:: ma_0 - - - .. py:attribute:: ma_1 - - - .. py:attribute:: ma_2 - - - .. py:attribute:: ma_3 - - - .. py:attribute:: ma_4 - - - .. py:attribute:: ma_5 - - - .. py:attribute:: ma_auto - - - .. py:attribute:: mb_0 - - - .. py:attribute:: mb_1 - - - .. py:attribute:: mb_2 - - - .. py:attribute:: mb_3 - - - .. py:attribute:: mb_4 - - - .. py:attribute:: mb_5 - - - .. py:attribute:: mb_auto - - - .. py:attribute:: ml_0 - - - .. py:attribute:: ml_1 - - - .. py:attribute:: ml_2 - - - .. py:attribute:: ml_3 - - - .. py:attribute:: ml_4 - - - .. py:attribute:: ml_5 - - - .. py:attribute:: ml_auto - - - .. py:attribute:: mr_0 - - - .. py:attribute:: mr_1 - - - .. py:attribute:: mr_2 - - - .. py:attribute:: mr_3 - - - .. py:attribute:: mr_4 - - - .. py:attribute:: mr_5 - - - .. py:attribute:: mr_auto - - - .. py:attribute:: mt_0 - - - .. py:attribute:: mt_1 - - - .. py:attribute:: mt_2 - - - .. py:attribute:: mt_3 - - - .. py:attribute:: mt_4 - - - .. py:attribute:: mt_5 - - - .. py:attribute:: mt_auto - - - .. py:attribute:: mx_0 - - - .. py:attribute:: mx_1 - - - .. py:attribute:: mx_2 - - - .. py:attribute:: mx_3 - - - .. py:attribute:: mx_4 - - - .. py:attribute:: mx_5 - - - .. py:attribute:: mx_auto - - - .. py:attribute:: my_0 - - - .. py:attribute:: my_1 - - - .. py:attribute:: my_2 - - - .. py:attribute:: my_3 - - - .. py:attribute:: my_4 - - - .. py:attribute:: my_5 - - - .. py:attribute:: my_auto - - - .. py:attribute:: pa_0 - - - .. py:attribute:: pa_1 - - - .. py:attribute:: pa_2 - - - .. py:attribute:: pa_3 - - - .. py:attribute:: pa_4 - - - .. py:attribute:: pa_5 - - - .. py:attribute:: pa_auto - - - .. py:attribute:: pb_0 - - - .. py:attribute:: pb_1 - - - .. py:attribute:: pb_2 - - - .. py:attribute:: pb_3 - - - .. py:attribute:: pb_4 - - - .. py:attribute:: pb_5 - - - .. py:attribute:: pb_auto - - - .. py:attribute:: pl_0 - - - .. py:attribute:: pl_1 - - - .. py:attribute:: pl_2 - - - .. py:attribute:: pl_3 - - - .. py:attribute:: pl_4 - - - .. py:attribute:: pl_5 - - - .. py:attribute:: pl_auto - - - .. py:attribute:: pr_0 - - - .. py:attribute:: pr_1 - - - .. py:attribute:: pr_2 - - - .. py:attribute:: pr_3 - - - .. py:attribute:: pr_4 - - - .. py:attribute:: pr_5 - - - .. py:attribute:: pr_auto - - - .. py:attribute:: pt_0 - - - .. py:attribute:: pt_1 - - - .. py:attribute:: pt_2 - - - .. py:attribute:: pt_3 - - - .. py:attribute:: pt_4 - - - .. py:attribute:: pt_5 - - - .. py:attribute:: pt_auto - - - .. py:attribute:: px_0 - - - .. py:attribute:: px_1 - - - .. py:attribute:: px_2 - - - .. py:attribute:: px_3 - - - .. py:attribute:: px_4 - - - .. py:attribute:: px_5 - - - .. py:attribute:: px_auto - - - .. py:attribute:: py_0 - - - .. py:attribute:: py_1 - - - .. py:attribute:: py_2 - - - .. py:attribute:: py_3 - - - .. py:attribute:: py_4 - - - .. py:attribute:: py_5 - - - .. py:attribute:: py_auto - - - .. py:attribute:: tag - - -.. py:class:: Content(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: ma_0 - - - .. py:attribute:: ma_1 - - - .. py:attribute:: ma_2 - - - .. py:attribute:: ma_3 - - - .. py:attribute:: ma_4 - - - .. py:attribute:: ma_5 - - - .. py:attribute:: ma_auto - - - .. py:attribute:: mb_0 - - - .. py:attribute:: mb_1 - - - .. py:attribute:: mb_2 - - - .. py:attribute:: mb_3 - - - .. py:attribute:: mb_4 - - - .. py:attribute:: mb_5 - - - .. py:attribute:: mb_auto - - - .. py:attribute:: ml_0 - - - .. py:attribute:: ml_1 - - - .. py:attribute:: ml_2 - - - .. py:attribute:: ml_3 - - - .. py:attribute:: ml_4 - - - .. py:attribute:: ml_5 - - - .. py:attribute:: ml_auto - - - .. py:attribute:: mr_0 - - - .. py:attribute:: mr_1 - - - .. py:attribute:: mr_2 - - - .. py:attribute:: mr_3 - - - .. py:attribute:: mr_4 - - - .. py:attribute:: mr_5 - - - .. py:attribute:: mr_auto - - - .. py:attribute:: mt_0 - - - .. py:attribute:: mt_1 - - - .. py:attribute:: mt_2 - - - .. py:attribute:: mt_3 - - - .. py:attribute:: mt_4 - - - .. py:attribute:: mt_5 - - - .. py:attribute:: mt_auto - - - .. py:attribute:: mx_0 - - - .. py:attribute:: mx_1 - - - .. py:attribute:: mx_2 - - - .. py:attribute:: mx_3 - - - .. py:attribute:: mx_4 - - - .. py:attribute:: mx_5 - - - .. py:attribute:: mx_auto - - - .. py:attribute:: my_0 - - - .. py:attribute:: my_1 - - - .. py:attribute:: my_2 - - - .. py:attribute:: my_3 - - - .. py:attribute:: my_4 - - - .. py:attribute:: my_5 - - - .. py:attribute:: my_auto - - - .. py:attribute:: pa_0 - - - .. py:attribute:: pa_1 - - - .. py:attribute:: pa_2 - - - .. py:attribute:: pa_3 - - - .. py:attribute:: pa_4 - - - .. py:attribute:: pa_5 - - - .. py:attribute:: pa_auto - - - .. py:attribute:: pb_0 - - - .. py:attribute:: pb_1 - - - .. py:attribute:: pb_2 - - - .. py:attribute:: pb_3 - - - .. py:attribute:: pb_4 - - - .. py:attribute:: pb_5 - - - .. py:attribute:: pb_auto - - - .. py:attribute:: pl_0 - - - .. py:attribute:: pl_1 - - - .. py:attribute:: pl_2 - - - .. py:attribute:: pl_3 - - - .. py:attribute:: pl_4 - - - .. py:attribute:: pl_5 - - - .. py:attribute:: pl_auto - - - .. py:attribute:: pr_0 - - - .. py:attribute:: pr_1 - - - .. py:attribute:: pr_2 - - - .. py:attribute:: pr_3 - - - .. py:attribute:: pr_4 - - - .. py:attribute:: pr_5 - - - .. py:attribute:: pr_auto - - - .. py:attribute:: pt_0 - - - .. py:attribute:: pt_1 - - - .. py:attribute:: pt_2 - - - .. py:attribute:: pt_3 - - - .. py:attribute:: pt_4 - - - .. py:attribute:: pt_5 - - - .. py:attribute:: pt_auto - - - .. py:attribute:: px_0 - - - .. py:attribute:: px_1 - - - .. py:attribute:: px_2 - - - .. py:attribute:: px_3 - - - .. py:attribute:: px_4 - - - .. py:attribute:: px_5 - - - .. py:attribute:: px_auto - - - .. py:attribute:: py_0 - - - .. py:attribute:: py_1 - - - .. py:attribute:: py_2 - - - .. py:attribute:: py_3 - - - .. py:attribute:: py_4 - - - .. py:attribute:: py_5 - - - .. py:attribute:: py_auto - - - .. py:attribute:: tag - - -.. py:class:: Counter(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: max - - - .. py:attribute:: value - - -.. py:class:: Data(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: disable_filtering - - - .. py:attribute:: disable_pagination - - - .. py:attribute:: disable_sort - - - .. py:attribute:: group_by - - - .. py:attribute:: group_desc - - - .. py:attribute:: items - - - .. py:attribute:: items_per_page - - - .. py:attribute:: locale - - - .. py:attribute:: multi_sort - - - .. py:attribute:: must_sort - - - .. py:attribute:: options - - - .. py:attribute:: page - - - .. py:attribute:: search - - - .. py:attribute:: server_items_length - - - .. py:attribute:: sort_by - - - .. py:attribute:: sort_desc - - -.. py:class:: DataFooter(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: disable_items_per_page - - - .. py:attribute:: disable_pagination - - - .. py:attribute:: first_icon - - - .. py:attribute:: items_per_page_all_text - - - .. py:attribute:: items_per_page_options - - - .. py:attribute:: items_per_page_text - - - .. py:attribute:: last_icon - - - .. py:attribute:: next_icon - - - .. py:attribute:: options - - - .. py:attribute:: page_text - - - .. py:attribute:: pagination - - - .. py:attribute:: prev_icon - - - .. py:attribute:: show_current_page - - - .. py:attribute:: show_first_last_page - - -.. py:class:: DataIterator(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: dark - - - .. py:attribute:: disable_filtering - - - .. py:attribute:: disable_pagination - - - .. py:attribute:: disable_sort - - - .. py:attribute:: expanded - - - .. py:attribute:: footer_props - - - .. py:attribute:: group_by - - - .. py:attribute:: group_desc - - - .. py:attribute:: hide_default_footer - - - .. py:attribute:: item_key - - - .. py:attribute:: items - - - .. py:attribute:: items_per_page - - - .. py:attribute:: light - - - .. py:attribute:: loading - - - .. py:attribute:: loading_text - - - .. py:attribute:: locale - - - .. py:attribute:: mobile_breakpoint - - - .. py:attribute:: multi_sort - - - .. py:attribute:: must_sort - - - .. py:attribute:: no_data_text - - - .. py:attribute:: no_results_text - - - .. py:attribute:: options - - - .. py:attribute:: page - - - .. py:attribute:: search - - - .. py:attribute:: selectable_key - - - .. py:attribute:: server_items_length - - - .. py:attribute:: single_expand - - - .. py:attribute:: single_select - - - .. py:attribute:: sort_by - - - .. py:attribute:: sort_desc - - - .. py:attribute:: value - - -.. py:class:: DataTable(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: calculate_widths - - - .. py:attribute:: caption - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disable_filtering - - - .. py:attribute:: disable_pagination - - - .. py:attribute:: disable_sort - - - .. py:attribute:: expand_icon - - - .. py:attribute:: expanded - - - .. py:attribute:: fixed_header - - - .. py:attribute:: footer_props - - - .. py:attribute:: group_by - - - .. py:attribute:: group_desc - - - .. py:attribute:: header_props - - - .. py:attribute:: headers - - - .. py:attribute:: headers_length - - - .. py:attribute:: height - - - .. py:attribute:: hide_default_footer - - - .. py:attribute:: hide_default_header - - - .. py:attribute:: item_key - - - .. py:attribute:: items - - - .. py:attribute:: items_per_page - - - .. py:attribute:: light - - - .. py:attribute:: loading - - - .. py:attribute:: loading_text - - - .. py:attribute:: locale - - - .. py:attribute:: mobile_breakpoint - - - .. py:attribute:: multi_sort - - - .. py:attribute:: must_sort - - - .. py:attribute:: no_data_text - - - .. py:attribute:: no_results_text - - - .. py:attribute:: options - - - .. py:attribute:: page - - - .. py:attribute:: search - - - .. py:attribute:: selectable_key - - - .. py:attribute:: server_items_length - - - .. py:attribute:: show_expand - - - .. py:attribute:: show_group_by - - - .. py:attribute:: show_select - - - .. py:attribute:: single_expand - - - .. py:attribute:: single_select - - - .. py:attribute:: sort_by - - - .. py:attribute:: sort_desc - - - .. py:attribute:: value - - -.. py:class:: DataTableHeader(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: mobile - - -.. py:class:: DatePicker(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: event_color - - - .. py:attribute:: events - - - .. py:attribute:: first_day_of_week - - - .. py:attribute:: full_width - - - .. py:attribute:: header_color - - - .. py:attribute:: landscape - - - .. py:attribute:: light - - - .. py:attribute:: locale - - - .. py:attribute:: locale_first_day_of_year - - - .. py:attribute:: max - - - .. py:attribute:: min - - - .. py:attribute:: multiple - - - .. py:attribute:: next_icon - - - .. py:attribute:: no_title - - - .. py:attribute:: picker_date - - - .. py:attribute:: prev_icon - - - .. py:attribute:: range - - - .. py:attribute:: reactive - - - .. py:attribute:: readonly - - - .. py:attribute:: scrollable - - - .. py:attribute:: selected_items_text - - - .. py:attribute:: show_current - - - .. py:attribute:: show_week - - - .. py:attribute:: type - - - .. py:attribute:: value - - - .. py:attribute:: width - - - .. py:attribute:: year_icon - - -.. py:class:: DatePickerDateTable(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: current - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: event_color - - - .. py:attribute:: events - - - .. py:attribute:: first_day_of_week - - - .. py:attribute:: light - - - .. py:attribute:: locale - - - .. py:attribute:: locale_first_day_of_year - - - .. py:attribute:: max - - - .. py:attribute:: min - - - .. py:attribute:: range - - - .. py:attribute:: readonly - - - .. py:attribute:: scrollable - - - .. py:attribute:: show_week - - - .. py:attribute:: table_date - - - .. py:attribute:: value - - -.. py:class:: DatePickerHeader(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: light - - - .. py:attribute:: locale - - - .. py:attribute:: max - - - .. py:attribute:: min - - - .. py:attribute:: next_icon - - - .. py:attribute:: prev_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: value - - -.. py:class:: DatePickerMonthTable(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: current - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: event_color - - - .. py:attribute:: events - - - .. py:attribute:: light - - - .. py:attribute:: locale - - - .. py:attribute:: max - - - .. py:attribute:: min - - - .. py:attribute:: range - - - .. py:attribute:: readonly - - - .. py:attribute:: scrollable - - - .. py:attribute:: table_date - - - .. py:attribute:: value - - -.. py:class:: DatePickerTitle(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: date - - - .. py:attribute:: disabled - - - .. py:attribute:: readonly - - - .. py:attribute:: selecting_year - - - .. py:attribute:: value - - - .. py:attribute:: year - - - .. py:attribute:: year_icon - - -.. py:class:: DatePickerYears(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: locale - - - .. py:attribute:: max - - - .. py:attribute:: min - - - .. py:attribute:: readonly - - - .. py:attribute:: value - - -.. py:class:: Dialog(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: activator - - - .. py:attribute:: attach - - - .. py:attribute:: close_delay - - - .. py:attribute:: content_class - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: fullscreen - - - .. py:attribute:: hide_overlay - - - .. py:attribute:: internal_activator - - - .. py:attribute:: light - - - .. py:attribute:: max_width - - - .. py:attribute:: no_click_animation - - - .. py:attribute:: open_delay - - - .. py:attribute:: open_on_hover - - - .. py:attribute:: origin - - - .. py:attribute:: overlay_color - - - .. py:attribute:: overlay_opacity - - - .. py:attribute:: persistent - - - .. py:attribute:: retain_focus - - - .. py:attribute:: return_value - - - .. py:attribute:: scrollable - - - .. py:attribute:: transition - - - .. py:attribute:: value - - - .. py:attribute:: width - - -.. py:class:: DialogBottomTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: DialogTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: Divider(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: dark - - - .. py:attribute:: inset - - - .. py:attribute:: light - - - .. py:attribute:: vertical - - -.. py:class:: EditDialog(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: cancel_text - - - .. py:attribute:: dark - - - .. py:attribute:: eager - - - .. py:attribute:: large - - - .. py:attribute:: light - - - .. py:attribute:: persistent - - - .. py:attribute:: return_value - - - .. py:attribute:: save_text - - - .. py:attribute:: transition - - -.. py:class:: ExpandTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: mode - - -.. py:class:: ExpandXTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: mode - - -.. py:class:: ExpansionPanel(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: disabled - - - .. py:attribute:: readonly - - -.. py:class:: ExpansionPanelContent(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: eager - - -.. py:class:: ExpansionPanelHeader(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: disable_icon_rotate - - - .. py:attribute:: expand_icon - - - .. py:attribute:: hide_actions - - - .. py:attribute:: ripple - - -.. py:class:: ExpansionPanels(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: accordion - - - .. py:attribute:: active_class - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: flat - - - .. py:attribute:: focusable - - - .. py:attribute:: hover - - - .. py:attribute:: inset - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: multiple - - - .. py:attribute:: popout - - - .. py:attribute:: readonly - - - .. py:attribute:: tile - - - .. py:attribute:: value - - -.. py:class:: FabTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: FadeTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: FileInput(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: append_outer_icon - - - .. py:attribute:: autofocus - - - .. py:attribute:: background_color - - - .. py:attribute:: chips - - - .. py:attribute:: clear_icon - - - .. py:attribute:: clearable - - - .. py:attribute:: color - - - .. py:attribute:: counter - - - .. py:attribute:: counter_size_string - - - .. py:attribute:: counter_string - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: filled - - - .. py:attribute:: flat - - - .. py:attribute:: full_width - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: messages - - - .. py:attribute:: multiple - - - .. py:attribute:: outlined - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: placeholder - - - .. py:attribute:: prefix - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: prepend_inner_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: reverse - - - .. py:attribute:: rounded - - - .. py:attribute:: rules - - - .. py:attribute:: shaped - - - .. py:attribute:: show_size - - - .. py:attribute:: single_line - - - .. py:attribute:: small_chips - - - .. py:attribute:: solo - - - .. py:attribute:: solo_inverted - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: suffix - - - .. py:attribute:: truncate_length - - - .. py:attribute:: type - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - -.. py:class:: Flex(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: align_self_baseline - - - .. py:attribute:: align_self_center - - - .. py:attribute:: align_self_end - - - .. py:attribute:: align_self_start - - - .. py:attribute:: grow - - - .. py:attribute:: id - - - .. py:attribute:: lg1 - - - .. py:attribute:: lg10 - - - .. py:attribute:: lg11 - - - .. py:attribute:: lg12 - - - .. py:attribute:: lg2 - - - .. py:attribute:: lg3 - - - .. py:attribute:: lg4 - - - .. py:attribute:: lg5 - - - .. py:attribute:: lg6 - - - .. py:attribute:: lg7 - - - .. py:attribute:: lg8 - - - .. py:attribute:: lg9 - - - .. py:attribute:: ma_0 - - - .. py:attribute:: ma_1 - - - .. py:attribute:: ma_2 - - - .. py:attribute:: ma_3 - - - .. py:attribute:: ma_4 - - - .. py:attribute:: ma_5 - - - .. py:attribute:: ma_auto - - - .. py:attribute:: mb_0 - - - .. py:attribute:: mb_1 - - - .. py:attribute:: mb_2 - - - .. py:attribute:: mb_3 - - - .. py:attribute:: mb_4 - - - .. py:attribute:: mb_5 - - - .. py:attribute:: mb_auto - - - .. py:attribute:: md1 - - - .. py:attribute:: md10 - - - .. py:attribute:: md11 - - - .. py:attribute:: md12 - - - .. py:attribute:: md2 - - - .. py:attribute:: md3 - - - .. py:attribute:: md4 - - - .. py:attribute:: md5 - - - .. py:attribute:: md6 - - - .. py:attribute:: md7 - - - .. py:attribute:: md8 - - - .. py:attribute:: md9 - - - .. py:attribute:: ml_0 - - - .. py:attribute:: ml_1 - - - .. py:attribute:: ml_2 - - - .. py:attribute:: ml_3 - - - .. py:attribute:: ml_4 - - - .. py:attribute:: ml_5 - - - .. py:attribute:: ml_auto - - - .. py:attribute:: mr_0 - - - .. py:attribute:: mr_1 - - - .. py:attribute:: mr_2 - - - .. py:attribute:: mr_3 - - - .. py:attribute:: mr_4 - - - .. py:attribute:: mr_5 - - - .. py:attribute:: mr_auto - - - .. py:attribute:: mt_0 - - - .. py:attribute:: mt_1 - - - .. py:attribute:: mt_2 - - - .. py:attribute:: mt_3 - - - .. py:attribute:: mt_4 - - - .. py:attribute:: mt_5 - - - .. py:attribute:: mt_auto - - - .. py:attribute:: mx_0 - - - .. py:attribute:: mx_1 - - - .. py:attribute:: mx_2 - - - .. py:attribute:: mx_3 - - - .. py:attribute:: mx_4 - - - .. py:attribute:: mx_5 - - - .. py:attribute:: mx_auto - - - .. py:attribute:: my_0 - - - .. py:attribute:: my_1 - - - .. py:attribute:: my_2 - - - .. py:attribute:: my_3 - - - .. py:attribute:: my_4 - - - .. py:attribute:: my_5 - - - .. py:attribute:: my_auto - - - .. py:attribute:: offset_lg0 - - - .. py:attribute:: offset_lg1 - - - .. py:attribute:: offset_lg10 - - - .. py:attribute:: offset_lg11 - - - .. py:attribute:: offset_lg12 - - - .. py:attribute:: offset_lg2 - - - .. py:attribute:: offset_lg3 - - - .. py:attribute:: offset_lg4 - - - .. py:attribute:: offset_lg5 - - - .. py:attribute:: offset_lg6 - - - .. py:attribute:: offset_lg7 - - - .. py:attribute:: offset_lg8 - - - .. py:attribute:: offset_lg9 - - - .. py:attribute:: offset_md0 - - - .. py:attribute:: offset_md1 - - - .. py:attribute:: offset_md10 - - - .. py:attribute:: offset_md11 - - - .. py:attribute:: offset_md12 - - - .. py:attribute:: offset_md2 - - - .. py:attribute:: offset_md3 - - - .. py:attribute:: offset_md4 - - - .. py:attribute:: offset_md5 - - - .. py:attribute:: offset_md6 - - - .. py:attribute:: offset_md7 - - - .. py:attribute:: offset_md8 - - - .. py:attribute:: offset_md9 - - - .. py:attribute:: offset_sm0 - - - .. py:attribute:: offset_sm1 - - - .. py:attribute:: offset_sm10 - - - .. py:attribute:: offset_sm11 - - - .. py:attribute:: offset_sm12 - - - .. py:attribute:: offset_sm2 - - - .. py:attribute:: offset_sm3 - - - .. py:attribute:: offset_sm4 - - - .. py:attribute:: offset_sm5 - - - .. py:attribute:: offset_sm6 - - - .. py:attribute:: offset_sm7 - - - .. py:attribute:: offset_sm8 - - - .. py:attribute:: offset_sm9 - - - .. py:attribute:: offset_xl0 - - - .. py:attribute:: offset_xl1 - - - .. py:attribute:: offset_xl10 - - - .. py:attribute:: offset_xl11 - - - .. py:attribute:: offset_xl12 - - - .. py:attribute:: offset_xl2 - - - .. py:attribute:: offset_xl3 - - - .. py:attribute:: offset_xl4 - - - .. py:attribute:: offset_xl5 - - - .. py:attribute:: offset_xl6 - - - .. py:attribute:: offset_xl7 - - - .. py:attribute:: offset_xl8 - - - .. py:attribute:: offset_xl9 - - - .. py:attribute:: offset_xs0 - - - .. py:attribute:: offset_xs1 - - - .. py:attribute:: offset_xs10 - - - .. py:attribute:: offset_xs11 - - - .. py:attribute:: offset_xs12 - - - .. py:attribute:: offset_xs2 - - - .. py:attribute:: offset_xs3 - - - .. py:attribute:: offset_xs4 - - - .. py:attribute:: offset_xs5 - - - .. py:attribute:: offset_xs6 - - - .. py:attribute:: offset_xs7 - - - .. py:attribute:: offset_xs8 - - - .. py:attribute:: offset_xs9 - - - .. py:attribute:: order_lg1 - - - .. py:attribute:: order_lg10 - - - .. py:attribute:: order_lg11 - - - .. py:attribute:: order_lg12 - - - .. py:attribute:: order_lg2 - - - .. py:attribute:: order_lg3 - - - .. py:attribute:: order_lg4 - - - .. py:attribute:: order_lg5 - - - .. py:attribute:: order_lg6 - - - .. py:attribute:: order_lg7 - - - .. py:attribute:: order_lg8 - - - .. py:attribute:: order_lg9 - - - .. py:attribute:: order_md1 - - - .. py:attribute:: order_md10 - - - .. py:attribute:: order_md11 - - - .. py:attribute:: order_md12 - - - .. py:attribute:: order_md2 - - - .. py:attribute:: order_md3 - - - .. py:attribute:: order_md4 - - - .. py:attribute:: order_md5 - - - .. py:attribute:: order_md6 - - - .. py:attribute:: order_md7 - - - .. py:attribute:: order_md8 - - - .. py:attribute:: order_md9 - - - .. py:attribute:: order_sm1 - - - .. py:attribute:: order_sm10 - - - .. py:attribute:: order_sm11 - - - .. py:attribute:: order_sm12 - - - .. py:attribute:: order_sm2 - - - .. py:attribute:: order_sm3 - - - .. py:attribute:: order_sm4 - - - .. py:attribute:: order_sm5 - - - .. py:attribute:: order_sm6 - - - .. py:attribute:: order_sm7 - - - .. py:attribute:: order_sm8 - - - .. py:attribute:: order_sm9 - - - .. py:attribute:: order_xl1 - - - .. py:attribute:: order_xl10 - - - .. py:attribute:: order_xl11 - - - .. py:attribute:: order_xl12 - - - .. py:attribute:: order_xl2 - - - .. py:attribute:: order_xl3 - - - .. py:attribute:: order_xl4 - - - .. py:attribute:: order_xl5 - - - .. py:attribute:: order_xl6 - - - .. py:attribute:: order_xl7 - - - .. py:attribute:: order_xl8 - - - .. py:attribute:: order_xl9 - - - .. py:attribute:: order_xs1 - - - .. py:attribute:: order_xs10 - - - .. py:attribute:: order_xs11 - - - .. py:attribute:: order_xs12 - - - .. py:attribute:: order_xs2 - - - .. py:attribute:: order_xs3 - - - .. py:attribute:: order_xs4 - - - .. py:attribute:: order_xs5 - - - .. py:attribute:: order_xs6 - - - .. py:attribute:: order_xs7 - - - .. py:attribute:: order_xs8 - - - .. py:attribute:: order_xs9 - - - .. py:attribute:: pa_0 - - - .. py:attribute:: pa_1 - - - .. py:attribute:: pa_2 - - - .. py:attribute:: pa_3 - - - .. py:attribute:: pa_4 - - - .. py:attribute:: pa_5 - - - .. py:attribute:: pa_auto - - - .. py:attribute:: pb_0 - - - .. py:attribute:: pb_1 - - - .. py:attribute:: pb_2 - - - .. py:attribute:: pb_3 - - - .. py:attribute:: pb_4 - - - .. py:attribute:: pb_5 - - - .. py:attribute:: pb_auto - - - .. py:attribute:: pl_0 - - - .. py:attribute:: pl_1 - - - .. py:attribute:: pl_2 - - - .. py:attribute:: pl_3 - - - .. py:attribute:: pl_4 - - - .. py:attribute:: pl_5 - - - .. py:attribute:: pl_auto - - - .. py:attribute:: pr_0 - - - .. py:attribute:: pr_1 - - - .. py:attribute:: pr_2 - - - .. py:attribute:: pr_3 - - - .. py:attribute:: pr_4 - - - .. py:attribute:: pr_5 - - - .. py:attribute:: pr_auto - - - .. py:attribute:: pt_0 - - - .. py:attribute:: pt_1 - - - .. py:attribute:: pt_2 - - - .. py:attribute:: pt_3 - - - .. py:attribute:: pt_4 - - - .. py:attribute:: pt_5 - - - .. py:attribute:: pt_auto - - - .. py:attribute:: px_0 - - - .. py:attribute:: px_1 - - - .. py:attribute:: px_2 - - - .. py:attribute:: px_3 - - - .. py:attribute:: px_4 - - - .. py:attribute:: px_5 - - - .. py:attribute:: px_auto - - - .. py:attribute:: py_0 - - - .. py:attribute:: py_1 - - - .. py:attribute:: py_2 - - - .. py:attribute:: py_3 - - - .. py:attribute:: py_4 - - - .. py:attribute:: py_5 - - - .. py:attribute:: py_auto - - - .. py:attribute:: shrink - - - .. py:attribute:: sm1 - - - .. py:attribute:: sm10 - - - .. py:attribute:: sm11 - - - .. py:attribute:: sm12 - - - .. py:attribute:: sm2 - - - .. py:attribute:: sm3 - - - .. py:attribute:: sm4 - - - .. py:attribute:: sm5 - - - .. py:attribute:: sm6 - - - .. py:attribute:: sm7 - - - .. py:attribute:: sm8 - - - .. py:attribute:: sm9 - - - .. py:attribute:: tag - - - .. py:attribute:: xl1 - - - .. py:attribute:: xl10 - - - .. py:attribute:: xl11 - - - .. py:attribute:: xl12 - - - .. py:attribute:: xl2 - - - .. py:attribute:: xl3 - - - .. py:attribute:: xl4 - - - .. py:attribute:: xl5 - - - .. py:attribute:: xl6 - - - .. py:attribute:: xl7 - - - .. py:attribute:: xl8 - - - .. py:attribute:: xl9 - - - .. py:attribute:: xs1 - - - .. py:attribute:: xs10 - - - .. py:attribute:: xs11 - - - .. py:attribute:: xs12 - - - .. py:attribute:: xs2 - - - .. py:attribute:: xs3 - - - .. py:attribute:: xs4 - - - .. py:attribute:: xs5 - - - .. py:attribute:: xs6 - - - .. py:attribute:: xs7 - - - .. py:attribute:: xs8 - - - .. py:attribute:: xs9 - - -.. py:class:: Footer(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: app - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: elevation - - - .. py:attribute:: fixed - - - .. py:attribute:: height - - - .. py:attribute:: inset - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: padless - - - .. py:attribute:: tag - - - .. py:attribute:: tile - - - .. py:attribute:: width - - -.. py:class:: Form(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: lazy_validation - - - .. py:attribute:: value - - -.. py:class:: Hover(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: close_delay - - - .. py:attribute:: disabled - - - .. py:attribute:: open_delay - - - .. py:attribute:: value - - -.. py:class:: Icon(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: large - - - .. py:attribute:: left - - - .. py:attribute:: light - - - .. py:attribute:: right - - - .. py:attribute:: size - - - .. py:attribute:: small - - - .. py:attribute:: tag - - - .. py:attribute:: x_large - - - .. py:attribute:: x_small - - -.. py:class:: Img(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: alt - - - .. py:attribute:: aspect_ratio - - - .. py:attribute:: contain - - - .. py:attribute:: eager - - - .. py:attribute:: gradient - - - .. py:attribute:: height - - - .. py:attribute:: lazy_src - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: options - - - .. py:attribute:: position - - - .. py:attribute:: sizes - - - .. py:attribute:: src - - - .. py:attribute:: srcset - - - .. py:attribute:: transition - - - .. py:attribute:: width - - -.. py:class:: Input(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: background_color - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loading - - - .. py:attribute:: messages - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: rules - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - -.. py:class:: Item(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: disabled - - - .. py:attribute:: value - - -.. py:class:: ItemGroup(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: multiple - - - .. py:attribute:: value - - -.. py:class:: Label(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: focused - - - .. py:attribute:: for_ - - - .. py:attribute:: left - - - .. py:attribute:: light - - - .. py:attribute:: right - - - .. py:attribute:: value - - -.. py:class:: Layout(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: align_baseline - - - .. py:attribute:: align_center - - - .. py:attribute:: align_content_center - - - .. py:attribute:: align_content_end - - - .. py:attribute:: align_content_space_around - - - .. py:attribute:: align_content_space_between - - - .. py:attribute:: align_content_start - - - .. py:attribute:: align_end - - - .. py:attribute:: align_start - - - .. py:attribute:: column - - - .. py:attribute:: d_block - - - .. py:attribute:: d_contents - - - .. py:attribute:: d_flex - - - .. py:attribute:: d_grid - - - .. py:attribute:: d_inherit - - - .. py:attribute:: d_initial - - - .. py:attribute:: d_inline - - - .. py:attribute:: d_inline_block - - - .. py:attribute:: d_inline_flex - - - .. py:attribute:: d_inline_grid - - - .. py:attribute:: d_inline_table - - - .. py:attribute:: d_list_item - - - .. py:attribute:: d_none - - - .. py:attribute:: d_run_in - - - .. py:attribute:: d_table - - - .. py:attribute:: d_table_caption - - - .. py:attribute:: d_table_cell - - - .. py:attribute:: d_table_column - - - .. py:attribute:: d_table_column_group - - - .. py:attribute:: d_table_footer_group - - - .. py:attribute:: d_table_header_group - - - .. py:attribute:: d_table_row - - - .. py:attribute:: d_table_row_group - - - .. py:attribute:: fill_height - - - .. py:attribute:: id - - - .. py:attribute:: justify_center - - - .. py:attribute:: justify_end - - - .. py:attribute:: justify_space_around - - - .. py:attribute:: justify_space_between - - - .. py:attribute:: justify_start - - - .. py:attribute:: ma_0 - - - .. py:attribute:: ma_1 - - - .. py:attribute:: ma_2 - - - .. py:attribute:: ma_3 - - - .. py:attribute:: ma_4 - - - .. py:attribute:: ma_5 - - - .. py:attribute:: ma_auto - - - .. py:attribute:: mb_0 - - - .. py:attribute:: mb_1 - - - .. py:attribute:: mb_2 - - - .. py:attribute:: mb_3 - - - .. py:attribute:: mb_4 - - - .. py:attribute:: mb_5 - - - .. py:attribute:: mb_auto - - - .. py:attribute:: ml_0 - - - .. py:attribute:: ml_1 - - - .. py:attribute:: ml_2 - - - .. py:attribute:: ml_3 - - - .. py:attribute:: ml_4 - - - .. py:attribute:: ml_5 - - - .. py:attribute:: ml_auto - - - .. py:attribute:: mr_0 - - - .. py:attribute:: mr_1 - - - .. py:attribute:: mr_2 - - - .. py:attribute:: mr_3 - - - .. py:attribute:: mr_4 - - - .. py:attribute:: mr_5 - - - .. py:attribute:: mr_auto - - - .. py:attribute:: mt_0 - - - .. py:attribute:: mt_1 - - - .. py:attribute:: mt_2 - - - .. py:attribute:: mt_3 - - - .. py:attribute:: mt_4 - - - .. py:attribute:: mt_5 - - - .. py:attribute:: mt_auto - - - .. py:attribute:: mx_0 - - - .. py:attribute:: mx_1 - - - .. py:attribute:: mx_2 - - - .. py:attribute:: mx_3 - - - .. py:attribute:: mx_4 - - - .. py:attribute:: mx_5 - - - .. py:attribute:: mx_auto - - - .. py:attribute:: my_0 - - - .. py:attribute:: my_1 - - - .. py:attribute:: my_2 - - - .. py:attribute:: my_3 - - - .. py:attribute:: my_4 - - - .. py:attribute:: my_5 - - - .. py:attribute:: my_auto - - - .. py:attribute:: pa_0 - - - .. py:attribute:: pa_1 - - - .. py:attribute:: pa_2 - - - .. py:attribute:: pa_3 - - - .. py:attribute:: pa_4 - - - .. py:attribute:: pa_5 - - - .. py:attribute:: pa_auto - - - .. py:attribute:: pb_0 - - - .. py:attribute:: pb_1 - - - .. py:attribute:: pb_2 - - - .. py:attribute:: pb_3 - - - .. py:attribute:: pb_4 - - - .. py:attribute:: pb_5 - - - .. py:attribute:: pb_auto - - - .. py:attribute:: pl_0 - - - .. py:attribute:: pl_1 - - - .. py:attribute:: pl_2 - - - .. py:attribute:: pl_3 - - - .. py:attribute:: pl_4 - - - .. py:attribute:: pl_5 - - - .. py:attribute:: pl_auto - - - .. py:attribute:: pr_0 - - - .. py:attribute:: pr_1 - - - .. py:attribute:: pr_2 - - - .. py:attribute:: pr_3 - - - .. py:attribute:: pr_4 - - - .. py:attribute:: pr_5 - - - .. py:attribute:: pr_auto - - - .. py:attribute:: pt_0 - - - .. py:attribute:: pt_1 - - - .. py:attribute:: pt_2 - - - .. py:attribute:: pt_3 - - - .. py:attribute:: pt_4 - - - .. py:attribute:: pt_5 - - - .. py:attribute:: pt_auto - - - .. py:attribute:: px_0 - - - .. py:attribute:: px_1 - - - .. py:attribute:: px_2 - - - .. py:attribute:: px_3 - - - .. py:attribute:: px_4 - - - .. py:attribute:: px_5 - - - .. py:attribute:: px_auto - - - .. py:attribute:: py_0 - - - .. py:attribute:: py_1 - - - .. py:attribute:: py_2 - - - .. py:attribute:: py_3 - - - .. py:attribute:: py_4 - - - .. py:attribute:: py_5 - - - .. py:attribute:: py_auto - - - .. py:attribute:: reverse - - - .. py:attribute:: row - - - .. py:attribute:: tag - - - .. py:attribute:: wrap - - -.. py:class:: Lazy(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: min_height - - - .. py:attribute:: options - - - .. py:attribute:: tag - - - .. py:attribute:: transition - - - .. py:attribute:: value - - -.. py:class:: List(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: elevation - - - .. py:attribute:: expand - - - .. py:attribute:: flat - - - .. py:attribute:: height - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: nav - - - .. py:attribute:: rounded - - - .. py:attribute:: shaped - - - .. py:attribute:: subheader - - - .. py:attribute:: tag - - - .. py:attribute:: three_line - - - .. py:attribute:: tile - - - .. py:attribute:: two_line - - - .. py:attribute:: width - - -.. py:class:: ListGroup(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: append_icon - - - .. py:attribute:: color - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: group - - - .. py:attribute:: no_action - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: ripple - - - .. py:attribute:: sub_group - - - .. py:attribute:: value - - -.. py:class:: ListItem(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: append - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: exact - - - .. py:attribute:: exact_active_class - - - .. py:attribute:: href - - - .. py:attribute:: inactive - - - .. py:attribute:: input_value - - - .. py:attribute:: light - - - .. py:attribute:: link - - - .. py:attribute:: nuxt - - - .. py:attribute:: replace - - - .. py:attribute:: ripple - - - .. py:attribute:: selectable - - - .. py:attribute:: tag - - - .. py:attribute:: target - - - .. py:attribute:: three_line - - - .. py:attribute:: to - - - .. py:attribute:: two_line - - - .. py:attribute:: value - - -.. py:class:: ListItemAction(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: ListItemActionText(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: ListItemAvatar(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: height - - - .. py:attribute:: horizontal - - - .. py:attribute:: left - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: right - - - .. py:attribute:: size - - - .. py:attribute:: tile - - - .. py:attribute:: width - - -.. py:class:: ListItemContent(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: ListItemGroup(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: multiple - - - .. py:attribute:: value - - -.. py:class:: ListItemIcon(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: ListItemSubtitle(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: ListItemTitle(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: Menu(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: activator - - - .. py:attribute:: allow_overflow - - - .. py:attribute:: attach - - - .. py:attribute:: auto - - - .. py:attribute:: bottom - - - .. py:attribute:: close_delay - - - .. py:attribute:: close_on_click - - - .. py:attribute:: close_on_content_click - - - .. py:attribute:: content_class - - - .. py:attribute:: dark - - - .. py:attribute:: disable_keys - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: fixed - - - .. py:attribute:: internal_activator - - - .. py:attribute:: left - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_width - - - .. py:attribute:: nudge_bottom - - - .. py:attribute:: nudge_left - - - .. py:attribute:: nudge_right - - - .. py:attribute:: nudge_top - - - .. py:attribute:: nudge_width - - - .. py:attribute:: offset_overflow - - - .. py:attribute:: offset_x - - - .. py:attribute:: offset_y - - - .. py:attribute:: open_delay - - - .. py:attribute:: open_on_click - - - .. py:attribute:: open_on_hover - - - .. py:attribute:: origin - - - .. py:attribute:: position_x - - - .. py:attribute:: position_y - - - .. py:attribute:: return_value - - - .. py:attribute:: right - - - .. py:attribute:: top - - - .. py:attribute:: transition - - - .. py:attribute:: value - - - .. py:attribute:: z_index - - -.. py:class:: MenuTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: Messages(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: value - - -.. py:class:: NavigationDrawer(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: app - - - .. py:attribute:: bottom - - - .. py:attribute:: clipped - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disable_resize_watcher - - - .. py:attribute:: disable_route_watcher - - - .. py:attribute:: expand_on_hover - - - .. py:attribute:: fixed - - - .. py:attribute:: floating - - - .. py:attribute:: height - - - .. py:attribute:: hide_overlay - - - .. py:attribute:: light - - - .. py:attribute:: mini_variant - - - .. py:attribute:: mini_variant_width - - - .. py:attribute:: mobile_break_point - - - .. py:attribute:: overlay_color - - - .. py:attribute:: overlay_opacity - - - .. py:attribute:: permanent - - - .. py:attribute:: right - - - .. py:attribute:: src - - - .. py:attribute:: stateless - - - .. py:attribute:: tag - - - .. py:attribute:: temporary - - - .. py:attribute:: touchless - - - .. py:attribute:: value - - - .. py:attribute:: width - - -.. py:class:: OverflowBtn(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: allow_overflow - - - .. py:attribute:: append_icon - - - .. py:attribute:: append_outer_icon - - - .. py:attribute:: attach - - - .. py:attribute:: auto_select_first - - - .. py:attribute:: autofocus - - - .. py:attribute:: background_color - - - .. py:attribute:: cache_items - - - .. py:attribute:: chips - - - .. py:attribute:: clear_icon - - - .. py:attribute:: clearable - - - .. py:attribute:: color - - - .. py:attribute:: counter - - - .. py:attribute:: dark - - - .. py:attribute:: deletable_chips - - - .. py:attribute:: dense - - - .. py:attribute:: disable_lookup - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: editable - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: filled - - - .. py:attribute:: flat - - - .. py:attribute:: full_width - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hide_no_data - - - .. py:attribute:: hide_selected - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: item_color - - - .. py:attribute:: item_disabled - - - .. py:attribute:: item_text - - - .. py:attribute:: item_value - - - .. py:attribute:: items - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: menu_props - - - .. py:attribute:: messages - - - .. py:attribute:: multiple - - - .. py:attribute:: no_data_text - - - .. py:attribute:: no_filter - - - .. py:attribute:: open_on_clear - - - .. py:attribute:: outlined - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: placeholder - - - .. py:attribute:: prefix - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: prepend_inner_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: return_object - - - .. py:attribute:: reverse - - - .. py:attribute:: rounded - - - .. py:attribute:: rules - - - .. py:attribute:: search_input - - - .. py:attribute:: segmented - - - .. py:attribute:: shaped - - - .. py:attribute:: single_line - - - .. py:attribute:: small_chips - - - .. py:attribute:: solo - - - .. py:attribute:: solo_inverted - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: suffix - - - .. py:attribute:: type - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - -.. py:class:: Overlay(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: opacity - - - .. py:attribute:: value - - - .. py:attribute:: z_index - - -.. py:class:: Pagination(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: circle - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: length - - - .. py:attribute:: light - - - .. py:attribute:: next_icon - - - .. py:attribute:: prev_icon - - - .. py:attribute:: total_visible - - - .. py:attribute:: value - - -.. py:class:: Parallax(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: alt - - - .. py:attribute:: height - - - .. py:attribute:: src - - -.. py:class:: Picker(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: full_width - - - .. py:attribute:: landscape - - - .. py:attribute:: light - - - .. py:attribute:: no_title - - - .. py:attribute:: transition - - - .. py:attribute:: width - - -.. py:class:: ProgressCircular(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: button - - - .. py:attribute:: color - - - .. py:attribute:: indeterminate - - - .. py:attribute:: rotate - - - .. py:attribute:: size - - - .. py:attribute:: value - - - .. py:attribute:: width - - -.. py:class:: ProgressLinear(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: active - - - .. py:attribute:: background_color - - - .. py:attribute:: background_opacity - - - .. py:attribute:: bottom - - - .. py:attribute:: buffer_value - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: fixed - - - .. py:attribute:: height - - - .. py:attribute:: indeterminate - - - .. py:attribute:: light - - - .. py:attribute:: query - - - .. py:attribute:: rounded - - - .. py:attribute:: stream - - - .. py:attribute:: striped - - - .. py:attribute:: top - - - .. py:attribute:: value - - -.. py:class:: Radio(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: id - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: name - - - .. py:attribute:: off_icon - - - .. py:attribute:: on_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: ripple - - - .. py:attribute:: value - - -.. py:class:: RadioGroup(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: append_icon - - - .. py:attribute:: background_color - - - .. py:attribute:: color - - - .. py:attribute:: column - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loading - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: messages - - - .. py:attribute:: multiple - - - .. py:attribute:: name - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: row - - - .. py:attribute:: rules - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - -.. py:class:: RangeSlider(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: background_color - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: inverse_label - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: max - - - .. py:attribute:: messages - - - .. py:attribute:: min - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: rules - - - .. py:attribute:: step - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: thumb_color - - - .. py:attribute:: thumb_label - - - .. py:attribute:: thumb_size - - - .. py:attribute:: tick_labels - - - .. py:attribute:: tick_size - - - .. py:attribute:: ticks - - - .. py:attribute:: track_color - - - .. py:attribute:: track_fill_color - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - - .. py:attribute:: vertical - - -.. py:class:: Rating(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: background_color - - - .. py:attribute:: clearable - - - .. py:attribute:: close_delay - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: empty_icon - - - .. py:attribute:: full_icon - - - .. py:attribute:: half_icon - - - .. py:attribute:: half_increments - - - .. py:attribute:: hover - - - .. py:attribute:: large - - - .. py:attribute:: length - - - .. py:attribute:: light - - - .. py:attribute:: open_delay - - - .. py:attribute:: readonly - - - .. py:attribute:: ripple - - - .. py:attribute:: size - - - .. py:attribute:: small - - - .. py:attribute:: value - - - .. py:attribute:: x_large - - - .. py:attribute:: x_small - - -.. py:class:: Responsive(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: aspect_ratio - - - .. py:attribute:: height - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: width - - -.. py:class:: Row(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: align - - - .. py:attribute:: align_content - - - .. py:attribute:: align_content_lg - - - .. py:attribute:: align_content_md - - - .. py:attribute:: align_content_sm - - - .. py:attribute:: align_content_xl - - - .. py:attribute:: align_lg - - - .. py:attribute:: align_md - - - .. py:attribute:: align_sm - - - .. py:attribute:: align_xl - - - .. py:attribute:: dense - - - .. py:attribute:: justify - - - .. py:attribute:: justify_lg - - - .. py:attribute:: justify_md - - - .. py:attribute:: justify_sm - - - .. py:attribute:: justify_xl - - - .. py:attribute:: no_gutters - - - .. py:attribute:: tag - - -.. py:class:: ScaleTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: ScrollXReverseTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: ScrollXTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: ScrollYReverseTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: ScrollYTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: Select(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: append_outer_icon - - - .. py:attribute:: attach - - - .. py:attribute:: autofocus - - - .. py:attribute:: background_color - - - .. py:attribute:: cache_items - - - .. py:attribute:: chips - - - .. py:attribute:: clear_icon - - - .. py:attribute:: clearable - - - .. py:attribute:: color - - - .. py:attribute:: counter - - - .. py:attribute:: dark - - - .. py:attribute:: deletable_chips - - - .. py:attribute:: dense - - - .. py:attribute:: disable_lookup - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: filled - - - .. py:attribute:: flat - - - .. py:attribute:: full_width - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hide_selected - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: item_color - - - .. py:attribute:: item_disabled - - - .. py:attribute:: item_text - - - .. py:attribute:: item_value - - - .. py:attribute:: items - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: menu_props - - - .. py:attribute:: messages - - - .. py:attribute:: multiple - - - .. py:attribute:: no_data_text - - - .. py:attribute:: open_on_clear - - - .. py:attribute:: outlined - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: placeholder - - - .. py:attribute:: prefix - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: prepend_inner_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: return_object - - - .. py:attribute:: reverse - - - .. py:attribute:: rounded - - - .. py:attribute:: rules - - - .. py:attribute:: shaped - - - .. py:attribute:: single_line - - - .. py:attribute:: small_chips - - - .. py:attribute:: solo - - - .. py:attribute:: solo_inverted - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: suffix - - - .. py:attribute:: type - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - -.. py:class:: Sheet(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: elevation - - - .. py:attribute:: height - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: tag - - - .. py:attribute:: tile - - - .. py:attribute:: width - - -.. py:class:: SimpleCheckbox(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: indeterminate - - - .. py:attribute:: indeterminate_icon - - - .. py:attribute:: light - - - .. py:attribute:: off_icon - - - .. py:attribute:: on_icon - - - .. py:attribute:: ripple - - - .. py:attribute:: value - - -.. py:class:: SimpleTable(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: fixed_header - - - .. py:attribute:: height - - - .. py:attribute:: light - - -.. py:class:: SkeletonLoader(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: boilerplate - - - .. py:attribute:: dark - - - .. py:attribute:: elevation - - - .. py:attribute:: height - - - .. py:attribute:: light - - - .. py:attribute:: loading - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: tile - - - .. py:attribute:: transition - - - .. py:attribute:: type - - - .. py:attribute:: types - - - .. py:attribute:: width - - -.. py:class:: SlideGroup(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: center_active - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: mobile_break_point - - - .. py:attribute:: multiple - - - .. py:attribute:: next_icon - - - .. py:attribute:: prev_icon - - - .. py:attribute:: show_arrows - - - .. py:attribute:: value - - -.. py:class:: SlideItem(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: disabled - - - .. py:attribute:: value - - -.. py:class:: SlideXReverseTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: SlideXTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: SlideYReverseTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: SlideYTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: Slider(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: background_color - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: inverse_label - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: max - - - .. py:attribute:: messages - - - .. py:attribute:: min - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: rules - - - .. py:attribute:: step - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: thumb_color - - - .. py:attribute:: thumb_label - - - .. py:attribute:: thumb_size - - - .. py:attribute:: tick_labels - - - .. py:attribute:: tick_size - - - .. py:attribute:: ticks - - - .. py:attribute:: track_color - - - .. py:attribute:: track_fill_color - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - - .. py:attribute:: vertical - - -.. py:class:: Snackbar(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: bottom - - - .. py:attribute:: color - - - .. py:attribute:: left - - - .. py:attribute:: multi_line - - - .. py:attribute:: right - - - .. py:attribute:: timeout - - - .. py:attribute:: top - - - .. py:attribute:: value - - - .. py:attribute:: vertical - - -.. py:class:: Spacer(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: Sparkline(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: auto_draw - - - .. py:attribute:: auto_draw_duration - - - .. py:attribute:: auto_draw_easing - - - .. py:attribute:: auto_line_width - - - .. py:attribute:: color - - - .. py:attribute:: fill - - - .. py:attribute:: gradient - - - .. py:attribute:: gradient_direction - - - .. py:attribute:: height - - - .. py:attribute:: label_size - - - .. py:attribute:: labels - - - .. py:attribute:: line_width - - - .. py:attribute:: padding - - - .. py:attribute:: show_labels - - - .. py:attribute:: smooth - - - .. py:attribute:: type - - - .. py:attribute:: value - - - .. py:attribute:: width - - -.. py:class:: SpeedDial(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: bottom - - - .. py:attribute:: direction - - - .. py:attribute:: fixed - - - .. py:attribute:: left - - - .. py:attribute:: mode - - - .. py:attribute:: open_on_hover - - - .. py:attribute:: origin - - - .. py:attribute:: right - - - .. py:attribute:: top - - - .. py:attribute:: transition - - - .. py:attribute:: value - - -.. py:class:: Stepper(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: alt_labels - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: non_linear - - - .. py:attribute:: value - - - .. py:attribute:: vertical - - -.. py:class:: StepperContent(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: step - - -.. py:class:: StepperHeader(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: StepperItems(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: StepperStep(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: complete - - - .. py:attribute:: complete_icon - - - .. py:attribute:: edit_icon - - - .. py:attribute:: editable - - - .. py:attribute:: error_icon - - - .. py:attribute:: rules - - - .. py:attribute:: step - - -.. py:class:: Subheader(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: dark - - - .. py:attribute:: inset - - - .. py:attribute:: light - - -.. py:class:: Switch(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: background_color - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: false_value - - - .. py:attribute:: flat - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: input_value - - - .. py:attribute:: inset - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loading - - - .. py:attribute:: messages - - - .. py:attribute:: multiple - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: ripple - - - .. py:attribute:: rules - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: true_value - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - -.. py:class:: SystemBar(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: app - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: fixed - - - .. py:attribute:: height - - - .. py:attribute:: light - - - .. py:attribute:: lights_out - - - .. py:attribute:: window - - -.. py:class:: Tab(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: append - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: exact - - - .. py:attribute:: exact_active_class - - - .. py:attribute:: href - - - .. py:attribute:: light - - - .. py:attribute:: link - - - .. py:attribute:: nuxt - - - .. py:attribute:: replace - - - .. py:attribute:: ripple - - - .. py:attribute:: tag - - - .. py:attribute:: target - - - .. py:attribute:: to - - -.. py:class:: TabItem(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: id - - - .. py:attribute:: reverse_transition - - - .. py:attribute:: transition - - - .. py:attribute:: value - - -.. py:class:: TabReverseTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: TabTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: TableOverflow(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: Tabs(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: align_with_title - - - .. py:attribute:: background_color - - - .. py:attribute:: center_active - - - .. py:attribute:: centered - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: fixed_tabs - - - .. py:attribute:: grow - - - .. py:attribute:: height - - - .. py:attribute:: hide_slider - - - .. py:attribute:: icons_and_text - - - .. py:attribute:: light - - - .. py:attribute:: mobile_break_point - - - .. py:attribute:: next_icon - - - .. py:attribute:: optional - - - .. py:attribute:: prev_icon - - - .. py:attribute:: right - - - .. py:attribute:: show_arrows - - - .. py:attribute:: slider_color - - - .. py:attribute:: slider_size - - - .. py:attribute:: value - - - .. py:attribute:: vertical - - -.. py:class:: TabsItems(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: continuous - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: multiple - - - .. py:attribute:: next_icon - - - .. py:attribute:: prev_icon - - - .. py:attribute:: reverse - - - .. py:attribute:: show_arrows - - - .. py:attribute:: show_arrows_on_hover - - - .. py:attribute:: touch - - - .. py:attribute:: touchless - - - .. py:attribute:: value - - - .. py:attribute:: vertical - - -.. py:class:: TabsSlider(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - -.. py:class:: Text(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: value - - -.. py:class:: TextField(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: append_outer_icon - - - .. py:attribute:: autofocus - - - .. py:attribute:: background_color - - - .. py:attribute:: clear_icon - - - .. py:attribute:: clearable - - - .. py:attribute:: color - - - .. py:attribute:: counter - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: filled - - - .. py:attribute:: flat - - - .. py:attribute:: full_width - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: messages - - - .. py:attribute:: outlined - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: placeholder - - - .. py:attribute:: prefix - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: prepend_inner_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: reverse - - - .. py:attribute:: rounded - - - .. py:attribute:: rules - - - .. py:attribute:: shaped - - - .. py:attribute:: single_line - - - .. py:attribute:: solo - - - .. py:attribute:: solo_inverted - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: suffix - - - .. py:attribute:: type - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - -.. py:class:: Textarea(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: append_outer_icon - - - .. py:attribute:: auto_grow - - - .. py:attribute:: autofocus - - - .. py:attribute:: background_color - - - .. py:attribute:: clear_icon - - - .. py:attribute:: clearable - - - .. py:attribute:: color - - - .. py:attribute:: counter - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: filled - - - .. py:attribute:: flat - - - .. py:attribute:: full_width - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: messages - - - .. py:attribute:: no_resize - - - .. py:attribute:: outlined - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: placeholder - - - .. py:attribute:: prefix - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: prepend_inner_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: reverse - - - .. py:attribute:: rounded - - - .. py:attribute:: row_height - - - .. py:attribute:: rows - - - .. py:attribute:: rules - - - .. py:attribute:: shaped - - - .. py:attribute:: single_line - - - .. py:attribute:: solo - - - .. py:attribute:: solo_inverted - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: suffix - - - .. py:attribute:: type - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - -.. py:class:: ThemeProvider(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: root - - -.. py:class:: TimePicker(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: allowed_hours - - - .. py:attribute:: allowed_minutes - - - .. py:attribute:: allowed_seconds - - - .. py:attribute:: ampm_in_title - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: format - - - .. py:attribute:: full_width - - - .. py:attribute:: header_color - - - .. py:attribute:: landscape - - - .. py:attribute:: light - - - .. py:attribute:: max - - - .. py:attribute:: min - - - .. py:attribute:: no_title - - - .. py:attribute:: readonly - - - .. py:attribute:: scrollable - - - .. py:attribute:: use_seconds - - - .. py:attribute:: value - - - .. py:attribute:: width - - -.. py:class:: TimePickerClock(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: ampm - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: double - - - .. py:attribute:: light - - - .. py:attribute:: max - - - .. py:attribute:: min - - - .. py:attribute:: readonly - - - .. py:attribute:: rotate - - - .. py:attribute:: scrollable - - - .. py:attribute:: step - - - .. py:attribute:: value - - -.. py:class:: TimePickerTitle(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: ampm - - - .. py:attribute:: ampm_readonly - - - .. py:attribute:: color - - - .. py:attribute:: disabled - - - .. py:attribute:: hour - - - .. py:attribute:: minute - - - .. py:attribute:: period - - - .. py:attribute:: readonly - - - .. py:attribute:: second - - - .. py:attribute:: selecting - - - .. py:attribute:: use_seconds - - -.. py:class:: Timeline(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: align_top - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: light - - - .. py:attribute:: reverse - - -.. py:class:: TimelineItem(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: fill_dot - - - .. py:attribute:: hide_dot - - - .. py:attribute:: icon - - - .. py:attribute:: icon_color - - - .. py:attribute:: large - - - .. py:attribute:: left - - - .. py:attribute:: light - - - .. py:attribute:: right - - - .. py:attribute:: small - - -.. py:class:: Toolbar(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: bottom - - - .. py:attribute:: collapse - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: elevation - - - .. py:attribute:: extended - - - .. py:attribute:: extension_height - - - .. py:attribute:: flat - - - .. py:attribute:: floating - - - .. py:attribute:: height - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: prominent - - - .. py:attribute:: short - - - .. py:attribute:: src - - - .. py:attribute:: tag - - - .. py:attribute:: tile - - - .. py:attribute:: width - - -.. py:class:: ToolbarItems(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: ToolbarTitle(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: Tooltip(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: activator - - - .. py:attribute:: allow_overflow - - - .. py:attribute:: attach - - - .. py:attribute:: bottom - - - .. py:attribute:: close_delay - - - .. py:attribute:: color - - - .. py:attribute:: content_class - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: fixed - - - .. py:attribute:: internal_activator - - - .. py:attribute:: left - - - .. py:attribute:: light - - - .. py:attribute:: max_width - - - .. py:attribute:: min_width - - - .. py:attribute:: nudge_bottom - - - .. py:attribute:: nudge_left - - - .. py:attribute:: nudge_right - - - .. py:attribute:: nudge_top - - - .. py:attribute:: nudge_width - - - .. py:attribute:: offset_overflow - - - .. py:attribute:: open_delay - - - .. py:attribute:: open_on_click - - - .. py:attribute:: open_on_hover - - - .. py:attribute:: position_x - - - .. py:attribute:: position_y - - - .. py:attribute:: right - - - .. py:attribute:: tag - - - .. py:attribute:: top - - - .. py:attribute:: transition - - - .. py:attribute:: value - - - .. py:attribute:: z_index - - -.. py:class:: Treeview(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: activatable - - - .. py:attribute:: active - - - .. py:attribute:: active_class - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: expand_icon - - - .. py:attribute:: hoverable - - - .. py:attribute:: indeterminate_icon - - - .. py:attribute:: item_children - - - .. py:attribute:: item_disabled - - - .. py:attribute:: item_key - - - .. py:attribute:: item_text - - - .. py:attribute:: items - - - .. py:attribute:: light - - - .. py:attribute:: loading_icon - - - .. py:attribute:: multiple_active - - - .. py:attribute:: off_icon - - - .. py:attribute:: on_icon - - - .. py:attribute:: open_ - - - .. py:attribute:: open_all - - - .. py:attribute:: open_on_click - - - .. py:attribute:: return_object - - - .. py:attribute:: rounded - - - .. py:attribute:: search - - - .. py:attribute:: selectable - - - .. py:attribute:: selected_color - - - .. py:attribute:: selection_type - - - .. py:attribute:: shaped - - - .. py:attribute:: transition - - - .. py:attribute:: value - - -.. py:class:: TreeviewNode(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: activatable - - - .. py:attribute:: active_class - - - .. py:attribute:: color - - - .. py:attribute:: expand_icon - - - .. py:attribute:: indeterminate_icon - - - .. py:attribute:: item - - - .. py:attribute:: item_children - - - .. py:attribute:: item_disabled - - - .. py:attribute:: item_key - - - .. py:attribute:: item_text - - - .. py:attribute:: level - - - .. py:attribute:: loading_icon - - - .. py:attribute:: off_icon - - - .. py:attribute:: on_icon - - - .. py:attribute:: open_on_click - - - .. py:attribute:: rounded - - - .. py:attribute:: selectable - - - .. py:attribute:: selected_color - - - .. py:attribute:: shaped - - - .. py:attribute:: transition - - -.. py:class:: VirtualTable(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: chunk_size - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: fixed_header - - - .. py:attribute:: header_height - - - .. py:attribute:: height - - - .. py:attribute:: items - - - .. py:attribute:: light - - - .. py:attribute:: row_height - - -.. py:class:: VuetifyWidget(**kwargs) - - Bases: :py:obj:`ipyvue.VueWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: Window(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: continuous - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: multiple - - - .. py:attribute:: next_icon - - - .. py:attribute:: prev_icon - - - .. py:attribute:: reverse - - - .. py:attribute:: show_arrows - - - .. py:attribute:: show_arrows_on_hover - - - .. py:attribute:: touch - - - .. py:attribute:: touchless - - - .. py:attribute:: value - - - .. py:attribute:: vertical - - -.. py:class:: WindowItem(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: reverse_transition - - - .. py:attribute:: transition - - - .. py:attribute:: value - - diff --git a/docs/autoapi/ipyvuetify/index.rst b/docs/autoapi/ipyvuetify/index.rst index 9765cb6b..159708d9 100644 --- a/docs/autoapi/ipyvuetify/index.rst +++ b/docs/autoapi/ipyvuetify/index.rst @@ -26,6 +26,172 @@ Attributes Classes ------- +.. toctree:: + :hidden: + + /autoapi/ipyvuetify/Alert + /autoapi/ipyvuetify/App + /autoapi/ipyvuetify/AppBar + /autoapi/ipyvuetify/AppBarNavIcon + /autoapi/ipyvuetify/Autocomplete + /autoapi/ipyvuetify/Avatar + /autoapi/ipyvuetify/Badge + /autoapi/ipyvuetify/Banner + /autoapi/ipyvuetify/BottomNavigation + /autoapi/ipyvuetify/BottomSheet + /autoapi/ipyvuetify/Breadcrumbs + /autoapi/ipyvuetify/BreadcrumbsDivider + /autoapi/ipyvuetify/BreadcrumbsItem + /autoapi/ipyvuetify/Btn + /autoapi/ipyvuetify/BtnToggle + /autoapi/ipyvuetify/Calendar + /autoapi/ipyvuetify/CalendarDaily + /autoapi/ipyvuetify/CalendarMonthly + /autoapi/ipyvuetify/CalendarWeekly + /autoapi/ipyvuetify/Card + /autoapi/ipyvuetify/CardActions + /autoapi/ipyvuetify/CardSubtitle + /autoapi/ipyvuetify/CardText + /autoapi/ipyvuetify/CardTitle + /autoapi/ipyvuetify/Carousel + /autoapi/ipyvuetify/CarouselItem + /autoapi/ipyvuetify/CarouselReverseTransition + /autoapi/ipyvuetify/CarouselTransition + /autoapi/ipyvuetify/Checkbox + /autoapi/ipyvuetify/Chip + /autoapi/ipyvuetify/ChipGroup + /autoapi/ipyvuetify/Col + /autoapi/ipyvuetify/ColorPicker + /autoapi/ipyvuetify/ColorPickerCanvas + /autoapi/ipyvuetify/ColorPickerSwatches + /autoapi/ipyvuetify/Combobox + /autoapi/ipyvuetify/Container + /autoapi/ipyvuetify/Content + /autoapi/ipyvuetify/Counter + /autoapi/ipyvuetify/Data + /autoapi/ipyvuetify/DataFooter + /autoapi/ipyvuetify/DataIterator + /autoapi/ipyvuetify/DataTable + /autoapi/ipyvuetify/DataTableHeader + /autoapi/ipyvuetify/DatePicker + /autoapi/ipyvuetify/DatePickerDateTable + /autoapi/ipyvuetify/DatePickerHeader + /autoapi/ipyvuetify/DatePickerMonthTable + /autoapi/ipyvuetify/DatePickerTitle + /autoapi/ipyvuetify/DatePickerYears + /autoapi/ipyvuetify/Dialog + /autoapi/ipyvuetify/DialogBottomTransition + /autoapi/ipyvuetify/DialogTransition + /autoapi/ipyvuetify/Divider + /autoapi/ipyvuetify/EditDialog + /autoapi/ipyvuetify/ExpandTransition + /autoapi/ipyvuetify/ExpandXTransition + /autoapi/ipyvuetify/ExpansionPanel + /autoapi/ipyvuetify/ExpansionPanelContent + /autoapi/ipyvuetify/ExpansionPanelHeader + /autoapi/ipyvuetify/ExpansionPanels + /autoapi/ipyvuetify/FabTransition + /autoapi/ipyvuetify/FadeTransition + /autoapi/ipyvuetify/FileInput + /autoapi/ipyvuetify/Flex + /autoapi/ipyvuetify/Footer + /autoapi/ipyvuetify/Form + /autoapi/ipyvuetify/Hover + /autoapi/ipyvuetify/Html + /autoapi/ipyvuetify/Icon + /autoapi/ipyvuetify/Img + /autoapi/ipyvuetify/Input + /autoapi/ipyvuetify/Item + /autoapi/ipyvuetify/ItemGroup + /autoapi/ipyvuetify/Label + /autoapi/ipyvuetify/Layout + /autoapi/ipyvuetify/Lazy + /autoapi/ipyvuetify/List + /autoapi/ipyvuetify/ListGroup + /autoapi/ipyvuetify/ListItem + /autoapi/ipyvuetify/ListItemAction + /autoapi/ipyvuetify/ListItemActionText + /autoapi/ipyvuetify/ListItemAvatar + /autoapi/ipyvuetify/ListItemContent + /autoapi/ipyvuetify/ListItemGroup + /autoapi/ipyvuetify/ListItemIcon + /autoapi/ipyvuetify/ListItemSubtitle + /autoapi/ipyvuetify/ListItemTitle + /autoapi/ipyvuetify/Menu + /autoapi/ipyvuetify/MenuTransition + /autoapi/ipyvuetify/Messages + /autoapi/ipyvuetify/NavigationDrawer + /autoapi/ipyvuetify/OverflowBtn + /autoapi/ipyvuetify/Overlay + /autoapi/ipyvuetify/Pagination + /autoapi/ipyvuetify/Parallax + /autoapi/ipyvuetify/Picker + /autoapi/ipyvuetify/ProgressCircular + /autoapi/ipyvuetify/ProgressLinear + /autoapi/ipyvuetify/Radio + /autoapi/ipyvuetify/RadioGroup + /autoapi/ipyvuetify/RangeSlider + /autoapi/ipyvuetify/Rating + /autoapi/ipyvuetify/Responsive + /autoapi/ipyvuetify/Row + /autoapi/ipyvuetify/ScaleTransition + /autoapi/ipyvuetify/ScrollXReverseTransition + /autoapi/ipyvuetify/ScrollXTransition + /autoapi/ipyvuetify/ScrollYReverseTransition + /autoapi/ipyvuetify/ScrollYTransition + /autoapi/ipyvuetify/Select + /autoapi/ipyvuetify/Sheet + /autoapi/ipyvuetify/SimpleCheckbox + /autoapi/ipyvuetify/SimpleTable + /autoapi/ipyvuetify/SkeletonLoader + /autoapi/ipyvuetify/SlideGroup + /autoapi/ipyvuetify/SlideItem + /autoapi/ipyvuetify/SlideXReverseTransition + /autoapi/ipyvuetify/SlideXTransition + /autoapi/ipyvuetify/SlideYReverseTransition + /autoapi/ipyvuetify/SlideYTransition + /autoapi/ipyvuetify/Slider + /autoapi/ipyvuetify/Snackbar + /autoapi/ipyvuetify/Spacer + /autoapi/ipyvuetify/Sparkline + /autoapi/ipyvuetify/SpeedDial + /autoapi/ipyvuetify/Stepper + /autoapi/ipyvuetify/StepperContent + /autoapi/ipyvuetify/StepperHeader + /autoapi/ipyvuetify/StepperItems + /autoapi/ipyvuetify/StepperStep + /autoapi/ipyvuetify/Subheader + /autoapi/ipyvuetify/Switch + /autoapi/ipyvuetify/SystemBar + /autoapi/ipyvuetify/Tab + /autoapi/ipyvuetify/TabItem + /autoapi/ipyvuetify/TabReverseTransition + /autoapi/ipyvuetify/TabTransition + /autoapi/ipyvuetify/TableOverflow + /autoapi/ipyvuetify/Tabs + /autoapi/ipyvuetify/TabsItems + /autoapi/ipyvuetify/TabsSlider + /autoapi/ipyvuetify/Text + /autoapi/ipyvuetify/TextField + /autoapi/ipyvuetify/Textarea + /autoapi/ipyvuetify/ThemeProvider + /autoapi/ipyvuetify/TimePicker + /autoapi/ipyvuetify/TimePickerClock + /autoapi/ipyvuetify/TimePickerTitle + /autoapi/ipyvuetify/Timeline + /autoapi/ipyvuetify/TimelineItem + /autoapi/ipyvuetify/Toolbar + /autoapi/ipyvuetify/ToolbarItems + /autoapi/ipyvuetify/ToolbarTitle + /autoapi/ipyvuetify/Tooltip + /autoapi/ipyvuetify/Treeview + /autoapi/ipyvuetify/TreeviewNode + /autoapi/ipyvuetify/VirtualTable + /autoapi/ipyvuetify/VuetifyTemplate + /autoapi/ipyvuetify/VuetifyWidget + /autoapi/ipyvuetify/Window + /autoapi/ipyvuetify/WindowItem + .. autoapisummary:: ipyvuetify.Alert @@ -195,10913 +361,5 @@ Classes Package Contents ---------------- -.. py:class:: Alert(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: border - - - .. py:attribute:: close_label - - - .. py:attribute:: color - - - .. py:attribute:: colored_border - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: dismissible - - - .. py:attribute:: elevation - - - .. py:attribute:: height - - - .. py:attribute:: icon - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - - .. py:attribute:: outlined - - - .. py:attribute:: prominent - - - .. py:attribute:: tag - - - .. py:attribute:: text - - - .. py:attribute:: tile - - - .. py:attribute:: transition - - - .. py:attribute:: type - - - .. py:attribute:: value - - - .. py:attribute:: width - - -.. py:class:: App(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: dark - - - .. py:attribute:: id - - - .. py:attribute:: light - - -.. py:class:: AppBar(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: app - - - .. py:attribute:: bottom - - - .. py:attribute:: clipped_left - - - .. py:attribute:: clipped_right - - - .. py:attribute:: collapse - - - .. py:attribute:: collapse_on_scroll - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: elevate_on_scroll - - - .. py:attribute:: elevation - - - .. py:attribute:: extended - - - .. py:attribute:: extension_height - - - .. py:attribute:: fade_img_on_scroll - - - .. py:attribute:: fixed - - - .. py:attribute:: flat - - - .. py:attribute:: floating - - - .. py:attribute:: height - - - .. py:attribute:: hide_on_scroll - - - .. py:attribute:: inverted_scroll - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: prominent - - - .. py:attribute:: scroll_off_screen - - - .. py:attribute:: scroll_target - - - .. py:attribute:: scroll_threshold - - - .. py:attribute:: short - - - .. py:attribute:: shrink_on_scroll - - - .. py:attribute:: src - - - .. py:attribute:: tag - - - .. py:attribute:: tile - - - .. py:attribute:: value - - - .. py:attribute:: width - - -.. py:class:: AppBarNavIcon(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: Autocomplete(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: allow_overflow - - - .. py:attribute:: append_icon - - - .. py:attribute:: append_outer_icon - - - .. py:attribute:: attach - - - .. py:attribute:: auto_select_first - - - .. py:attribute:: autofocus - - - .. py:attribute:: background_color - - - .. py:attribute:: cache_items - - - .. py:attribute:: chips - - - .. py:attribute:: clear_icon - - - .. py:attribute:: clearable - - - .. py:attribute:: color - - - .. py:attribute:: counter - - - .. py:attribute:: dark - - - .. py:attribute:: deletable_chips - - - .. py:attribute:: dense - - - .. py:attribute:: disable_lookup - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: filled - - - .. py:attribute:: flat - - - .. py:attribute:: full_width - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hide_no_data - - - .. py:attribute:: hide_selected - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: item_color - - - .. py:attribute:: item_disabled - - - .. py:attribute:: item_text - - - .. py:attribute:: item_value - - - .. py:attribute:: items - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: menu_props - - - .. py:attribute:: messages - - - .. py:attribute:: multiple - - - .. py:attribute:: no_data_text - - - .. py:attribute:: no_filter - - - .. py:attribute:: open_on_clear - - - .. py:attribute:: outlined - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: placeholder - - - .. py:attribute:: prefix - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: prepend_inner_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: return_object - - - .. py:attribute:: reverse - - - .. py:attribute:: rounded - - - .. py:attribute:: rules - - - .. py:attribute:: search_input - - - .. py:attribute:: shaped - - - .. py:attribute:: single_line - - - .. py:attribute:: small_chips - - - .. py:attribute:: solo - - - .. py:attribute:: solo_inverted - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: suffix - - - .. py:attribute:: type - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - -.. py:class:: Avatar(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: height - - - .. py:attribute:: left - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: right - - - .. py:attribute:: size - - - .. py:attribute:: tile - - - .. py:attribute:: width - - -.. py:class:: Badge(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: avatar - - - .. py:attribute:: bordered - - - .. py:attribute:: bottom - - - .. py:attribute:: color - - - .. py:attribute:: content - - - .. py:attribute:: dark - - - .. py:attribute:: dot - - - .. py:attribute:: icon - - - .. py:attribute:: inline - - - .. py:attribute:: label - - - .. py:attribute:: left - - - .. py:attribute:: light - - - .. py:attribute:: mode - - - .. py:attribute:: offset_x - - - .. py:attribute:: offset_y - - - .. py:attribute:: origin - - - .. py:attribute:: overlap - - - .. py:attribute:: tile - - - .. py:attribute:: transition - - - .. py:attribute:: value - - -.. py:class:: Banner(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: app - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: elevation - - - .. py:attribute:: height - - - .. py:attribute:: icon - - - .. py:attribute:: icon_color - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: mobile_break_point - - - .. py:attribute:: single_line - - - .. py:attribute:: sticky - - - .. py:attribute:: tag - - - .. py:attribute:: tile - - - .. py:attribute:: value - - - .. py:attribute:: width - - -.. py:class:: BottomNavigation(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: active_class - - - .. py:attribute:: app - - - .. py:attribute:: background_color - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: fixed - - - .. py:attribute:: grow - - - .. py:attribute:: height - - - .. py:attribute:: hide_on_scroll - - - .. py:attribute:: horizontal - - - .. py:attribute:: input_value - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: scroll_target - - - .. py:attribute:: scroll_threshold - - - .. py:attribute:: shift - - - .. py:attribute:: value - - - .. py:attribute:: width - - -.. py:class:: BottomSheet(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: activator - - - .. py:attribute:: attach - - - .. py:attribute:: close_delay - - - .. py:attribute:: content_class - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: fullscreen - - - .. py:attribute:: hide_overlay - - - .. py:attribute:: inset - - - .. py:attribute:: internal_activator - - - .. py:attribute:: light - - - .. py:attribute:: max_width - - - .. py:attribute:: no_click_animation - - - .. py:attribute:: open_delay - - - .. py:attribute:: open_on_hover - - - .. py:attribute:: origin - - - .. py:attribute:: overlay_color - - - .. py:attribute:: overlay_opacity - - - .. py:attribute:: persistent - - - .. py:attribute:: retain_focus - - - .. py:attribute:: return_value - - - .. py:attribute:: scrollable - - - .. py:attribute:: transition - - - .. py:attribute:: value - - - .. py:attribute:: width - - -.. py:class:: Breadcrumbs(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: dark - - - .. py:attribute:: divider - - - .. py:attribute:: items - - - .. py:attribute:: large - - - .. py:attribute:: light - - -.. py:class:: BreadcrumbsDivider(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: BreadcrumbsItem(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: append - - - .. py:attribute:: disabled - - - .. py:attribute:: exact - - - .. py:attribute:: exact_active_class - - - .. py:attribute:: href - - - .. py:attribute:: link - - - .. py:attribute:: nuxt - - - .. py:attribute:: replace - - - .. py:attribute:: ripple - - - .. py:attribute:: tag - - - .. py:attribute:: target - - - .. py:attribute:: to - - -.. py:class:: Btn(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: active_class - - - .. py:attribute:: append - - - .. py:attribute:: block - - - .. py:attribute:: bottom - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: depressed - - - .. py:attribute:: disabled - - - .. py:attribute:: elevation - - - .. py:attribute:: exact - - - .. py:attribute:: exact_active_class - - - .. py:attribute:: fab - - - .. py:attribute:: fixed - - - .. py:attribute:: height - - - .. py:attribute:: href - - - .. py:attribute:: icon - - - .. py:attribute:: input_value - - - .. py:attribute:: large - - - .. py:attribute:: left - - - .. py:attribute:: light - - - .. py:attribute:: link - - - .. py:attribute:: loading - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: nuxt - - - .. py:attribute:: outlined - - - .. py:attribute:: replace - - - .. py:attribute:: retain_focus_on_click - - - .. py:attribute:: right - - - .. py:attribute:: ripple - - - .. py:attribute:: rounded - - - .. py:attribute:: small - - - .. py:attribute:: tag - - - .. py:attribute:: target - - - .. py:attribute:: text - - - .. py:attribute:: tile - - - .. py:attribute:: to - - - .. py:attribute:: top - - - .. py:attribute:: type - - - .. py:attribute:: value - - - .. py:attribute:: width - - - .. py:attribute:: x_large - - - .. py:attribute:: x_small - - -.. py:class:: BtnToggle(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: background_color - - - .. py:attribute:: borderless - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: group - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: multiple - - - .. py:attribute:: rounded - - - .. py:attribute:: shaped - - - .. py:attribute:: tile - - - .. py:attribute:: value - - -.. py:class:: Calendar(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: end - - - .. py:attribute:: event_color - - - .. py:attribute:: event_end - - - .. py:attribute:: event_height - - - .. py:attribute:: event_margin_bottom - - - .. py:attribute:: event_more - - - .. py:attribute:: event_more_text - - - .. py:attribute:: event_name - - - .. py:attribute:: event_overlap_mode - - - .. py:attribute:: event_overlap_threshold - - - .. py:attribute:: event_ripple - - - .. py:attribute:: event_start - - - .. py:attribute:: event_text_color - - - .. py:attribute:: events - - - .. py:attribute:: first_interval - - - .. py:attribute:: hide_header - - - .. py:attribute:: interval_count - - - .. py:attribute:: interval_height - - - .. py:attribute:: interval_minutes - - - .. py:attribute:: interval_width - - - .. py:attribute:: light - - - .. py:attribute:: locale - - - .. py:attribute:: max_days - - - .. py:attribute:: min_weeks - - - .. py:attribute:: now - - - .. py:attribute:: short_intervals - - - .. py:attribute:: short_months - - - .. py:attribute:: short_weekdays - - - .. py:attribute:: show_month_on_first - - - .. py:attribute:: start - - - .. py:attribute:: type - - - .. py:attribute:: value - - - .. py:attribute:: weekdays - - -.. py:class:: CalendarDaily(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: end - - - .. py:attribute:: first_interval - - - .. py:attribute:: hide_header - - - .. py:attribute:: interval_count - - - .. py:attribute:: interval_height - - - .. py:attribute:: interval_minutes - - - .. py:attribute:: interval_width - - - .. py:attribute:: light - - - .. py:attribute:: locale - - - .. py:attribute:: max_days - - - .. py:attribute:: now - - - .. py:attribute:: short_intervals - - - .. py:attribute:: short_weekdays - - - .. py:attribute:: start - - - .. py:attribute:: weekdays - - -.. py:class:: CalendarMonthly(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: end - - - .. py:attribute:: hide_header - - - .. py:attribute:: light - - - .. py:attribute:: locale - - - .. py:attribute:: min_weeks - - - .. py:attribute:: now - - - .. py:attribute:: short_months - - - .. py:attribute:: short_weekdays - - - .. py:attribute:: show_month_on_first - - - .. py:attribute:: start - - - .. py:attribute:: weekdays - - -.. py:class:: CalendarWeekly(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: end - - - .. py:attribute:: hide_header - - - .. py:attribute:: light - - - .. py:attribute:: locale - - - .. py:attribute:: min_weeks - - - .. py:attribute:: now - - - .. py:attribute:: short_months - - - .. py:attribute:: short_weekdays - - - .. py:attribute:: show_month_on_first - - - .. py:attribute:: start - - - .. py:attribute:: weekdays - - -.. py:class:: Card(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: append - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: elevation - - - .. py:attribute:: exact - - - .. py:attribute:: exact_active_class - - - .. py:attribute:: flat - - - .. py:attribute:: height - - - .. py:attribute:: hover - - - .. py:attribute:: href - - - .. py:attribute:: img - - - .. py:attribute:: light - - - .. py:attribute:: link - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: nuxt - - - .. py:attribute:: outlined - - - .. py:attribute:: raised - - - .. py:attribute:: replace - - - .. py:attribute:: ripple - - - .. py:attribute:: shaped - - - .. py:attribute:: tag - - - .. py:attribute:: target - - - .. py:attribute:: tile - - - .. py:attribute:: to - - - .. py:attribute:: width - - -.. py:class:: CardActions(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: CardSubtitle(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: CardText(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: CardTitle(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: Carousel(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: continuous - - - .. py:attribute:: cycle - - - .. py:attribute:: dark - - - .. py:attribute:: delimiter_icon - - - .. py:attribute:: height - - - .. py:attribute:: hide_delimiter_background - - - .. py:attribute:: hide_delimiters - - - .. py:attribute:: interval - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: multiple - - - .. py:attribute:: next_icon - - - .. py:attribute:: prev_icon - - - .. py:attribute:: progress - - - .. py:attribute:: progress_color - - - .. py:attribute:: reverse - - - .. py:attribute:: show_arrows - - - .. py:attribute:: show_arrows_on_hover - - - .. py:attribute:: touch - - - .. py:attribute:: touchless - - - .. py:attribute:: value - - - .. py:attribute:: vertical - - - .. py:attribute:: vertical_delimiters - - -.. py:class:: CarouselItem(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: append - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: exact - - - .. py:attribute:: exact_active_class - - - .. py:attribute:: href - - - .. py:attribute:: link - - - .. py:attribute:: nuxt - - - .. py:attribute:: replace - - - .. py:attribute:: reverse_transition - - - .. py:attribute:: ripple - - - .. py:attribute:: tag - - - .. py:attribute:: target - - - .. py:attribute:: to - - - .. py:attribute:: transition - - - .. py:attribute:: value - - -.. py:class:: CarouselReverseTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: CarouselTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: Checkbox(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: background_color - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: false_value - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: indeterminate - - - .. py:attribute:: indeterminate_icon - - - .. py:attribute:: input_value - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loading - - - .. py:attribute:: messages - - - .. py:attribute:: multiple - - - .. py:attribute:: off_icon - - - .. py:attribute:: on_icon - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: ripple - - - .. py:attribute:: rules - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: true_value - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - -.. py:class:: Chip(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active - - - .. py:attribute:: active_class - - - .. py:attribute:: append - - - .. py:attribute:: close_ - - - .. py:attribute:: close_icon - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: draggable - - - .. py:attribute:: exact - - - .. py:attribute:: exact_active_class - - - .. py:attribute:: filter - - - .. py:attribute:: filter_icon - - - .. py:attribute:: href - - - .. py:attribute:: input_value - - - .. py:attribute:: label - - - .. py:attribute:: large - - - .. py:attribute:: light - - - .. py:attribute:: link - - - .. py:attribute:: nuxt - - - .. py:attribute:: outlined - - - .. py:attribute:: pill - - - .. py:attribute:: replace - - - .. py:attribute:: ripple - - - .. py:attribute:: small - - - .. py:attribute:: tag - - - .. py:attribute:: target - - - .. py:attribute:: text_color - - - .. py:attribute:: to - - - .. py:attribute:: value - - - .. py:attribute:: x_large - - - .. py:attribute:: x_small - - -.. py:class:: ChipGroup(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: center_active - - - .. py:attribute:: color - - - .. py:attribute:: column - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: mobile_break_point - - - .. py:attribute:: multiple - - - .. py:attribute:: next_icon - - - .. py:attribute:: prev_icon - - - .. py:attribute:: show_arrows - - - .. py:attribute:: value - - -.. py:class:: Col(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: align_self - - - .. py:attribute:: cols - - - .. py:attribute:: lg - - - .. py:attribute:: md - - - .. py:attribute:: offset - - - .. py:attribute:: offset_lg - - - .. py:attribute:: offset_md - - - .. py:attribute:: offset_sm - - - .. py:attribute:: offset_xl - - - .. py:attribute:: order - - - .. py:attribute:: order_lg - - - .. py:attribute:: order_md - - - .. py:attribute:: order_sm - - - .. py:attribute:: order_xl - - - .. py:attribute:: sm - - - .. py:attribute:: tag - - - .. py:attribute:: xl - - -.. py:class:: ColorPicker(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: canvas_height - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: dot_size - - - .. py:attribute:: flat - - - .. py:attribute:: hide_canvas - - - .. py:attribute:: hide_inputs - - - .. py:attribute:: hide_mode_switch - - - .. py:attribute:: light - - - .. py:attribute:: mode - - - .. py:attribute:: show_swatches - - - .. py:attribute:: swatches - - - .. py:attribute:: swatches_max_height - - - .. py:attribute:: value - - - .. py:attribute:: width - - -.. py:class:: ColorPickerCanvas(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: disabled - - - .. py:attribute:: dot_size - - - .. py:attribute:: height - - - .. py:attribute:: width - - -.. py:class:: ColorPickerSwatches(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: swatches - - -.. py:class:: Combobox(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: allow_overflow - - - .. py:attribute:: append_icon - - - .. py:attribute:: append_outer_icon - - - .. py:attribute:: attach - - - .. py:attribute:: auto_select_first - - - .. py:attribute:: autofocus - - - .. py:attribute:: background_color - - - .. py:attribute:: cache_items - - - .. py:attribute:: chips - - - .. py:attribute:: clear_icon - - - .. py:attribute:: clearable - - - .. py:attribute:: color - - - .. py:attribute:: counter - - - .. py:attribute:: dark - - - .. py:attribute:: deletable_chips - - - .. py:attribute:: delimiters - - - .. py:attribute:: dense - - - .. py:attribute:: disable_lookup - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: filled - - - .. py:attribute:: flat - - - .. py:attribute:: full_width - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hide_no_data - - - .. py:attribute:: hide_selected - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: item_color - - - .. py:attribute:: item_disabled - - - .. py:attribute:: item_text - - - .. py:attribute:: item_value - - - .. py:attribute:: items - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: menu_props - - - .. py:attribute:: messages - - - .. py:attribute:: multiple - - - .. py:attribute:: no_data_text - - - .. py:attribute:: no_filter - - - .. py:attribute:: open_on_clear - - - .. py:attribute:: outlined - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: placeholder - - - .. py:attribute:: prefix - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: prepend_inner_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: return_object - - - .. py:attribute:: reverse - - - .. py:attribute:: rounded - - - .. py:attribute:: rules - - - .. py:attribute:: search_input - - - .. py:attribute:: shaped - - - .. py:attribute:: single_line - - - .. py:attribute:: small_chips - - - .. py:attribute:: solo - - - .. py:attribute:: solo_inverted - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: suffix - - - .. py:attribute:: type - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - -.. py:class:: Container(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: fluid - - - .. py:attribute:: id - - - .. py:attribute:: ma_0 - - - .. py:attribute:: ma_1 - - - .. py:attribute:: ma_2 - - - .. py:attribute:: ma_3 - - - .. py:attribute:: ma_4 - - - .. py:attribute:: ma_5 - - - .. py:attribute:: ma_auto - - - .. py:attribute:: mb_0 - - - .. py:attribute:: mb_1 - - - .. py:attribute:: mb_2 - - - .. py:attribute:: mb_3 - - - .. py:attribute:: mb_4 - - - .. py:attribute:: mb_5 - - - .. py:attribute:: mb_auto - - - .. py:attribute:: ml_0 - - - .. py:attribute:: ml_1 - - - .. py:attribute:: ml_2 - - - .. py:attribute:: ml_3 - - - .. py:attribute:: ml_4 - - - .. py:attribute:: ml_5 - - - .. py:attribute:: ml_auto - - - .. py:attribute:: mr_0 - - - .. py:attribute:: mr_1 - - - .. py:attribute:: mr_2 - - - .. py:attribute:: mr_3 - - - .. py:attribute:: mr_4 - - - .. py:attribute:: mr_5 - - - .. py:attribute:: mr_auto - - - .. py:attribute:: mt_0 - - - .. py:attribute:: mt_1 - - - .. py:attribute:: mt_2 - - - .. py:attribute:: mt_3 - - - .. py:attribute:: mt_4 - - - .. py:attribute:: mt_5 - - - .. py:attribute:: mt_auto - - - .. py:attribute:: mx_0 - - - .. py:attribute:: mx_1 - - - .. py:attribute:: mx_2 - - - .. py:attribute:: mx_3 - - - .. py:attribute:: mx_4 - - - .. py:attribute:: mx_5 - - - .. py:attribute:: mx_auto - - - .. py:attribute:: my_0 - - - .. py:attribute:: my_1 - - - .. py:attribute:: my_2 - - - .. py:attribute:: my_3 - - - .. py:attribute:: my_4 - - - .. py:attribute:: my_5 - - - .. py:attribute:: my_auto - - - .. py:attribute:: pa_0 - - - .. py:attribute:: pa_1 - - - .. py:attribute:: pa_2 - - - .. py:attribute:: pa_3 - - - .. py:attribute:: pa_4 - - - .. py:attribute:: pa_5 - - - .. py:attribute:: pa_auto - - - .. py:attribute:: pb_0 - - - .. py:attribute:: pb_1 - - - .. py:attribute:: pb_2 - - - .. py:attribute:: pb_3 - - - .. py:attribute:: pb_4 - - - .. py:attribute:: pb_5 - - - .. py:attribute:: pb_auto - - - .. py:attribute:: pl_0 - - - .. py:attribute:: pl_1 - - - .. py:attribute:: pl_2 - - - .. py:attribute:: pl_3 - - - .. py:attribute:: pl_4 - - - .. py:attribute:: pl_5 - - - .. py:attribute:: pl_auto - - - .. py:attribute:: pr_0 - - - .. py:attribute:: pr_1 - - - .. py:attribute:: pr_2 - - - .. py:attribute:: pr_3 - - - .. py:attribute:: pr_4 - - - .. py:attribute:: pr_5 - - - .. py:attribute:: pr_auto - - - .. py:attribute:: pt_0 - - - .. py:attribute:: pt_1 - - - .. py:attribute:: pt_2 - - - .. py:attribute:: pt_3 - - - .. py:attribute:: pt_4 - - - .. py:attribute:: pt_5 - - - .. py:attribute:: pt_auto - - - .. py:attribute:: px_0 - - - .. py:attribute:: px_1 - - - .. py:attribute:: px_2 - - - .. py:attribute:: px_3 - - - .. py:attribute:: px_4 - - - .. py:attribute:: px_5 - - - .. py:attribute:: px_auto - - - .. py:attribute:: py_0 - - - .. py:attribute:: py_1 - - - .. py:attribute:: py_2 - - - .. py:attribute:: py_3 - - - .. py:attribute:: py_4 - - - .. py:attribute:: py_5 - - - .. py:attribute:: py_auto - - - .. py:attribute:: tag - - -.. py:class:: Content(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: ma_0 - - - .. py:attribute:: ma_1 - - - .. py:attribute:: ma_2 - - - .. py:attribute:: ma_3 - - - .. py:attribute:: ma_4 - - - .. py:attribute:: ma_5 - - - .. py:attribute:: ma_auto - - - .. py:attribute:: mb_0 - - - .. py:attribute:: mb_1 - - - .. py:attribute:: mb_2 - - - .. py:attribute:: mb_3 - - - .. py:attribute:: mb_4 - - - .. py:attribute:: mb_5 - - - .. py:attribute:: mb_auto - - - .. py:attribute:: ml_0 - - - .. py:attribute:: ml_1 - - - .. py:attribute:: ml_2 - - - .. py:attribute:: ml_3 - - - .. py:attribute:: ml_4 - - - .. py:attribute:: ml_5 - - - .. py:attribute:: ml_auto - - - .. py:attribute:: mr_0 - - - .. py:attribute:: mr_1 - - - .. py:attribute:: mr_2 - - - .. py:attribute:: mr_3 - - - .. py:attribute:: mr_4 - - - .. py:attribute:: mr_5 - - - .. py:attribute:: mr_auto - - - .. py:attribute:: mt_0 - - - .. py:attribute:: mt_1 - - - .. py:attribute:: mt_2 - - - .. py:attribute:: mt_3 - - - .. py:attribute:: mt_4 - - - .. py:attribute:: mt_5 - - - .. py:attribute:: mt_auto - - - .. py:attribute:: mx_0 - - - .. py:attribute:: mx_1 - - - .. py:attribute:: mx_2 - - - .. py:attribute:: mx_3 - - - .. py:attribute:: mx_4 - - - .. py:attribute:: mx_5 - - - .. py:attribute:: mx_auto - - - .. py:attribute:: my_0 - - - .. py:attribute:: my_1 - - - .. py:attribute:: my_2 - - - .. py:attribute:: my_3 - - - .. py:attribute:: my_4 - - - .. py:attribute:: my_5 - - - .. py:attribute:: my_auto - - - .. py:attribute:: pa_0 - - - .. py:attribute:: pa_1 - - - .. py:attribute:: pa_2 - - - .. py:attribute:: pa_3 - - - .. py:attribute:: pa_4 - - - .. py:attribute:: pa_5 - - - .. py:attribute:: pa_auto - - - .. py:attribute:: pb_0 - - - .. py:attribute:: pb_1 - - - .. py:attribute:: pb_2 - - - .. py:attribute:: pb_3 - - - .. py:attribute:: pb_4 - - - .. py:attribute:: pb_5 - - - .. py:attribute:: pb_auto - - - .. py:attribute:: pl_0 - - - .. py:attribute:: pl_1 - - - .. py:attribute:: pl_2 - - - .. py:attribute:: pl_3 - - - .. py:attribute:: pl_4 - - - .. py:attribute:: pl_5 - - - .. py:attribute:: pl_auto - - - .. py:attribute:: pr_0 - - - .. py:attribute:: pr_1 - - - .. py:attribute:: pr_2 - - - .. py:attribute:: pr_3 - - - .. py:attribute:: pr_4 - - - .. py:attribute:: pr_5 - - - .. py:attribute:: pr_auto - - - .. py:attribute:: pt_0 - - - .. py:attribute:: pt_1 - - - .. py:attribute:: pt_2 - - - .. py:attribute:: pt_3 - - - .. py:attribute:: pt_4 - - - .. py:attribute:: pt_5 - - - .. py:attribute:: pt_auto - - - .. py:attribute:: px_0 - - - .. py:attribute:: px_1 - - - .. py:attribute:: px_2 - - - .. py:attribute:: px_3 - - - .. py:attribute:: px_4 - - - .. py:attribute:: px_5 - - - .. py:attribute:: px_auto - - - .. py:attribute:: py_0 - - - .. py:attribute:: py_1 - - - .. py:attribute:: py_2 - - - .. py:attribute:: py_3 - - - .. py:attribute:: py_4 - - - .. py:attribute:: py_5 - - - .. py:attribute:: py_auto - - - .. py:attribute:: tag - - -.. py:class:: Counter(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: max - - - .. py:attribute:: value - - -.. py:class:: Data(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: disable_filtering - - - .. py:attribute:: disable_pagination - - - .. py:attribute:: disable_sort - - - .. py:attribute:: group_by - - - .. py:attribute:: group_desc - - - .. py:attribute:: items - - - .. py:attribute:: items_per_page - - - .. py:attribute:: locale - - - .. py:attribute:: multi_sort - - - .. py:attribute:: must_sort - - - .. py:attribute:: options - - - .. py:attribute:: page - - - .. py:attribute:: search - - - .. py:attribute:: server_items_length - - - .. py:attribute:: sort_by - - - .. py:attribute:: sort_desc - - -.. py:class:: DataFooter(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: disable_items_per_page - - - .. py:attribute:: disable_pagination - - - .. py:attribute:: first_icon - - - .. py:attribute:: items_per_page_all_text - - - .. py:attribute:: items_per_page_options - - - .. py:attribute:: items_per_page_text - - - .. py:attribute:: last_icon - - - .. py:attribute:: next_icon - - - .. py:attribute:: options - - - .. py:attribute:: page_text - - - .. py:attribute:: pagination - - - .. py:attribute:: prev_icon - - - .. py:attribute:: show_current_page - - - .. py:attribute:: show_first_last_page - - -.. py:class:: DataIterator(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: dark - - - .. py:attribute:: disable_filtering - - - .. py:attribute:: disable_pagination - - - .. py:attribute:: disable_sort - - - .. py:attribute:: expanded - - - .. py:attribute:: footer_props - - - .. py:attribute:: group_by - - - .. py:attribute:: group_desc - - - .. py:attribute:: hide_default_footer - - - .. py:attribute:: item_key - - - .. py:attribute:: items - - - .. py:attribute:: items_per_page - - - .. py:attribute:: light - - - .. py:attribute:: loading - - - .. py:attribute:: loading_text - - - .. py:attribute:: locale - - - .. py:attribute:: mobile_breakpoint - - - .. py:attribute:: multi_sort - - - .. py:attribute:: must_sort - - - .. py:attribute:: no_data_text - - - .. py:attribute:: no_results_text - - - .. py:attribute:: options - - - .. py:attribute:: page - - - .. py:attribute:: search - - - .. py:attribute:: selectable_key - - - .. py:attribute:: server_items_length - - - .. py:attribute:: single_expand - - - .. py:attribute:: single_select - - - .. py:attribute:: sort_by - - - .. py:attribute:: sort_desc - - - .. py:attribute:: value - - -.. py:class:: DataTable(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: calculate_widths - - - .. py:attribute:: caption - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disable_filtering - - - .. py:attribute:: disable_pagination - - - .. py:attribute:: disable_sort - - - .. py:attribute:: expand_icon - - - .. py:attribute:: expanded - - - .. py:attribute:: fixed_header - - - .. py:attribute:: footer_props - - - .. py:attribute:: group_by - - - .. py:attribute:: group_desc - - - .. py:attribute:: header_props - - - .. py:attribute:: headers - - - .. py:attribute:: headers_length - - - .. py:attribute:: height - - - .. py:attribute:: hide_default_footer - - - .. py:attribute:: hide_default_header - - - .. py:attribute:: item_key - - - .. py:attribute:: items - - - .. py:attribute:: items_per_page - - - .. py:attribute:: light - - - .. py:attribute:: loading - - - .. py:attribute:: loading_text - - - .. py:attribute:: locale - - - .. py:attribute:: mobile_breakpoint - - - .. py:attribute:: multi_sort - - - .. py:attribute:: must_sort - - - .. py:attribute:: no_data_text - - - .. py:attribute:: no_results_text - - - .. py:attribute:: options - - - .. py:attribute:: page - - - .. py:attribute:: search - - - .. py:attribute:: selectable_key - - - .. py:attribute:: server_items_length - - - .. py:attribute:: show_expand - - - .. py:attribute:: show_group_by - - - .. py:attribute:: show_select - - - .. py:attribute:: single_expand - - - .. py:attribute:: single_select - - - .. py:attribute:: sort_by - - - .. py:attribute:: sort_desc - - - .. py:attribute:: value - - -.. py:class:: DataTableHeader(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: mobile - - -.. py:class:: DatePicker(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: event_color - - - .. py:attribute:: events - - - .. py:attribute:: first_day_of_week - - - .. py:attribute:: full_width - - - .. py:attribute:: header_color - - - .. py:attribute:: landscape - - - .. py:attribute:: light - - - .. py:attribute:: locale - - - .. py:attribute:: locale_first_day_of_year - - - .. py:attribute:: max - - - .. py:attribute:: min - - - .. py:attribute:: multiple - - - .. py:attribute:: next_icon - - - .. py:attribute:: no_title - - - .. py:attribute:: picker_date - - - .. py:attribute:: prev_icon - - - .. py:attribute:: range - - - .. py:attribute:: reactive - - - .. py:attribute:: readonly - - - .. py:attribute:: scrollable - - - .. py:attribute:: selected_items_text - - - .. py:attribute:: show_current - - - .. py:attribute:: show_week - - - .. py:attribute:: type - - - .. py:attribute:: value - - - .. py:attribute:: width - - - .. py:attribute:: year_icon - - -.. py:class:: DatePickerDateTable(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: current - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: event_color - - - .. py:attribute:: events - - - .. py:attribute:: first_day_of_week - - - .. py:attribute:: light - - - .. py:attribute:: locale - - - .. py:attribute:: locale_first_day_of_year - - - .. py:attribute:: max - - - .. py:attribute:: min - - - .. py:attribute:: range - - - .. py:attribute:: readonly - - - .. py:attribute:: scrollable - - - .. py:attribute:: show_week - - - .. py:attribute:: table_date - - - .. py:attribute:: value - - -.. py:class:: DatePickerHeader(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: light - - - .. py:attribute:: locale - - - .. py:attribute:: max - - - .. py:attribute:: min - - - .. py:attribute:: next_icon - - - .. py:attribute:: prev_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: value - - -.. py:class:: DatePickerMonthTable(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: current - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: event_color - - - .. py:attribute:: events - - - .. py:attribute:: light - - - .. py:attribute:: locale - - - .. py:attribute:: max - - - .. py:attribute:: min - - - .. py:attribute:: range - - - .. py:attribute:: readonly - - - .. py:attribute:: scrollable - - - .. py:attribute:: table_date - - - .. py:attribute:: value - - -.. py:class:: DatePickerTitle(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: date - - - .. py:attribute:: disabled - - - .. py:attribute:: readonly - - - .. py:attribute:: selecting_year - - - .. py:attribute:: value - - - .. py:attribute:: year - - - .. py:attribute:: year_icon - - -.. py:class:: DatePickerYears(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: locale - - - .. py:attribute:: max - - - .. py:attribute:: min - - - .. py:attribute:: readonly - - - .. py:attribute:: value - - -.. py:class:: Dialog(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: activator - - - .. py:attribute:: attach - - - .. py:attribute:: close_delay - - - .. py:attribute:: content_class - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: fullscreen - - - .. py:attribute:: hide_overlay - - - .. py:attribute:: internal_activator - - - .. py:attribute:: light - - - .. py:attribute:: max_width - - - .. py:attribute:: no_click_animation - - - .. py:attribute:: open_delay - - - .. py:attribute:: open_on_hover - - - .. py:attribute:: origin - - - .. py:attribute:: overlay_color - - - .. py:attribute:: overlay_opacity - - - .. py:attribute:: persistent - - - .. py:attribute:: retain_focus - - - .. py:attribute:: return_value - - - .. py:attribute:: scrollable - - - .. py:attribute:: transition - - - .. py:attribute:: value - - - .. py:attribute:: width - - -.. py:class:: DialogBottomTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: DialogTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: Divider(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: dark - - - .. py:attribute:: inset - - - .. py:attribute:: light - - - .. py:attribute:: vertical - - -.. py:class:: EditDialog(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: cancel_text - - - .. py:attribute:: dark - - - .. py:attribute:: eager - - - .. py:attribute:: large - - - .. py:attribute:: light - - - .. py:attribute:: persistent - - - .. py:attribute:: return_value - - - .. py:attribute:: save_text - - - .. py:attribute:: transition - - -.. py:class:: ExpandTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: mode - - -.. py:class:: ExpandXTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: mode - - -.. py:class:: ExpansionPanel(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: disabled - - - .. py:attribute:: readonly - - -.. py:class:: ExpansionPanelContent(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: eager - - -.. py:class:: ExpansionPanelHeader(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: disable_icon_rotate - - - .. py:attribute:: expand_icon - - - .. py:attribute:: hide_actions - - - .. py:attribute:: ripple - - -.. py:class:: ExpansionPanels(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: accordion - - - .. py:attribute:: active_class - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: flat - - - .. py:attribute:: focusable - - - .. py:attribute:: hover - - - .. py:attribute:: inset - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: multiple - - - .. py:attribute:: popout - - - .. py:attribute:: readonly - - - .. py:attribute:: tile - - - .. py:attribute:: value - - -.. py:class:: FabTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: FadeTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: FileInput(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: append_outer_icon - - - .. py:attribute:: autofocus - - - .. py:attribute:: background_color - - - .. py:attribute:: chips - - - .. py:attribute:: clear_icon - - - .. py:attribute:: clearable - - - .. py:attribute:: color - - - .. py:attribute:: counter - - - .. py:attribute:: counter_size_string - - - .. py:attribute:: counter_string - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: filled - - - .. py:attribute:: flat - - - .. py:attribute:: full_width - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: messages - - - .. py:attribute:: multiple - - - .. py:attribute:: outlined - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: placeholder - - - .. py:attribute:: prefix - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: prepend_inner_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: reverse - - - .. py:attribute:: rounded - - - .. py:attribute:: rules - - - .. py:attribute:: shaped - - - .. py:attribute:: show_size - - - .. py:attribute:: single_line - - - .. py:attribute:: small_chips - - - .. py:attribute:: solo - - - .. py:attribute:: solo_inverted - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: suffix - - - .. py:attribute:: truncate_length - - - .. py:attribute:: type - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - -.. py:class:: Flex(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: align_self_baseline - - - .. py:attribute:: align_self_center - - - .. py:attribute:: align_self_end - - - .. py:attribute:: align_self_start - - - .. py:attribute:: grow - - - .. py:attribute:: id - - - .. py:attribute:: lg1 - - - .. py:attribute:: lg10 - - - .. py:attribute:: lg11 - - - .. py:attribute:: lg12 - - - .. py:attribute:: lg2 - - - .. py:attribute:: lg3 - - - .. py:attribute:: lg4 - - - .. py:attribute:: lg5 - - - .. py:attribute:: lg6 - - - .. py:attribute:: lg7 - - - .. py:attribute:: lg8 - - - .. py:attribute:: lg9 - - - .. py:attribute:: ma_0 - - - .. py:attribute:: ma_1 - - - .. py:attribute:: ma_2 - - - .. py:attribute:: ma_3 - - - .. py:attribute:: ma_4 - - - .. py:attribute:: ma_5 - - - .. py:attribute:: ma_auto - - - .. py:attribute:: mb_0 - - - .. py:attribute:: mb_1 - - - .. py:attribute:: mb_2 - - - .. py:attribute:: mb_3 - - - .. py:attribute:: mb_4 - - - .. py:attribute:: mb_5 - - - .. py:attribute:: mb_auto - - - .. py:attribute:: md1 - - - .. py:attribute:: md10 - - - .. py:attribute:: md11 - - - .. py:attribute:: md12 - - - .. py:attribute:: md2 - - - .. py:attribute:: md3 - - - .. py:attribute:: md4 - - - .. py:attribute:: md5 - - - .. py:attribute:: md6 - - - .. py:attribute:: md7 - - - .. py:attribute:: md8 - - - .. py:attribute:: md9 - - - .. py:attribute:: ml_0 - - - .. py:attribute:: ml_1 - - - .. py:attribute:: ml_2 - - - .. py:attribute:: ml_3 - - - .. py:attribute:: ml_4 - - - .. py:attribute:: ml_5 - - - .. py:attribute:: ml_auto - - - .. py:attribute:: mr_0 - - - .. py:attribute:: mr_1 - - - .. py:attribute:: mr_2 - - - .. py:attribute:: mr_3 - - - .. py:attribute:: mr_4 - - - .. py:attribute:: mr_5 - - - .. py:attribute:: mr_auto - - - .. py:attribute:: mt_0 - - - .. py:attribute:: mt_1 - - - .. py:attribute:: mt_2 - - - .. py:attribute:: mt_3 - - - .. py:attribute:: mt_4 - - - .. py:attribute:: mt_5 - - - .. py:attribute:: mt_auto - - - .. py:attribute:: mx_0 - - - .. py:attribute:: mx_1 - - - .. py:attribute:: mx_2 - - - .. py:attribute:: mx_3 - - - .. py:attribute:: mx_4 - - - .. py:attribute:: mx_5 - - - .. py:attribute:: mx_auto - - - .. py:attribute:: my_0 - - - .. py:attribute:: my_1 - - - .. py:attribute:: my_2 - - - .. py:attribute:: my_3 - - - .. py:attribute:: my_4 - - - .. py:attribute:: my_5 - - - .. py:attribute:: my_auto - - - .. py:attribute:: offset_lg0 - - - .. py:attribute:: offset_lg1 - - - .. py:attribute:: offset_lg10 - - - .. py:attribute:: offset_lg11 - - - .. py:attribute:: offset_lg12 - - - .. py:attribute:: offset_lg2 - - - .. py:attribute:: offset_lg3 - - - .. py:attribute:: offset_lg4 - - - .. py:attribute:: offset_lg5 - - - .. py:attribute:: offset_lg6 - - - .. py:attribute:: offset_lg7 - - - .. py:attribute:: offset_lg8 - - - .. py:attribute:: offset_lg9 - - - .. py:attribute:: offset_md0 - - - .. py:attribute:: offset_md1 - - - .. py:attribute:: offset_md10 - - - .. py:attribute:: offset_md11 - - - .. py:attribute:: offset_md12 - - - .. py:attribute:: offset_md2 - - - .. py:attribute:: offset_md3 - - - .. py:attribute:: offset_md4 - - - .. py:attribute:: offset_md5 - - - .. py:attribute:: offset_md6 - - - .. py:attribute:: offset_md7 - - - .. py:attribute:: offset_md8 - - - .. py:attribute:: offset_md9 - - - .. py:attribute:: offset_sm0 - - - .. py:attribute:: offset_sm1 - - - .. py:attribute:: offset_sm10 - - - .. py:attribute:: offset_sm11 - - - .. py:attribute:: offset_sm12 - - - .. py:attribute:: offset_sm2 - - - .. py:attribute:: offset_sm3 - - - .. py:attribute:: offset_sm4 - - - .. py:attribute:: offset_sm5 - - - .. py:attribute:: offset_sm6 - - - .. py:attribute:: offset_sm7 - - - .. py:attribute:: offset_sm8 - - - .. py:attribute:: offset_sm9 - - - .. py:attribute:: offset_xl0 - - - .. py:attribute:: offset_xl1 - - - .. py:attribute:: offset_xl10 - - - .. py:attribute:: offset_xl11 - - - .. py:attribute:: offset_xl12 - - - .. py:attribute:: offset_xl2 - - - .. py:attribute:: offset_xl3 - - - .. py:attribute:: offset_xl4 - - - .. py:attribute:: offset_xl5 - - - .. py:attribute:: offset_xl6 - - - .. py:attribute:: offset_xl7 - - - .. py:attribute:: offset_xl8 - - - .. py:attribute:: offset_xl9 - - - .. py:attribute:: offset_xs0 - - - .. py:attribute:: offset_xs1 - - - .. py:attribute:: offset_xs10 - - - .. py:attribute:: offset_xs11 - - - .. py:attribute:: offset_xs12 - - - .. py:attribute:: offset_xs2 - - - .. py:attribute:: offset_xs3 - - - .. py:attribute:: offset_xs4 - - - .. py:attribute:: offset_xs5 - - - .. py:attribute:: offset_xs6 - - - .. py:attribute:: offset_xs7 - - - .. py:attribute:: offset_xs8 - - - .. py:attribute:: offset_xs9 - - - .. py:attribute:: order_lg1 - - - .. py:attribute:: order_lg10 - - - .. py:attribute:: order_lg11 - - - .. py:attribute:: order_lg12 - - - .. py:attribute:: order_lg2 - - - .. py:attribute:: order_lg3 - - - .. py:attribute:: order_lg4 - - - .. py:attribute:: order_lg5 - - - .. py:attribute:: order_lg6 - - - .. py:attribute:: order_lg7 - - - .. py:attribute:: order_lg8 - - - .. py:attribute:: order_lg9 - - - .. py:attribute:: order_md1 - - - .. py:attribute:: order_md10 - - - .. py:attribute:: order_md11 - - - .. py:attribute:: order_md12 - - - .. py:attribute:: order_md2 - - - .. py:attribute:: order_md3 - - - .. py:attribute:: order_md4 - - - .. py:attribute:: order_md5 - - - .. py:attribute:: order_md6 - - - .. py:attribute:: order_md7 - - - .. py:attribute:: order_md8 - - - .. py:attribute:: order_md9 - - - .. py:attribute:: order_sm1 - - - .. py:attribute:: order_sm10 - - - .. py:attribute:: order_sm11 - - - .. py:attribute:: order_sm12 - - - .. py:attribute:: order_sm2 - - - .. py:attribute:: order_sm3 - - - .. py:attribute:: order_sm4 - - - .. py:attribute:: order_sm5 - - - .. py:attribute:: order_sm6 - - - .. py:attribute:: order_sm7 - - - .. py:attribute:: order_sm8 - - - .. py:attribute:: order_sm9 - - - .. py:attribute:: order_xl1 - - - .. py:attribute:: order_xl10 - - - .. py:attribute:: order_xl11 - - - .. py:attribute:: order_xl12 - - - .. py:attribute:: order_xl2 - - - .. py:attribute:: order_xl3 - - - .. py:attribute:: order_xl4 - - - .. py:attribute:: order_xl5 - - - .. py:attribute:: order_xl6 - - - .. py:attribute:: order_xl7 - - - .. py:attribute:: order_xl8 - - - .. py:attribute:: order_xl9 - - - .. py:attribute:: order_xs1 - - - .. py:attribute:: order_xs10 - - - .. py:attribute:: order_xs11 - - - .. py:attribute:: order_xs12 - - - .. py:attribute:: order_xs2 - - - .. py:attribute:: order_xs3 - - - .. py:attribute:: order_xs4 - - - .. py:attribute:: order_xs5 - - - .. py:attribute:: order_xs6 - - - .. py:attribute:: order_xs7 - - - .. py:attribute:: order_xs8 - - - .. py:attribute:: order_xs9 - - - .. py:attribute:: pa_0 - - - .. py:attribute:: pa_1 - - - .. py:attribute:: pa_2 - - - .. py:attribute:: pa_3 - - - .. py:attribute:: pa_4 - - - .. py:attribute:: pa_5 - - - .. py:attribute:: pa_auto - - - .. py:attribute:: pb_0 - - - .. py:attribute:: pb_1 - - - .. py:attribute:: pb_2 - - - .. py:attribute:: pb_3 - - - .. py:attribute:: pb_4 - - - .. py:attribute:: pb_5 - - - .. py:attribute:: pb_auto - - - .. py:attribute:: pl_0 - - - .. py:attribute:: pl_1 - - - .. py:attribute:: pl_2 - - - .. py:attribute:: pl_3 - - - .. py:attribute:: pl_4 - - - .. py:attribute:: pl_5 - - - .. py:attribute:: pl_auto - - - .. py:attribute:: pr_0 - - - .. py:attribute:: pr_1 - - - .. py:attribute:: pr_2 - - - .. py:attribute:: pr_3 - - - .. py:attribute:: pr_4 - - - .. py:attribute:: pr_5 - - - .. py:attribute:: pr_auto - - - .. py:attribute:: pt_0 - - - .. py:attribute:: pt_1 - - - .. py:attribute:: pt_2 - - - .. py:attribute:: pt_3 - - - .. py:attribute:: pt_4 - - - .. py:attribute:: pt_5 - - - .. py:attribute:: pt_auto - - - .. py:attribute:: px_0 - - - .. py:attribute:: px_1 - - - .. py:attribute:: px_2 - - - .. py:attribute:: px_3 - - - .. py:attribute:: px_4 - - - .. py:attribute:: px_5 - - - .. py:attribute:: px_auto - - - .. py:attribute:: py_0 - - - .. py:attribute:: py_1 - - - .. py:attribute:: py_2 - - - .. py:attribute:: py_3 - - - .. py:attribute:: py_4 - - - .. py:attribute:: py_5 - - - .. py:attribute:: py_auto - - - .. py:attribute:: shrink - - - .. py:attribute:: sm1 - - - .. py:attribute:: sm10 - - - .. py:attribute:: sm11 - - - .. py:attribute:: sm12 - - - .. py:attribute:: sm2 - - - .. py:attribute:: sm3 - - - .. py:attribute:: sm4 - - - .. py:attribute:: sm5 - - - .. py:attribute:: sm6 - - - .. py:attribute:: sm7 - - - .. py:attribute:: sm8 - - - .. py:attribute:: sm9 - - - .. py:attribute:: tag - - - .. py:attribute:: xl1 - - - .. py:attribute:: xl10 - - - .. py:attribute:: xl11 - - - .. py:attribute:: xl12 - - - .. py:attribute:: xl2 - - - .. py:attribute:: xl3 - - - .. py:attribute:: xl4 - - - .. py:attribute:: xl5 - - - .. py:attribute:: xl6 - - - .. py:attribute:: xl7 - - - .. py:attribute:: xl8 - - - .. py:attribute:: xl9 - - - .. py:attribute:: xs1 - - - .. py:attribute:: xs10 - - - .. py:attribute:: xs11 - - - .. py:attribute:: xs12 - - - .. py:attribute:: xs2 - - - .. py:attribute:: xs3 - - - .. py:attribute:: xs4 - - - .. py:attribute:: xs5 - - - .. py:attribute:: xs6 - - - .. py:attribute:: xs7 - - - .. py:attribute:: xs8 - - - .. py:attribute:: xs9 - - -.. py:class:: Footer(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: app - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: elevation - - - .. py:attribute:: fixed - - - .. py:attribute:: height - - - .. py:attribute:: inset - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: padless - - - .. py:attribute:: tag - - - .. py:attribute:: tile - - - .. py:attribute:: width - - -.. py:class:: Form(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: lazy_validation - - - .. py:attribute:: value - - -.. py:class:: Hover(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: close_delay - - - .. py:attribute:: disabled - - - .. py:attribute:: open_delay - - - .. py:attribute:: value - - -.. py:class:: Html(**kwargs) - - Bases: :py:obj:`ipyvue.Html` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: Icon(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: large - - - .. py:attribute:: left - - - .. py:attribute:: light - - - .. py:attribute:: right - - - .. py:attribute:: size - - - .. py:attribute:: small - - - .. py:attribute:: tag - - - .. py:attribute:: x_large - - - .. py:attribute:: x_small - - -.. py:class:: Img(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: alt - - - .. py:attribute:: aspect_ratio - - - .. py:attribute:: contain - - - .. py:attribute:: eager - - - .. py:attribute:: gradient - - - .. py:attribute:: height - - - .. py:attribute:: lazy_src - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: options - - - .. py:attribute:: position - - - .. py:attribute:: sizes - - - .. py:attribute:: src - - - .. py:attribute:: srcset - - - .. py:attribute:: transition - - - .. py:attribute:: width - - -.. py:class:: Input(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: background_color - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loading - - - .. py:attribute:: messages - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: rules - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - -.. py:class:: Item(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: disabled - - - .. py:attribute:: value - - -.. py:class:: ItemGroup(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: multiple - - - .. py:attribute:: value - - -.. py:class:: Label(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: focused - - - .. py:attribute:: for_ - - - .. py:attribute:: left - - - .. py:attribute:: light - - - .. py:attribute:: right - - - .. py:attribute:: value - - -.. py:class:: Layout(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: align_baseline - - - .. py:attribute:: align_center - - - .. py:attribute:: align_content_center - - - .. py:attribute:: align_content_end - - - .. py:attribute:: align_content_space_around - - - .. py:attribute:: align_content_space_between - - - .. py:attribute:: align_content_start - - - .. py:attribute:: align_end - - - .. py:attribute:: align_start - - - .. py:attribute:: column - - - .. py:attribute:: d_block - - - .. py:attribute:: d_contents - - - .. py:attribute:: d_flex - - - .. py:attribute:: d_grid - - - .. py:attribute:: d_inherit - - - .. py:attribute:: d_initial - - - .. py:attribute:: d_inline - - - .. py:attribute:: d_inline_block - - - .. py:attribute:: d_inline_flex - - - .. py:attribute:: d_inline_grid - - - .. py:attribute:: d_inline_table - - - .. py:attribute:: d_list_item - - - .. py:attribute:: d_none - - - .. py:attribute:: d_run_in - - - .. py:attribute:: d_table - - - .. py:attribute:: d_table_caption - - - .. py:attribute:: d_table_cell - - - .. py:attribute:: d_table_column - - - .. py:attribute:: d_table_column_group - - - .. py:attribute:: d_table_footer_group - - - .. py:attribute:: d_table_header_group - - - .. py:attribute:: d_table_row - - - .. py:attribute:: d_table_row_group - - - .. py:attribute:: fill_height - - - .. py:attribute:: id - - - .. py:attribute:: justify_center - - - .. py:attribute:: justify_end - - - .. py:attribute:: justify_space_around - - - .. py:attribute:: justify_space_between - - - .. py:attribute:: justify_start - - - .. py:attribute:: ma_0 - - - .. py:attribute:: ma_1 - - - .. py:attribute:: ma_2 - - - .. py:attribute:: ma_3 - - - .. py:attribute:: ma_4 - - - .. py:attribute:: ma_5 - - - .. py:attribute:: ma_auto - - - .. py:attribute:: mb_0 - - - .. py:attribute:: mb_1 - - - .. py:attribute:: mb_2 - - - .. py:attribute:: mb_3 - - - .. py:attribute:: mb_4 - - - .. py:attribute:: mb_5 - - - .. py:attribute:: mb_auto - - - .. py:attribute:: ml_0 - - - .. py:attribute:: ml_1 - - - .. py:attribute:: ml_2 - - - .. py:attribute:: ml_3 - - - .. py:attribute:: ml_4 - - - .. py:attribute:: ml_5 - - - .. py:attribute:: ml_auto - - - .. py:attribute:: mr_0 - - - .. py:attribute:: mr_1 - - - .. py:attribute:: mr_2 - - - .. py:attribute:: mr_3 - - - .. py:attribute:: mr_4 - - - .. py:attribute:: mr_5 - - - .. py:attribute:: mr_auto - - - .. py:attribute:: mt_0 - - - .. py:attribute:: mt_1 - - - .. py:attribute:: mt_2 - - - .. py:attribute:: mt_3 - - - .. py:attribute:: mt_4 - - - .. py:attribute:: mt_5 - - - .. py:attribute:: mt_auto - - - .. py:attribute:: mx_0 - - - .. py:attribute:: mx_1 - - - .. py:attribute:: mx_2 - - - .. py:attribute:: mx_3 - - - .. py:attribute:: mx_4 - - - .. py:attribute:: mx_5 - - - .. py:attribute:: mx_auto - - - .. py:attribute:: my_0 - - - .. py:attribute:: my_1 - - - .. py:attribute:: my_2 - - - .. py:attribute:: my_3 - - - .. py:attribute:: my_4 - - - .. py:attribute:: my_5 - - - .. py:attribute:: my_auto - - - .. py:attribute:: pa_0 - - - .. py:attribute:: pa_1 - - - .. py:attribute:: pa_2 - - - .. py:attribute:: pa_3 - - - .. py:attribute:: pa_4 - - - .. py:attribute:: pa_5 - - - .. py:attribute:: pa_auto - - - .. py:attribute:: pb_0 - - - .. py:attribute:: pb_1 - - - .. py:attribute:: pb_2 - - - .. py:attribute:: pb_3 - - - .. py:attribute:: pb_4 - - - .. py:attribute:: pb_5 - - - .. py:attribute:: pb_auto - - - .. py:attribute:: pl_0 - - - .. py:attribute:: pl_1 - - - .. py:attribute:: pl_2 - - - .. py:attribute:: pl_3 - - - .. py:attribute:: pl_4 - - - .. py:attribute:: pl_5 - - - .. py:attribute:: pl_auto - - - .. py:attribute:: pr_0 - - - .. py:attribute:: pr_1 - - - .. py:attribute:: pr_2 - - - .. py:attribute:: pr_3 - - - .. py:attribute:: pr_4 - - - .. py:attribute:: pr_5 - - - .. py:attribute:: pr_auto - - - .. py:attribute:: pt_0 - - - .. py:attribute:: pt_1 - - - .. py:attribute:: pt_2 - - - .. py:attribute:: pt_3 - - - .. py:attribute:: pt_4 - - - .. py:attribute:: pt_5 - - - .. py:attribute:: pt_auto - - - .. py:attribute:: px_0 - - - .. py:attribute:: px_1 - - - .. py:attribute:: px_2 - - - .. py:attribute:: px_3 - - - .. py:attribute:: px_4 - - - .. py:attribute:: px_5 - - - .. py:attribute:: px_auto - - - .. py:attribute:: py_0 - - - .. py:attribute:: py_1 - - - .. py:attribute:: py_2 - - - .. py:attribute:: py_3 - - - .. py:attribute:: py_4 - - - .. py:attribute:: py_5 - - - .. py:attribute:: py_auto - - - .. py:attribute:: reverse - - - .. py:attribute:: row - - - .. py:attribute:: tag - - - .. py:attribute:: wrap - - -.. py:class:: Lazy(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: min_height - - - .. py:attribute:: options - - - .. py:attribute:: tag - - - .. py:attribute:: transition - - - .. py:attribute:: value - - -.. py:class:: List(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: elevation - - - .. py:attribute:: expand - - - .. py:attribute:: flat - - - .. py:attribute:: height - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: nav - - - .. py:attribute:: rounded - - - .. py:attribute:: shaped - - - .. py:attribute:: subheader - - - .. py:attribute:: tag - - - .. py:attribute:: three_line - - - .. py:attribute:: tile - - - .. py:attribute:: two_line - - - .. py:attribute:: width - - -.. py:class:: ListGroup(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: append_icon - - - .. py:attribute:: color - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: group - - - .. py:attribute:: no_action - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: ripple - - - .. py:attribute:: sub_group - - - .. py:attribute:: value - - -.. py:class:: ListItem(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: append - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: exact - - - .. py:attribute:: exact_active_class - - - .. py:attribute:: href - - - .. py:attribute:: inactive - - - .. py:attribute:: input_value - - - .. py:attribute:: light - - - .. py:attribute:: link - - - .. py:attribute:: nuxt - - - .. py:attribute:: replace - - - .. py:attribute:: ripple - - - .. py:attribute:: selectable - - - .. py:attribute:: tag - - - .. py:attribute:: target - - - .. py:attribute:: three_line - - - .. py:attribute:: to - - - .. py:attribute:: two_line - - - .. py:attribute:: value - - -.. py:class:: ListItemAction(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: ListItemActionText(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: ListItemAvatar(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: height - - - .. py:attribute:: horizontal - - - .. py:attribute:: left - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: right - - - .. py:attribute:: size - - - .. py:attribute:: tile - - - .. py:attribute:: width - - -.. py:class:: ListItemContent(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: ListItemGroup(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: multiple - - - .. py:attribute:: value - - -.. py:class:: ListItemIcon(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: ListItemSubtitle(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: ListItemTitle(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: Menu(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: activator - - - .. py:attribute:: allow_overflow - - - .. py:attribute:: attach - - - .. py:attribute:: auto - - - .. py:attribute:: bottom - - - .. py:attribute:: close_delay - - - .. py:attribute:: close_on_click - - - .. py:attribute:: close_on_content_click - - - .. py:attribute:: content_class - - - .. py:attribute:: dark - - - .. py:attribute:: disable_keys - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: fixed - - - .. py:attribute:: internal_activator - - - .. py:attribute:: left - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_width - - - .. py:attribute:: nudge_bottom - - - .. py:attribute:: nudge_left - - - .. py:attribute:: nudge_right - - - .. py:attribute:: nudge_top - - - .. py:attribute:: nudge_width - - - .. py:attribute:: offset_overflow - - - .. py:attribute:: offset_x - - - .. py:attribute:: offset_y - - - .. py:attribute:: open_delay - - - .. py:attribute:: open_on_click - - - .. py:attribute:: open_on_hover - - - .. py:attribute:: origin - - - .. py:attribute:: position_x - - - .. py:attribute:: position_y - - - .. py:attribute:: return_value - - - .. py:attribute:: right - - - .. py:attribute:: top - - - .. py:attribute:: transition - - - .. py:attribute:: value - - - .. py:attribute:: z_index - - -.. py:class:: MenuTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: Messages(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: value - - -.. py:class:: NavigationDrawer(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: app - - - .. py:attribute:: bottom - - - .. py:attribute:: clipped - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disable_resize_watcher - - - .. py:attribute:: disable_route_watcher - - - .. py:attribute:: expand_on_hover - - - .. py:attribute:: fixed - - - .. py:attribute:: floating - - - .. py:attribute:: height - - - .. py:attribute:: hide_overlay - - - .. py:attribute:: light - - - .. py:attribute:: mini_variant - - - .. py:attribute:: mini_variant_width - - - .. py:attribute:: mobile_break_point - - - .. py:attribute:: overlay_color - - - .. py:attribute:: overlay_opacity - - - .. py:attribute:: permanent - - - .. py:attribute:: right - - - .. py:attribute:: src - - - .. py:attribute:: stateless - - - .. py:attribute:: tag - - - .. py:attribute:: temporary - - - .. py:attribute:: touchless - - - .. py:attribute:: value - - - .. py:attribute:: width - - -.. py:class:: OverflowBtn(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: allow_overflow - - - .. py:attribute:: append_icon - - - .. py:attribute:: append_outer_icon - - - .. py:attribute:: attach - - - .. py:attribute:: auto_select_first - - - .. py:attribute:: autofocus - - - .. py:attribute:: background_color - - - .. py:attribute:: cache_items - - - .. py:attribute:: chips - - - .. py:attribute:: clear_icon - - - .. py:attribute:: clearable - - - .. py:attribute:: color - - - .. py:attribute:: counter - - - .. py:attribute:: dark - - - .. py:attribute:: deletable_chips - - - .. py:attribute:: dense - - - .. py:attribute:: disable_lookup - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: editable - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: filled - - - .. py:attribute:: flat - - - .. py:attribute:: full_width - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hide_no_data - - - .. py:attribute:: hide_selected - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: item_color - - - .. py:attribute:: item_disabled - - - .. py:attribute:: item_text - - - .. py:attribute:: item_value - - - .. py:attribute:: items - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: menu_props - - - .. py:attribute:: messages - - - .. py:attribute:: multiple - - - .. py:attribute:: no_data_text - - - .. py:attribute:: no_filter - - - .. py:attribute:: open_on_clear - - - .. py:attribute:: outlined - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: placeholder - - - .. py:attribute:: prefix - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: prepend_inner_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: return_object - - - .. py:attribute:: reverse - - - .. py:attribute:: rounded - - - .. py:attribute:: rules - - - .. py:attribute:: search_input - - - .. py:attribute:: segmented - - - .. py:attribute:: shaped - - - .. py:attribute:: single_line - - - .. py:attribute:: small_chips - - - .. py:attribute:: solo - - - .. py:attribute:: solo_inverted - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: suffix - - - .. py:attribute:: type - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - -.. py:class:: Overlay(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: opacity - - - .. py:attribute:: value - - - .. py:attribute:: z_index - - -.. py:class:: Pagination(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: circle - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: length - - - .. py:attribute:: light - - - .. py:attribute:: next_icon - - - .. py:attribute:: prev_icon - - - .. py:attribute:: total_visible - - - .. py:attribute:: value - - -.. py:class:: Parallax(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: alt - - - .. py:attribute:: height - - - .. py:attribute:: src - - -.. py:class:: Picker(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: full_width - - - .. py:attribute:: landscape - - - .. py:attribute:: light - - - .. py:attribute:: no_title - - - .. py:attribute:: transition - - - .. py:attribute:: width - - -.. py:class:: ProgressCircular(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: button - - - .. py:attribute:: color - - - .. py:attribute:: indeterminate - - - .. py:attribute:: rotate - - - .. py:attribute:: size - - - .. py:attribute:: value - - - .. py:attribute:: width - - -.. py:class:: ProgressLinear(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: active - - - .. py:attribute:: background_color - - - .. py:attribute:: background_opacity - - - .. py:attribute:: bottom - - - .. py:attribute:: buffer_value - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: fixed - - - .. py:attribute:: height - - - .. py:attribute:: indeterminate - - - .. py:attribute:: light - - - .. py:attribute:: query - - - .. py:attribute:: rounded - - - .. py:attribute:: stream - - - .. py:attribute:: striped - - - .. py:attribute:: top - - - .. py:attribute:: value - - -.. py:class:: Radio(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: id - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: name - - - .. py:attribute:: off_icon - - - .. py:attribute:: on_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: ripple - - - .. py:attribute:: value - - -.. py:class:: RadioGroup(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: append_icon - - - .. py:attribute:: background_color - - - .. py:attribute:: color - - - .. py:attribute:: column - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loading - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: messages - - - .. py:attribute:: multiple - - - .. py:attribute:: name - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: row - - - .. py:attribute:: rules - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - -.. py:class:: RangeSlider(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: background_color - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: inverse_label - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: max - - - .. py:attribute:: messages - - - .. py:attribute:: min - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: rules - - - .. py:attribute:: step - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: thumb_color - - - .. py:attribute:: thumb_label - - - .. py:attribute:: thumb_size - - - .. py:attribute:: tick_labels - - - .. py:attribute:: tick_size - - - .. py:attribute:: ticks - - - .. py:attribute:: track_color - - - .. py:attribute:: track_fill_color - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - - .. py:attribute:: vertical - - -.. py:class:: Rating(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: background_color - - - .. py:attribute:: clearable - - - .. py:attribute:: close_delay - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: empty_icon - - - .. py:attribute:: full_icon - - - .. py:attribute:: half_icon - - - .. py:attribute:: half_increments - - - .. py:attribute:: hover - - - .. py:attribute:: large - - - .. py:attribute:: length - - - .. py:attribute:: light - - - .. py:attribute:: open_delay - - - .. py:attribute:: readonly - - - .. py:attribute:: ripple - - - .. py:attribute:: size - - - .. py:attribute:: small - - - .. py:attribute:: value - - - .. py:attribute:: x_large - - - .. py:attribute:: x_small - - -.. py:class:: Responsive(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: aspect_ratio - - - .. py:attribute:: height - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: width - - -.. py:class:: Row(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: align - - - .. py:attribute:: align_content - - - .. py:attribute:: align_content_lg - - - .. py:attribute:: align_content_md - - - .. py:attribute:: align_content_sm - - - .. py:attribute:: align_content_xl - - - .. py:attribute:: align_lg - - - .. py:attribute:: align_md - - - .. py:attribute:: align_sm - - - .. py:attribute:: align_xl - - - .. py:attribute:: dense - - - .. py:attribute:: justify - - - .. py:attribute:: justify_lg - - - .. py:attribute:: justify_md - - - .. py:attribute:: justify_sm - - - .. py:attribute:: justify_xl - - - .. py:attribute:: no_gutters - - - .. py:attribute:: tag - - -.. py:class:: ScaleTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: ScrollXReverseTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: ScrollXTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: ScrollYReverseTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: ScrollYTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: Select(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: append_outer_icon - - - .. py:attribute:: attach - - - .. py:attribute:: autofocus - - - .. py:attribute:: background_color - - - .. py:attribute:: cache_items - - - .. py:attribute:: chips - - - .. py:attribute:: clear_icon - - - .. py:attribute:: clearable - - - .. py:attribute:: color - - - .. py:attribute:: counter - - - .. py:attribute:: dark - - - .. py:attribute:: deletable_chips - - - .. py:attribute:: dense - - - .. py:attribute:: disable_lookup - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: filled - - - .. py:attribute:: flat - - - .. py:attribute:: full_width - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hide_selected - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: item_color - - - .. py:attribute:: item_disabled - - - .. py:attribute:: item_text - - - .. py:attribute:: item_value - - - .. py:attribute:: items - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: menu_props - - - .. py:attribute:: messages - - - .. py:attribute:: multiple - - - .. py:attribute:: no_data_text - - - .. py:attribute:: open_on_clear - - - .. py:attribute:: outlined - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: placeholder - - - .. py:attribute:: prefix - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: prepend_inner_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: return_object - - - .. py:attribute:: reverse - - - .. py:attribute:: rounded - - - .. py:attribute:: rules - - - .. py:attribute:: shaped - - - .. py:attribute:: single_line - - - .. py:attribute:: small_chips - - - .. py:attribute:: solo - - - .. py:attribute:: solo_inverted - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: suffix - - - .. py:attribute:: type - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - -.. py:class:: Sheet(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: elevation - - - .. py:attribute:: height - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: tag - - - .. py:attribute:: tile - - - .. py:attribute:: width - - -.. py:class:: SimpleCheckbox(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: indeterminate - - - .. py:attribute:: indeterminate_icon - - - .. py:attribute:: light - - - .. py:attribute:: off_icon - - - .. py:attribute:: on_icon - - - .. py:attribute:: ripple - - - .. py:attribute:: value - - -.. py:class:: SimpleTable(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: fixed_header - - - .. py:attribute:: height - - - .. py:attribute:: light - - -.. py:class:: SkeletonLoader(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: boilerplate - - - .. py:attribute:: dark - - - .. py:attribute:: elevation - - - .. py:attribute:: height - - - .. py:attribute:: light - - - .. py:attribute:: loading - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: tile - - - .. py:attribute:: transition - - - .. py:attribute:: type - - - .. py:attribute:: types - - - .. py:attribute:: width - - -.. py:class:: SlideGroup(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: center_active - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: mobile_break_point - - - .. py:attribute:: multiple - - - .. py:attribute:: next_icon - - - .. py:attribute:: prev_icon - - - .. py:attribute:: show_arrows - - - .. py:attribute:: value - - -.. py:class:: SlideItem(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: disabled - - - .. py:attribute:: value - - -.. py:class:: SlideXReverseTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: SlideXTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: SlideYReverseTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: SlideYTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: Slider(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: background_color - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: inverse_label - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: max - - - .. py:attribute:: messages - - - .. py:attribute:: min - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: rules - - - .. py:attribute:: step - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: thumb_color - - - .. py:attribute:: thumb_label - - - .. py:attribute:: thumb_size - - - .. py:attribute:: tick_labels - - - .. py:attribute:: tick_size - - - .. py:attribute:: ticks - - - .. py:attribute:: track_color - - - .. py:attribute:: track_fill_color - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - - .. py:attribute:: vertical - - -.. py:class:: Snackbar(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: bottom - - - .. py:attribute:: color - - - .. py:attribute:: left - - - .. py:attribute:: multi_line - - - .. py:attribute:: right - - - .. py:attribute:: timeout - - - .. py:attribute:: top - - - .. py:attribute:: value - - - .. py:attribute:: vertical - - -.. py:class:: Spacer(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: Sparkline(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: auto_draw - - - .. py:attribute:: auto_draw_duration - - - .. py:attribute:: auto_draw_easing - - - .. py:attribute:: auto_line_width - - - .. py:attribute:: color - - - .. py:attribute:: fill - - - .. py:attribute:: gradient - - - .. py:attribute:: gradient_direction - - - .. py:attribute:: height - - - .. py:attribute:: label_size - - - .. py:attribute:: labels - - - .. py:attribute:: line_width - - - .. py:attribute:: padding - - - .. py:attribute:: show_labels - - - .. py:attribute:: smooth - - - .. py:attribute:: type - - - .. py:attribute:: value - - - .. py:attribute:: width - - -.. py:class:: SpeedDial(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: bottom - - - .. py:attribute:: direction - - - .. py:attribute:: fixed - - - .. py:attribute:: left - - - .. py:attribute:: mode - - - .. py:attribute:: open_on_hover - - - .. py:attribute:: origin - - - .. py:attribute:: right - - - .. py:attribute:: top - - - .. py:attribute:: transition - - - .. py:attribute:: value - - -.. py:class:: Stepper(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: alt_labels - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: non_linear - - - .. py:attribute:: value - - - .. py:attribute:: vertical - - -.. py:class:: StepperContent(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: step - - -.. py:class:: StepperHeader(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: StepperItems(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: StepperStep(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: complete - - - .. py:attribute:: complete_icon - - - .. py:attribute:: edit_icon - - - .. py:attribute:: editable - - - .. py:attribute:: error_icon - - - .. py:attribute:: rules - - - .. py:attribute:: step - - -.. py:class:: Subheader(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: dark - - - .. py:attribute:: inset - - - .. py:attribute:: light - - -.. py:class:: Switch(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: background_color - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: false_value - - - .. py:attribute:: flat - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: input_value - - - .. py:attribute:: inset - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loading - - - .. py:attribute:: messages - - - .. py:attribute:: multiple - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: ripple - - - .. py:attribute:: rules - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: true_value - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - -.. py:class:: SystemBar(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: app - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: fixed - - - .. py:attribute:: height - - - .. py:attribute:: light - - - .. py:attribute:: lights_out - - - .. py:attribute:: window - - -.. py:class:: Tab(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: append - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: exact - - - .. py:attribute:: exact_active_class - - - .. py:attribute:: href - - - .. py:attribute:: light - - - .. py:attribute:: link - - - .. py:attribute:: nuxt - - - .. py:attribute:: replace - - - .. py:attribute:: ripple - - - .. py:attribute:: tag - - - .. py:attribute:: target - - - .. py:attribute:: to - - -.. py:class:: TabItem(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: id - - - .. py:attribute:: reverse_transition - - - .. py:attribute:: transition - - - .. py:attribute:: value - - -.. py:class:: TabReverseTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: TabTransition(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: group - - - .. py:attribute:: hide_on_leave - - - .. py:attribute:: leave_absolute - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - -.. py:class:: TableOverflow(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: Tabs(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: align_with_title - - - .. py:attribute:: background_color - - - .. py:attribute:: center_active - - - .. py:attribute:: centered - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: fixed_tabs - - - .. py:attribute:: grow - - - .. py:attribute:: height - - - .. py:attribute:: hide_slider - - - .. py:attribute:: icons_and_text - - - .. py:attribute:: light - - - .. py:attribute:: mobile_break_point - - - .. py:attribute:: next_icon - - - .. py:attribute:: optional - - - .. py:attribute:: prev_icon - - - .. py:attribute:: right - - - .. py:attribute:: show_arrows - - - .. py:attribute:: slider_color - - - .. py:attribute:: slider_size - - - .. py:attribute:: value - - - .. py:attribute:: vertical - - -.. py:class:: TabsItems(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: continuous - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: multiple - - - .. py:attribute:: next_icon - - - .. py:attribute:: prev_icon - - - .. py:attribute:: reverse - - - .. py:attribute:: show_arrows - - - .. py:attribute:: show_arrows_on_hover - - - .. py:attribute:: touch - - - .. py:attribute:: touchless - - - .. py:attribute:: value - - - .. py:attribute:: vertical - - -.. py:class:: TabsSlider(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - -.. py:class:: Text(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: value - - -.. py:class:: TextField(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: append_outer_icon - - - .. py:attribute:: autofocus - - - .. py:attribute:: background_color - - - .. py:attribute:: clear_icon - - - .. py:attribute:: clearable - - - .. py:attribute:: color - - - .. py:attribute:: counter - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: filled - - - .. py:attribute:: flat - - - .. py:attribute:: full_width - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: messages - - - .. py:attribute:: outlined - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: placeholder - - - .. py:attribute:: prefix - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: prepend_inner_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: reverse - - - .. py:attribute:: rounded - - - .. py:attribute:: rules - - - .. py:attribute:: shaped - - - .. py:attribute:: single_line - - - .. py:attribute:: solo - - - .. py:attribute:: solo_inverted - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: suffix - - - .. py:attribute:: type - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - -.. py:class:: Textarea(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: append_outer_icon - - - .. py:attribute:: auto_grow - - - .. py:attribute:: autofocus - - - .. py:attribute:: background_color - - - .. py:attribute:: clear_icon - - - .. py:attribute:: clearable - - - .. py:attribute:: color - - - .. py:attribute:: counter - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: filled - - - .. py:attribute:: flat - - - .. py:attribute:: full_width - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: messages - - - .. py:attribute:: no_resize - - - .. py:attribute:: outlined - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: placeholder - - - .. py:attribute:: prefix - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: prepend_inner_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: reverse - - - .. py:attribute:: rounded - - - .. py:attribute:: row_height - - - .. py:attribute:: rows - - - .. py:attribute:: rules - - - .. py:attribute:: shaped - - - .. py:attribute:: single_line - - - .. py:attribute:: solo - - - .. py:attribute:: solo_inverted - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: suffix - - - .. py:attribute:: type - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - -.. py:class:: ThemeProvider(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: root - - -.. py:class:: TimePicker(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: allowed_hours - - - .. py:attribute:: allowed_minutes - - - .. py:attribute:: allowed_seconds - - - .. py:attribute:: ampm_in_title - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: format - - - .. py:attribute:: full_width - - - .. py:attribute:: header_color - - - .. py:attribute:: landscape - - - .. py:attribute:: light - - - .. py:attribute:: max - - - .. py:attribute:: min - - - .. py:attribute:: no_title - - - .. py:attribute:: readonly - - - .. py:attribute:: scrollable - - - .. py:attribute:: use_seconds - - - .. py:attribute:: value - - - .. py:attribute:: width - - -.. py:class:: TimePickerClock(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: ampm - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: double - - - .. py:attribute:: light - - - .. py:attribute:: max - - - .. py:attribute:: min - - - .. py:attribute:: readonly - - - .. py:attribute:: rotate - - - .. py:attribute:: scrollable - - - .. py:attribute:: step - - - .. py:attribute:: value - - -.. py:class:: TimePickerTitle(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: ampm - - - .. py:attribute:: ampm_readonly - - - .. py:attribute:: color - - - .. py:attribute:: disabled - - - .. py:attribute:: hour - - - .. py:attribute:: minute - - - .. py:attribute:: period - - - .. py:attribute:: readonly - - - .. py:attribute:: second - - - .. py:attribute:: selecting - - - .. py:attribute:: use_seconds - - -.. py:class:: Timeline(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: align_top - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: light - - - .. py:attribute:: reverse - - -.. py:class:: TimelineItem(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: fill_dot - - - .. py:attribute:: hide_dot - - - .. py:attribute:: icon - - - .. py:attribute:: icon_color - - - .. py:attribute:: large - - - .. py:attribute:: left - - - .. py:attribute:: light - - - .. py:attribute:: right - - - .. py:attribute:: small - - -.. py:class:: Toolbar(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: bottom - - - .. py:attribute:: collapse - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: elevation - - - .. py:attribute:: extended - - - .. py:attribute:: extension_height - - - .. py:attribute:: flat - - - .. py:attribute:: floating - - - .. py:attribute:: height - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: prominent - - - .. py:attribute:: short - - - .. py:attribute:: src - - - .. py:attribute:: tag - - - .. py:attribute:: tile - - - .. py:attribute:: width - - -.. py:class:: ToolbarItems(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: ToolbarTitle(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: Tooltip(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: activator - - - .. py:attribute:: allow_overflow - - - .. py:attribute:: attach - - - .. py:attribute:: bottom - - - .. py:attribute:: close_delay - - - .. py:attribute:: color - - - .. py:attribute:: content_class - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: fixed - - - .. py:attribute:: internal_activator - - - .. py:attribute:: left - - - .. py:attribute:: light - - - .. py:attribute:: max_width - - - .. py:attribute:: min_width - - - .. py:attribute:: nudge_bottom - - - .. py:attribute:: nudge_left - - - .. py:attribute:: nudge_right - - - .. py:attribute:: nudge_top - - - .. py:attribute:: nudge_width - - - .. py:attribute:: offset_overflow - - - .. py:attribute:: open_delay - - - .. py:attribute:: open_on_click - - - .. py:attribute:: open_on_hover - - - .. py:attribute:: position_x - - - .. py:attribute:: position_y - - - .. py:attribute:: right - - - .. py:attribute:: tag - - - .. py:attribute:: top - - - .. py:attribute:: transition - - - .. py:attribute:: value - - - .. py:attribute:: z_index - - -.. py:class:: Treeview(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: activatable - - - .. py:attribute:: active - - - .. py:attribute:: active_class - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: expand_icon - - - .. py:attribute:: hoverable - - - .. py:attribute:: indeterminate_icon - - - .. py:attribute:: item_children - - - .. py:attribute:: item_disabled - - - .. py:attribute:: item_key - - - .. py:attribute:: item_text - - - .. py:attribute:: items - - - .. py:attribute:: light - - - .. py:attribute:: loading_icon - - - .. py:attribute:: multiple_active - - - .. py:attribute:: off_icon - - - .. py:attribute:: on_icon - - - .. py:attribute:: open_ - - - .. py:attribute:: open_all - - - .. py:attribute:: open_on_click - - - .. py:attribute:: return_object - - - .. py:attribute:: rounded - - - .. py:attribute:: search - - - .. py:attribute:: selectable - - - .. py:attribute:: selected_color - - - .. py:attribute:: selection_type - - - .. py:attribute:: shaped - - - .. py:attribute:: transition - - - .. py:attribute:: value - - -.. py:class:: TreeviewNode(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: activatable - - - .. py:attribute:: active_class - - - .. py:attribute:: color - - - .. py:attribute:: expand_icon - - - .. py:attribute:: indeterminate_icon - - - .. py:attribute:: item - - - .. py:attribute:: item_children - - - .. py:attribute:: item_disabled - - - .. py:attribute:: item_key - - - .. py:attribute:: item_text - - - .. py:attribute:: level - - - .. py:attribute:: loading_icon - - - .. py:attribute:: off_icon - - - .. py:attribute:: on_icon - - - .. py:attribute:: open_on_click - - - .. py:attribute:: rounded - - - .. py:attribute:: selectable - - - .. py:attribute:: selected_color - - - .. py:attribute:: shaped - - - .. py:attribute:: transition - - -.. py:class:: VirtualTable(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: chunk_size - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: fixed_header - - - .. py:attribute:: header_height - - - .. py:attribute:: height - - - .. py:attribute:: items - - - .. py:attribute:: light - - - .. py:attribute:: row_height - - -.. py:class:: VuetifyTemplate(*args, **kwargs) - - Bases: :py:obj:`ipyvue.VueTemplate` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: VuetifyWidget(**kwargs) - - Bases: :py:obj:`ipyvue.VueWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - -.. py:class:: Window(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: continuous - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: multiple - - - .. py:attribute:: next_icon - - - .. py:attribute:: prev_icon - - - .. py:attribute:: reverse - - - .. py:attribute:: show_arrows - - - .. py:attribute:: show_arrows_on_hover - - - .. py:attribute:: touch - - - .. py:attribute:: touchless - - - .. py:attribute:: value - - - .. py:attribute:: vertical - - -.. py:class:: WindowItem(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: reverse_transition - - - .. py:attribute:: transition - - - .. py:attribute:: value - - .. py:data:: theme diff --git a/docs/conf.py b/docs/conf.py index 6f3b9e37..bcc330aa 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -64,6 +64,7 @@ autodoc_typehints = "description" autoapi_dirs = ["../ipyvuetify"] autoapi_member_order = "groupwise" +autoapi_own_page_level = "method" autoapi_keep_files = True autoapi_options = [ "members", From 42c30abce89d00f4a34014a216ef51921df30d4e Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Thu, 20 Nov 2025 21:54:21 +0000 Subject: [PATCH 016/110] fix: add documentation from EOL 2.7.2 --- generate_source/add_component_docs.py | 216 + generate_source/add_docs.py | 108 + generate_source/add_mixin_docs.py | 251 + generate_source/vuetify_api.json | 6880 +++++++++++++++++-------- 4 files changed, 5162 insertions(+), 2293 deletions(-) create mode 100644 generate_source/add_component_docs.py create mode 100644 generate_source/add_docs.py create mode 100644 generate_source/add_mixin_docs.py diff --git a/generate_source/add_component_docs.py b/generate_source/add_component_docs.py new file mode 100644 index 00000000..d6607208 --- /dev/null +++ b/generate_source/add_component_docs.py @@ -0,0 +1,216 @@ +#!/usr/bin/env python3 +""" +Script to add component-level documentation to vuetify_api.json +""" +import json + +COMPONENT_DOCS = { + "v-app": "The v-app component is REQUIRED for all Vuetify applications. This is the mount point for many of Vuetify's components and functionality and ensures proper cross-browser support for custom properties.", + "v-app-bar": "The v-app-bar component is a top navigation component that provides a flexible toolbar for app layouts. It is typically used to provide navigation controls and page title information.", + "v-app-bar-nav-icon": "A stylized icon button component used in app-bars to toggle navigation drawers. It displays the standard hamburger menu icon.", + "v-alert": "The v-alert component is used to convey important information to the user through contextual types, icons, and colors. These alerts are positioned to draw user attention.", + "v-autocomplete": "The v-autocomplete component offers simple and flexible type-ahead functionality with filtering of available options. This is useful when you have a ton of data that requires filtering.", + "v-avatar": "The v-avatar component is used to display circular user profile pictures. When used with the v-list component, avatars minimum width will be respected even if they contain smaller images.", + "v-badge": "The v-badge component is a small status descriptor for UI elements. It provides a visual indicator of notifications, counts, or other status information.", + "v-banner": "The v-banner component is used to display important information to the user in a prominent way. They are typically placed at the top of screens below the app bar.", + "v-bottom-navigation": "The v-bottom-navigation component is a bottom navigation bar used for mobile applications. It displays 3-5 destinations at the bottom of a screen.", + "v-bottom-sheet": "The v-bottom-sheet component is used to display supplemental content anchored to the bottom of the screen. It's a variation of the v-dialog component.", + "v-breadcrumbs": "The v-breadcrumbs component is a navigational helper for pages that shows hierarchical navigation structure. It allows users to understand their location within a site.", + "v-breadcrumbs-item": "A single item in the breadcrumbs navigation trail. Typically used within v-breadcrumbs component.", + "v-breadcrumbs-divider": "A divider element between breadcrumb items, typically showing '/' or '>' character.", + "v-btn": "The v-btn component replaces the standard html button with a material design theme and multiple options. Buttons communicate actions that users can take.", + "v-btn-toggle": "The v-btn-toggle component is a group of buttons that act as a toggle or radio selection. It's useful for creating grouped action buttons.", + "v-calendar": "The v-calendar component is used to display information in a calendar format. It supports month, week, and day views.", + "v-calendar-daily": "A calendar component that displays events in a daily view with time slots.", + "v-calendar-weekly": "A calendar component that displays events in a weekly view.", + "v-calendar-monthly": "A calendar component that displays events in a monthly view.", + "v-card": "The v-card component is a versatile content container with multiple variants and options. Cards are used to display related information in an organized manner.", + "v-card-actions": "The v-card-actions component is used to contain action buttons within a v-card. It's typically placed at the bottom of the card.", + "v-card-subtitle": "A subtitle element within a v-card, typically displayed below the card title.", + "v-card-text": "The main content area of a v-card component.", + "v-card-title": "The title element of a v-card component, typically displayed at the top.", + "v-carousel": "The v-carousel component is used to display large numbers of visual content on a rotating timer or with manual navigation.", + "v-carousel-item": "A single item/slide within a v-carousel component.", + "v-checkbox": "The v-checkbox component provides users the ability to choose between two distinct values. These are often used in forms and filters.", + "v-simple-checkbox": "A simplified version of v-checkbox with minimal styling, often used in data tables.", + "v-chip": "The v-chip component is used to convey small pieces of information. It can be interactive and used in various contexts like tags or selections.", + "v-chip-group": "The v-chip-group component is used to group and manage multiple v-chip components with selection capabilities.", + "v-color-picker": "The v-color-picker component allows users to select colors using various input methods including swatches, sliders, and text input.", + "v-color-picker-swatches": "A component displaying color swatches for quick color selection within a color picker.", + "v-color-picker-canvas": "The canvas area of a color picker for detailed color selection.", + "v-content": "A deprecated component that was used as the main content wrapper. Use v-main instead.", + "v-combobox": "The v-combobox component is a combination of v-autocomplete and v-select that allows users to select from a list or create new entries.", + "v-counter": "A counter component typically used with text inputs to show character count.", + "v-data": "A base component for data display functionality.", + "v-data-iterator": "The v-data-iterator component is used for displaying data with sorting, filtering, and pagination without the table markup.", + "v-data-footer": "The footer component for data tables, typically containing pagination controls.", + "v-data-table": "The v-data-table component is used for displaying tabular data with sorting, searching, pagination, and selection capabilities.", + "v-edit-dialog": "A dialog component specifically designed for inline editing within data tables.", + "v-table-overflow": "A component that handles overflow behavior in tables.", + "v-data-table-header": "The header component for data tables containing column headers.", + "v-simple-table": "A simplified table component with basic styling without advanced features like sorting or pagination.", + "v-virtual-table": "A table component that uses virtual scrolling for performance with large datasets.", + "v-date-picker": "The v-date-picker component is a fully featured date selection component that allows users to select dates from a calendar interface.", + "v-date-picker-title": "The title/display area of the date picker showing the selected date.", + "v-date-picker-header": "The header of the date picker containing month/year navigation.", + "v-date-picker-date-table": "The calendar grid displaying days of the month in the date picker.", + "v-date-picker-month-table": "The grid displaying months for month selection in the date picker.", + "v-date-picker-years": "The list of years for year selection in the date picker.", + "v-dialog": "The v-dialog component informs users about a task and can contain critical information, require decisions, or involve multiple tasks.", + "v-divider": "The v-divider component is used to separate sections of lists or layouts with a thin line.", + "v-expansion-panels": "The v-expansion-panels component contains v-expansion-panel components and provides an accordion-style interface.", + "v-expansion-panel": "A single expandable panel within v-expansion-panels that can show or hide content.", + "v-expansion-panel-header": "The clickable header of an expansion panel that triggers expansion/collapse.", + "v-expansion-panel-content": "The content area of an expansion panel that is shown when expanded.", + "v-file-input": "The v-file-input component is a specialized input for selecting files from the user's device.", + "v-footer": "The v-footer component is used for displaying general information that a user might want to access from any page.", + "v-form": "The v-form component is used to wrap input components and provide validation capabilities for the entire form.", + "v-container": "The v-container component is the base grid container, typically used with v-row and v-col for responsive layouts.", + "v-col": "A column component used within v-row for creating responsive grid layouts based on a 12-point system.", + "v-row": "A row component that contains v-col components for creating responsive grid layouts.", + "v-spacer": "A flex spacer component that fills available space between other elements.", + "v-layout": "A deprecated layout component from Vuetify 1.x. Use v-row instead.", + "v-flex": "A deprecated flex component from Vuetify 1.x. Use v-col instead.", + "v-hover": "The v-hover component provides a wrapper that detects when a user hovers over an element and provides scoped slot properties.", + "v-icon": "The v-icon component provides a large set of icons to use in your application. It supports Material Design Icons, Font Awesome, and other icon libraries.", + "v-img": "The v-img component is a responsive image component with lazy-loading, placeholders, and aspect ratio capabilities.", + "v-input": "The v-input component is the base for all input components, providing common functionality like labels, hints, and validation.", + "v-item": "A component used within v-item-group for creating selectable items in a group.", + "v-item-group": "The v-item-group component provides an interface for groups of selectable items with v-model support.", + "v-label": "A label component typically used internally by form inputs.", + "v-lazy": "The v-lazy component is used to dynamically load components based on visibility. It's useful for performance optimization.", + "v-list-item-action-text": "Text content for list item actions.", + "v-list-item-content": "The main content area of a list item.", + "v-list-item-title": "The title element within a list item.", + "v-list-item-subtitle": "The subtitle element within a list item.", + "v-list": "The v-list component is used to display information in a organized way. It can contain avatars, content, actions, and more.", + "v-list-group": "A list component that can be expanded to show nested list items.", + "v-list-item": "A single item within a v-list component.", + "v-list-item-action": "The action area of a list item, typically containing buttons or checkboxes.", + "v-list-item-avatar": "An avatar element within a list item.", + "v-list-item-icon": "An icon element within a list item.", + "v-list-item-group": "A group of selectable list items with v-model support.", + "v-menu": "The v-menu component displays a menu at the position of the element used to activate it. Menus can be activated with hover, click, or focus.", + "v-messages": "A component for displaying multiple messages, typically used for validation feedback.", + "v-navigation-drawer": "The v-navigation-drawer component is used to display application navigation. It can be permanently visible or temporarily shown.", + "v-overflow-btn": "A styled select component that displays the selected value as a button with overflow menu behavior.", + "v-overlay": "The v-overlay component provides an overlay effect and is used as a base for other components like dialogs and menus.", + "v-pagination": "The v-pagination component is used to separate long sets of data into multiple pages.", + "v-sheet": "The v-sheet component is a piece of paper on which content is displayed. It's a base for many other components.", + "v-parallax": "The v-parallax component creates a 3D effect that makes an image appear to scroll slower than the window.", + "v-picker": "A base picker component that provides common functionality for date and time pickers.", + "v-progress-circular": "The v-progress-circular component displays a circular progress indicator, used to show loading states or progress.", + "v-progress-linear": "The v-progress-linear component displays a horizontal progress bar, used to show loading states or progress.", + "v-radio-group": "The v-radio-group component is a wrapper for v-radio components that provides v-model support for radio button groups.", + "v-radio": "The v-radio component is a simple radio button that allows users to select a single option from a group.", + "v-range-slider": "The v-range-slider component allows users to select a range of values on a continuous or discrete scale.", + "v-rating": "The v-rating component provides a simple interface for gathering user feedback via ratings.", + "v-responsive": "The v-responsive component is used to create components with specific aspect ratios or max-height/width.", + "v-select": "The v-select component provides a dropdown selection interface with autocomplete, filtering, and multi-select capabilities.", + "v-skeleton-loader": "The v-skeleton-loader component provides a placeholder preview while content is loading, improving perceived performance.", + "v-slider": "The v-slider component allows users to select a single value from a range of values using a draggable slider.", + "v-slide-group": "The v-slide-group component is used to display content in a horizontal scrollable container with pagination.", + "v-slide-item": "A single item within a v-slide-group component.", + "v-snackbar": "The v-snackbar component displays brief messages at the bottom of the screen, typically for user notifications.", + "v-sparkline": "The v-sparkline component creates a simple chart for visualizing trends in data with minimal visual elements.", + "v-speed-dial": "The v-speed-dial component displays a floating action button that reveals related actions when activated.", + "v-stepper": "The v-stepper component displays progress through numbered steps, commonly used for multi-step processes.", + "v-stepper-content": "The content area of a stepper step, shown when the step is active.", + "v-stepper-step": "A single step within a v-stepper component.", + "v-stepper-header": "The header area of a stepper containing all step indicators.", + "v-stepper-items": "A container for stepper content areas.", + "v-subheader": "The v-subheader component is used to separate sections of lists or content with text headings.", + "v-switch": "The v-switch component provides a toggle switch for boolean input with on/off states.", + "v-system-bar": "The v-system-bar component displays system-level information at the very top of an application.", + "v-tabs": "The v-tabs component is used for organizing content into different views where only one is visible at a time.", + "v-tab": "A single tab within a v-tabs component that users click to switch views.", + "v-tab-item": "The content panel associated with a tab, shown when the tab is active.", + "v-tabs-items": "A container for v-tab-item components.", + "v-tabs-slider": "A sliding indicator that shows which tab is currently active.", + "v-textarea": "The v-textarea component is a multi-line text input for collecting larger amounts of text from users.", + "v-text-field": "The v-text-field component is a single-line text input used in forms and dialogs.", + "v-theme-provider": "The v-theme-provider component allows you to dynamically change theme (light/dark) for its children.", + "v-timeline": "The v-timeline component displays a list of events in chronological order along a vertical line.", + "v-timeline-item": "A single event item within a v-timeline component.", + "v-time-picker": "The v-time-picker component allows users to select a time from a clock interface.", + "v-time-picker-clock": "The clock face interface of the time picker.", + "v-time-picker-title": "The title/display area of the time picker showing the selected time.", + "v-toolbar": "The v-toolbar component provides a flexible container for grouping actions, navigation, and content.", + "v-toolbar-items": "A container for toolbar items that provides proper spacing.", + "v-toolbar-title": "The title element of a toolbar.", + "v-tooltip": "The v-tooltip component displays contextual information when users hover over, focus on, or tap an element.", + "v-treeview": "The v-treeview component displays hierarchical data in a tree structure with expand/collapse functionality.", + "v-treeview-node": "A single node within a v-treeview component.", + "v-window": "The v-window component provides a base for creating sliding window presentations like carousels and steppers.", + "v-window-item": "A single panel/slide within a v-window component.", + "v-carousel-transition": "A transition component that provides carousel-style animation effects.", + "v-carousel-reverse-transition": "A transition component that provides reverse carousel-style animation effects.", + "v-tab-transition": "A transition component that provides tab-style animation effects.", + "v-tab-reverse-transition": "A transition component that provides reverse tab-style animation effects.", + "v-menu-transition": "A transition component that provides menu-style animation effects.", + "v-fab-transition": "A transition component that provides floating action button animation effects.", + "v-dialog-transition": "A transition component that provides dialog animation effects.", + "v-dialog-bottom-transition": "A transition component for dialogs that slide from the bottom.", + "v-fade-transition": "A transition component that provides fade in/out animation effects.", + "v-scale-transition": "A transition component that provides scale animation effects.", + "v-scroll-x-transition": "A transition component that provides horizontal scroll animation effects.", + "v-scroll-x-reverse-transition": "A transition component that provides reverse horizontal scroll animation effects.", + "v-scroll-y-transition": "A transition component that provides vertical scroll animation effects.", + "v-scroll-y-reverse-transition": "A transition component that provides reverse vertical scroll animation effects.", + "v-slide-x-transition": "A transition component that provides horizontal slide animation effects.", + "v-slide-x-reverse-transition": "A transition component that provides reverse horizontal slide animation effects.", + "v-slide-y-transition": "A transition component that provides vertical slide animation effects.", + "v-slide-y-reverse-transition": "A transition component that provides reverse vertical slide animation effects.", + "v-expand-transition": "A transition component that provides expand/collapse animation effects.", + "v-expand-x-transition": "A transition component that provides horizontal expand/collapse animation effects.", + "$vuetify": "The Vuetify service object that provides access to theme, breakpoint, and other Vuetify configuration.", + "internationalization": "Vuetify's internationalization service for managing translations and locale-specific content.", + "v-mutate": "A directive that observes DOM mutations on an element.", + "v-intersect": "A directive that detects when an element enters or leaves the viewport.", + "v-ripple": "A directive that adds material design ripple effect to elements when clicked.", + "v-resize": "A directive that triggers a callback when the window is resized.", + "v-scroll": "A directive that triggers a callback when scrolling occurs.", + "v-touch": "A directive that provides touch gesture detection for mobile interactions.", +} + + +def main(): + api_file = "/home/rambap/github/ipyvuetify/generate_source/vuetify_api.json" + print(f"Loading {api_file}...") + + with open(api_file, "r") as f: + api_data = json.load(f) + + components_updated = 0 + components_no_doc = [] + + # Add component documentation + for component_name in api_data.keys(): + if component_name in COMPONENT_DOCS: + if "doc" not in api_data[component_name]: + api_data[component_name]["doc"] = COMPONENT_DOCS[component_name] + components_updated += 1 + print(f" ✓ {component_name}") + else: + print(f" - {component_name} (already has doc)") + else: + components_no_doc.append(component_name) + print(f" ⚠ {component_name} (no doc available)") + + # Save updated data + print("\nSaving updated data...") + with open(api_file, "w") as f: + json.dump(api_data, f, indent=2) + + print(f"\n{'='*60}") + print("Summary:") + print(f" Total components: {len(api_data)}") + print(f" Components documented: {components_updated}") + print(f" Components without docs: {len(components_no_doc)}") + if components_no_doc: + print(f" Missing: {', '.join(components_no_doc)}") + print(f"{'='*60}") + + +if __name__ == "__main__": + main() diff --git a/generate_source/add_docs.py b/generate_source/add_docs.py new file mode 100644 index 00000000..ea409a3c --- /dev/null +++ b/generate_source/add_docs.py @@ -0,0 +1,108 @@ +#!/usr/bin/env python3 +""" +Script to add documentation from Vuetify GitHub to vuetify_api.json +""" +import json +from typing import Any, Dict + +import requests + + +def fetch_github_docs(component_name: str) -> Dict[str, Any]: + """Fetch documentation from GitHub for a component.""" + url = f"https://raw.githubusercontent.com/vuetifyjs/vuetify/v2.7.2/packages/api-generator/src/locale/en/{component_name}.json" + try: + response = requests.get(url, timeout=10) + if response.status_code == 200: + return response.json() + else: + print(f" ⚠ No GitHub docs found for {component_name} (status {response.status_code})") + return {} + except Exception as e: + print(f" ✗ Error fetching {component_name}: {e}") + return {} + + +def add_docs_to_component( + component_data: Dict[str, Any], github_docs: Dict[str, Any] +) -> tuple[int, int]: + """Add documentation to component props and slots. Returns (props_updated, slots_updated).""" + props_updated = 0 + slots_updated = 0 + + # Add documentation to props + if "props" in component_data and "props" in github_docs: + for prop in component_data["props"]: + prop_name = prop.get("name") + if prop_name in github_docs["props"]: + if "doc" not in prop: # Only add if not already present + prop["doc"] = github_docs["props"][prop_name] + props_updated += 1 + + # Add documentation to slots + if "slots" in component_data and "slots" in github_docs: + for slot in component_data["slots"]: + slot_name = slot.get("name") + if slot_name in github_docs["slots"]: + if "doc" not in slot: # Only add if not already present + slot["doc"] = github_docs["slots"][slot_name] + slots_updated += 1 + + return props_updated, slots_updated + + +def main(): + # Load vuetify_api.json + api_file = "/home/rambap/github/ipyvuetify/generate_source/vuetify_api.json" + print(f"Loading {api_file}...") + + with open(api_file, "r") as f: + api_data = json.load(f) + + total_components = len(api_data) + processed = 0 + skipped = 0 + total_props = 0 + total_slots = 0 + + print(f"Found {total_components} components\n") + + # Process each component + for component_name, component_data in api_data.items(): + processed += 1 + print(f"[{processed}/{total_components}] Processing {component_name}...") + + # Fetch GitHub documentation + github_docs = fetch_github_docs(component_name) + + if not github_docs: + skipped += 1 + continue + + # Add documentation + props_updated, slots_updated = add_docs_to_component(component_data, github_docs) + total_props += props_updated + total_slots += slots_updated + + if props_updated > 0 or slots_updated > 0: + print(f" ✓ Updated {props_updated} props, {slots_updated} slots") + else: + print(" - No new docs to add") + + # Save updated data + print("\nSaving updated data...") + with open(api_file, "w") as f: + json.dump(api_data, f, indent=2) + + print(f"\n{'='*60}") + print("Summary:") + print(f" Total components: {total_components}") + print(f" Processed: {processed}") + print(f" Skipped (no GitHub docs): {skipped}") + print(f" Props documented: {total_props}") + print(f" Slots documented: {total_slots}") + print(f"{'='*60}") + + +if __name__ == "__main__": + main() diff --git a/generate_source/add_mixin_docs.py b/generate_source/add_mixin_docs.py new file mode 100644 index 00000000..235a1c03 --- /dev/null +++ b/generate_source/add_mixin_docs.py @@ -0,0 +1,251 @@ +#!/usr/bin/env python3 +""" +Script to add mixin documentation from Vuetify GitHub to vuetify_api.json +""" +import json + +# Documentation from mixin files +MIXIN_DOCS = { + "colorable": { + "color": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." + }, + "themeable": { + "dark": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html).", + "light": "Applies the light theme variant to the component.", + }, + "elevatable": { + "elevation": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)." + }, + "measurable": { + "height": "Sets the height for the component.", + "maxHeight": "Sets the maximum height for the component.", + "minHeight": "Sets the minimum height for the component.", + "maxWidth": "Sets the maximum width for the component.", + "minWidth": "Sets the minimum width for the component.", + "width": "Sets the width for the component.", + }, + "positionable": { + "absolute": "Applies **position: absolute** to the component.", + "bottom": "Aligns the component towards the bottom.", + "fixed": "Applies **position: fixed** to the component.", + "left": "Aligns the component towards the left.", + "right": "Aligns the component towards the right.", + "top": "Aligns the content towards the top.", + }, + "scrollable": { + "scrollTarget": "Designates the element to target for scrolling events. Uses `window` by default.", + "scrollThreshold": "The amount of scroll distance down before **hide-on-scroll** activates.", + }, + "toggleable": {"value": "Controls whether the component is visible or hidden."}, + "applicationable": { + "app": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can find more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop" + }, + "routable": { + "activeClass": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation.", + "append": "Setting **append** prop always appends the relative path to the current path. You can find more information about the [**append** prop](https://router.vuejs.org/api/#append) on the vue-router documentation.", + "disabled": "Removes the ability to click or target the component.", + "exact": "Exactly match the link. Without this, '/' will match every route. You can find more information about the [**exact** prop](https://router.vuejs.org/api/#exact) on the vue-router documentation.", + "exactPath": "Exactly match the link, ignoring the `query` and the `hash` sections. You can find more information about the [**exact-path** prop](https://router.vuejs.org/api/#exact-path) on the vue-router documentation.", + "exactActiveClass": "Configure the active CSS class applied when the link is active with exact match. You can find more information about the [**exact-active-class** prop](https://router.vuejs.org/api/#exact-active-class) on the vue-router documentation.", + "href": "Designates the component as anchor and applies the **href** attribute.", + "link": "Designates that the component is a link. This is automatic when using the **href** or **to** prop.", + "nuxt": "Specifies the link is a `nuxt-link`. For use with the [nuxt framework](https://nuxtjs.org/api/components-nuxt-link/).", + "replace": "Setting **replace** prop will call `router.replace()` instead of `router.push()` when clicked, so the navigation will not leave a history record. You can find more information about the [**replace** prop](https://router.vuejs.org/api/#replace) on the vue-router documentation.", + "ripple": "Applies the [v-ripple](/directives/ripple) directive.", + "to": "Denotes the target route of the link. You can find more information about the [**to** prop](https://router.vuejs.org/api/#to) on the vue-router documentation.", + "target": "Designates the target attribute. This should only be applied when using the **href** prop.", + }, + "sizeable": { + "large": "Makes the component large.", + "medium": "Makes the component medium.", + "small": "Makes the component small.", + "xSmall": "Makes the component extra small.", + "xLarge": "Makes the component extra large.", + }, + "roundable": { + "rounded": "Designates the **border-radius** applied to the component. You can find more information on the [Border Radius page](/styles/border-radius).", + "tile": "Removes the component's **border-radius**.", + }, + "rippleable": {"ripple": "Applies the [v-ripple](/directives/ripple) directive."}, + "validatable": { + "disabled": "Disable the input", + "error": "Puts the input in a manual error state", + "errorCount": "The total number of errors that should display at once", + "errorMessages": "Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the **rules** prop. This field will not trigger validation", + "messages": "Displays a list of messages or message if using a string", + "readonly": "Puts input in readonly state", + "rules": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`", + "success": "Puts the input in a manual success state", + "successMessages": "Puts the input in a success state and passes through custom success messages.", + "validateOnBlur": "Delays validation until blur event", + }, + "loadable": { + "loading": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color", + "loaderHeight": "Specifies the height of the loader", + }, + "bootable": { + "eager": "Will force the components content to render on mounted. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO." + }, + "transitionable": { + "mode": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition).", + "origin": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin).", + "transition": "Sets the component transition. Can be one of the [built in transitions](/styles/transitions) or one your own.", + }, + "delayable": { + "openDelay": "Milliseconds to wait before opening component. Only applies to hover and focus events.", + "closeDelay": "Milliseconds to wait before closing component. Only applies to hover and focus events.", + }, + "detachable": { + "attach": "Specifies which DOM element that this component should detach to. String can be any valid querySelector and Object can be any valid Node. This will attach to the root `v-app` component by default.", + "contentClass": "Applies a custom class to the detached element. This is useful because the content is moved to the beginning of the `v-app` component (unless the **attach** prop is provided) and is not targetable by classes passed directly on the component.", + }, + "menuable": { + "allowOverflow": "Removes overflow re-positioning for the content", + "inputActivator": "Sets a new activator target for the detached element. Use when placing detachable items in `v-input` slots", + "maxWidth": "Sets the maximum width for the content", + "minWidth": "Sets the minimum width for the content", + "nudgeBottom": "Nudge the content to the bottom", + "nudgeLeft": "Nudge the content to the left", + "nudgeRight": "Nudge the content to the right", + "nudgeTop": "Nudge the content to the top", + "nudgeWidth": "Nudge the content width", + "offsetOverflow": "Causes the component to flip to the opposite side when repositioned due to overflow", + "positionX": "Used to position the content when not using an activator slot", + "positionY": "Used to position the content when not using an activator slot", + "zIndex": "The z-index used for the component", + }, + "overlayable": { + "hideOverlay": "Hides the display of the overlay.", + "overlayColor": "Sets the overlay color.", + "overlayOpacity": "Sets the overlay opacity.", + }, + "proxyable": {"value": "The designated model value for the component."}, + "comparable": {"valueComparator": "Apply a custom value comparator function"}, + "filterable": {"noDataText": "Display text when there is no data"}, + "groupable": { + "activeClass": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation.", + "disabled": "Removes the ability to click or target the component.", + "value": "The value used when the component is selected in a group. If not provided, the index will be used.", + }, + "activatable": { + "activator": "Designate a custom activator when the `activator` slot is not used. String can be any valid querySelector and Object can be any valid Node.", + "disabled": "Disables the ability to open the component.", + }, + "picker": { + "actions": "Use this when using actions inside the picker", + "autosave": "Automatically save the selected value. This updates the internal previous value so if cancel is clicked, it will not revert the user changes", + "headerColor": "Defines the header color. If not specified it will use the color defined by color prop or the default picker color", + "landscape": "Orients picker horizontal", + "noTitle": "Hide the picker title", + "scrollable": "Allows the use of the mouse wheel in the picker", + "value": "Picker value", + }, + "generic": { + "auto": "Centers list on selected element", + "clearable": "Add input clear functionality, default icon is Material Design Icons **mdi-clear**", + "height": "Sets the height for the component", + "falseValue": "Sets value for falsy state", + "fullWidth": "Forces 100% width", + "id": "Sets the DOM id on the component", + "persistent": "Clicking outside or pressing **esc** key will not dismiss the dialog", + "size": "Sets the height and width of the component.", + "tag": "Specify a custom tag used on the root element.", + "textColor": "Applies a specified color to the control text", + "trueValue": "Sets value for truthy state", + "width": "Sets the width for the component.", + }, + "transitions": { + "mode": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition).", + "origin": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin).", + "group": "Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group)", + "hideOnLeave": "Hides the leaving element (no exit animation)", + "leaveAbsolute": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))", + }, + "v-input": { + "appendIcon": "Appends an icon to the component, uses the same syntax as `v-icon`", + "backgroundColor": "Changes the background-color of the input", + "hideDetails": "Hides hint and validation errors. When set to `auto` messages will be rendered only if there's a message (hint, error message, counter value etc) to display", + "dense": "Reduces the input height", + "hint": "Hint text", + "label": "Sets input label", + "persistentHint": "Forces hint to always be visible", + "placeholder": "Sets the input's placeholder text", + "prependIcon": "Prepends an icon to the component, uses the same syntax as `v-icon`", + }, + "v-text-field": { + "appendOuterIcon": "Appends an icon to the outside the component's input, uses same syntax as `v-icon`", + "filled": "Applies the alternate filled input style", + "clearIcon": "Applied when using **clearable** and the input is dirty", + "counter": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation.", + "flat": "Removes elevation (shadow) added to element when using the **solo** or **solo-inverted** props", + "outlined": "Applies the outlined style to the input", + "prefix": "Displays prefix text", + "prependInnerIcon": "Prepends an icon inside the component's input, uses the same syntax as `v-icon`", + "reverse": "Reverses the input orientation", + "rounded": "Adds a border radius to the input", + "singleLine": "Label does not move on focus/dirty", + "solo": "Changes the style of the input", + "soloInverted": "Reduces element opacity until focused", + "shaped": "Round if `outlined` and increase `border-radius` if `filled`. Must be used with either `outlined` or `filled`", + }, + "v-select": { + "chips": "Changes display of selections to chips", + "deletableChips": "Adds a remove icon to selected chips", + "multiple": "Changes select to multiple. Accepts array for value", + "smallChips": "Changes display of selections to chips with the **small** property", + }, + "base-item-group": { + "max": "Sets a maximum number of selections that can be made.", + "multiple": "Allow multiple selections. The **value** prop must be an _array_.", + }, +} + +# Flatten all prop docs into one dict +ALL_PROP_DOCS = {} +for mixin_name, props in MIXIN_DOCS.items(): + for prop_name, doc in props.items(): + if prop_name not in ALL_PROP_DOCS: + ALL_PROP_DOCS[prop_name] = doc + + +def main(): + api_file = "/home/rambap/github/ipyvuetify/generate_source/vuetify_api.json" + print(f"Loading {api_file}...") + + with open(api_file, "r") as f: + api_data = json.load(f) + + total_updated = 0 + components_updated = 0 + + # Process each component + for component_name, component_data in api_data.items(): + component_props_updated = 0 + + if "props" in component_data: + for prop in component_data["props"]: + prop_name = prop.get("name") + # Only add doc if not already present and we have a doc for it + if prop_name and "doc" not in prop and prop_name in ALL_PROP_DOCS: + prop["doc"] = ALL_PROP_DOCS[prop_name] + component_props_updated += 1 + total_updated += 1 + + if component_props_updated > 0: + components_updated += 1 + print(f" {component_name}: Added {component_props_updated} prop docs") + + # Save updated data + print("\nSaving updated data...") + with open(api_file, "w") as f: + json.dump(api_data, f, indent=2) + + print(f"\n{'='*60}") + print("Summary:") + print(f" Components updated: {components_updated}") + print(f" Total props documented: {total_updated}") + print(f"{'='*60}") + + +if __name__ == "__main__": + main() diff --git a/generate_source/vuetify_api.json b/generate_source/vuetify_api.json index 718caa0f..56686136 100644 --- a/generate_source/vuetify_api.json +++ b/generate_source/vuetify_api.json @@ -5,19 +5,22 @@ "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "id", "type": "string", "default": "'app'", - "source": "v-app" + "source": "v-app", + "doc": "Sets the DOM id on the component" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." } ], "mixins": ["themeable"], @@ -25,7 +28,8 @@ { "name": "default" } - ] + ], + "doc": "The v-app component is REQUIRED for all Vuetify applications. This is the mount point for many of Vuetify's components and functionality and ensures proper cross-browser support for custom properties." }, "v-app-bar": { "props": [ @@ -33,31 +37,36 @@ "name": "absolute", "type": "boolean", "default": "false", - "source": "v-toolbar" + "source": "v-toolbar", + "doc": "Applies **position: absolute** to the component." }, { "name": "app", "type": "boolean", "default": "false", - "source": "applicationable" + "source": "applicationable", + "doc": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can find more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop" }, { "name": "bottom", "type": "boolean", "default": "false", - "source": "v-toolbar" + "source": "v-toolbar", + "doc": "Aligns the component towards the bottom." }, { "name": "clippedLeft", "type": "boolean", "default": "false", - "source": "v-app-bar" + "source": "v-app-bar", + "doc": "Designates that the application's `v-navigation-drawer` that is positioned on the left is below the app-bar." }, { "name": "clippedRight", "type": "boolean", "default": "false", - "source": "v-app-bar" + "source": "v-app-bar", + "doc": "Designates that the application's `v-navigation-drawer` that is positioned on the right is below the app-bar." }, { "name": "collapse", @@ -69,37 +78,43 @@ "name": "collapseOnScroll", "type": "boolean", "default": "false", - "source": "v-app-bar" + "source": "v-app-bar", + "doc": "Puts the app-bar into a collapsed state when scrolling." }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-toolbar" + "source": "v-toolbar", + "doc": "Reduces the input height" }, { "name": "elevateOnScroll", "type": "boolean", "default": "false", - "source": "v-app-bar" + "source": "v-app-bar", + "doc": "Elevates the app-bar when scrolling." }, { "name": "elevation", "type": ["number", "string"], "default": "undefined", - "source": "elevatable" + "source": "elevatable", + "doc": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)." }, { "name": "extended", @@ -117,19 +132,22 @@ "name": "fadeImgOnScroll", "type": "boolean", "default": "false", - "source": "v-app-bar" + "source": "v-app-bar", + "doc": "When using the **src** prop or `img` slot, will fade the image when scrolling." }, { "name": "fixed", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Applies **position: fixed** to the component." }, { "name": "flat", "type": "boolean", "default": "false", - "source": "v-toolbar" + "source": "v-toolbar", + "doc": "Removes elevation (shadow) added to element when using the **solo** or **solo-inverted** props" }, { "name": "floating", @@ -141,49 +159,57 @@ "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the height for the component." }, { "name": "hideOnScroll", "type": "boolean", "default": "false", - "source": "v-app-bar" + "source": "v-app-bar", + "doc": "Hides the app-bar when scrolling. Will still show the `extension` slot." }, { "name": "invertedScroll", "type": "boolean", "default": "false", - "source": "v-app-bar" + "source": "v-app-bar", + "doc": "Hides the app-bar when scrolling down and displays it when scrolling up." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "maxHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum height for the component." }, { "name": "maxWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum width for the component." }, { "name": "minHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum height for the component." }, { "name": "minWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum width for the component." }, { "name": "prominent", @@ -195,19 +221,22 @@ "name": "scrollOffScreen", "type": "boolean", "default": "false", - "source": "v-app-bar" + "source": "v-app-bar", + "doc": "Hides the app-bar when scrolling. Will **NOT** show the `extension` slot." }, { "name": "scrollTarget", "type": "string", "default": "undefined", - "source": "scrollable" + "source": "scrollable", + "doc": "Designates the element to target for scrolling events. Uses `window` by default." }, { "name": "scrollThreshold", "type": ["string", "number"], "default": "undefined", - "source": "scrollable" + "source": "scrollable", + "doc": "The amount of scroll distance down before **hide-on-scroll** activates." }, { "name": "short", @@ -219,37 +248,43 @@ "name": "shrinkOnScroll", "type": "boolean", "default": "false", - "source": "v-app-bar" + "source": "v-app-bar", + "doc": "Shrinks a **prominent** toolbar to a **dense** or **short** (default) one when scrolling." }, { "name": "src", "type": ["string", "object"], "default": "undefined", - "source": "v-toolbar" + "source": "v-toolbar", + "doc": "Image source. See `v-img` for details" }, { "name": "tag", "type": "string", "default": "'header'", - "source": "v-sheet" + "source": "v-sheet", + "doc": "Specify a custom tag used on the root element." }, { "name": "tile", "type": "boolean", "default": "true", - "source": "v-sheet" + "source": "v-sheet", + "doc": "Removes the component's **border-radius**." }, { "name": "value", "type": "boolean", "default": "true", - "source": "toggleable" + "source": "toggleable", + "doc": "Controls whether the component is visible or hidden." }, { "name": "width", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the width for the component." } ], "mixins": [ @@ -266,10 +301,12 @@ ], "slots": [ { - "name": "extension" + "name": "extension", + "doc": "Slot positioned directly under the main content of the toolbar. Height of this slot can be set explicitly with the **extension-height** prop. If this slot has no content, the **extended** prop may be used instead." }, { "name": "img", + "doc": "Expects the [v-img](/components/images) component. Scoped **props** should be applied with `v-bind=\"props\"`.", "props": { "props": "{ height: string, src: string | srcObject }" } @@ -277,7 +314,8 @@ { "name": "default" } - ] + ], + "doc": "The v-app-bar component is a top navigation component that provides a flexible toolbar for app layouts. It is typically used to provide navigation controls and page title information." }, "v-app-bar-nav-icon": { "props": [], @@ -286,7 +324,8 @@ { "name": "default" } - ] + ], + "doc": "A stylized icon button component used in app-bars to toggle navigation drawers. It displays the standard hamburger menu icon." }, "v-alert": { "props": [ @@ -294,157 +333,183 @@ "name": "border", "type": "string", "default": "undefined", - "source": "v-alert" + "source": "v-alert", + "doc": "Puts a border on the alert. Accepts **top** \\| **right** \\| **bottom** \\| **left**." }, { "name": "closeLabel", "type": "string", "default": "'$vuetify.close'", - "source": "v-alert" + "source": "v-alert", + "doc": "Text used for *aria-label* on **dismissible** alerts. Can also be customizing globally in [Internationalization](/customization/internationalization)." }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "coloredBorder", "type": "boolean", "default": "false", - "source": "v-alert" + "source": "v-alert", + "doc": "Applies the defined **color** to the alert's border." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-alert" + "source": "v-alert", + "doc": "Decreases component's height." }, { "name": "dismissible", "type": "boolean", "default": "false", - "source": "v-alert" + "source": "v-alert", + "doc": "Adds a close icon that can hide the alert." }, { "name": "elevation", "type": ["number", "string"], "default": "undefined", - "source": "elevatable" + "source": "elevatable", + "doc": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)." }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the height for the component." }, { "name": "icon", "type": ["boolean", "string"], "default": "undefined", - "source": "v-alert" + "source": "v-alert", + "doc": "Designates a specific icon." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "maxHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum height for the component." }, { "name": "maxWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum width for the component." }, { "name": "minHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum height for the component." }, { "name": "minWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum width for the component." }, { "name": "mode", "type": "string", "default": "undefined", - "source": "transitionable" + "source": "transitionable", + "doc": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition)." }, { "name": "origin", "type": "string", "default": "undefined", - "source": "transitionable" + "source": "transitionable", + "doc": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)." }, { "name": "outlined", "type": "boolean", "default": "false", - "source": "v-alert" + "source": "v-alert", + "doc": "Makes the background transparent and applies a thin border." }, { "name": "prominent", "type": "boolean", "default": "false", - "source": "v-alert" + "source": "v-alert", + "doc": "Displays a larger vertically centered icon to draw more attention." }, { "name": "tag", "type": "string", "default": "'div'", - "source": "v-sheet" + "source": "v-sheet", + "doc": "Specify a custom tag used on the root element." }, { "name": "text", "type": "boolean", "default": "false", - "source": "v-alert" + "source": "v-alert", + "doc": "Applies the defined **color** to text and a low opacity background of the same." }, { "name": "tile", "type": "boolean", "default": "false", - "source": "v-sheet" + "source": "v-sheet", + "doc": "Removes the component's border-radius." }, { "name": "transition", "type": "string", "default": "undefined", - "source": "transitionable" + "source": "transitionable", + "doc": "Sets the component transition. Can be one of the [built in transitions](/styles/transitions) or one your own." }, { "name": "type", "type": "string", "default": "undefined", - "source": "v-alert" + "source": "v-alert", + "doc": "Specify a **success**, **info**, **warning** or **error** alert. Uses the contextual color and has a pre-defined icon." }, { "name": "value", "type": "boolean", "default": "true", - "source": "toggleable" + "source": "toggleable", + "doc": "Controls whether the component is visible or hidden." }, { "name": "width", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the width for the component." } ], "mixins": [ @@ -458,16 +523,19 @@ ], "slots": [ { - "name": "append" + "name": "append", + "doc": "Slot for icon at end of alert." }, { "name": "close", "props": { "toggle": "Function" - } + }, + "doc": "Slot for icon used in **dismissible** prop." }, { - "name": "prepend" + "name": "prepend", + "doc": "Slot for icon at beginning of alert." }, { "name": "default" @@ -484,7 +552,8 @@ "name": "toggle", "signature": "(): void" } - ] + ], + "doc": "The v-alert component is used to convey important information to the user through contextual types, icons, and colors. These alerts are positioned to draw user attention." }, "v-autocomplete": { "props": [ @@ -492,31 +561,36 @@ "name": "allowOverflow", "type": "boolean", "default": "true", - "source": "v-autocomplete" + "source": "v-autocomplete", + "doc": "Removes overflow re-positioning for the content" }, { "name": "appendIcon", "type": "string", "default": "'$dropdown'", - "source": "v-input" + "source": "v-input", + "doc": "Appends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "appendOuterIcon", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Appends an icon to the outside the component's input, uses same syntax as `v-icon`" }, { "name": "attach", "type": "any", "default": false, - "source": "v-select" + "source": "v-select", + "doc": "Specifies which DOM element that this component should detach to. String can be any valid querySelector and Object can be any valid Node. This will attach to the root `v-app` component by default." }, { "name": "autoSelectFirst", "type": "boolean", "default": "false", - "source": "v-autocomplete" + "source": "v-autocomplete", + "doc": "When searching, will always highlight the first option" }, { "name": "autofocus", @@ -528,7 +602,8 @@ "name": "backgroundColor", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Changes the background-color of the input" }, { "name": "cacheItems", @@ -540,31 +615,36 @@ "name": "chips", "type": "boolean", "default": "false", - "source": "v-select" + "source": "v-select", + "doc": "Changes display of selections to chips" }, { "name": "clearIcon", "type": "string", "default": "'$clear'", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Applied when using **clearable** and the input is dirty" }, { "name": "clearable", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Add input clear functionality, default icon is Material Design Icons **mdi-clear**" }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "counter", "type": ["boolean", "number", "string"], "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation." }, { "name": "counterValue", @@ -576,19 +656,22 @@ "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. This will default the components color to _white_ unless you've configured your [application theme](/customization/theme) to **dark** or if you are using the **color** prop on the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "deletableChips", "type": "boolean", "default": "false", - "source": "v-select" + "source": "v-select", + "doc": "Adds a remove icon to selected chips" }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Reduces the input height" }, { "name": "disableLookup", @@ -601,73 +684,85 @@ "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Removes the ability to click or target the component." }, { "name": "eager", "type": "boolean", "default": "false", - "source": "v-select" + "source": "v-select", + "doc": "Will force the components content to render on mounted. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO." }, { "name": "error", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual error state" }, { "name": "errorCount", "type": ["number", "string"], "default": 1, - "source": "validatable" + "source": "validatable", + "doc": "The total number of errors that should display at once" }, { "name": "errorMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the **rules** prop. This field will not trigger validation" }, { "name": "filled", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Applies the alternate filled input style" }, { "name": "filter", "type": "function", "default": "(item: object, queryText: string, itemText: string): boolean", - "source": "v-select" + "source": "v-select", + "doc": "The filtering algorithm used when searching. [example](https://github.com/vuetifyjs/vuetify/blob/v2-stable/packages/vuetify/src/components/VAutocomplete/VAutocomplete.ts#L40)" }, { "name": "flat", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Removes elevation (shadow) added to element when using the **solo** or **solo-inverted** props" }, { "name": "fullWidth", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Forces 100% width" }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Sets the height for the component." }, { "name": "hideDetails", "type": ["boolean", "string"], "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hides hint and validation errors. When set to `auto` messages will be rendered only if there's a message (hint, error message, counter value etc) to display" }, { "name": "hideNoData", "type": "boolean", "default": "false", - "source": "v-autocomplete" + "source": "v-autocomplete", + "doc": "Hides the menu when there are no options to show. Useful for preventing the menu from opening before results are fetched asynchronously. Also has the effect of opening the menu when the `items` array changes if not already open." }, { "name": "hideSelected", @@ -679,13 +774,15 @@ "name": "hint", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hint text" }, { "name": "id", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Sets the DOM id on the component" }, { "name": "itemColor", @@ -724,25 +821,29 @@ { "name": "label", "type": "string", - "source": "v-input" + "source": "v-input", + "doc": "Sets input label" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "loaderHeight", "type": ["number", "string"], "default": 2, - "source": "loadable" + "source": "loadable", + "doc": "Specifies the height of the loader" }, { "name": "loading", "type": ["boolean", "string"], "default": false, - "source": "v-input" + "source": "v-input", + "doc": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color" }, { "name": "menuProps", @@ -754,25 +855,29 @@ "name": "messages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Displays a list of messages or message if using a string" }, { "name": "multiple", "type": "boolean", "default": "false", - "source": "v-select" + "source": "v-select", + "doc": "Changes select to multiple. Accepts array for value" }, { "name": "noDataText", "type": "string", "default": "'$vuetify.noDataText'", - "source": "filterable" + "source": "filterable", + "doc": "Display text when there is no data" }, { "name": "noFilter", "type": "boolean", "default": "false", - "source": "v-autocomplete" + "source": "v-autocomplete", + "doc": "Do not apply filtering when searching. Useful when data is being filtered server side" }, { "name": "openOnClear", @@ -784,44 +889,51 @@ "name": "outlined", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Applies the outlined style to the input" }, { "name": "persistentHint", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Forces hint to always be visible" }, { "name": "placeholder", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Sets the input's placeholder text" }, { "name": "prefix", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Displays prefix text" }, { "name": "prependIcon", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Prepends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "prependInnerIcon", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Prepends an icon inside the component's input, uses the same syntax as `v-icon`" }, { "name": "readonly", "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Puts input in readonly state" }, { "name": "returnObject", @@ -833,67 +945,78 @@ "name": "reverse", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Reverses the input orientation" }, { "name": "rounded", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Designates the **border-radius** applied to the component. You can find more information on the [Border Radius page](/styles/border-radius)." }, { "name": "rules", "type": "array", "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`" }, { "name": "searchInput", "type": "string", "default": "undefined", - "source": "v-autocomplete" + "source": "v-autocomplete", + "doc": "Search value. Can be used with `.sync` modifier." }, { "name": "shaped", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Round if `outlined` and increase `border-radius` if `filled`. Must be used with either `outlined` or `filled`" }, { "name": "singleLine", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Label does not move on focus/dirty" }, { "name": "smallChips", "type": "boolean", "default": "false", - "source": "v-select" + "source": "v-select", + "doc": "Changes display of selections to chips with the **small** property" }, { "name": "solo", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Changes the style of the input" }, { "name": "soloInverted", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Reduces element opacity until focused" }, { "name": "success", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual success state" }, { "name": "successMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a success state and passes through custom success messages." }, { "name": "suffix", @@ -911,18 +1034,21 @@ "name": "validateOnBlur", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Delays validation until blur event" }, { "name": "value", "type": "any", - "source": "v-input" + "source": "v-input", + "doc": "Controls whether the component is visible or hidden." }, { "name": "valueComparator", "type": "function", "default": "(a: any, b: any): boolean", - "source": "v-select" + "source": "v-select", + "doc": "Apply a custom value comparator function" } ], "mixins": [ @@ -1090,7 +1216,8 @@ }, "source": "v-select" } - ] + ], + "doc": "The v-autocomplete component offers simple and flexible type-ahead functionality with filtering of available options. This is useful when you have a ton of data that requires filtering." }, "v-avatar": { "props": [ @@ -1098,67 +1225,78 @@ "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the height for the component." }, { "name": "left", "type": "boolean", "default": "false", - "source": "v-avatar" + "source": "v-avatar", + "doc": "Designates that the avatar is on the left side of a component. This is hooked into by components such as [v-chip](/components/chips) and [v-btn](/components/buttons)." }, { "name": "maxHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum height for the component." }, { "name": "maxWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum width for the component." }, { "name": "minHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum height for the component." }, { "name": "minWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum width for the component." }, { "name": "right", "type": "boolean", "default": "false", - "source": "v-avatar" + "source": "v-avatar", + "doc": "Designates that the avatar is on the right side of a component. This is hooked into by components such as [v-chip](/components/chips) and [v-btn](/components/buttons)." }, { "name": "size", "type": ["number", "string"], "default": 48, - "source": "v-avatar" + "source": "v-avatar", + "doc": "Sets the height and width of the component." }, { "name": "tile", "type": "boolean", "default": "false", - "source": "v-avatar" + "source": "v-avatar", + "doc": "Removes the component's **border-radius**." }, { "name": "width", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the width for the component." } ], "mixins": ["colorable", "measurable"], @@ -1166,7 +1304,8 @@ { "name": "default" } - ] + ], + "doc": "The v-avatar component is used to display circular user profile pictures. When used with the v-list component, avatars minimum width will be respected even if they contain smaller images." }, "v-badge": { "props": [ @@ -1174,121 +1313,141 @@ "name": "avatar", "type": "boolean", "default": "false", - "source": "v-badge" + "source": "v-badge", + "doc": "Removes badge padding for the use of the `v-avatar` in the **badge** slot." }, { "name": "bordered", "type": "boolean", "default": "false", - "source": "v-badge" + "source": "v-badge", + "doc": "Applies a **2px** by default and **1.5px** border around the badge when using the **dot** property." }, { "name": "bottom", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Aligns the component towards the bottom." }, { "name": "color", "type": "string", "default": "'primary'", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "content", "type": "any", "default": "undefined", - "source": "v-badge" + "source": "v-badge", + "doc": "Any content you want injected as text into the badge." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dot", "type": "boolean", "default": "false", - "source": "v-badge" + "source": "v-badge", + "doc": "Reduce the size of the badge and hide its contents" }, { "name": "icon", "type": "string", "default": "undefined", - "source": "v-badge" + "source": "v-badge", + "doc": "Designates a specific icon used in the badge." }, { "name": "inline", "type": "boolean", "default": "false", - "source": "v-badge" + "source": "v-badge", + "doc": "Moves the badge to be inline with the wrapping element. Supports the usage of the **left** prop." }, { "name": "label", "type": "string", "default": "'$vuetify.badge'", - "source": "v-badge" + "source": "v-badge", + "doc": "The **aria-label** used for the badge" }, { "name": "left", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Aligns the component towards the left." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "mode", "type": "string", "default": "undefined", - "source": "transitionable" + "source": "transitionable", + "doc": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition)." }, { "name": "offsetX", "type": ["number", "string"], "default": "undefined", - "source": "v-badge" + "source": "v-badge", + "doc": "Offset the badge on the x-axis." }, { "name": "offsetY", "type": ["number", "string"], "default": "undefined", - "source": "v-badge" + "source": "v-badge", + "doc": "Offset the badge on the y-axis." }, { "name": "origin", "type": "string", "default": "undefined", - "source": "transitionable" + "source": "transitionable", + "doc": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)." }, { "name": "overlap", "type": "boolean", "default": "false", - "source": "v-badge" + "source": "v-badge", + "doc": "Overlaps the slotted content on top of the component." }, { "name": "tile", "type": "boolean", "default": "false", - "source": "v-badge" + "source": "v-badge", + "doc": "Removes the component's border-radius." }, { "name": "transition", "type": "string", "default": "'scale-rotate-transition'", - "source": "transitionable" + "source": "transitionable", + "doc": "Sets the component transition. Can be one of the [built in transitions](/styles/transitions) or one your own." }, { "name": "value", "type": "any", "default": true, - "source": "toggleable" + "source": "toggleable", + "doc": "Controls whether the component is visible or hidden." } ], "mixins": [ @@ -1300,12 +1459,14 @@ ], "slots": [ { - "name": "badge" + "name": "badge", + "doc": "The slot used for the badge's content." }, { "name": "default" } - ] + ], + "doc": "The v-badge component is a small status descriptor for UI elements. It provides a visual indicator of notifications, counts, or other status information." }, "v-banner": { "props": [ @@ -1313,73 +1474,85 @@ "name": "app", "type": "boolean", "default": "false", - "source": "v-banner" + "source": "v-banner", + "doc": "When used inside of `v-main`, will calculate top based upon application `v-toolbar` and `v-system-bar`." }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "elevation", "type": ["number", "string"], "default": "undefined", - "source": "elevatable" + "source": "elevatable", + "doc": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)." }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the height for the component." }, { "name": "icon", "type": "string", "default": "undefined", - "source": "v-banner" + "source": "v-banner", + "doc": "Designates a specific icon." }, { "name": "iconColor", "type": "string", "default": "undefined", - "source": "v-banner" + "source": "v-banner", + "doc": "Designates a specific icon color." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "maxHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum height for the component." }, { "name": "maxWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum width for the component." }, { "name": "minHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum height for the component." }, { "name": "minWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum width for the component." }, { "name": "mobileBreakPoint", @@ -1391,37 +1564,43 @@ "name": "singleLine", "type": "boolean", "default": "false", - "source": "v-banner" + "source": "v-banner", + "doc": "Forces the banner onto a single line." }, { "name": "sticky", "type": "boolean", "default": "false", - "source": "v-banner" + "source": "v-banner", + "doc": "Applies **position: sticky** to the component (**Evergreen browsers only**). You can find more information on the [MDN documentation for sticky position](https://developer.mozilla.org/en-US/docs/Web/CSS/position)." }, { "name": "tag", "type": "string", "default": "'div'", - "source": "v-sheet" + "source": "v-sheet", + "doc": "Specify a custom tag used on the root element." }, { "name": "tile", "type": "boolean", "default": "true", - "source": "v-sheet" + "source": "v-sheet", + "doc": "Removes the component's **border-radius**." }, { "name": "value", "type": "boolean", "default": "true", - "source": "toggleable" + "source": "toggleable", + "doc": "Controls whether the component is visible or hidden." }, { "name": "width", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the width for the component." } ], "mixins": [ @@ -1437,10 +1616,12 @@ "name": "actions", "props": { "dismiss": "(): void" - } + }, + "doc": "The slot used for the action's content such as a [v-btn](/components/buttons). The **dismiss** function in this slots scope, when invoked, will close the banner." }, { - "name": "icon" + "name": "icon", + "doc": "The slot used for the icon's content." }, { "name": "default" @@ -1451,7 +1632,8 @@ "name": "toggle", "signature": "(): void" } - ] + ], + "doc": "The v-banner component is used to display important information to the user in a prominent way. They are typically placed at the top of screens below the app bar." }, "v-bottom-navigation": { "props": [ @@ -1459,139 +1641,162 @@ "name": "absolute", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Applies **position: absolute** to the component." }, { "name": "activeClass", "type": "string", "default": "'v-btn--active'", - "source": "v-bottom-navigation" + "source": "v-bottom-navigation", + "doc": "The class applied to a [v-btn](/components/buttons) when activated." }, { "name": "app", "type": "boolean", "default": "false", - "source": "applicationable" + "source": "applicationable", + "doc": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can find more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop" }, { "name": "backgroundColor", "type": "string", "default": "undefined", - "source": "v-bottom-navigation" + "source": "v-bottom-navigation", + "doc": "Changes the background-color for the component." }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "fixed", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Applies **position: fixed** to the component." }, { "name": "grow", "type": "boolean", "default": "false", - "source": "v-bottom-navigation" + "source": "v-bottom-navigation", + "doc": "Force [v-btn](/components/buttons)s to take up all available space." }, { "name": "height", "type": ["number", "string"], "default": 56, - "source": "measurable" + "source": "measurable", + "doc": "Sets the height for the component." }, { "name": "hideOnScroll", "type": "boolean", "default": "false", - "source": "v-bottom-navigation" + "source": "v-bottom-navigation", + "doc": "Will transition the navigation off screen when scrolling up." }, { "name": "horizontal", "type": "boolean", "default": "false", - "source": "v-bottom-navigation" + "source": "v-bottom-navigation", + "doc": "Uses an alternative horizontal styling for [v-btn](/components/buttons)." }, { "name": "inputValue", "type": "boolean", "default": "true", - "source": "toggleable" + "source": "toggleable", + "doc": "Controls whether the component is visible or hidden. Supports the **.sync** modifier." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "mandatory", "type": "boolean", "default": "false", - "source": "v-bottom-navigation" + "source": "v-bottom-navigation", + "doc": "Forces a value to always be selected (if available)." }, { "name": "maxHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum height for the component." }, { "name": "maxWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum width for the component." }, { "name": "minHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum height for the component." }, { "name": "minWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum width for the component." }, { "name": "scrollTarget", "type": "string", "default": "undefined", - "source": "scrollable" + "source": "scrollable", + "doc": "Designates the element to target for scrolling events. Uses `window` by default." }, { "name": "scrollThreshold", "type": ["string", "number"], "default": "undefined", - "source": "scrollable" + "source": "scrollable", + "doc": "The amount of scroll distance down before **hide-on-scroll** activates." }, { "name": "shift", "type": "boolean", "default": "false", - "source": "v-bottom-navigation" + "source": "v-bottom-navigation", + "doc": "Hides text of [v-btn](/components/buttons)s when they are not active." }, { "name": "value", "type": "any", "default": "undefined", - "source": "proxyable" + "source": "proxyable", + "doc": "Holds the value of the currently active [v-btn](/components/buttons). If the button has no value supplied, its index will be used instead.." }, { "name": "width", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the width for the component." } ], "mixins": [ @@ -1618,7 +1823,8 @@ { "name": "default" } - ] + ], + "doc": "The v-bottom-navigation component is a bottom navigation bar used for mobile applications. It displays 3-5 destinations at the bottom of a screen." }, "v-bottom-sheet": { "props": [ @@ -1626,43 +1832,50 @@ "name": "activator", "type": "any", "default": "undefined", - "source": "activatable" + "source": "activatable", + "doc": "Designate a custom activator when the `activator` slot is not used. String can be any valid querySelector and Object can be any valid Node." }, { "name": "attach", "type": "any", "default": false, - "source": "detachable" + "source": "detachable", + "doc": "Specifies which DOM element that this component should detach to. String can be any valid querySelector and Object can be any valid Node. This will attach to the root `v-app` component by default." }, { "name": "closeDelay", "type": ["number", "string"], "default": 0, - "source": "delayable" + "source": "delayable", + "doc": "Milliseconds to wait before closing component. Only applies to hover and focus events." }, { "name": "contentClass", "type": "string", "default": "undefined", - "source": "detachable" + "source": "detachable", + "doc": "Applies a custom class to the detached element. This is useful because the content is moved to the beginning of the `v-app` component (unless the **attach** prop is provided) and is not targetable by classes passed directly on the component." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "v-dialog" + "source": "v-dialog", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "activatable" + "source": "activatable", + "doc": "Removes the ability to click or target the component." }, { "name": "eager", "type": "boolean", "default": "false", - "source": "bootable" + "source": "bootable", + "doc": "Will force the components content to render on mounted. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO." }, { "name": "fullscreen", @@ -1674,13 +1887,15 @@ "name": "hideOverlay", "type": "boolean", "default": "false", - "source": "overlayable" + "source": "overlayable", + "doc": "Hides the display of the overlay." }, { "name": "inset", "type": "boolean", "default": "false", - "source": "v-bottom-sheet" + "source": "v-bottom-sheet", + "doc": "Reduces the sheet content maximum width to 70%." }, { "name": "internalActivator", @@ -1692,13 +1907,15 @@ "name": "light", "type": "boolean", "default": "false", - "source": "v-dialog" + "source": "v-dialog", + "doc": "Applies the light theme variant to the component." }, { "name": "maxWidth", "type": ["string", "number"], "default": "auto", - "source": "v-dialog" + "source": "v-dialog", + "doc": "Sets the maximum width for the component." }, { "name": "noClickAnimation", @@ -1710,7 +1927,8 @@ "name": "openDelay", "type": ["number", "string"], "default": 0, - "source": "delayable" + "source": "delayable", + "doc": "Milliseconds to wait before opening component. Only applies to hover and focus events." }, { "name": "openOnHover", @@ -1722,25 +1940,29 @@ "name": "origin", "type": "string", "default": "'center center'", - "source": "v-dialog" + "source": "v-dialog", + "doc": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)." }, { "name": "overlayColor", "type": "string", "default": "undefined", - "source": "overlayable" + "source": "overlayable", + "doc": "Sets the overlay color." }, { "name": "overlayOpacity", "type": ["number", "string"], "default": "undefined", - "source": "overlayable" + "source": "overlayable", + "doc": "Sets the overlay opacity." }, { "name": "persistent", "type": "boolean", "default": "false", - "source": "v-dialog" + "source": "v-dialog", + "doc": "Clicking outside or pressing **esc** key will not dismiss the dialog" }, { "name": "retainFocus", @@ -1758,25 +1980,29 @@ "name": "scrollable", "type": "boolean", "default": "false", - "source": "v-dialog" + "source": "v-dialog", + "doc": "Allows the use of the mouse wheel in the picker" }, { "name": "transition", "type": "string", "default": "'bottom-sheet-transition'", - "source": "v-dialog" + "source": "v-dialog", + "doc": "Sets the component transition. Can be one of the [built in transitions](/styles/transitions) or one your own." }, { "name": "value", "type": "any", "default": "undefined", - "source": "toggleable" + "source": "toggleable", + "doc": "Controls whether the component is visible or hidden." }, { "name": "width", "type": ["string", "number"], "default": "auto", - "source": "v-dialog" + "source": "v-dialog", + "doc": "Sets the width for the component." } ], "mixins": [ @@ -1802,7 +2028,8 @@ { "name": "default" } - ] + ], + "doc": "The v-bottom-sheet component is used to display supplemental content anchored to the bottom of the screen. It's a variation of the v-dialog component." }, "v-breadcrumbs": { "props": [ @@ -1810,13 +2037,15 @@ "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "divider", "type": "string", "default": "'/'", - "source": "v-breadcrumbs" + "source": "v-breadcrumbs", + "doc": "Specifies the dividing character between items." }, { "name": "items", @@ -1832,36 +2061,42 @@ "text": "string | number", "to": "string | object" } - ] + ], + "doc": "An array of objects for each breadcrumb." }, { "name": "large", "type": "boolean", "default": "false", - "source": "v-breadcrumbs" + "source": "v-breadcrumbs", + "doc": "Increase the font-size of the breadcrumb item text to 16px (14px default)." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." } ], "mixins": ["themeable"], "slots": [ { - "name": "divider" + "name": "divider", + "doc": "The slot used for dividers." }, { "name": "item", "props": { "item": "any[]" - } + }, + "doc": "The slot used to override default `v-breadcrumbs-item` behavior when using the **items** prop." }, { "name": "default" } - ] + ], + "doc": "The v-breadcrumbs component is a navigational helper for pages that shows hierarchical navigation structure. It allows users to understand their location within a site." }, "v-breadcrumbs-item": { "props": [ @@ -1869,79 +2104,92 @@ "name": "activeClass", "type": "string", "default": "'v-breadcrumbs__item--disabled'", - "source": "routable" + "source": "routable", + "doc": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation." }, { "name": "append", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Setting **append** prop always appends the relative path to the current path. You can find more information about the [**append** prop](https://router.vuejs.org/api/#append) on the vue-router documentation." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Removes the ability to click or target the component." }, { "name": "exact", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Exactly match the link. Without this, '/' will match every route. You can find more information about the [**exact** prop](https://router.vuejs.org/api/#exact) on the vue-router documentation." }, { "name": "exactActiveClass", "type": "string", "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Configure the active CSS class applied when the link is active with exact match. You can find more information about the [**exact-active-class** prop](https://router.vuejs.org/api/#exact-active-class) on the vue-router documentation." }, { "name": "href", "type": ["string", "object"], "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Designates the component as anchor and applies the **href** attribute." }, { "name": "link", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Designates that the component is a link. This is automatic when using the **href** or **to** prop." }, { "name": "nuxt", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Specifies the link is a `nuxt-link`. For use with the [nuxt framework](https://nuxtjs.org/api/components-nuxt-link/)." }, { "name": "replace", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Setting **replace** prop will call `router.replace()` instead of `router.push()` when clicked, so the navigation will not leave a history record. You can find more information about the [**replace** prop](https://router.vuejs.org/api/#replace) on the vue-router documentation." }, { "name": "ripple", "type": ["boolean", "object"], "default": false, - "source": "routable" + "source": "routable", + "doc": "Applies the [v-ripple](/directives/ripple) directive." }, { "name": "tag", "type": "string", "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Specify a custom tag used on the root element." }, { "name": "target", "type": "string", "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Designates the target attribute. This should only be applied when using the **href** prop." }, { "name": "to", "type": ["string", "object"], "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Denotes the target route of the link. You can find more information about the [**to** prop](https://router.vuejs.org/api/#to) on the vue-router documentation." } ], "mixins": ["routable"], @@ -1949,11 +2197,13 @@ { "name": "default" } - ] + ], + "doc": "A single item in the breadcrumbs navigation trail. Typically used within v-breadcrumbs component." }, "v-breadcrumbs-divider": { "props": [], - "mixins": [] + "mixins": [], + "doc": "A divider element between breadcrumb items, typically showing '/' or '>' character." }, "v-btn": { "props": [ @@ -1961,277 +2211,323 @@ "name": "absolute", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Applies **position: absolute** to the component." }, { "name": "activeClass", "type": "string", "default": "", - "source": "routable" + "source": "routable", + "doc": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation." }, { "name": "append", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Setting **append** prop always appends the relative path to the current path. You can find more information about the [**append** prop](https://router.vuejs.org/api/#append) on the vue-router documentation." }, { "name": "block", "type": "boolean", "default": "false", - "source": "v-btn" + "source": "v-btn", + "doc": "Expands the button to 100% of available space." }, { "name": "bottom", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Aligns the component towards the bottom." }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "depressed", "type": "boolean", "default": "false", - "source": "v-btn" + "source": "v-btn", + "doc": "Removes the button box shadow." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Removes the ability to click or target the component." }, { "name": "elevation", "type": ["number", "string"], "default": "undefined", - "source": "elevatable" + "source": "elevatable", + "doc": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)." }, { "name": "exact", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Exactly match the link. Without this, '/' will match every route. You can find more information about the [**exact** prop](https://router.vuejs.org/api/#exact) on the vue-router documentation." }, { "name": "exactActiveClass", "type": "string", "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Configure the active CSS class applied when the link is active with exact match. You can find more information about the [**exact-active-class** prop](https://router.vuejs.org/api/#exact-active-class) on the vue-router documentation." }, { "name": "fab", "type": "boolean", "default": "false", - "source": "v-btn" + "source": "v-btn", + "doc": "Designates the button as a floating-action-button. Button will become _round_." }, { "name": "fixed", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Applies **position: fixed** to the component." }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the height for the component." }, { "name": "href", "type": ["string", "object"], "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Designates the component as anchor and applies the **href** attribute." }, { "name": "icon", "type": "boolean", "default": "false", - "source": "v-btn" + "source": "v-btn", + "doc": "Designates the button as icon. Button will become _round_ and applies the **text** prop." }, { "name": "inputValue", "type": "any", "default": "undefined", - "source": "toggleable" + "source": "toggleable", + "doc": "Controls the button's active state." }, { "name": "large", "type": "boolean", "default": "false", - "source": "sizeable" + "source": "sizeable", + "doc": "Makes the component large." }, { "name": "left", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Aligns the component towards the left. This should be used with the **absolute** or **fixed** props." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "link", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Designates that the component is a link. This is automatic when using the **href** or **to** prop." }, { "name": "loading", "type": "boolean", "default": "false", - "source": "v-btn" + "source": "v-btn", + "doc": "Adds a loading icon animation." }, { "name": "maxHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum height for the component." }, { "name": "maxWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum width for the component." }, { "name": "minHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum height for the component." }, { "name": "minWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum width for the component." }, { "name": "nuxt", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Specifies the link is a `nuxt-link`. For use with the [nuxt framework](https://nuxtjs.org/api/components-nuxt-link/)." }, { "name": "outlined", "type": "boolean", "default": "false", - "source": "v-btn" + "source": "v-btn", + "doc": "Makes the background transparent and applies a thin border." }, { "name": "replace", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Setting **replace** prop will call `router.replace()` instead of `router.push()` when clicked, so the navigation will not leave a history record. You can find more information about the [**replace** prop](https://router.vuejs.org/api/#replace) on the vue-router documentation." }, { "name": "retainFocusOnClick", "type": "boolean", "default": "false", - "source": "v-btn" + "source": "v-btn", + "doc": "Don't blur on click." }, { "name": "right", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Aligns the component towards the right. This should be used with the **absolute** or **fixed** props." }, { "name": "ripple", "type": ["boolean", "object"], "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Applies the [v-ripple](/directives/ripple) directive." }, { "name": "rounded", "type": "boolean", "default": "false", - "source": "v-btn" + "source": "v-btn", + "doc": "Applies a large border radius on the button." }, { "name": "small", "type": "boolean", "default": "false", - "source": "sizeable" + "source": "sizeable", + "doc": "Makes the component small." }, { "name": "tag", "type": "string", "default": "'button'", - "source": "v-sheet" + "source": "v-sheet", + "doc": "Specify a custom tag used on the root element." }, { "name": "target", "type": "string", "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Designates the target attribute. This should only be applied when using the **href** prop." }, { "name": "text", "type": "boolean", "default": "false", - "source": "v-btn" + "source": "v-btn", + "doc": "Makes the background transparent. When using the **color** prop, the color will be applied to the button text instead of the background." }, { "name": "tile", "type": "boolean", "default": "false", - "source": "v-sheet" + "source": "v-sheet", + "doc": "Removes the component's **border-radius**." }, { "name": "to", "type": ["string", "object"], "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Denotes the target route of the link. You can find more information about the [**to** prop](https://router.vuejs.org/api/#to) on the vue-router documentation." }, { "name": "top", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Aligns the content towards the top." }, { "name": "type", "type": "string", "default": "'button'", - "source": "v-btn" + "source": "v-btn", + "doc": "Set the button's **type** attribute." }, { "name": "value", "type": "any", "default": "undefined", - "source": "v-btn" + "source": "v-btn", + "doc": "Controls whether the component is visible or hidden." }, { "name": "width", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the width for the component." }, { "name": "xLarge", "type": "boolean", "default": "false", - "source": "sizeable" + "source": "sizeable", + "doc": "Makes the component extra large." }, { "name": "xSmall", "type": "boolean", "default": "false", - "source": "sizeable" + "source": "sizeable", + "doc": "Makes the component extra small." } ], "mixins": [ @@ -2248,7 +2544,8 @@ ], "slots": [ { - "name": "loader" + "name": "loader", + "doc": "Custom loader." }, { "name": "default" @@ -2259,7 +2556,8 @@ "name": "click", "value": "Event" } - ] + ], + "doc": "The v-btn component replaces the standard html button with a material design theme and multiple options. Buttons communicate actions that users can take." }, "v-btn-toggle": { "props": [ @@ -2267,49 +2565,57 @@ "name": "activeClass", "type": "string", "default": "'v-item--active'", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation." }, { "name": "backgroundColor", "type": "string", "default": "undefined", - "source": "v-btn-toggle" + "source": "v-btn-toggle", + "doc": "Changes the background-color for the component." }, { "name": "borderless", "type": "boolean", "default": "false", - "source": "v-btn-toggle" + "source": "v-btn-toggle", + "doc": "Removes the group's border." }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-btn-toggle" + "source": "v-btn-toggle", + "doc": "Reduces the button size and padding." }, { "name": "group", "type": "boolean", "default": "false", - "source": "v-btn-toggle" + "source": "v-btn-toggle", + "doc": "Generally used in [v-toolbar](/components/toolbars) and [v-app-bar](/components/app-bars). Removes background color, border and increases space between the buttons" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "mandatory", @@ -2321,37 +2627,43 @@ "name": "max", "type": ["number", "string"], "default": "undefined", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Sets a maximum number of selections that can be made." }, { "name": "multiple", "type": "boolean", "default": "false", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Changes select to multiple. Accepts array for value" }, { "name": "rounded", "type": "boolean", "default": "false", - "source": "v-btn-toggle" + "source": "v-btn-toggle", + "doc": "Round edge buttons" }, { "name": "shaped", "type": "boolean", "default": "false", - "source": "v-btn-toggle" + "source": "v-btn-toggle", + "doc": "Applies a large border radius on the top left and bottom right of the card." }, { "name": "tile", "type": "boolean", "default": "false", - "source": "v-btn-toggle" + "source": "v-btn-toggle", + "doc": "Removes the component's border-radius." }, { "name": "value", "type": "any", "default": "undefined", - "source": "proxyable" + "source": "proxyable", + "doc": "Controls whether the component is visible or hidden." } ], "mixins": ["button-group", "proxyable", "themeable", "colorable"], @@ -2365,7 +2677,8 @@ { "name": "default" } - ] + ], + "doc": "The v-btn-toggle component is a group of buttons that act as a toggle or radio selection. It's useful for creating grouped action buttons." }, "v-calendar": { "props": [ @@ -2373,247 +2686,288 @@ "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dayFormat", "type": "function", "default": "null", - "source": "calendar-base" + "source": "calendar-base", + "doc": "Formats day of the month string that appears in a day to a specified locale" }, { "name": "end", "type": "string", "default": "undefined", - "source": "calendar-base" + "source": "calendar-base", + "doc": "The ending date on the calendar (inclusive) in the format of `YYYY-MM-DD`. This may be ignored depending on the `type` of the calendar." }, { "name": "eventColor", "type": ["string", "function"], "default": "primary", - "source": "calendar-with-events" + "source": "calendar-with-events", + "doc": "A background color for all events or a function which accepts an event object passed to the calendar to return a color." }, { "name": "eventEnd", "type": "string", "default": "'end'", - "source": "calendar-with-events" + "source": "calendar-with-events", + "doc": "Set property of *event*'s end timestamp." }, { "name": "eventHeight", "type": "number", "default": 20, - "source": "calendar-with-events" + "source": "calendar-with-events", + "doc": "The height of an event in pixels in the `month` view and at the top of the `day` views." }, { "name": "eventMarginBottom", "type": "number", "default": 1, - "source": "calendar-with-events" + "source": "calendar-with-events", + "doc": "Margin bottom for event" }, { "name": "eventMore", "type": "boolean", "default": "true", - "source": "calendar-with-events" + "source": "calendar-with-events", + "doc": "Whether the more 'button' is displayed on a calendar with too many events in a given day. It will say something like '5 more' and when clicked generates a `click:more` event." }, { "name": "eventMoreText", "type": "string", "default": "'$vuetify.calendar.moreEvents'", - "source": "calendar-with-events" + "source": "calendar-with-events", + "doc": "The text to display in the more 'button' given the number of hidden events." }, { "name": "eventName", "type": ["string", "function"], "default": "name", - "source": "calendar-with-events" + "source": "calendar-with-events", + "doc": "Set property of *event*'s displayed name, or a function which accepts an event object passed to the calendar as the first argument and a flag signalling whether the name is for a timed event (true) or an event over a day." }, { "name": "eventOverlapMode", "type": ["string", "function"], "default": "stack", - "source": "calendar-with-events" + "source": "calendar-with-events", + "doc": "One of `stack`, `column`, or a custom render function" }, { "name": "eventOverlapThreshold", "type": ["string", "number"], "default": 60, - "source": "calendar-with-events" + "source": "calendar-with-events", + "doc": "A value in minutes that's used to determine whether two timed events should be placed in column beside each other or should be treated as slightly overlapping events." }, { "name": "eventRipple", "type": ["boolean", "object"], "default": "undefined", - "source": "calendar-with-events" + "source": "calendar-with-events", + "doc": "Applies the `v-ripple` directive." }, { "name": "eventStart", "type": "string", "default": "'start'", - "source": "calendar-with-events" + "source": "calendar-with-events", + "doc": "Set property of *event*'s start timestamp." }, { "name": "eventTextColor", "type": ["string", "function"], "default": "white", - "source": "calendar-with-events" + "source": "calendar-with-events", + "doc": "A text color for all events or a function which accepts an event object passed to the calendar to return a color." }, { "name": "events", "type": "array", "default": [], - "source": "calendar-with-events" + "source": "calendar-with-events", + "doc": "An array of event objects with a property for a start timestamp and optionally a name and end timestamp. If an end timestamp is not given, the value of start will be used. If no name is given, you must provide an implementation for the `event` slot." }, { "name": "firstInterval", "type": ["number", "string"], "default": 0, - "source": "v-calendar" + "source": "v-calendar", + "doc": "The first interval to display in the `day` view. If `intervalMinutes` is set to 60 and this is set to 9 the first time in the view is 9am." }, { "name": "hideHeader", "type": "boolean", "default": "false", - "source": "calendar-base" + "source": "calendar-base", + "doc": "If the header at the top of the `day` view should be visible." }, { "name": "intervalCount", "type": ["number", "string"], "default": 24, - "source": "v-calendar" + "source": "v-calendar", + "doc": "The number of intervals to display in the `day` view." }, { "name": "intervalFormat", "type": "function", "default": "null", - "source": "v-calendar" + "source": "v-calendar", + "doc": "Formats time of day string that appears in the interval gutter of the `day` and `week` view to specified locale" }, { "name": "intervalHeight", "type": ["number", "string"], "default": 48, - "source": "v-calendar" + "source": "v-calendar", + "doc": "The height of an interval in pixels in the `day` view." }, { "name": "intervalMinutes", "type": ["number", "string"], "default": 60, - "source": "v-calendar" + "source": "v-calendar", + "doc": "The number of minutes the intervals are in the `day` view. A common interval is 60 minutes so the intervals are an hour." }, { "name": "intervalStyle", "type": "function", "default": "null", - "source": "v-calendar" + "source": "v-calendar", + "doc": "Returns CSS styling to apply to the interval." }, { "name": "intervalWidth", "type": ["number", "string"], "default": 60, - "source": "v-calendar" + "source": "v-calendar", + "doc": "The width of the interval gutter on the left side in the `day` view." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "locale", "type": "string", "default": "undefined", - "source": "localable" + "source": "localable", + "doc": "The locale of the calendar." }, { "name": "maxDays", "type": "number", "default": 7, - "source": "v-calendar" + "source": "v-calendar", + "doc": "The maximum number of days to display in the custom calendar if an `end` day is not set." }, { "name": "minWeeks", "type": "any", "default": 1, - "source": "v-calendar" + "source": "v-calendar", + "doc": "The minimum number of weeks to display in the `month` or `week` view." }, { "name": "monthFormat", "type": "function", "default": "null", - "source": "v-calendar" + "source": "v-calendar", + "doc": "Formats month string that appears in a day to specified locale" }, { "name": "now", "type": "string", "default": "undefined", - "source": "times" + "source": "times", + "doc": "Override the day & time which is considered now. This is in the format of `YYYY-MM-DD hh:mm:ss`. The calendar is styled according to now." }, { "name": "shortIntervals", "type": "boolean", "default": "true", - "source": "v-calendar" + "source": "v-calendar", + "doc": "If true, the intervals in the `day` view will be 9 AM as opposed to 09:00 AM" }, { "name": "shortMonths", "type": "boolean", "default": "true", - "source": "v-calendar" + "source": "v-calendar", + "doc": "Whether the short versions of a month should be used (Jan vs January)." }, { "name": "shortWeekdays", "type": "boolean", "default": "true", - "source": "calendar-base" + "source": "calendar-base", + "doc": "Whether the short versions of a weekday should be used (Mon vs Monday)." }, { "name": "showIntervalLabel", "type": "function", "default": "null", - "source": "v-calendar" + "source": "v-calendar", + "doc": "Checks if a given day and time should be displayed in the interval gutter of the `day` view." }, { "name": "showMonthOnFirst", "type": "boolean", "default": "true", - "source": "v-calendar" + "source": "v-calendar", + "doc": "Whether the name of the month should be displayed on the first day of the month." }, { "name": "start", "type": "string", "default": "'2020-04-29'", - "source": "calendar-base" + "source": "calendar-base", + "doc": "The starting date on the calendar (inclusive) in the format of `YYYY-MM-DD`. This may be ignored depending on the `type` of the calendar." }, { "name": "type", "type": "string", "default": "'month'", - "source": "v-calendar" + "source": "v-calendar", + "doc": "A string which is one of `month`, `week`, `day`, `4day`, `custom-weekly`, `custom-daily`, and `category`. The custom types look at the `start` and `end` dates passed to the component as opposed to the `value`." }, { "name": "value", "type": "string", "default": "undefined", - "source": "v-calendar" + "source": "v-calendar", + "doc": "A date in the format of `YYYY-MM-DD` which determines what span of time for the calendar." }, { "name": "weekdayFormat", "type": "function", "default": "null", - "source": "calendar-base" + "source": "calendar-base", + "doc": "Formats day of the week string that appears in the header to specified locale" }, { "name": "weekdays", "type": ["array", "string"], "default": [0, 1, 2, 3, 4, 5, 6], - "source": "calendar-base" + "source": "calendar-base", + "doc": "Specifies which days of the week to display. To display Monday through Friday only, a value of `[1, 2, 3, 4, 5]` can be used. To display a week starting on Monday a value of `[1, 2, 3, 4, 5, 6, 0]` can be used." } ], "mixins": ["colorable", "localable", "mouse", "themeable", "times"], @@ -2660,7 +3014,8 @@ "start": "boolean", "end": "boolean", "timed": "boolean" - } + }, + "doc": "The content placed in an event. This ignores the `event-name` prop." }, { "name": "day", @@ -2697,7 +3052,8 @@ "past": "boolean", "present": "boolean", "future": "boolean" - } + }, + "doc": "The content that is placed in a `week` or `month` view. The day & time object is passed through this slots scope." }, { "name": "day-body", @@ -2734,7 +3090,8 @@ "future": "boolean" } ] - } + }, + "doc": "The content that is placed in a `day` view in the scrollable interval container. The day & time object is passed through this slots scope." }, { "name": "day-header", @@ -2771,7 +3128,8 @@ "future": "boolean" } ] - } + }, + "doc": "The content that is placed in a `day` view in the top container. The day & time object is passed through this slots scope." }, { "name": "day-label", @@ -2789,7 +3147,8 @@ "past": "boolean", "present": "boolean", "future": "boolean" - } + }, + "doc": "The content that is placed in the day of the month space in the `custom-weekly` or `month` view. The day & time object is passed through this slots scope." }, { "name": "day-label-header", @@ -2807,7 +3166,8 @@ "past": "boolean", "present": "boolean", "future": "boolean" - } + }, + "doc": "The content that is placed in the day of the month space in the `week`, `day`, `4day`, or `custom-daily` view. The day & time object is passed through this slots scope." }, { "name": "day-month", @@ -2825,7 +3185,8 @@ "past": "boolean", "present": "boolean", "future": "boolean" - } + }, + "doc": "The content that is placed in the month space in the `week` or `month` view. The day & time object is passed through this slots scope." }, { "name": "interval", @@ -2862,7 +3223,8 @@ "future": "boolean" } ] - } + }, + "doc": "The content that is placed in the interval space in the `day` view. The day & time object is passed through this slots scope." } ], "functions": [ @@ -3987,7 +4349,8 @@ "future": "boolean" } } - ] + ], + "doc": "The v-calendar component is used to display information in a calendar format. It supports month, week, and day views." }, "v-calendar-daily": { "props": [ @@ -3995,136 +4358,159 @@ "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dayFormat", "type": "function", "default": "null", - "source": "calendar-base" + "source": "calendar-base", + "doc": "Formats day of the month string that appears in a day to a specified locale" }, { "name": "end", "type": "string", "default": "undefined", - "source": "calendar-base" + "source": "calendar-base", + "doc": "The ending date on the calendar (inclusive) in the format of `YYYY-MM-DD`. This may be ignored depending on the `type` of the calendar." }, { "name": "firstInterval", "type": ["number", "string"], "default": 0, - "source": "calendar-with-intervals" + "source": "calendar-with-intervals", + "doc": "The first interval to display in the `day` view. If `intervalMinutes` is set to 60 and this is set to 9 the first time in the view is 9am." }, { "name": "hideHeader", "type": "boolean", "default": "false", - "source": "calendar-base" + "source": "calendar-base", + "doc": "If the header at the top of the `day` view should be visible." }, { "name": "intervalCount", "type": ["number", "string"], "default": 24, - "source": "calendar-with-intervals" + "source": "calendar-with-intervals", + "doc": "The number of intervals to display in the `day` view." }, { "name": "intervalFormat", "type": "function", "default": "null", - "source": "calendar-with-intervals" + "source": "calendar-with-intervals", + "doc": "Formats time of day string that appears in the interval gutter of the `day` and `week` view to specified locale" }, { "name": "intervalHeight", "type": ["number", "string"], "default": 48, - "source": "calendar-with-intervals" + "source": "calendar-with-intervals", + "doc": "The height of an interval in pixels in the `day` view." }, { "name": "intervalMinutes", "type": ["number", "string"], "default": 60, - "source": "calendar-with-intervals" + "source": "calendar-with-intervals", + "doc": "The number of minutes the intervals are in the `day` view. A common interval is 60 minutes so the intervals are an hour." }, { "name": "intervalStyle", "type": "function", "default": "null", - "source": "calendar-with-intervals" + "source": "calendar-with-intervals", + "doc": "Returns CSS styling to apply to the interval." }, { "name": "intervalWidth", "type": ["number", "string"], "default": 60, - "source": "calendar-with-intervals" + "source": "calendar-with-intervals", + "doc": "The width of the interval gutter on the left side in the `day` view." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "locale", "type": "string", "default": "undefined", - "source": "localable" + "source": "localable", + "doc": "The locale of the calendar." }, { "name": "maxDays", "type": "number", "default": 7, - "source": "calendar-with-intervals" + "source": "calendar-with-intervals", + "doc": "The maximum number of days to display in the custom calendar if an `end` day is not set." }, { "name": "now", "type": "string", "default": "undefined", - "source": "times" + "source": "times", + "doc": "Override the day & time which is considered now. This is in the format of `YYYY-MM-DD hh:mm:ss`. The calendar is styled according to now." }, { "name": "shortIntervals", "type": "boolean", "default": "true", - "source": "calendar-with-intervals" + "source": "calendar-with-intervals", + "doc": "If true, the intervals in the `day` view will be 9 AM as opposed to 09:00 AM" }, { "name": "shortWeekdays", "type": "boolean", "default": "true", - "source": "calendar-base" + "source": "calendar-base", + "doc": "Whether the short versions of a weekday should be used (Mon vs Monday)." }, { "name": "showIntervalLabel", "type": "function", "default": "null", - "source": "calendar-with-intervals" + "source": "calendar-with-intervals", + "doc": "Checks if a given day and time should be displayed in the interval gutter of the `day` view." }, { "name": "start", "type": "string", "default": "'2020-04-29'", - "source": "calendar-base" + "source": "calendar-base", + "doc": "The starting date on the calendar (inclusive) in the format of `YYYY-MM-DD`. This may be ignored depending on the `type` of the calendar." }, { "name": "weekdayFormat", "type": "function", "default": "null", - "source": "calendar-base" + "source": "calendar-base", + "doc": "Formats day of the week string that appears in the header to specified locale" }, { "name": "weekdays", "type": ["array", "string"], "default": [0, 1, 2, 3, 4, 5, 6], - "source": "calendar-base" + "source": "calendar-base", + "doc": "Specifies which days of the week to display. To display Monday through Friday only, a value of `[1, 2, 3, 4, 5]` can be used. To display a week starting on Monday a value of `[1, 2, 3, 4, 5, 6, 0]` can be used." } ], - "mixins": ["colorable", "localable", "mouse", "themeable", "times"] + "mixins": ["colorable", "localable", "mouse", "themeable", "times"], + "doc": "A calendar component that displays events in a daily view with time slots." }, "v-calendar-weekly": { "props": [ @@ -4132,100 +4518,117 @@ "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dayFormat", "type": "function", "default": "null", - "source": "calendar-base" + "source": "calendar-base", + "doc": "Formats day of the month string that appears in a day to a specified locale" }, { "name": "end", "type": "string", "default": "undefined", - "source": "calendar-base" + "source": "calendar-base", + "doc": "The ending date on the calendar (inclusive) in the format of `YYYY-MM-DD`. This may be ignored depending on the `type` of the calendar." }, { "name": "hideHeader", "type": "boolean", "default": "false", - "source": "calendar-base" + "source": "calendar-base", + "doc": "If the header at the top of the `day` view should be visible." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "locale", "type": "string", "default": "undefined", - "source": "localable" + "source": "localable", + "doc": "The locale of the calendar." }, { "name": "minWeeks", "type": "any", "default": 1, - "source": "v-calendar-weekly" + "source": "v-calendar-weekly", + "doc": "The minimum number of weeks to display in the `month` or `week` view." }, { "name": "monthFormat", "type": "function", "default": "null", - "source": "v-calendar-weekly" + "source": "v-calendar-weekly", + "doc": "Formats month string that appears in a day to specified locale" }, { "name": "now", "type": "string", "default": "undefined", - "source": "times" + "source": "times", + "doc": "Override the day & time which is considered now. This is in the format of `YYYY-MM-DD hh:mm:ss`. The calendar is styled according to now." }, { "name": "shortMonths", "type": "boolean", "default": "true", - "source": "v-calendar-weekly" + "source": "v-calendar-weekly", + "doc": "Whether the short versions of a month should be used (Jan vs January)." }, { "name": "shortWeekdays", "type": "boolean", "default": "true", - "source": "calendar-base" + "source": "calendar-base", + "doc": "Whether the short versions of a weekday should be used (Mon vs Monday)." }, { "name": "showMonthOnFirst", "type": "boolean", "default": "true", - "source": "v-calendar-weekly" + "source": "v-calendar-weekly", + "doc": "Whether the name of the month should be displayed on the first day of the month." }, { "name": "start", "type": "string", "default": "'2020-04-29'", - "source": "calendar-base" + "source": "calendar-base", + "doc": "The starting date on the calendar (inclusive) in the format of `YYYY-MM-DD`. This may be ignored depending on the `type` of the calendar." }, { "name": "weekdayFormat", "type": "function", "default": "null", - "source": "calendar-base" + "source": "calendar-base", + "doc": "Formats day of the week string that appears in the header to specified locale" }, { "name": "weekdays", "type": ["array", "string"], "default": [0, 1, 2, 3, 4, 5, 6], - "source": "calendar-base" + "source": "calendar-base", + "doc": "Specifies which days of the week to display. To display Monday through Friday only, a value of `[1, 2, 3, 4, 5]` can be used. To display a week starting on Monday a value of `[1, 2, 3, 4, 5, 6, 0]` can be used." } ], - "mixins": ["colorable", "localable", "mouse", "themeable", "times"] + "mixins": ["colorable", "localable", "mouse", "themeable", "times"], + "doc": "A calendar component that displays events in a weekly view." }, "v-calendar-monthly": { "props": [ @@ -4233,100 +4636,117 @@ "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dayFormat", "type": "function", "default": "null", - "source": "calendar-base" + "source": "calendar-base", + "doc": "Formats day of the month string that appears in a day to a specified locale" }, { "name": "end", "type": "string", "default": "undefined", - "source": "calendar-base" + "source": "calendar-base", + "doc": "The ending date on the calendar (inclusive) in the format of `YYYY-MM-DD`. This may be ignored depending on the `type` of the calendar." }, { "name": "hideHeader", "type": "boolean", "default": "false", - "source": "calendar-base" + "source": "calendar-base", + "doc": "If the header at the top of the `day` view should be visible." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "locale", "type": "string", "default": "undefined", - "source": "localable" + "source": "localable", + "doc": "The locale of the calendar." }, { "name": "minWeeks", "type": "any", "default": 1, - "source": "v-calendar-weekly" + "source": "v-calendar-weekly", + "doc": "The minimum number of weeks to display in the `month` or `week` view." }, { "name": "monthFormat", "type": "function", "default": "null", - "source": "v-calendar-weekly" + "source": "v-calendar-weekly", + "doc": "Formats month string that appears in a day to specified locale" }, { "name": "now", "type": "string", "default": "undefined", - "source": "times" + "source": "times", + "doc": "Override the day & time which is considered now. This is in the format of `YYYY-MM-DD hh:mm:ss`. The calendar is styled according to now." }, { "name": "shortMonths", "type": "boolean", "default": "true", - "source": "v-calendar-weekly" + "source": "v-calendar-weekly", + "doc": "Whether the short versions of a month should be used (Jan vs January)." }, { "name": "shortWeekdays", "type": "boolean", "default": "true", - "source": "calendar-base" + "source": "calendar-base", + "doc": "Whether the short versions of a weekday should be used (Mon vs Monday)." }, { "name": "showMonthOnFirst", "type": "boolean", "default": "true", - "source": "v-calendar-weekly" + "source": "v-calendar-weekly", + "doc": "Whether the name of the month should be displayed on the first day of the month." }, { "name": "start", "type": "string", "default": "'2020-04-29'", - "source": "calendar-base" + "source": "calendar-base", + "doc": "The starting date on the calendar (inclusive) in the format of `YYYY-MM-DD`. This may be ignored depending on the `type` of the calendar." }, { "name": "weekdayFormat", "type": "function", "default": "null", - "source": "calendar-base" + "source": "calendar-base", + "doc": "Formats day of the week string that appears in the header to specified locale" }, { "name": "weekdays", "type": ["array", "string"], "default": [0, 1, 2, 3, 4, 5, 6], - "source": "calendar-base" + "source": "calendar-base", + "doc": "Specifies which days of the week to display. To display Monday through Friday only, a value of `[1, 2, 3, 4, 5]` can be used. To display a week starting on Monday a value of `[1, 2, 3, 4, 5, 6, 0]` can be used." } ], - "mixins": ["colorable", "localable", "mouse", "themeable", "times"] + "mixins": ["colorable", "localable", "mouse", "themeable", "times"], + "doc": "A calendar component that displays events in a monthly view." }, "v-card": { "props": [ @@ -4334,193 +4754,225 @@ "name": "activeClass", "type": "string", "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation." }, { "name": "append", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Setting **append** prop always appends the relative path to the current path. You can find more information about the [**append** prop](https://router.vuejs.org/api/#append) on the vue-router documentation." }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Removes the ability to click or target the component." }, { "name": "elevation", "type": ["number", "string"], "default": "undefined", - "source": "elevatable" + "source": "elevatable", + "doc": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)." }, { "name": "exact", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Exactly match the link. Without this, '/' will match every route. You can find more information about the [**exact** prop](https://router.vuejs.org/api/#exact) on the vue-router documentation." }, { "name": "exactActiveClass", "type": "string", "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Configure the active CSS class applied when the link is active with exact match. You can find more information about the [**exact-active-class** prop](https://router.vuejs.org/api/#exact-active-class) on the vue-router documentation." }, { "name": "flat", "type": "boolean", "default": "false", - "source": "v-card" + "source": "v-card", + "doc": "Removes the card's elevation." }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the height for the component." }, { "name": "hover", "type": "boolean", "default": "false", - "source": "v-card" + "source": "v-card", + "doc": "Will apply an elevation of 4dp when hovered (default 2dp). You can find more information on the [elevation page](/styles/elevation)." }, { "name": "href", "type": ["string", "object"], "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Designates the component as anchor and applies the **href** attribute." }, { "name": "img", "type": "string", "default": "undefined", - "source": "v-card" + "source": "v-card", + "doc": "Specifies an image background for the card. For more advanced implementations, it is recommended that you use the [v-img](/components/images) component. You can find a [v-img example here](/components/cards/#media-with-text)." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "link", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Designates that the component is a link. This is automatic when using the **href** or **to** prop." }, { "name": "loaderHeight", "type": ["number", "string"], "default": 4, - "source": "loadable" + "source": "loadable", + "doc": "Specifies the height of the loader" }, { "name": "loading", "type": ["boolean", "string"], "default": false, - "source": "loadable" + "source": "loadable", + "doc": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color" }, { "name": "maxHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum height for the component." }, { "name": "maxWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum width for the component." }, { "name": "minHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum height for the component." }, { "name": "minWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum width for the component." }, { "name": "nuxt", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Specifies the link is a `nuxt-link`. For use with the [nuxt framework](https://nuxtjs.org/api/components-nuxt-link/)." }, { "name": "outlined", "type": "boolean", "default": "false", - "source": "v-card" + "source": "v-card", + "doc": "Applies the outlined style to the input" }, { "name": "raised", "type": "boolean", "default": "false", - "source": "v-card" + "source": "v-card", + "doc": "Specifies a higher default elevation (8dp). You can find more information on the [elevation page](/styles/elevation)." }, { "name": "replace", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Setting **replace** prop will call `router.replace()` instead of `router.push()` when clicked, so the navigation will not leave a history record. You can find more information about the [**replace** prop](https://router.vuejs.org/api/#replace) on the vue-router documentation." }, { "name": "ripple", "type": ["boolean", "object"], "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Applies the [v-ripple](/directives/ripple) directive." }, { "name": "shaped", "type": "boolean", "default": "false", - "source": "v-card" + "source": "v-card", + "doc": "Round if `outlined` and increase `border-radius` if `filled`. Must be used with either `outlined` or `filled`" }, { "name": "tag", "type": "string", "default": "'div'", - "source": "routable" + "source": "routable", + "doc": "Specify a custom tag used on the root element." }, { "name": "target", "type": "string", "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Designates the target attribute. This should only be applied when using the **href** prop." }, { "name": "tile", "type": "boolean", "default": "false", - "source": "v-sheet" + "source": "v-sheet", + "doc": "Removes the component's **border-radius**." }, { "name": "to", "type": ["string", "object"], "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Denotes the target route of the link. You can find more information about the [**to** prop](https://router.vuejs.org/api/#to) on the vue-router documentation." }, { "name": "width", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the width for the component." } ], "mixins": [ @@ -4545,7 +4997,8 @@ { "name": "default" } - ] + ], + "doc": "The v-card component is a versatile content container with multiple variants and options. Cards are used to display related information in an organized manner." }, "v-card-actions": { "props": [], @@ -4554,7 +5007,8 @@ { "name": "default" } - ] + ], + "doc": "The v-card-actions component is used to contain action buttons within a v-card. It's typically placed at the bottom of the card." }, "v-card-subtitle": { "props": [], @@ -4563,7 +5017,8 @@ { "name": "default" } - ] + ], + "doc": "A subtitle element within a v-card, typically displayed below the card title." }, "v-card-text": { "props": [], @@ -4572,7 +5027,8 @@ { "name": "default" } - ] + ], + "doc": "The main content area of a v-card component." }, "v-card-title": { "props": [], @@ -4581,7 +5037,8 @@ { "name": "default" } - ] + ], + "doc": "The title element of a v-card component, typically displayed at the top." }, "v-carousel": { "props": [ @@ -4589,61 +5046,71 @@ "name": "activeClass", "type": "string", "default": "'v-window-item--active'", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation." }, { "name": "continuous", "type": "boolean", "default": "true", - "source": "v-window" + "source": "v-window", + "doc": "Determines whether carousel is continuous" }, { "name": "cycle", "type": "boolean", "default": "false", - "source": "v-carousel" + "source": "v-carousel", + "doc": "Determines if the carousel should cycle through images." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "delimiterIcon", "type": "string", "default": "'$delimiter'", - "source": "v-carousel" + "source": "v-carousel", + "doc": "Sets icon for carousel delimiter" }, { "name": "height", "type": ["number", "string"], "default": 500, - "source": "v-carousel" + "source": "v-carousel", + "doc": "Sets the height for the component." }, { "name": "hideDelimiterBackground", "type": "boolean", "default": "false", - "source": "v-carousel" + "source": "v-carousel", + "doc": "Hides the bottom delimiter background." }, { "name": "hideDelimiters", "type": "boolean", "default": "false", - "source": "v-carousel" + "source": "v-carousel", + "doc": "Hides the carousel's bottom delimiters." }, { "name": "interval", "type": ["number", "string"], "default": 6000, - "source": "v-carousel" + "source": "v-carousel", + "doc": "The duration between image cycles. Requires the **cycle** prop." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "mandatory", @@ -4655,55 +5122,64 @@ "name": "max", "type": ["number", "string"], "default": "undefined", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Sets a maximum number of selections that can be made." }, { "name": "multiple", "type": "boolean", "default": "false", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Changes select to multiple. Accepts array for value" }, { "name": "nextIcon", "type": ["boolean", "string"], "default": "$next", - "source": "v-window" + "source": "v-window", + "doc": "The displayed icon for forcing pagination to the next item." }, { "name": "prevIcon", "type": ["boolean", "string"], "default": "$prev", - "source": "v-window" + "source": "v-window", + "doc": "The displayed icon for forcing pagination to the previous item." }, { "name": "progress", "type": "boolean", "default": "false", - "source": "v-carousel" + "source": "v-carousel", + "doc": "Displays a carousel progress bar. Requires the **cycle** prop and **interval**." }, { "name": "progressColor", "type": "string", "default": "undefined", - "source": "v-carousel" + "source": "v-carousel", + "doc": "Applies specified color to progress bar." }, { "name": "reverse", "type": "boolean", "default": "false", - "source": "v-window" + "source": "v-window", + "doc": "Reverses the input orientation" }, { "name": "showArrows", "type": "boolean", "default": "true", - "source": "v-window" + "source": "v-window", + "doc": "Displays arrows for next/previous navigation." }, { "name": "showArrowsOnHover", "type": "boolean", "default": "false", - "source": "v-window" + "source": "v-window", + "doc": "Displays navigation arrows only when the carousel is hovered over." }, { "name": "touch", @@ -4721,7 +5197,8 @@ "name": "value", "type": "any", "default": "undefined", - "source": "proxyable" + "source": "proxyable", + "doc": "Controls whether the component is visible or hidden." }, { "name": "vertical", @@ -4733,7 +5210,8 @@ "name": "verticalDelimiters", "type": "string", "default": "undefined", - "source": "v-carousel" + "source": "v-carousel", + "doc": "Displays carousel delimiters vertically." } ], "mixins": ["proxyable", "themeable"], @@ -4747,7 +5225,8 @@ { "name": "default" } - ] + ], + "doc": "The v-carousel component is used to display large numbers of visual content on a rotating timer or with manual navigation." }, "v-carousel-item": { "props": [ @@ -4755,61 +5234,71 @@ "name": "activeClass", "type": "string", "default": "undefined", - "source": "groupable" + "source": "groupable", + "doc": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation." }, { "name": "append", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Setting **append** prop always appends the relative path to the current path. You can find more information about the [**append** prop](https://router.vuejs.org/api/#append) on the vue-router documentation." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "groupable" + "source": "groupable", + "doc": "Removes the ability to click or target the component." }, { "name": "eager", "type": "boolean", "default": "false", - "source": "bootable" + "source": "bootable", + "doc": "Will force the components content to render on mounted. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO." }, { "name": "exact", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Exactly match the link. Without this, '/' will match every route. You can find more information about the [**exact** prop](https://router.vuejs.org/api/#exact) on the vue-router documentation." }, { "name": "exactActiveClass", "type": "string", "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Configure the active CSS class applied when the link is active with exact match. You can find more information about the [**exact-active-class** prop](https://router.vuejs.org/api/#exact-active-class) on the vue-router documentation." }, { "name": "href", "type": ["string", "object"], "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Designates the component as anchor and applies the **href** attribute." }, { "name": "link", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Designates that the component is a link. This is automatic when using the **href** or **to** prop." }, { "name": "nuxt", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Specifies the link is a `nuxt-link`. For use with the [nuxt framework](https://nuxtjs.org/api/components-nuxt-link/)." }, { "name": "replace", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Setting **replace** prop will call `router.replace()` instead of `router.push()` when clicked, so the navigation will not leave a history record. You can find more information about the [**replace** prop](https://router.vuejs.org/api/#replace) on the vue-router documentation." }, { "name": "reverseTransition", @@ -4821,37 +5310,43 @@ "name": "ripple", "type": ["boolean", "object"], "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Applies the [v-ripple](/directives/ripple) directive." }, { "name": "tag", "type": "string", "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Specify a custom tag used on the root element." }, { "name": "target", "type": "string", "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Designates the target attribute. This should only be applied when using the **href** prop." }, { "name": "to", "type": ["string", "object"], "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Denotes the target route of the link. You can find more information about the [**to** prop](https://router.vuejs.org/api/#to) on the vue-router documentation." }, { "name": "transition", "type": ["boolean", "string"], "default": "undefined", - "source": "v-window-item" + "source": "v-window-item", + "doc": "Sets the component transition. Can be one of the [built in transitions](/styles/transitions) or one your own." }, { "name": "value", "type": "any", "default": "undefined", - "source": "v-window-item" + "source": "v-window-item", + "doc": "Controls whether the component is visible or hidden." } ], "mixins": ["v-window-item", "bootable", "groupable", "routable"], @@ -4859,7 +5354,8 @@ { "name": "default" } - ] + ], + "doc": "A single item/slide within a v-carousel component." }, "v-checkbox": { "props": [ @@ -4867,211 +5363,246 @@ "name": "appendIcon", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Appends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "backgroundColor", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Changes the background-color of the input" }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. This will default the components color to _white_ unless you've configured your [application theme](/customization/theme) to **dark** or if you are using the **color** prop on the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Reduces the input height" }, { "name": "disabled", "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Removes the ability to click or target the component." }, { "name": "error", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual error state" }, { "name": "errorCount", "type": ["number", "string"], "default": 1, - "source": "validatable" + "source": "validatable", + "doc": "The total number of errors that should display at once" }, { "name": "errorMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the **rules** prop. This field will not trigger validation" }, { "name": "falseValue", "type": "any", "default": "undefined", - "source": "selectable" + "source": "selectable", + "doc": "Sets value for falsy state" }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Sets the height for the component." }, { "name": "hideDetails", "type": ["boolean", "string"], "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hides hint and validation errors. When set to `auto` messages will be rendered only if there's a message (hint, error message, counter value etc) to display" }, { "name": "hint", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hint text" }, { "name": "id", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Sets the DOM id on the component" }, { "name": "indeterminate", "type": "boolean", "default": "false", - "source": "v-checkbox" + "source": "v-checkbox", + "doc": "Sets an indeterminate state for the checkbox" }, { "name": "indeterminateIcon", "type": "string", "default": "'$checkboxIndeterminate'", - "source": "v-checkbox" + "source": "v-checkbox", + "doc": "The icon used when in an indeterminate state" }, { "name": "inputValue", "type": "any", "default": "undefined", - "source": "selectable" + "source": "selectable", + "doc": "The **v-model** bound value" }, { "name": "label", "type": "string", - "source": "v-input" + "source": "v-input", + "doc": "Sets input label" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "loading", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color" }, { "name": "messages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Displays a list of messages or message if using a string" }, { "name": "multiple", "type": "boolean", "default": "false", - "source": "selectable" + "source": "selectable", + "doc": "Changes expected model to an array" }, { "name": "offIcon", "type": "string", "default": "'$checkboxOff'", - "source": "v-checkbox" + "source": "v-checkbox", + "doc": "The icon used when inactive" }, { "name": "onIcon", "type": "string", "default": "'$checkboxOn'", - "source": "v-checkbox" + "source": "v-checkbox", + "doc": "The icon used when active" }, { "name": "persistentHint", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Forces hint to always be visible" }, { "name": "prependIcon", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Prepends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "readonly", "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Puts input in readonly state" }, { "name": "ripple", "type": ["boolean", "object"], "default": true, - "source": "rippleable" + "source": "rippleable", + "doc": "Applies the [v-ripple](/directives/ripple) directive." }, { "name": "rules", "type": "array", "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`" }, { "name": "success", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual success state" }, { "name": "successMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a success state and passes through custom success messages." }, { "name": "trueValue", "type": "any", "default": "undefined", - "source": "selectable" + "source": "selectable", + "doc": "Sets value for truthy state" }, { "name": "validateOnBlur", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Delays validation until blur event" }, { "name": "value", "type": "any", - "source": "v-input" + "source": "v-input", + "doc": "Controls whether the component is visible or hidden." }, { "name": "valueComparator", "type": "function", "default": "null", - "source": "comparable" + "source": "comparable", + "doc": "Apply a custom value comparator function" } ], "mixins": [ @@ -5143,7 +5674,8 @@ { "name": "label" } - ] + ], + "doc": "The v-checkbox component provides users the ability to choose between two distinct values. These are often used in forms and filters." }, "v-simple-checkbox": { "props": [ @@ -5151,61 +5683,71 @@ "name": "color", "type": "string", "default": "undefined", - "source": "v-simple-checkbox" + "source": "v-simple-checkbox", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "v-simple-checkbox" + "source": "v-simple-checkbox", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "v-simple-checkbox" + "source": "v-simple-checkbox", + "doc": "Disables simple checkbox." }, { "name": "indeterminate", "type": "boolean", "default": "false", - "source": "v-simple-checkbox" + "source": "v-simple-checkbox", + "doc": "Sets an indeterminate state for the simple checkbox." }, { "name": "indeterminateIcon", "type": "string", "default": "'$checkboxIndeterminate'", - "source": "v-simple-checkbox" + "source": "v-simple-checkbox", + "doc": "The icon used when in an indeterminate state." }, { "name": "light", "type": "boolean", "default": "false", - "source": "v-simple-checkbox" + "source": "v-simple-checkbox", + "doc": "Applies the light theme variant to the component." }, { "name": "offIcon", "type": "string", "default": "'$checkboxOff'", - "source": "v-simple-checkbox" + "source": "v-simple-checkbox", + "doc": "The icon used when inactive." }, { "name": "onIcon", "type": "string", "default": "'$checkboxOn'", - "source": "v-simple-checkbox" + "source": "v-simple-checkbox", + "doc": "The icon used when active." }, { "name": "ripple", "type": "boolean", "default": "true", - "source": "v-simple-checkbox" + "source": "v-simple-checkbox", + "doc": "Applies the [v-ripple](/directives/ripple) directive." }, { "name": "value", "type": "boolean", "default": "false", - "source": "v-simple-checkbox" + "source": "v-simple-checkbox", + "doc": "A boolean value that represents whether the simple checkbox is checked." } ], "mixins": [], @@ -5214,7 +5756,8 @@ "name": "input", "value": "Event" } - ] + ], + "doc": "A simplified version of v-checkbox with minimal styling, often used in data tables." }, "v-chip": { "props": [ @@ -5222,193 +5765,225 @@ "name": "active", "type": "boolean", "default": "true", - "source": "v-chip" + "source": "v-chip", + "doc": "Determines whether the chip is visible or not." }, { "name": "activeClass", "type": "string", "default": "", - "source": "routable" + "source": "routable", + "doc": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation." }, { "name": "append", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Setting **append** prop always appends the relative path to the current path. You can find more information about the [**append** prop](https://router.vuejs.org/api/#append) on the vue-router documentation." }, { "name": "close", "type": "boolean", "default": "false", - "source": "v-chip" + "source": "v-chip", + "doc": "Adds remove button" }, { "name": "closeIcon", "type": "string", "default": "'$delete'", - "source": "v-chip" + "source": "v-chip", + "doc": "Change the default icon used for **close** chips" }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Disables the chip, making it un-selectable" }, { "name": "draggable", "type": "boolean", "default": "false", - "source": "v-chip" + "source": "v-chip", + "doc": "Makes the chip draggable" }, { "name": "exact", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Exactly match the link. Without this, '/' will match every route. You can find more information about the [**exact** prop](https://router.vuejs.org/api/#exact) on the vue-router documentation." }, { "name": "exactActiveClass", "type": "string", "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Configure the active CSS class applied when the link is active with exact match. You can find more information about the [**exact-active-class** prop](https://router.vuejs.org/api/#exact-active-class) on the vue-router documentation." }, { "name": "filter", "type": "boolean", "default": "false", - "source": "v-chip" + "source": "v-chip", + "doc": "Displays a selection icon when selected" }, { "name": "filterIcon", "type": "string", "default": "'$complete'", - "source": "v-chip" + "source": "v-chip", + "doc": "Change the default icon used for **filter** chips" }, { "name": "href", "type": ["string", "object"], "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Designates the component as anchor and applies the **href** attribute." }, { "name": "inputValue", "type": "any", "default": "undefined", - "source": "toggleable" + "source": "toggleable", + "doc": "Controls the **active** state of the item. This is typically used to highlight the component." }, { "name": "label", "type": "boolean", "default": "false", - "source": "v-chip" + "source": "v-chip", + "doc": "Removes circle edges" }, { "name": "large", "type": "boolean", "default": "false", - "source": "sizeable" + "source": "sizeable", + "doc": "Makes the component large." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "link", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Explicitly define the chip as a link" }, { "name": "nuxt", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Specifies the link is a `nuxt-link`. For use with the [nuxt framework](https://nuxtjs.org/api/components-nuxt-link/)." }, { "name": "outlined", "type": "boolean", "default": "false", - "source": "v-chip" + "source": "v-chip", + "doc": "Removes background and applies border and text color" }, { "name": "pill", "type": "boolean", "default": "false", - "source": "v-chip" + "source": "v-chip", + "doc": "Remove `v-avatar` padding" }, { "name": "replace", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Setting **replace** prop will call `router.replace()` instead of `router.push()` when clicked, so the navigation will not leave a history record. You can find more information about the [**replace** prop](https://router.vuejs.org/api/#replace) on the vue-router documentation." }, { "name": "ripple", "type": ["boolean", "object"], "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Applies the [v-ripple](/directives/ripple) directive." }, { "name": "small", "type": "boolean", "default": "false", - "source": "sizeable" + "source": "sizeable", + "doc": "Makes the component small." }, { "name": "tag", "type": "string", "default": "'span'", - "source": "routable" + "source": "routable", + "doc": "Specify a custom tag used on the root element." }, { "name": "target", "type": "string", "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Designates the target attribute. This should only be applied when using the **href** prop." }, { "name": "textColor", "type": "string", "default": "undefined", - "source": "v-chip" + "source": "v-chip", + "doc": "Applies a specified color to the control text" }, { "name": "to", "type": ["string", "object"], "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Denotes the target route of the link. You can find more information about the [**to** prop](https://router.vuejs.org/api/#to) on the vue-router documentation." }, { "name": "value", "type": "any", "default": "undefined", - "source": "v-chip" + "source": "v-chip", + "doc": "The value used when a child of a [v-chip-group](/components/chip-groups)." }, { "name": "xLarge", "type": "boolean", "default": "false", - "source": "sizeable" + "source": "sizeable", + "doc": "Makes the component extra large." }, { "name": "xSmall", "type": "boolean", "default": "false", - "source": "sizeable" + "source": "sizeable", + "doc": "Makes the component extra small." } ], "mixins": [ @@ -5441,7 +6016,8 @@ { "name": "default" } - ] + ], + "doc": "The v-chip component is used to convey small pieces of information. It can be interactive and used in various contexts like tags or selections." }, "v-chip-group": { "props": [ @@ -5449,37 +6025,43 @@ "name": "activeClass", "type": "string", "default": "'v-slide-item--active'", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation." }, { "name": "centerActive", "type": "boolean", "default": "false", - "source": "base-slide-group" + "source": "base-slide-group", + "doc": "Forces the selected chip to be centered" }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "column", "type": "boolean", "default": "false", - "source": "v-chip-group" + "source": "v-chip-group", + "doc": "Remove horizontal pagination and wrap items as needed" }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "mandatory", @@ -5491,7 +6073,8 @@ "name": "max", "type": ["number", "string"], "default": "undefined", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Sets a maximum number of selections that can be made." }, { "name": "mobileBreakPoint", @@ -5503,31 +6086,36 @@ "name": "multiple", "type": "boolean", "default": "false", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Changes select to multiple. Accepts array for value" }, { "name": "nextIcon", "type": "string", "default": "'$next'", - "source": "base-slide-group" + "source": "base-slide-group", + "doc": "Specify the icon to use for the next icon" }, { "name": "prevIcon", "type": "string", "default": "'$prev'", - "source": "base-slide-group" + "source": "base-slide-group", + "doc": "Specify the icon to use for the prev icon" }, { "name": "showArrows", "type": "boolean", "default": "false", - "source": "base-slide-group" + "source": "base-slide-group", + "doc": "Force the display of the pagination arrows" }, { "name": "value", "type": "any", "default": "undefined", - "source": "proxyable" + "source": "proxyable", + "doc": "Controls whether the component is visible or hidden." } ], "mixins": [ @@ -5547,7 +6135,8 @@ { "name": "default" } - ] + ], + "doc": "The v-chip-group component is used to group and manage multiple v-chip components with selection capabilities." }, "v-color-picker": { "props": [ @@ -5555,91 +6144,106 @@ "name": "canvasHeight", "type": ["string", "number"], "default": 150, - "source": "v-color-picker" + "source": "v-color-picker", + "doc": "Height of canvas" }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "v-color-picker" + "source": "v-color-picker", + "doc": "Disables picker" }, { "name": "dotSize", "type": ["number", "string"], "default": 10, - "source": "v-color-picker" + "source": "v-color-picker", + "doc": "Changes the size of the selection dot on the canvas" }, { "name": "flat", "type": "boolean", "default": "false", - "source": "v-color-picker" + "source": "v-color-picker", + "doc": "Removes elevation" }, { "name": "hideCanvas", "type": "boolean", "default": "false", - "source": "v-color-picker" + "source": "v-color-picker", + "doc": "Hides canvas" }, { "name": "hideInputs", "type": "boolean", "default": "false", - "source": "v-color-picker" + "source": "v-color-picker", + "doc": "Hides inputs" }, { "name": "hideModeSwitch", "type": "boolean", "default": "false", - "source": "v-color-picker" + "source": "v-color-picker", + "doc": "Hides mode switch" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "mode", "type": "string", "default": "'rgba'", - "source": "v-color-picker" + "source": "v-color-picker", + "doc": "Sets mode of inputs. Available modes are 'rgba', 'hsla', and 'hexa'. Can be synced with the `.sync` modifier." }, { "name": "showSwatches", "type": "boolean", "default": "false", - "source": "v-color-picker" + "source": "v-color-picker", + "doc": "Displays color swatches" }, { "name": "swatches", "type": "array", "default": "undefined", - "source": "v-color-picker" + "source": "v-color-picker", + "doc": "Sets the available color swatches to select from - This prop only accepts rgba hex strings" }, { "name": "swatchesMaxHeight", "type": ["number", "string"], "default": 150, - "source": "v-color-picker" + "source": "v-color-picker", + "doc": "Sets the maximum height of the swatches section" }, { "name": "value", "type": ["object", "string"], "default": "undefined", - "source": "v-color-picker" + "source": "v-color-picker", + "doc": "Current color. This can be either a string representing a hex color, or an object representing a RGBA, HSLA, or HSVA value" }, { "name": "width", "type": ["number", "string"], "default": 300, - "source": "v-color-picker" + "source": "v-color-picker", + "doc": "Sets the width of the color picker" } ], "mixins": ["themeable"], @@ -5679,7 +6283,8 @@ "name": "update:mode", "value": "string" } - ] + ], + "doc": "The v-color-picker component allows users to select colors using various input methods including swatches, sliders, and text input." }, "v-color-picker-swatches": { "props": [ @@ -5687,31 +6292,36 @@ "name": "color", "type": "object", "default": "undefined", - "source": "v-color-picker-swatches" + "source": "v-color-picker-swatches", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "maxHeight", "type": ["number", "string"], "default": "undefined", - "source": "v-color-picker-swatches" + "source": "v-color-picker-swatches", + "doc": "Sets the maximum height for the component." }, { "name": "maxWidth", "type": ["number", "string"], "default": "undefined", - "source": "v-color-picker-swatches" + "source": "v-color-picker-swatches", + "doc": "Sets the maximum width for the component." }, { "name": "swatches", @@ -5950,7 +6560,8 @@ "source": "v-color-picker-swatches" } ], - "mixins": ["themeable"] + "mixins": ["themeable"], + "doc": "A component displaying color swatches for quick color selection within a color picker." }, "v-color-picker-canvas": { "props": [ @@ -5981,13 +6592,15 @@ "a": 1 } }, - "source": "v-color-picker-canvas" + "source": "v-color-picker-canvas", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "v-color-picker-canvas" + "source": "v-color-picker-canvas", + "doc": "Removes the ability to click or target the component." }, { "name": "dotSize", @@ -5999,16 +6612,19 @@ "name": "height", "type": ["number", "string"], "default": 150, - "source": "v-color-picker-canvas" + "source": "v-color-picker-canvas", + "doc": "Sets the height for the component." }, { "name": "width", "type": ["number", "string"], "default": 300, - "source": "v-color-picker-canvas" + "source": "v-color-picker-canvas", + "doc": "Sets the width for the component." } ], - "mixins": [] + "mixins": [], + "doc": "The canvas area of a color picker for detailed color selection." }, "v-content": { "props": [ @@ -6016,10 +6632,12 @@ "name": "tag", "type": "string", "default": "'main'", - "source": "v-content" + "source": "v-content", + "doc": "Specify a custom tag used on the root element." } ], - "mixins": [] + "mixins": [], + "doc": "A deprecated component that was used as the main content wrapper. Use v-main instead." }, "v-combobox": { "props": [ @@ -6027,25 +6645,29 @@ "name": "allowOverflow", "type": "boolean", "default": "true", - "source": "v-autocomplete" + "source": "v-autocomplete", + "doc": "Removes overflow re-positioning for the content" }, { "name": "appendIcon", "type": "string", "default": "'$dropdown'", - "source": "v-input" + "source": "v-input", + "doc": "Appends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "appendOuterIcon", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Appends an icon to the outside the component's input, uses same syntax as `v-icon`" }, { "name": "attach", "type": "any", "default": false, - "source": "v-select" + "source": "v-select", + "doc": "Specifies which DOM element that this component should detach to. String can be any valid querySelector and Object can be any valid Node. This will attach to the root `v-app` component by default." }, { "name": "autoSelectFirst", @@ -6063,7 +6685,8 @@ "name": "backgroundColor", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Changes the background-color of the input" }, { "name": "cacheItems", @@ -6075,31 +6698,36 @@ "name": "chips", "type": "boolean", "default": "false", - "source": "v-select" + "source": "v-select", + "doc": "Changes display of selections to chips" }, { "name": "clearIcon", "type": "string", "default": "'$clear'", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Applied when using **clearable** and the input is dirty" }, { "name": "clearable", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Add input clear functionality, default icon is Material Design Icons **mdi-clear**" }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "counter", "type": ["boolean", "number", "string"], "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation." }, { "name": "counterValue", @@ -6111,25 +6739,29 @@ "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "deletableChips", "type": "boolean", "default": "false", - "source": "v-select" + "source": "v-select", + "doc": "Adds a remove icon to selected chips" }, { "name": "delimiters", "type": "array", "default": [], - "source": "v-combobox" + "source": "v-combobox", + "doc": "Accepts an array of strings that will trigger a new tag when typing. Does not replace the normal Tab and Enter keys." }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Reduces the input height" }, { "name": "disableLookup", @@ -6142,37 +6774,43 @@ "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Removes the ability to click or target the component." }, { "name": "eager", "type": "boolean", "default": "false", - "source": "v-select" + "source": "v-select", + "doc": "Will force the components content to render on mounted. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO." }, { "name": "error", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual error state" }, { "name": "errorCount", "type": ["number", "string"], "default": 1, - "source": "validatable" + "source": "validatable", + "doc": "The total number of errors that should display at once" }, { "name": "errorMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the **rules** prop. This field will not trigger validation" }, { "name": "filled", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Applies the alternate filled input style" }, { "name": "filter", @@ -6184,25 +6822,29 @@ "name": "flat", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Removes elevation (shadow) added to element when using the **solo** or **solo-inverted** props" }, { "name": "fullWidth", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Forces 100% width" }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Sets the height for the component." }, { "name": "hideDetails", "type": ["boolean", "string"], "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hides hint and validation errors. When set to `auto` messages will be rendered only if there's a message (hint, error message, counter value etc) to display" }, { "name": "hideNoData", @@ -6220,13 +6862,15 @@ "name": "hint", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hint text" }, { "name": "id", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Sets the DOM id on the component" }, { "name": "itemColor", @@ -6265,25 +6909,29 @@ { "name": "label", "type": "string", - "source": "v-input" + "source": "v-input", + "doc": "Sets input label" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "loaderHeight", "type": ["number", "string"], "default": 2, - "source": "loadable" + "source": "loadable", + "doc": "Specifies the height of the loader" }, { "name": "loading", "type": ["boolean", "string"], "default": false, - "source": "v-input" + "source": "v-input", + "doc": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color" }, { "name": "menuProps", @@ -6295,19 +6943,22 @@ "name": "messages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Displays a list of messages or message if using a string" }, { "name": "multiple", "type": "boolean", "default": "false", - "source": "v-select" + "source": "v-select", + "doc": "Changes select to multiple. Accepts array for value" }, { "name": "noDataText", "type": "string", "default": "'$vuetify.noDataText'", - "source": "filterable" + "source": "filterable", + "doc": "Display text when there is no data" }, { "name": "noFilter", @@ -6325,44 +6976,51 @@ "name": "outlined", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Applies the outlined style to the input" }, { "name": "persistentHint", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Forces hint to always be visible" }, { "name": "placeholder", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Sets the input's placeholder text" }, { "name": "prefix", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Displays prefix text" }, { "name": "prependIcon", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Prepends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "prependInnerIcon", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Prepends an icon inside the component's input, uses the same syntax as `v-icon`" }, { "name": "readonly", "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Puts input in readonly state" }, { "name": "returnObject", @@ -6374,19 +7032,22 @@ "name": "reverse", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Reverses the input orientation" }, { "name": "rounded", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Designates the **border-radius** applied to the component. You can find more information on the [Border Radius page](/styles/border-radius)." }, { "name": "rules", "type": "array", "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`" }, { "name": "searchInput", @@ -6398,43 +7059,50 @@ "name": "shaped", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Round if `outlined` and increase `border-radius` if `filled`. Must be used with either `outlined` or `filled`" }, { "name": "singleLine", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Label does not move on focus/dirty" }, { "name": "smallChips", "type": "boolean", "default": "false", - "source": "v-select" + "source": "v-select", + "doc": "Changes display of selections to chips with the **small** property" }, { "name": "solo", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Changes the style of the input" }, { "name": "soloInverted", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Reduces element opacity until focused" }, { "name": "success", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual success state" }, { "name": "successMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a success state and passes through custom success messages." }, { "name": "suffix", @@ -6452,18 +7120,21 @@ "name": "validateOnBlur", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Delays validation until blur event" }, { "name": "value", "type": "any", - "source": "v-input" + "source": "v-input", + "doc": "Controls whether the component is visible or hidden." }, { "name": "valueComparator", "type": "function", "default": "(a: any, b: any): boolean", - "source": "v-select" + "source": "v-select", + "doc": "Apply a custom value comparator function" } ], "mixins": [ @@ -6631,7 +7302,8 @@ }, "source": "v-select" } - ] + ], + "doc": "The v-combobox component is a combination of v-autocomplete and v-select that allows users to select from a list or create new entries." }, "v-counter": { "props": [ @@ -6639,28 +7311,33 @@ "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "max", "type": ["number", "string"], "default": "undefined", - "source": "v-counter" + "source": "v-counter", + "doc": "Sets a maximum number of selections that can be made." }, { "name": "value", "type": ["number", "string"], "default": "undefined", - "source": "v-counter" + "source": "v-counter", + "doc": "Controls whether the component is visible or hidden." } ], - "mixins": ["themeable"] + "mixins": ["themeable"], + "doc": "A counter component typically used with text inputs to show character count." }, "v-data": { "props": [ @@ -6901,7 +7578,8 @@ "group": "(value: string) => void" } } - ] + ], + "doc": "A base component for data display functionality." }, "v-data-iterator": { "props": [ @@ -6909,145 +7587,169 @@ "name": "customFilter", "type": "function", "default": "(items: any[], search: string) => any[]", - "source": "v-data" + "source": "v-data", + "doc": "Function to filter items" }, { "name": "customGroup", "type": "function", "default": "(items: any[], groupBy: string[], groupDesc: boolean[]) => Record", - "source": "v-data" + "source": "v-data", + "doc": "Function used to group items" }, { "name": "customSort", "type": "function", "default": "(items: any[], sortBy: string[], sortDesc: boolean[], locale: string, customSorters?: Record) => any[]", - "source": "v-data" + "source": "v-data", + "doc": "Function used to sort items" }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "disableFiltering", "type": "boolean", "default": "false", - "source": "v-data" + "source": "v-data", + "doc": "Disables filtering completely" }, { "name": "disablePagination", "type": "boolean", "default": "false", - "source": "v-data" + "source": "v-data", + "doc": "Disables pagination completely" }, { "name": "disableSort", "type": "boolean", "default": "false", - "source": "v-data" + "source": "v-data", + "doc": "Disables sorting completely" }, { "name": "expanded", "type": "array", "default": [], - "source": "v-data-iterator" + "source": "v-data-iterator", + "doc": "Array of expanded items. Can be used with `.sync` modifier" }, { "name": "footerProps", "type": "object", "default": "undefined", - "source": "v-data-iterator" + "source": "v-data-iterator", + "doc": "See the [`v-data-footer`](/api/v-data-footer) API for more information" }, { "name": "groupBy", "type": ["string", "array"], "default": [], - "source": "v-data" + "source": "v-data", + "doc": "Changes which item property should be used for grouping items. Currently only supports a single grouping in the format: `group` or `['group']`. When using an array, only the first element is considered. Can be used with `.sync` modifier" }, { "name": "groupDesc", "type": ["boolean", "array"], "default": [], - "source": "v-data" + "source": "v-data", + "doc": "Changes which direction grouping is done. Can be used with `.sync` modifier" }, { "name": "hideDefaultFooter", "type": "boolean", "default": "false", - "source": "v-data-iterator" + "source": "v-data-iterator", + "doc": "Hides default footer" }, { "name": "itemKey", "type": "string", "default": "'id'", - "source": "v-data" + "source": "v-data", + "doc": "The property on each item that is used as a unique key" }, { "name": "items", "type": "array", "default": [], - "source": "v-data" + "source": "v-data", + "doc": "The array of items to display" }, { "name": "itemsPerPage", "type": "number", "default": 10, - "source": "v-data" + "source": "v-data", + "doc": "Changes how many items per page should be visible. Can be used with `.sync` modifier. Setting this prop to `-1` will display all items on the page" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "loading", "type": ["boolean", "string"], "default": "undefined", - "source": "v-data-iterator" + "source": "v-data-iterator", + "doc": "If `true` and no items are provided, then a loading text will be shown" }, { "name": "loadingText", "type": "string", "default": "'$vuetify.dataIterator.loadingText'", - "source": "v-data-iterator" + "source": "v-data-iterator", + "doc": "Text shown when `loading` is true and no items are provided" }, { "name": "locale", "type": "string", "default": "'en-US'", - "source": "v-data" + "source": "v-data", + "doc": "Sets the locale used for sorting. This is passed into [`Intl.Collator()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Collator/Collator) in the default `customSort` function" }, { "name": "mobileBreakpoint", "type": ["number", "string"], "default": 600, - "source": "v-data-iterator" + "source": "v-data-iterator", + "doc": "Used to set when to toggle between regular table and mobile view" }, { "name": "multiSort", "type": "boolean", "default": "false", - "source": "v-data" + "source": "v-data", + "doc": "If `true` then one can sort on multiple properties" }, { "name": "mustSort", "type": "boolean", "default": "false", - "source": "v-data" + "source": "v-data", + "doc": "If `true` then one can not disable sorting, it will always switch between ascending and descending" }, { "name": "noDataText", "type": "string", "default": "'$vuetify.noDataText'", - "source": "v-data-iterator" + "source": "v-data-iterator", + "doc": "Text shown when no items are provided to the component" }, { "name": "noResultsText", "type": "string", "default": "'$vuetify.dataIterator.noResultsText'", - "source": "v-data-iterator" + "source": "v-data-iterator", + "doc": "Text shown when `search` prop is used and there are no results" }, { "name": "options", @@ -7075,64 +7777,75 @@ "name": "search", "type": "string", "default": "undefined", - "source": "v-data" + "source": "v-data", + "doc": "Text input used to filter items" }, { "name": "selectableKey", "type": "string", "default": "'isSelectable'", - "source": "v-data-iterator" + "source": "v-data-iterator", + "doc": "The property on each item that is used to determine if it is selectable or not" }, { "name": "serverItemsLength", "type": "number", "default": -1, - "source": "v-data" + "source": "v-data", + "doc": "Used only when data is provided by a server. Should be set to the total amount of items available on server so that pagination works correctly" }, { "name": "singleExpand", "type": "boolean", "default": "false", - "source": "v-data-iterator" + "source": "v-data-iterator", + "doc": "Changes expansion mode to single expand" }, { "name": "singleSelect", "type": "boolean", "default": "false", - "source": "v-data-iterator" + "source": "v-data-iterator", + "doc": "Changes selection mode to single select" }, { "name": "sortBy", "type": ["string", "array"], "default": [], - "source": "v-data" + "source": "v-data", + "doc": "Changes which item property (or properties) should be used for sort order. Can be used with `.sync` modifier" }, { "name": "sortDesc", "type": ["boolean", "array"], "default": [], - "source": "v-data" + "source": "v-data", + "doc": "Changes which direction sorting is done. Can be used with `.sync` modifier" }, { "name": "value", "type": "array", "default": [], - "source": "v-data-iterator" + "source": "v-data-iterator", + "doc": "Used for controlling selected rows" } ], "mixins": [], "slots": [ { "name": "loading", - "source": "data-iterator" + "source": "data-iterator", + "doc": "Defines content for when `loading` is true and no items are provided" }, { "name": "no-data", - "source": "data-iterator" + "source": "data-iterator", + "doc": "Defines content for when no items are provided" }, { "name": "no-results", - "source": "data-iterator" + "source": "data-iterator", + "doc": "Defines content for when `search` is provided but no results are found" }, { "name": "default", @@ -7165,7 +7878,8 @@ "isExpanded": "(item: any) => boolean", "expand": "(item: any, value: boolean) => void" }, - "source": "data-iterator" + "source": "data-iterator", + "doc": "The default slot. Use this to render your items" }, { "name": "footer", @@ -7194,7 +7908,8 @@ "sort": "(value: string) => void", "group": "(value: string) => void" }, - "source": "data-iterator" + "source": "data-iterator", + "doc": "Defines a footer below the items" }, { "name": "footer.page-text", @@ -7203,7 +7918,8 @@ "pageStop": "number", "itemsLength": "number" }, - "source": "data-iterator" + "source": "data-iterator", + "doc": "This slot is forwarded to the default footer. See the [`v-data-footer`](/api/v-data-footer) API for more information" }, { "name": "header", @@ -7243,7 +7959,8 @@ "expand": "(v: boolean) => void", "isExpanded": "boolean" }, - "source": "data-iterator" + "source": "data-iterator", + "doc": "Slot for each item" } ], "events": [ @@ -7348,7 +8065,8 @@ "source": "v-data-iterator", "value": "{ items: any[], value: boolean }" } - ] + ], + "doc": "The v-data-iterator component is used for displaying data with sorting, filtering, and pagination without the table markup." }, "v-data-footer": { "props": [ @@ -7356,49 +8074,57 @@ "name": "disableItemsPerPage", "type": "boolean", "default": "false", - "source": "v-data-footer" + "source": "v-data-footer", + "doc": "Disables items-per-page dropdown" }, { "name": "disablePagination", "type": "boolean", "default": "false", - "source": "v-data-footer" + "source": "v-data-footer", + "doc": "Disables pagination buttons" }, { "name": "firstIcon", "type": "string", "default": "'$first'", - "source": "v-data-footer" + "source": "v-data-footer", + "doc": "First icon" }, { "name": "itemsPerPageAllText", "type": "string", "default": "'$vuetify.dataFooter.itemsPerPageAll'", - "source": "v-data-footer" + "source": "v-data-footer", + "doc": "Text for 'All' option in items-per-page dropdown" }, { "name": "itemsPerPageOptions", "type": "array", "default": [5, 10, 15, -1], - "source": "v-data-footer" + "source": "v-data-footer", + "doc": "Array of options to show in the items-per-page dropdown" }, { "name": "itemsPerPageText", "type": "string", "default": "'$vuetify.dataFooter.itemsPerPageText'", - "source": "v-data-footer" + "source": "v-data-footer", + "doc": "Text for items-per-page dropdown" }, { "name": "lastIcon", "type": "string", "default": "'$last'", - "source": "v-data-footer" + "source": "v-data-footer", + "doc": "Last icon" }, { "name": "nextIcon", "type": "string", "default": "'$next'", - "source": "v-data-footer" + "source": "v-data-footer", + "doc": "Next icon" }, { "name": "options", @@ -7414,7 +8140,8 @@ "groupDesc": "boolean[]", "multiSort": "boolean", "mustSort": "boolean" - } + }, + "doc": "DataOptions" }, { "name": "pageText", @@ -7434,25 +8161,29 @@ "pageStop": "number", "pageCount": "number", "itemsLength": "number" - } + }, + "doc": "DataPagination" }, { "name": "prevIcon", "type": "string", "default": "'$prev'", - "source": "v-data-footer" + "source": "v-data-footer", + "doc": "Previous icon" }, { "name": "showCurrentPage", "type": "boolean", "default": "false", - "source": "v-data-footer" + "source": "v-data-footer", + "doc": "Show current page number between prev/next icons" }, { "name": "showFirstLastPage", "type": "boolean", "default": "false", - "source": "v-data-footer" + "source": "v-data-footer", + "doc": "Show first/last icons" } ], "mixins": [], @@ -7466,7 +8197,8 @@ "pageStart": "number", "pageStop": "number", "itemsLength": "number" - } + }, + "doc": "Defines content for the items-per-page text" } ], "events": [ @@ -7483,7 +8215,8 @@ "mustSort": "boolean" } } - ] + ], + "doc": "The footer component for data tables, typically containing pagination controls." }, "v-data-table": { "props": [ @@ -7491,67 +8224,78 @@ "name": "calculateWidths", "type": "boolean", "default": "false", - "source": "v-data-table" + "source": "v-data-table", + "doc": "Enables calculation of column widths. `widths` property will be available in select scoped slots" }, { "name": "caption", "type": "string", "default": "undefined", - "source": "v-data-table" + "source": "v-data-table", + "doc": "Set the caption (using ``)" }, { "name": "customFilter", "type": "function", "default": "(value: any, search: string | null, item: any) => boolean", - "source": "v-data" + "source": "v-data", + "doc": "Function to filter items" }, { "name": "customGroup", "type": "function", "default": "(items: any[], groupBy: string[], groupDesc: boolean[]) => Record", - "source": "v-data" + "source": "v-data", + "doc": "Function used to group items" }, { "name": "customSort", "type": "function", "default": "(items: any[], sortBy: string[], sortDesc: boolean[], locale: string, customSorters?: Record) => any[]", - "source": "v-data" + "source": "v-data", + "doc": "Function used to sort items" }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-data-table" + "source": "v-data-table", + "doc": "Decreases the height of rows" }, { "name": "disableFiltering", "type": "boolean", "default": "false", - "source": "v-data" + "source": "v-data", + "doc": "Disables filtering completely" }, { "name": "disablePagination", "type": "boolean", "default": "false", - "source": "v-data" + "source": "v-data", + "doc": "Disables pagination completely" }, { "name": "disableSort", "type": "boolean", "default": "false", - "source": "v-data" + "source": "v-data", + "doc": "Disables sorting completely" }, { "name": "expandIcon", "type": "string", "default": "'$expand'", - "source": "v-data-table" + "source": "v-data-table", + "doc": "Icon used for expand toggle button." }, { "name": "expanded", @@ -7563,7 +8307,8 @@ "name": "fixedHeader", "type": "boolean", "default": "false", - "source": "v-data-table" + "source": "v-data-table", + "doc": "Fixed header to top of table. **NOTE:** Does not work in IE11" }, { "name": "footerProps", @@ -7575,19 +8320,22 @@ "name": "groupBy", "type": ["string", "array"], "default": [], - "source": "v-data" + "source": "v-data", + "doc": "Changes which item property should be used for grouping items. Currently only supports a single grouping in the format: `group` or `['group']`. When using an array, only the first element is considered. Can be used with `.sync` modifier" }, { "name": "groupDesc", "type": ["boolean", "array"], "default": [], - "source": "v-data" + "source": "v-data", + "doc": "Changes which direction grouping is done. Can be used with `.sync` modifier" }, { "name": "headerProps", "type": "object", "default": "undefined", - "source": "v-data-table" + "source": "v-data-table", + "doc": "Pass props to the default header. See [`v-data-table-header` API](/api/v-data-table-header) for more information" }, { "name": "headers", @@ -7605,19 +8353,22 @@ "width?": "string | number", "filter?": "(value: any, search: string, item: any) => boolean", "sort?": "(a: any, b: any) => number" - } + }, + "doc": "An array of objects that each describe a header column. See the example below for a definition of all properties" }, { "name": "headersLength", "type": "number", "default": "undefined", - "source": "v-data-table" + "source": "v-data-table", + "doc": "Can be used in combination with `hide-default-header` to specify the number of columns in the table to allow expansion rows and loading bar to function properly" }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "v-data-table" + "source": "v-data-table", + "doc": "Set an explicit height of table" }, { "name": "hideDefaultFooter", @@ -7629,7 +8380,8 @@ "name": "hideDefaultHeader", "type": "boolean", "default": "false", - "source": "v-data-table" + "source": "v-data-table", + "doc": "Hide the default headers" }, { "name": "itemKey", @@ -7641,25 +8393,29 @@ "name": "items", "type": "array", "default": [], - "source": "v-data" + "source": "v-data", + "doc": "The array of items to display" }, { "name": "itemsPerPage", "type": "number", "default": 10, - "source": "v-data" + "source": "v-data", + "doc": "Changes how many items per page should be visible. Can be used with `.sync` modifier. Setting this prop to `-1` will display all items on the page" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "loading", "type": ["boolean", "string"], "default": "undefined", - "source": "v-data-iterator" + "source": "v-data-iterator", + "doc": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color" }, { "name": "loadingText", @@ -7671,31 +8427,36 @@ "name": "locale", "type": "string", "default": "'en-US'", - "source": "v-data" + "source": "v-data", + "doc": "Sets the locale used for sorting. This is passed into [`Intl.Collator()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Collator/Collator) in the default `customSort` function" }, { "name": "mobileBreakpoint", "type": ["number", "string"], "default": 600, - "source": "v-data-iterator" + "source": "v-data-iterator", + "doc": "Used to set when to toggle between regular table and mobile view" }, { "name": "multiSort", "type": "boolean", "default": "false", - "source": "v-data" + "source": "v-data", + "doc": "If `true` then one can sort on multiple properties" }, { "name": "mustSort", "type": "boolean", "default": "false", - "source": "v-data" + "source": "v-data", + "doc": "If `true` then one can not disable sorting, it will always switch between ascending and descending" }, { "name": "noDataText", "type": "string", "default": "'$vuetify.noDataText'", - "source": "v-data-iterator" + "source": "v-data-iterator", + "doc": "Display text when there is no data" }, { "name": "noResultsText", @@ -7723,13 +8484,15 @@ "name": "page", "type": "number", "default": 1, - "source": "v-data" + "source": "v-data", + "doc": "The current displayed page number (1-indexed)" }, { "name": "search", "type": "string", "default": "undefined", - "source": "v-data" + "source": "v-data", + "doc": "Text input used to filter items" }, { "name": "selectableKey", @@ -7741,25 +8504,29 @@ "name": "serverItemsLength", "type": "number", "default": -1, - "source": "v-data" + "source": "v-data", + "doc": "Used only when data is provided by a server. Should be set to the total amount of items available on server so that pagination works correctly" }, { "name": "showExpand", "type": "boolean", "default": "false", - "source": "v-data-table" + "source": "v-data-table", + "doc": "Shows the expand toggle in default rows" }, { "name": "showGroupBy", "type": "boolean", "default": "false", - "source": "v-data-table" + "source": "v-data-table", + "doc": "Shows the group by toggle in the header and enables grouped rows" }, { "name": "showSelect", "type": "boolean", "default": "false", - "source": "v-data-table" + "source": "v-data-table", + "doc": "Shows the select checkboxes in both the header and rows (if using default rows)" }, { "name": "singleExpand", @@ -7777,19 +8544,22 @@ "name": "sortBy", "type": ["string", "array"], "default": [], - "source": "v-data" + "source": "v-data", + "doc": "Changes which item property (or properties) should be used for sort order. Can be used with `.sync` modifier" }, { "name": "sortDesc", "type": ["boolean", "array"], "default": [], - "source": "v-data" + "source": "v-data", + "doc": "Changes which direction sorting is done. Can be used with `.sync` modifier" }, { "name": "value", "type": "array", "default": [], - "source": "v-data-iterator" + "source": "v-data-iterator", + "doc": "Controls whether the component is visible or hidden." } ], "mixins": [], @@ -7826,7 +8596,8 @@ "select": "(item: any, value: boolean) => void", "isExpanded": "(item: any) => boolean", "expand": "(item: any, value: boolean) => void" - } + }, + "doc": "Appends elements to the end of the default table ``" }, { "name": "body.prepend", @@ -7860,7 +8631,8 @@ "select": "(item: any, value: boolean) => void", "isExpanded": "(item: any) => boolean", "expand": "(item: any, value: boolean) => void" - } + }, + "doc": "Prepends elements to the start of the default table ``" }, { "name": "body", @@ -7894,7 +8666,8 @@ "select": "(item: any, value: boolean) => void", "isExpanded": "(item: any) => boolean", "expand": "(item: any, value: boolean) => void" - } + }, + "doc": "Slot to replace the default table ``" }, { "name": "footer", @@ -7923,7 +8696,8 @@ "on": "{}", "headers": "TableHeader[]", "widths": "[]" - } + }, + "doc": "Slot to add a custom footer" }, { "name": "footer.page-text", @@ -7931,7 +8705,8 @@ "pageStart": "number", "pageStop": "number", "itemsLength": "number" - } + }, + "doc": "Slot to customize footer page text" }, { "name": "header", @@ -7970,13 +8745,15 @@ "on": { "input": "(value: boolean) => void" } - } + }, + "doc": "Slot to replace the default `v-simple-checkbox` in header" }, { "name": "header.", "props": { "header": "TableHeader" - } + }, + "doc": "Slot to customize a specific header column" }, { "name": "top", @@ -8004,7 +8781,8 @@ "updateOptions": "(obj: any) => void", "sort": "(value: string) => void", "group": "(value: string) => void" - } + }, + "doc": "Slot to add content above the table" }, { "name": "progress", @@ -8032,7 +8810,8 @@ "updateOptions": "(obj: any) => void", "sort": "(value: string) => void", "group": "(value: string) => void" - } + }, + "doc": "Slot to replace the default `` component" }, { "name": "group", @@ -8050,7 +8829,8 @@ }, "items": "any[]", "headers": "TableHeader[]" - } + }, + "doc": "Slot to replace the default rendering of grouped rows" }, { "name": "group.header", @@ -8062,7 +8842,8 @@ "isOpen": "boolean", "toggle": "() => void", "remove": "() => void" - } + }, + "doc": "Slot to customize the default rendering of group headers" }, { "name": "group.summary", @@ -8073,7 +8854,8 @@ "headers": "TableHeader[]", "isOpen": "boolean", "toggle": "() => void" - } + }, + "doc": "Slot to customize the default rendering of group summaries" }, { "name": "item", @@ -8085,7 +8867,8 @@ "isExpanded": "boolean", "headers": "TableHeader[]", "index": "number" - } + }, + "doc": "Slot to replace the default rendering of a row" }, { "name": "item.data-table-select", @@ -8096,7 +8879,8 @@ "expand": "(v: boolean) => void", "isExpanded": "boolean", "headers": "TableHeader[]" - } + }, + "doc": "Slot to replace the default `v-simple-checkbox` used when selecting rows" }, { "name": "item.data-table-expand", @@ -8107,7 +8891,8 @@ "expand": "(v: boolean) => void", "isExpanded": "boolean", "headers": "TableHeader[]" - } + }, + "doc": "Slot to replace the default `v-icon` used when expanding rows" }, { "name": "item.", @@ -8115,26 +8900,31 @@ "item": "any", "header": "TableHeader", "value": "any" - } + }, + "doc": "Slot to customize a specific column" }, { "name": "expanded-item", "props": { "item": "any", "headers": "TableHeader[]" - } + }, + "doc": "Slot to customize expanded rows" }, { "name": "loading", - "source": "data-iterator" + "source": "data-iterator", + "doc": "Defines content for when `loading` is true and no items are provided" }, { "name": "no-data", - "source": "data-iterator" + "source": "data-iterator", + "doc": "Defines content for when no items are provided" }, { "name": "no-results", - "source": "data-iterator" + "source": "data-iterator", + "doc": "Defines content for when `search` is provided but no results are found" } ], "events": [ @@ -8244,7 +9034,8 @@ "source": "v-data-iterator", "value": "{ items: any[], value: boolean }" } - ] + ], + "doc": "The v-data-table component is used for displaying tabular data with sorting, searching, pagination, and selection capabilities." }, "v-edit-dialog": { "props": [ @@ -8252,37 +9043,43 @@ "name": "cancelText", "type": "any", "default": "Cancel", - "source": "v-edit-dialog" + "source": "v-edit-dialog", + "doc": "Sets the default text for the cancel button when using the **large** prop" }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "eager", "type": "boolean", "default": "false", - "source": "v-edit-dialog" + "source": "v-edit-dialog", + "doc": "Will force the components content to render on mounted. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO." }, { "name": "large", "type": "boolean", "default": "false", - "source": "v-edit-dialog" + "source": "v-edit-dialog", + "doc": "Attaches a submit and cancel button to the dialog" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "persistent", "type": "boolean", "default": "false", - "source": "v-edit-dialog" + "source": "v-edit-dialog", + "doc": "Clicking outside or pressing **esc** key will not dismiss the dialog" }, { "name": "returnValue", @@ -8294,19 +9091,22 @@ "name": "saveText", "type": "any", "default": "Save", - "source": "v-edit-dialog" + "source": "v-edit-dialog", + "doc": "Sets the default text for the save button when using the **large** prop" }, { "name": "transition", "type": "string", "default": "'slide-x-reverse-transition'", - "source": "v-edit-dialog" + "source": "v-edit-dialog", + "doc": "Sets the component transition. Can be one of the [built in transitions](/styles/transitions) or one your own." } ], "mixins": ["returnable", "themeable"], "slots": [ { - "name": "input" + "name": "input", + "doc": "Slot used to denote input component for v-edit-dialog" }, { "name": "default" @@ -8329,11 +9129,13 @@ "name": "save", "value": "void" } - ] + ], + "doc": "A dialog component specifically designed for inline editing within data tables." }, "v-table-overflow": { "props": [], - "mixins": [] + "mixins": [], + "doc": "A component that handles overflow behavior in tables." }, "v-data-table-header": { "props": [ @@ -8341,10 +9143,12 @@ "name": "mobile", "type": "boolean", "default": "false", - "source": "v-data-table-header" + "source": "v-data-table-header", + "doc": "Renders mobile view of headers" } ], - "mixins": [] + "mixins": [], + "doc": "The header component for data tables containing column headers." }, "v-simple-table": { "props": [ @@ -8352,31 +9156,36 @@ "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-simple-table" + "source": "v-simple-table", + "doc": "Decreases paddings to render a dense table" }, { "name": "fixedHeader", "type": "boolean", "default": "false", - "source": "v-simple-table" + "source": "v-simple-table", + "doc": "Sets table header to fixed mode" }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "v-simple-table" + "source": "v-simple-table", + "doc": "Sets the height for the component." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." } ], "mixins": ["themeable"], @@ -8384,7 +9193,8 @@ { "name": "default" } - ] + ], + "doc": "A simplified table component with basic styling without advanced features like sorting or pagination." }, "v-virtual-table": { "props": [ @@ -8398,13 +9208,15 @@ "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-simple-table" + "source": "v-simple-table", + "doc": "Reduces the input height" }, { "name": "fixedHeader", @@ -8422,7 +9234,8 @@ "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "v-simple-table" + "source": "v-simple-table", + "doc": "Sets the height for the component." }, { "name": "items", @@ -8434,7 +9247,8 @@ "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "rowHeight", @@ -8443,7 +9257,8 @@ "source": "v-virtual-table" } ], - "mixins": ["v-simple-table", "themeable"] + "mixins": ["v-simple-table", "themeable"], + "doc": "A table component that uses virtual scrolling for performance with large datasets." }, "v-date-picker": { "props": [ @@ -8451,223 +9266,260 @@ "name": "allowedDates", "type": "function", "default": "null", - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Restricts which dates can be selected" }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dayFormat", "type": "function", "default": "null", - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Allows you to customize the format of the day string that appears in the date table. Called with date (ISO 8601 **date** string) arguments." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Disables interaction with the picker" }, { "name": "eventColor", "type": ["array", "function", "object", "string"], "default": "warning", - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Sets the color for event dot. It can be string (all events will have the same color) or `object` where attribute is the event date and value is boolean/color/array of colors for specified date or `function` taking date as a parameter and returning boolean/color/array of colors for that date" }, { "name": "events", "type": ["array", "function", "object"], "default": null, - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Array of dates or object defining events or colors or function returning boolean/color/array of colors" }, { "name": "firstDayOfWeek", "type": ["string", "number"], "default": 0, - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Sets the first day of the week, starting with 0 for Sunday." }, { "name": "fullWidth", "type": "boolean", "default": "false", - "source": "picker" + "source": "picker", + "doc": "Forces 100% width" }, { "name": "headerColor", "type": "string", "default": "undefined", - "source": "picker" + "source": "picker", + "doc": "Defines the header color. If not specified it will use the color defined by color prop or the default picker color" }, { "name": "headerDateFormat", "type": "function", "default": "null", - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Allows you to customize the format of the month string that appears in the header of the calendar. Called with date (ISO 8601 **date** string) arguments." }, { "name": "landscape", "type": "boolean", "default": "false", - "source": "picker" + "source": "picker", + "doc": "Orients picker horizontal" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "locale", "type": "string", "default": "undefined", - "source": "localable" + "source": "localable", + "doc": "Sets the locale. Accepts a string with a BCP 47 language tag." }, { "name": "localeFirstDayOfYear", "type": ["string", "number"], "default": 0, - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Sets the day that determines the first week of the year, starting with 0 for **Sunday**. For ISO 8601 this should be 4." }, { "name": "max", "type": "string", "default": "undefined", - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Maximum allowed date/month (ISO 8601 format)" }, { "name": "min", "type": "string", "default": "undefined", - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Minimum allowed date/month (ISO 8601 format)" }, { "name": "monthFormat", "type": "function", "default": "null", - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Formatting function used for displaying months in the months table. Called with date (ISO 8601 **date** string) arguments." }, { "name": "multiple", "type": "boolean", "default": "false", - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Allow the selection of multiple dates" }, { "name": "nextIcon", "type": "string", "default": "'$next'", - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Sets the icon for next month/year button" }, { "name": "noTitle", "type": "boolean", "default": "false", - "source": "picker" + "source": "picker", + "doc": "Hide the picker title" }, { "name": "pickerDate", "type": "string", "default": "undefined", - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Displayed year/month" }, { "name": "prevIcon", "type": "string", "default": "'$prev'", - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Sets the icon for previous month/year button" }, { "name": "range", "type": "boolean", "default": "false", - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Allow the selection of date range" }, { "name": "reactive", "type": "boolean", "default": "false", - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Updates the picker model when changing months/years automatically" }, { "name": "readonly", "type": "boolean", "default": "false", - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Makes the picker readonly (doesn't allow to select new date)" }, { "name": "scrollable", "type": "boolean", "default": "false", - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Allows changing displayed month with mouse scroll" }, { "name": "selectedItemsText", "type": "string", "default": "'$vuetify.datePicker.itemsSelected'", - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Text used for translating the number of selected dates when using *multiple* prop. Can also be customizing globally in [Internationalization](/customization/internationalization)." }, { "name": "showCurrent", "type": ["boolean", "string"], "default": true, - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Toggles visibility of the current date/month outline or shows the provided date/month as a current" }, { "name": "showWeek", "type": "boolean", "default": "false", - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Toggles visibility of the week numbers in the body of the calendar" }, { "name": "titleDateFormat", "type": "function", "default": "null", - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Allows you to customize the format of the date string that appears in the title of the date picker. Called with date (ISO 8601 **date** string) arguments." }, { "name": "type", "type": "string", "default": "'date'", - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Determines the type of the picker - `date` for date picker, `month` for month picker" }, { "name": "value", "type": ["array", "string"], "default": "undefined", - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Date picker model (ISO 8601 format, YYYY-mm-dd or YYYY-mm)" }, { "name": "weekdayFormat", "type": "function", "default": "null", - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Allows you to customize the format of the weekday string that appears in the body of the calendar. Called with date (ISO 8601 **date** string) arguments." }, { "name": "width", "type": ["number", "string"], "default": 290, - "source": "picker" + "source": "picker", + "doc": "Width of the picker" }, { "name": "yearFormat", "type": "function", "default": "null", - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Allows you to customize the format of the year string that appears in the header of the calendar. Called with date (ISO 8601 **date** string) arguments." }, { "name": "yearIcon", "type": "string", "default": "undefined", - "source": "v-date-picker" + "source": "v-date-picker", + "doc": "Sets the icon in the year selection button" } ], "mixins": ["localable", "picker", "colorable", "themeable"], @@ -8703,9 +9555,11 @@ ], "slots": [ { - "name": "default" + "name": "default", + "doc": "Displayed below the calendar, can be used for example for adding action button (`OK` and `Cancel`)" } - ] + ], + "doc": "The v-date-picker component is a fully featured date selection component that allows users to select dates from a calendar interface." }, "v-date-picker-title": { "props": [ @@ -8713,7 +9567,8 @@ "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "date", @@ -8725,13 +9580,15 @@ "name": "disabled", "type": "boolean", "default": "false", - "source": "v-date-picker-title" + "source": "v-date-picker-title", + "doc": "Removes the ability to click or target the component." }, { "name": "readonly", "type": "boolean", "default": "false", - "source": "v-date-picker-title" + "source": "v-date-picker-title", + "doc": "Puts input in readonly state" }, { "name": "selectingYear", @@ -8743,7 +9600,8 @@ "name": "value", "type": "string", "default": "undefined", - "source": "v-date-picker-title" + "source": "v-date-picker-title", + "doc": "Controls whether the component is visible or hidden." }, { "name": "year", @@ -8758,7 +9616,8 @@ "source": "v-date-picker-title" } ], - "mixins": ["colorable", "colorable"] + "mixins": ["colorable", "colorable"], + "doc": "The title/display area of the date picker showing the selected date." }, "v-date-picker-header": { "props": [ @@ -8766,19 +9625,22 @@ "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "v-date-picker-header" + "source": "v-date-picker-header", + "doc": "Removes the ability to click or target the component." }, { "name": "format", @@ -8790,7 +9652,8 @@ "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "locale", @@ -8802,7 +9665,8 @@ "name": "max", "type": "string", "default": "undefined", - "source": "v-date-picker-header" + "source": "v-date-picker-header", + "doc": "Sets a maximum number of selections that can be made." }, { "name": "min", @@ -8826,16 +9690,19 @@ "name": "readonly", "type": "boolean", "default": "false", - "source": "v-date-picker-header" + "source": "v-date-picker-header", + "doc": "Puts input in readonly state" }, { "name": "value", "type": ["number", "string"], "default": "undefined", - "source": "v-date-picker-header" + "source": "v-date-picker-header", + "doc": "Controls whether the component is visible or hidden." } ], - "mixins": ["colorable", "localable", "themeable"] + "mixins": ["colorable", "localable", "themeable"], + "doc": "The header of the date picker containing month/year navigation." }, "v-date-picker-date-table": { "props": [ @@ -8849,7 +9716,8 @@ "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "current", @@ -8861,13 +9729,15 @@ "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Removes the ability to click or target the component." }, { "name": "eventColor", @@ -8897,7 +9767,8 @@ "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "locale", @@ -8915,7 +9786,8 @@ "name": "max", "type": "string", "default": "undefined", - "source": "themeable" + "source": "themeable", + "doc": "Sets a maximum number of selections that can be made." }, { "name": "min", @@ -8933,13 +9805,15 @@ "name": "readonly", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Puts input in readonly state" }, { "name": "scrollable", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Allows the use of the mouse wheel in the picker" }, { "name": "showWeek", @@ -8957,7 +9831,8 @@ "name": "value", "type": ["string", "array"], "default": "undefined", - "source": "themeable" + "source": "themeable", + "doc": "Controls whether the component is visible or hidden." }, { "name": "weekdayFormat", @@ -8966,7 +9841,8 @@ "source": "v-date-picker-date-table" } ], - "mixins": ["themeable", "colorable", "localable", "themeable"] + "mixins": ["themeable", "colorable", "localable", "themeable"], + "doc": "The calendar grid displaying days of the month in the date picker." }, "v-date-picker-month-table": { "props": [ @@ -8980,7 +9856,8 @@ "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "current", @@ -8992,13 +9869,15 @@ "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Removes the ability to click or target the component." }, { "name": "eventColor", @@ -9022,7 +9901,8 @@ "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "locale", @@ -9034,7 +9914,8 @@ "name": "max", "type": "string", "default": "undefined", - "source": "themeable" + "source": "themeable", + "doc": "Sets a maximum number of selections that can be made." }, { "name": "min", @@ -9052,13 +9933,15 @@ "name": "readonly", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Puts input in readonly state" }, { "name": "scrollable", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Allows the use of the mouse wheel in the picker" }, { "name": "tableDate", @@ -9070,10 +9953,12 @@ "name": "value", "type": ["string", "array"], "default": "undefined", - "source": "themeable" + "source": "themeable", + "doc": "Controls whether the component is visible or hidden." } ], - "mixins": ["themeable", "colorable", "localable", "themeable"] + "mixins": ["themeable", "colorable", "localable", "themeable"], + "doc": "The grid displaying months for month selection in the date picker." }, "v-date-picker-years": { "props": [ @@ -9081,7 +9966,8 @@ "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "format", @@ -9099,7 +9985,8 @@ "name": "max", "type": ["number", "string"], "default": "undefined", - "source": "v-date-picker-years" + "source": "v-date-picker-years", + "doc": "Sets a maximum number of selections that can be made." }, { "name": "min", @@ -9111,16 +9998,19 @@ "name": "readonly", "type": "boolean", "default": "false", - "source": "v-date-picker-years" + "source": "v-date-picker-years", + "doc": "Puts input in readonly state" }, { "name": "value", "type": ["number", "string"], "default": "undefined", - "source": "v-date-picker-years" + "source": "v-date-picker-years", + "doc": "Controls whether the component is visible or hidden." } ], - "mixins": ["colorable", "localable"] + "mixins": ["colorable", "localable"], + "doc": "The list of years for year selection in the date picker." }, "v-dialog": { "props": [ @@ -9128,121 +10018,141 @@ "name": "activator", "type": "any", "default": "undefined", - "source": "activatable" + "source": "activatable", + "doc": "Designate a custom activator when the `activator` slot is not used. String can be any valid querySelector and Object can be any valid Node." }, { "name": "attach", "type": "any", "default": false, - "source": "detachable" + "source": "detachable", + "doc": "Specifies which DOM element that this component should detach to. String can be any valid querySelector and Object can be any valid Node. This will attach to the root `v-app` component by default." }, { "name": "closeDelay", "type": ["number", "string"], "default": 0, - "source": "delayable" + "source": "delayable", + "doc": "Milliseconds to wait before closing component. Only applies to hover and focus events." }, { "name": "contentClass", "type": "string", "default": "undefined", - "source": "detachable" + "source": "detachable", + "doc": "Applies a custom class to the detached element. This is useful because the content is moved to the beginning of the `v-app` component (unless the **attach** prop is provided) and is not targetable by classes passed directly on the component." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "v-dialog" + "source": "v-dialog", + "doc": "Applies the dark theme variant to the component. This will default the components color to _white_ unless you've configured your [application theme](/customization/theme) to **dark** or if you are using the **color** prop on the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "activatable" + "source": "activatable", + "doc": "Removes the ability to click or target the component." }, { "name": "eager", "type": "boolean", "default": "false", - "source": "bootable" + "source": "bootable", + "doc": "Will force the components content to render on mounted. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO." }, { "name": "fullscreen", "type": "boolean", "default": "false", - "source": "v-dialog" + "source": "v-dialog", + "doc": "Changes layout for fullscreen display." }, { "name": "hideOverlay", "type": "boolean", "default": "false", - "source": "overlayable" + "source": "overlayable", + "doc": "Hides the display of the overlay." }, { "name": "internalActivator", "type": "boolean", "default": "false", - "source": "activatable" + "source": "activatable", + "doc": "Detaches the menu content inside of the component as opposed to the document." }, { "name": "light", "type": "boolean", "default": "false", - "source": "v-dialog" + "source": "v-dialog", + "doc": "Applies the light theme variant to the component." }, { "name": "maxWidth", "type": ["string", "number"], "default": "none", - "source": "v-dialog" + "source": "v-dialog", + "doc": "Sets the maximum width for the component." }, { "name": "noClickAnimation", "type": "boolean", "default": "false", - "source": "v-dialog" + "source": "v-dialog", + "doc": "Disables the bounce effect when clicking outside of a `v-dialog`'s content when using the **persistent** prop." }, { "name": "openDelay", "type": ["number", "string"], "default": 0, - "source": "delayable" + "source": "delayable", + "doc": "Milliseconds to wait before opening component. Only applies to hover and focus events." }, { "name": "openOnHover", "type": "boolean", "default": "false", - "source": "activatable" + "source": "activatable", + "doc": "Designates whether component should activate when its activator is hovered." }, { "name": "origin", "type": "string", "default": "'center center'", - "source": "v-dialog" + "source": "v-dialog", + "doc": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)." }, { "name": "overlayColor", "type": "string", "default": "undefined", - "source": "overlayable" + "source": "overlayable", + "doc": "Sets the overlay color." }, { "name": "overlayOpacity", "type": ["number", "string"], "default": "undefined", - "source": "overlayable" + "source": "overlayable", + "doc": "Sets the overlay opacity." }, { "name": "persistent", "type": "boolean", "default": "false", - "source": "v-dialog" + "source": "v-dialog", + "doc": "Clicking outside of the element or pressing **esc** key will not deactivate it." }, { "name": "retainFocus", "type": "boolean", "default": "true", - "source": "v-dialog" + "source": "v-dialog", + "doc": "Tab focus will return to the first child of the dialog by default. Disable this when using external tools that require focus such as TinyMCE or vue-clipboard." }, { "name": "returnValue", @@ -9254,25 +10164,29 @@ "name": "scrollable", "type": "boolean", "default": "false", - "source": "v-dialog" + "source": "v-dialog", + "doc": "When set to true, expects a `v-card` and a `v-card-text` component with a designated height. For more information, check out the [scrollable example](/components/dialogs#scrollable)." }, { "name": "transition", "type": ["string", "boolean"], "default": "dialog-transition", - "source": "v-dialog" + "source": "v-dialog", + "doc": "Sets the component transition. Can be one of the [built in transitions](/styles/transitions) or one your own." }, { "name": "value", "type": "any", "default": "undefined", - "source": "toggleable" + "source": "toggleable", + "doc": "Controls whether the component is visible or hidden." }, { "name": "width", "type": ["string", "number"], "default": "auto", - "source": "v-dialog" + "source": "v-dialog", + "doc": "Sets the width for the component." } ], "mixins": [ @@ -9312,7 +10226,8 @@ "name": "keydown", "value": "KeyboardEvent" } - ] + ], + "doc": "The v-dialog component informs users about a task and can contain critical information, require decisions, or involve multiple tasks." }, "v-divider": { "props": [ @@ -9320,28 +10235,33 @@ "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "inset", "type": "boolean", "default": "false", - "source": "v-divider" + "source": "v-divider", + "doc": "Adds indentation (72px) for **normal** dividers, reduces max height for **vertical**." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "vertical", "type": "boolean", "default": "false", - "source": "v-divider" + "source": "v-divider", + "doc": "Displays dividers vertically" } ], - "mixins": [] + "mixins": [], + "doc": "The v-divider component is used to separate sections of lists or layouts with a thin line." }, "v-expansion-panels": { "props": [ @@ -9349,55 +10269,64 @@ "name": "accordion", "type": "boolean", "default": "false", - "source": "v-expansion-panels" + "source": "v-expansion-panels", + "doc": "Removes the margin around open panels" }, { "name": "activeClass", "type": "string", "default": "'v-item--active'", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "v-expansion-panels" + "source": "v-expansion-panels", + "doc": "Disables the entire expansion-panel" }, { "name": "flat", "type": "boolean", "default": "false", - "source": "v-expansion-panels" + "source": "v-expansion-panels", + "doc": "Removes the expansion-panel's elevation and borders" }, { "name": "focusable", "type": "boolean", "default": "false", - "source": "v-expansion-panels" + "source": "v-expansion-panels", + "doc": "Makes the expansion-panel headers focusable" }, { "name": "hover", "type": "boolean", "default": "false", - "source": "v-expansion-panels" + "source": "v-expansion-panels", + "doc": "Applies a background-color shift on hover to expansion panel headers" }, { "name": "inset", "type": "boolean", "default": "false", - "source": "v-expansion-panels" + "source": "v-expansion-panels", + "doc": "Makes the expansion-panel open with a inset style" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "mandatory", @@ -9409,59 +10338,69 @@ "name": "max", "type": ["number", "string"], "default": "undefined", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Sets a maximum number of selections that can be made." }, { "name": "multiple", "type": "boolean", "default": "false", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Changes select to multiple. Accepts array for value" }, { "name": "popout", "type": "boolean", "default": "false", - "source": "v-expansion-panels" + "source": "v-expansion-panels", + "doc": "Makes the expansion-panel open with an popout style" }, { "name": "readonly", "type": "boolean", "default": "false", - "source": "v-expansion-panels" + "source": "v-expansion-panels", + "doc": "Makes the entire expansion-panel read only." }, { "name": "tile", "type": "boolean", "default": "false", - "source": "v-expansion-panels" + "source": "v-expansion-panels", + "doc": "Removes the border-radius" }, { "name": "value", "type": "any", "default": "undefined", - "source": "proxyable" + "source": "proxyable", + "doc": "Controls the opened/closed state of content in the expansion-panel. Corresponds to a zero-based index of the currently opened content. If the `multiple` prop (previously `expand` in 1.5.x) is used then it is an array of numbers where each entry corresponds to the index of the opened content. The index order is not relevant." } ], - "mixins": ["proxyable", "themeable"] + "mixins": ["proxyable", "themeable"], + "doc": "The v-expansion-panels component contains v-expansion-panel components and provides an accordion-style interface." }, "v-expansion-panel": { "props": [ { "name": "activeClass", "type": "string", - "source": "groupable" + "source": "groupable", + "doc": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "groupable" + "source": "groupable", + "doc": "Disables the expansion-panel content" }, { "name": "readonly", "type": "boolean", "default": "false", - "source": "v-expansion-panel" + "source": "v-expansion-panel", + "doc": "Makes the expansion-panel content read only." } ], "mixins": ["groupable", "registrable-provide"], @@ -9479,7 +10418,8 @@ { "name": "default" } - ] + ], + "doc": "A single expandable panel within v-expansion-panels that can show or hide content." }, "v-expansion-panel-header": { "props": [ @@ -9487,37 +10427,43 @@ "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "disableIconRotate", "type": "boolean", "default": "false", - "source": "v-expansion-panel-header" + "source": "v-expansion-panel-header", + "doc": "Removes the icon rotation animation when expanding a panel" }, { "name": "expandIcon", "type": "string", "default": "'$expand'", - "source": "v-expansion-panel-header" + "source": "v-expansion-panel-header", + "doc": "Set the expand action icon" }, { "name": "hideActions", "type": "boolean", "default": "false", - "source": "v-expansion-panel-header" + "source": "v-expansion-panel-header", + "doc": "Hide the expand icon in the content header" }, { "name": "ripple", "type": ["boolean", "object"], "default": false, - "source": "v-expansion-panel-header" + "source": "v-expansion-panel-header", + "doc": "Applies the [v-ripple](/directives/ripple) directive." } ], "mixins": ["colorable", "registrable-inject"], "slots": [ { - "name": "actions" + "name": "actions", + "doc": "Expansion header actions" }, { "name": "default", @@ -9531,7 +10477,8 @@ "name": "click", "value": "MouseEvent" } - ] + ], + "doc": "The clickable header of an expansion panel that triggers expansion/collapse." }, "v-expansion-panel-content": { "props": [ @@ -9539,13 +10486,15 @@ "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "eager", "type": "boolean", "default": "false", - "source": "bootable" + "source": "bootable", + "doc": "Will force the components content to render on mounted. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO." } ], "mixins": ["bootable", "colorable", "registrable-inject"], @@ -9553,7 +10502,8 @@ { "name": "default" } - ] + ], + "doc": "The content area of an expansion panel that is shown when expanded." }, "v-file-input": { "props": [ @@ -9561,13 +10511,15 @@ "name": "appendIcon", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Appends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "appendOuterIcon", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Appends an icon to the outside the component's input, uses same syntax as `v-icon`" }, { "name": "autofocus", @@ -9579,49 +10531,57 @@ "name": "backgroundColor", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Changes the background-color of the input" }, { "name": "chips", "type": "boolean", "default": "false", - "source": "v-file-input" + "source": "v-file-input", + "doc": "Changes display of selections to chips" }, { "name": "clearIcon", "type": "string", "default": "'$clear'", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Applied when using **clearable** and the input is dirty" }, { "name": "clearable", "type": "boolean", "default": "true", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Add input clear functionality, default icon is Material Design Icons **mdi-clear**" }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "counter", "type": ["boolean", "number", "string"], "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation." }, { "name": "counterSizeString", "type": "string", "default": "'$vuetify.fileInput.counterSize'", - "source": "v-file-input" + "source": "v-file-input", + "doc": "The text displayed when using the **counter** and **show-size** props. Can also be customized globally on the [internationalization page](/customization/internationalization)." }, { "name": "counterString", "type": "string", "default": "'$vuetify.fileInput.counter'", - "source": "v-file-input" + "source": "v-file-input", + "doc": "The text displayed when using the **counter** prop. Can also be customized globally on the [internationalization page](/customization/internationalization)." }, { "name": "counterValue", @@ -9633,224 +10593,261 @@ "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Reduces the input height" }, { "name": "disabled", "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Removes the ability to click or target the component." }, { "name": "error", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual error state" }, { "name": "errorCount", "type": ["number", "string"], "default": 1, - "source": "validatable" + "source": "validatable", + "doc": "The total number of errors that should display at once" }, { "name": "errorMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the **rules** prop. This field will not trigger validation" }, { "name": "filled", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Applies the alternate filled input style" }, { "name": "flat", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Removes elevation (shadow) added to element when using the **solo** or **solo-inverted** props" }, { "name": "fullWidth", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Forces 100% width" }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Sets the height for the component." }, { "name": "hideDetails", "type": ["boolean", "string"], "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hides hint and validation errors. When set to `auto` messages will be rendered only if there's a message (hint, error message, counter value etc) to display" }, { "name": "hint", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hint text" }, { "name": "id", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Sets the DOM id on the component" }, { "name": "label", "type": "string", - "source": "v-input" + "source": "v-input", + "doc": "Sets input label" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "loaderHeight", "type": ["number", "string"], "default": 2, - "source": "loadable" + "source": "loadable", + "doc": "Specifies the height of the loader" }, { "name": "loading", "type": ["boolean", "string"], "default": false, - "source": "v-input" + "source": "v-input", + "doc": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color" }, { "name": "messages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Displays a list of messages or message if using a string" }, { "name": "multiple", "type": "boolean", "default": "false", - "source": "v-file-input" + "source": "v-file-input", + "doc": "Adds the **multiple** attribute to the input, allowing multiple file selections." }, { "name": "outlined", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Applies the outlined style to the input" }, { "name": "persistentHint", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Forces hint to always be visible" }, { "name": "placeholder", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Sets the input's placeholder text" }, { "name": "prefix", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Displays prefix text" }, { "name": "prependIcon", "type": "string", "default": "'$file'", - "source": "v-input" + "source": "v-input", + "doc": "Prepends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "prependInnerIcon", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Prepends an icon inside the component's input, uses the same syntax as `v-icon`" }, { "name": "readonly", "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Puts input in readonly state" }, { "name": "reverse", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Reverses the input orientation" }, { "name": "rounded", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Designates the **border-radius** applied to the component. You can find more information on the [Border Radius page](/styles/border-radius)." }, { "name": "rules", "type": "array", "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`" }, { "name": "shaped", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Round if `outlined` and increase `border-radius` if `filled`. Must be used with either `outlined` or `filled`" }, { "name": "showSize", "type": ["boolean", "number"], "default": false, - "source": "v-file-input" + "source": "v-file-input", + "doc": "Sets the displayed size of selected file(s). When using **true** will default to _1000_ displaying (**kB, MB, GB**) while _1024_ will display (**KiB, MiB, GiB**)." }, { "name": "singleLine", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Label does not move on focus/dirty" }, { "name": "smallChips", "type": "boolean", "default": "false", - "source": "v-file-input" + "source": "v-file-input", + "doc": "Changes display of selections to chips with the **small** property" }, { "name": "solo", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Changes the style of the input" }, { "name": "soloInverted", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Reduces element opacity until focused" }, { "name": "success", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual success state" }, { "name": "successMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a success state and passes through custom success messages." }, { "name": "suffix", @@ -9862,7 +10859,8 @@ "name": "truncateLength", "type": ["number", "string"], "default": 22, - "source": "v-file-input" + "source": "v-file-input", + "doc": "The length of a filename before it is truncated with ellipsis" }, { "name": "type", @@ -9874,12 +10872,14 @@ "name": "validateOnBlur", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Delays validation until blur event" }, { "name": "value", "type": "any", - "source": "v-input" + "source": "v-input", + "doc": "A single or array of [File objects](https://developer.mozilla.org/en-US/docs/Web/API/File)." } ], "mixins": [ @@ -10008,9 +11008,11 @@ "multiple": "boolean", "text": "string" }, - "source": "v-file-input" + "source": "v-file-input", + "doc": "Slot for defining a custom appearance for selected item(s). Provides the current **index**, **text** (truncated) and [file](https://developer.mozilla.org/en-US/docs/Web/API/File)." } - ] + ], + "doc": "The v-file-input component is a specialized input for selecting files from the user's device." }, "v-footer": { "props": [ @@ -10018,103 +11020,120 @@ "name": "absolute", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Applies **position: absolute** to the component." }, { "name": "app", "type": "boolean", "default": "false", - "source": "applicationable" + "source": "applicationable", + "doc": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can find more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop" }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "elevation", "type": ["number", "string"], "default": "undefined", - "source": "elevatable" + "source": "elevatable", + "doc": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)." }, { "name": "fixed", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Applies **position: fixed** to the component." }, { "name": "height", "type": ["number", "string"], "default": "auto", - "source": "measurable" + "source": "measurable", + "doc": "Sets the height for the component." }, { "name": "inset", "type": "boolean", "default": "false", - "source": "v-footer" + "source": "v-footer", + "doc": "Positions the toolbar offset from an application `v-navigation-drawer`" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "maxHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum height for the component." }, { "name": "maxWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum width for the component." }, { "name": "minHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum height for the component." }, { "name": "minWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum width for the component." }, { "name": "padless", "type": "boolean", "default": "false", - "source": "v-footer" + "source": "v-footer", + "doc": "Remove all padding from the footer" }, { "name": "tag", "type": "string", "default": "'div'", - "source": "v-sheet" + "source": "v-sheet", + "doc": "Specify a custom tag used on the root element." }, { "name": "tile", "type": "boolean", "default": "true", - "source": "v-sheet" + "source": "v-sheet", + "doc": "Removes the component's **border-radius**." }, { "name": "width", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the width for the component." } ], "mixins": [ @@ -10131,7 +11150,8 @@ { "name": "default" } - ] + ], + "doc": "The v-footer component is used for displaying general information that a user might want to access from any page." }, "v-form": { "props": [ @@ -10139,13 +11159,15 @@ "name": "lazyValidation", "type": "boolean", "default": "false", - "source": "v-form" + "source": "v-form", + "doc": "If enabled, **value** will always be _true_ unless there are visible validation errors. You can still call `validate()` to manually trigger validation" }, { "name": "value", "type": "boolean", "default": "false", - "source": "v-form" + "source": "v-form", + "doc": "A boolean value representing the validity of the form." } ], "mixins": ["registrable-provide"], @@ -10177,7 +11199,8 @@ { "name": "default" } - ] + ], + "doc": "The v-form component is used to wrap input components and provide validation capabilities for the entire form." }, "v-container": { "props": [ @@ -10185,19 +11208,22 @@ "name": "fluid", "type": "boolean", "default": "false", - "source": "v-container" + "source": "v-container", + "doc": "Removes viewport maximum-width size breakpoints" }, { "name": "id", "type": "string", "default": "undefined", - "source": "v-container" + "source": "v-container", + "doc": "Sets the DOM id on the component" }, { "name": "tag", "type": "string", "default": "'div'", - "source": "v-container" + "source": "v-container", + "doc": "Specify a custom tag used on the root element." } ], "mixins": [], @@ -10205,7 +11231,8 @@ { "name": "default" } - ] + ], + "doc": "The v-container component is the base grid container, typically used with v-row and v-col for responsive layouts." }, "v-col": { "props": [ @@ -10213,107 +11240,125 @@ "name": "alignSelf", "type": "string", "default": "undefined", - "source": "v-col" + "source": "v-col", + "doc": "Applies the [align-items](https://developer.mozilla.org/en-US/docs/Web/CSS/align-items) css property. Available options are **start**, **center**, **end**, **auto**, **baseline** and **stretch**." }, { "name": "cols", "type": ["boolean", "string", "number"], "default": false, - "source": "v-col" + "source": "v-col", + "doc": "Sets the default number of columns the component extends. Available options are **1 -> 12** and **auto**." }, { "name": "lg", "type": ["boolean", "string", "number"], "default": false, - "source": "v-col" + "source": "v-col", + "doc": "Changes the number of columns on large and greater breakpoints." }, { "name": "md", "type": ["boolean", "string", "number"], "default": false, - "source": "v-col" + "source": "v-col", + "doc": "Changes the number of columns on medium and greater breakpoints." }, { "name": "offset", "type": ["string", "number"], "default": "undefined", - "source": "v-col" + "source": "v-col", + "doc": "Sets the default offset for the column." }, { "name": "offsetLg", "type": ["string", "number"], "default": "undefined", - "source": "v-col" + "source": "v-col", + "doc": "Changes the offset of the component on large and greater breakpoints." }, { "name": "offsetMd", "type": ["string", "number"], "default": "undefined", - "source": "v-col" + "source": "v-col", + "doc": "Changes the offset of the component on medium and greater breakpoints." }, { "name": "offsetSm", "type": ["string", "number"], "default": "undefined", - "source": "v-col" + "source": "v-col", + "doc": "Changes the offset of the component on small and greater breakpoints." }, { "name": "offsetXl", "type": ["string", "number"], "default": "undefined", - "source": "v-col" + "source": "v-col", + "doc": "Changes the offset of the component on extra large and greater breakpoints." }, { "name": "order", "type": ["string", "number"], "default": "undefined", - "source": "v-col" + "source": "v-col", + "doc": "Sets the default [order](https://developer.mozilla.org/en-US/docs/Web/CSS/order) for the column." }, { "name": "orderLg", "type": ["string", "number"], "default": "undefined", - "source": "v-col" + "source": "v-col", + "doc": "Changes the order of the component on large and greater breakpoints." }, { "name": "orderMd", "type": ["string", "number"], "default": "undefined", - "source": "v-col" + "source": "v-col", + "doc": "Changes the order of the component on medium and greater breakpoints." }, { "name": "orderSm", "type": ["string", "number"], "default": "undefined", - "source": "v-col" + "source": "v-col", + "doc": "Changes the order of the component on small and greater breakpoints." }, { "name": "orderXl", "type": ["string", "number"], "default": "undefined", - "source": "v-col" + "source": "v-col", + "doc": "Changes the order of the component on extra large and greater breakpoints." }, { "name": "sm", "type": ["boolean", "string", "number"], "default": false, - "source": "v-col" + "source": "v-col", + "doc": "Changes the number of columns on small and greater breakpoints." }, { "name": "tag", "type": "string", "default": "'div'", - "source": "v-col" + "source": "v-col", + "doc": "Specify a custom tag used on the root element." }, { "name": "xl", "type": ["boolean", "string", "number"], "default": false, - "source": "v-col" + "source": "v-col", + "doc": "Changes the number of columns on extra large and greater breakpoints." } ], "mixins": [], - "slots": ["default"] + "slots": ["default"], + "doc": "A column component used within v-row for creating responsive grid layouts based on a 12-point system." }, "v-row": { "props": [ @@ -10321,118 +11366,138 @@ "name": "align", "type": "string", "default": "undefined", - "source": "v-row" + "source": "v-row", + "doc": "Applies the [align-items](https://developer.mozilla.org/en-US/docs/Web/CSS/align-items) css property. Available options are **start**, **center**, **end**, **baseline** and **stretch**." }, { "name": "alignContent", "type": "string", "default": "undefined", - "source": "v-row" + "source": "v-row", + "doc": "Applies the [align-content](https://developer.mozilla.org/en-US/docs/Web/CSS/align-content) css property. Available options are **start**, **center**, **end**, **space-between**, **space-around** and **stretch**." }, { "name": "alignContentLg", "type": "string", "default": "undefined", - "source": "v-row" + "source": "v-row", + "doc": "Changes the **align-content** property on large and greater breakpoints." }, { "name": "alignContentMd", "type": "string", "default": "undefined", - "source": "v-row" + "source": "v-row", + "doc": "Changes the **align-content** property on medium and greater breakpoints." }, { "name": "alignContentSm", "type": "string", "default": "undefined", - "source": "v-row" + "source": "v-row", + "doc": "Changes the **align-content** property on small and greater breakpoints." }, { "name": "alignContentXl", "type": "string", "default": "undefined", - "source": "v-row" + "source": "v-row", + "doc": "Changes the **align-content** property on extra large and greater breakpoints." }, { "name": "alignLg", "type": "string", "default": "undefined", - "source": "v-row" + "source": "v-row", + "doc": "Changes the **align-items** property on large and greater breakpoints." }, { "name": "alignMd", "type": "string", "default": "undefined", - "source": "v-row" + "source": "v-row", + "doc": "Changes the **align-items** property on medium and greater breakpoints." }, { "name": "alignSm", "type": "string", "default": "undefined", - "source": "v-row" + "source": "v-row", + "doc": "Changes the **align-items** property on small and greater breakpoints." }, { "name": "alignXl", "type": "string", "default": "undefined", - "source": "v-row" + "source": "v-row", + "doc": "Changes the **align-items** property on extra large and greater breakpoints." }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-row" + "source": "v-row", + "doc": "Reduces the gutter between `v-col`s." }, { "name": "justify", "type": "string", "default": "undefined", - "source": "v-row" + "source": "v-row", + "doc": "Applies the [justify-content](https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content) css property. Available options are **start**, **center**, **end**, **space-between** and **space-around**." }, { "name": "justifyLg", "type": "string", "default": "undefined", - "source": "v-row" + "source": "v-row", + "doc": "Changes the **justify-content** property on large and greater breakpoints." }, { "name": "justifyMd", "type": "string", "default": "undefined", - "source": "v-row" + "source": "v-row", + "doc": "Changes the **justify-content** property on medium and greater breakpoints." }, { "name": "justifySm", "type": "string", "default": "undefined", - "source": "v-row" + "source": "v-row", + "doc": "Changes the **justify-content** property on small and greater breakpoints." }, { "name": "justifyXl", "type": "string", "default": "undefined", - "source": "v-row" + "source": "v-row", + "doc": "Changes the **justify-content** property on extra large and greater breakpoints." }, { "name": "noGutters", "type": "boolean", "default": "false", - "source": "v-row" + "source": "v-row", + "doc": "Removes the gutter between `v-col`s." }, { "name": "tag", "type": "string", "default": "'div'", - "source": "v-row" + "source": "v-row", + "doc": "Specify a custom tag used on the root element." } ], "mixins": [], - "slots": ["default"] + "slots": ["default"], + "doc": "A row component that contains v-col components for creating responsive grid layouts." }, "v-spacer": { "props": [], "mixins": [], - "slots": ["default"] + "slots": ["default"], + "doc": "A flex spacer component that fills available space between other elements." }, "v-layout": { "props": [ @@ -10512,7 +11577,8 @@ "name": "id", "type": "string", "default": "undefined", - "source": "v-layout" + "source": "v-layout", + "doc": "Sets the DOM id on the component" }, { "name": "justifyCenter", @@ -10548,7 +11614,8 @@ "name": "reverse", "type": "boolean", "default": "false", - "source": null + "source": null, + "doc": "Reverses the input orientation" }, { "name": "row", @@ -10560,7 +11627,8 @@ "name": "tag", "type": "String", "default": "div", - "source": null + "source": null, + "doc": "Specify a custom tag used on the root element." }, { "name": "wrap", @@ -10574,7 +11642,8 @@ { "name": "default" } - ] + ], + "doc": "A deprecated layout component from Vuetify 1.x. Use v-row instead." }, "v-flex": { "props": [ @@ -10618,7 +11687,8 @@ "name": "id", "type": "string", "default": "undefined", - "source": "v-flex" + "source": "v-flex", + "doc": "Sets the DOM id on the component" }, { "name": "offset-(size)(0-12)", @@ -10642,7 +11712,8 @@ "name": "tag", "type": "string", "default": "'div'", - "source": "v-flex" + "source": "v-flex", + "doc": "Specify a custom tag used on the root element." } ], "mixins": [], @@ -10650,7 +11721,8 @@ { "name": "default" } - ] + ], + "doc": "A deprecated flex component from Vuetify 1.x. Use v-col instead." }, "v-hover": { "props": [ @@ -10658,25 +11730,29 @@ "name": "closeDelay", "type": ["number", "string"], "default": 0, - "source": "delayable" + "source": "delayable", + "doc": "Milliseconds to wait before closing component. Only applies to hover and focus events." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "v-hover" + "source": "v-hover", + "doc": "Turns off hover functionality" }, { "name": "openDelay", "type": ["number", "string"], "default": 0, - "source": "delayable" + "source": "delayable", + "doc": "Milliseconds to wait before opening component. Only applies to hover and focus events." }, { "name": "value", "type": "boolean", "default": "false", - "source": "toggleable" + "source": "toggleable", + "doc": "Controls whether the component is visible or hidden." } ], "mixins": ["delayable", "toggleable"], @@ -10687,7 +11763,8 @@ "hover": "boolean" } } - ] + ], + "doc": "The v-hover component provides a wrapper that detects when a user hovers over an element and provides scoped slot properties." }, "v-icon": { "props": [ @@ -10695,79 +11772,92 @@ "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dense", "type": "boolean", "default": "false", - "source": null + "source": null, + "doc": "Makes icon smaller (20px)" }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "v-icon" + "source": "v-icon", + "doc": "Disable the input" }, { "name": "large", "type": "boolean", "default": "false", - "source": "sizeable" + "source": "sizeable", + "doc": "Makes the component large." }, { "name": "left", "type": "boolean", "default": "false", - "source": "v-icon" + "source": "v-icon", + "doc": "Applies appropriate margins to the icon inside of a button when placed to the **left** of another element or text" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "right", "type": "boolean", "default": "false", - "source": "v-icon" + "source": "v-icon", + "doc": "Applies appropriate margins to the icon inside of a button when placed to the **right** of another element or text" }, { "name": "size", "type": ["number", "string"], "default": "undefined", - "source": "v-icon" + "source": "v-icon", + "doc": "Specifies a custom font size for the icon" }, { "name": "small", "type": "boolean", "default": "false", - "source": "sizeable" + "source": "sizeable", + "doc": "Makes the component small." }, { "name": "tag", "type": "string", "default": "'i'", - "source": "v-icon" + "source": "v-icon", + "doc": "Specifies a custom tag to be used" }, { "name": "xLarge", "type": "boolean", "default": "false", - "source": "sizeable" + "source": "sizeable", + "doc": "Makes the component extra large." }, { "name": "xSmall", "type": "boolean", "default": "false", - "source": "sizeable" + "source": "sizeable", + "doc": "Makes the component extra small." } ], "mixins": ["colorable", "sizeable", "themeable"], @@ -10775,7 +11865,8 @@ { "name": "default" } - ] + ], + "doc": "The v-icon component provides a large set of icons to use in your application. It supports Material Design Icons, Font Awesome, and other icon libraries." }, "v-img": { "props": [ @@ -10783,115 +11874,134 @@ "name": "alt", "type": "string", "default": "undefined", - "source": "v-img" + "source": "v-img", + "doc": "Alternate text for screen readers. Leave empty for decorative images" }, { "name": "aspectRatio", "type": ["string", "number"], "default": "undefined", - "source": "v-responsive" + "source": "v-responsive", + "doc": "Calculated as `width/height`, so for a 1920x1080px image this will be `1.7778`. Will be calculated automatically if omitted" }, { "name": "contain", "type": "boolean", "default": "false", - "source": "v-img" + "source": "v-img", + "doc": "Prevents the image from being cropped if it doesn't fit" }, { "name": "eager", "type": "boolean", "default": "false", - "source": "v-img" + "source": "v-img", + "doc": "Will force the components content to render on mounted. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO." }, { "name": "gradient", "type": "string", "default": "undefined", - "source": "v-img" + "source": "v-img", + "doc": "Overlays a gradient onto the image. Only supports [linear-gradient](https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient) syntax, anything else should be done with classes (see examples)" }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the height for the component." }, { "name": "lazySrc", "type": "string", "default": "undefined", - "source": "v-img" + "source": "v-img", + "doc": "Something to show while waiting for the main image to load, typically a small base64-encoded thumbnail. Has a slight blur filter applied.\n\nUse [vuetify-loader](https://github.com/vuetifyjs/vuetify-loader) to generate automatically" }, { "name": "maxHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum height for the component." }, { "name": "maxWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum width for the component." }, { "name": "minHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum height for the component." }, { "name": "minWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum width for the component." }, { "name": "options", "type": "object", "default": {}, - "source": "v-img" + "source": "v-img", + "doc": "Options that are passed to the [Intersection observer](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API) constructor." }, { "name": "position", "type": "string", "default": "'center center'", - "source": "v-img" + "source": "v-img", + "doc": "Overrides the default to change which parts get cropped off. Uses the same syntax as [`background-position`](https://developer.mozilla.org/en-US/docs/Web/CSS/background-position)" }, { "name": "sizes", "type": "string", "default": "undefined", - "source": "v-img" + "source": "v-img", + "doc": "For use with `srcset`, see [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#attr-sizes)" }, { "name": "src", "type": ["string", "object"], "default": "undefined", - "source": "v-img" + "source": "v-img", + "doc": "The image URL. This prop is mandatory" }, { "name": "srcset", "type": "string", "default": "undefined", - "source": "v-img" + "source": "v-img", + "doc": "A set of alternate images to use based on device size. [Read more...](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#attr-srcset)" }, { "name": "transition", "type": ["boolean", "string"], "default": "fade-transition", - "source": "v-img" + "source": "v-img", + "doc": "The transition to use when switching from `lazy-src` to `src`" }, { "name": "width", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the width for the component." } ], "mixins": ["measurable"], "slots": [ { - "name": "placeholder" + "name": "placeholder", + "doc": "Slot for image placeholder" }, { "name": "default" @@ -10906,7 +12016,8 @@ "name": "load", "value": "object | string" } - ] + ], + "doc": "The v-img component is a responsive image component with lazy-loading, placeholders, and aspect ratio capabilities." }, "v-input": { "props": [ @@ -10914,151 +12025,176 @@ "name": "appendIcon", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Appends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "backgroundColor", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Changes the background-color of the input" }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. This will default the components color to _white_ unless you've configured your [application theme](/customization/theme) to **dark** or if you are using the **color** prop on the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Reduces the input height" }, { "name": "disabled", "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Removes the ability to click or target the component." }, { "name": "error", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual error state" }, { "name": "errorCount", "type": ["number", "string"], "default": 1, - "source": "validatable" + "source": "validatable", + "doc": "The total number of errors that should display at once" }, { "name": "errorMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the **rules** prop. This field will not trigger validation" }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Sets the height of the input" }, { "name": "hideDetails", "type": ["boolean", "string"], "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hides hint and validation errors. When set to `auto` messages will be rendered only if there's a message (hint, error message, counter value etc) to display" }, { "name": "hint", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hint text" }, { "name": "id", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Sets the DOM id on the component" }, { "name": "label", "type": "string", - "source": "v-input" + "source": "v-input", + "doc": "Sets input label" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "loading", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color" }, { "name": "messages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Displays a list of messages or message if using a string" }, { "name": "persistentHint", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Forces hint to always be visible" }, { "name": "prependIcon", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Prepends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "readonly", "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Puts input in readonly state" }, { "name": "rules", "type": "array", "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`" }, { "name": "success", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual success state" }, { "name": "successMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a success state and passes through custom success messages." }, { "name": "validateOnBlur", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Delays validation until blur event" }, { "name": "value", "type": "any", - "source": "v-input" + "source": "v-input", + "doc": "The input's value" } ], "mixins": ["validatable", "colorable", "registrable-inject", "themeable"], @@ -11114,26 +12250,30 @@ }, "source": "v-input" } - ] + ], + "doc": "The v-input component is the base for all input components, providing common functionality like labels, hints, and validation." }, "v-item": { "props": [ { "name": "activeClass", "type": "string", - "source": "groupable" + "source": "groupable", + "doc": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "groupable" + "source": "groupable", + "doc": "Removes the ability to click or target the component." }, { "name": "value", "type": "any", "default": "undefined", - "source": "groupable" + "source": "groupable", + "doc": "The value used when the component is selected in a group. If not provided, the index will be used." } ], "mixins": ["groupable"], @@ -11145,7 +12285,8 @@ "toggle": "Function" } } - ] + ], + "doc": "A component used within v-item-group for creating selectable items in a group." }, "v-item-group": { "props": [ @@ -11153,19 +12294,22 @@ "name": "activeClass", "type": "string", "default": "'v-item--active'", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "mandatory", @@ -11177,19 +12321,22 @@ "name": "max", "type": ["number", "string"], "default": "undefined", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Sets a maximum number of selections that can be made." }, { "name": "multiple", "type": "boolean", "default": "false", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Changes select to multiple. Accepts array for value" }, { "name": "value", "type": "any", "default": "undefined", - "source": "proxyable" + "source": "proxyable", + "doc": "Controls whether the component is visible or hidden." } ], "mixins": ["proxyable", "themeable"], @@ -11198,7 +12345,8 @@ "name": "change", "value": "any[] | any" } - ] + ], + "doc": "The v-item-group component provides an interface for groups of selectable items with v-model support." }, "v-label": { "props": [ @@ -11206,25 +12354,29 @@ "name": "absolute", "type": "boolean", "default": "false", - "source": "v-label" + "source": "v-label", + "doc": "Applies **position: absolute** to the component." }, { "name": "color", "type": "string", "default": "'primary'", - "source": "v-label" + "source": "v-label", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "v-label" + "source": "v-label", + "doc": "Removes the ability to click or target the component." }, { "name": "focused", @@ -11242,28 +12394,33 @@ "name": "left", "type": ["number", "string"], "default": 0, - "source": "v-label" + "source": "v-label", + "doc": "Aligns the component towards the left." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "right", "type": ["number", "string"], "default": "auto", - "source": "v-label" + "source": "v-label", + "doc": "Aligns the component towards the right." }, { "name": "value", "type": "boolean", "default": "false", - "source": "v-label" + "source": "v-label", + "doc": "Controls whether the component is visible or hidden." } ], - "mixins": ["themeable"] + "mixins": ["themeable"], + "doc": "A label component typically used internally by form inputs." }, "v-lazy": { "props": [ @@ -11271,35 +12428,41 @@ "name": "minHeight", "type": ["number", "string"], "default": "undefined", - "source": "VLazy" + "source": "VLazy", + "doc": "Sets the minimum height for the component." }, { "name": "options", "type": "object", "default": {}, - "source": "VLazy" + "source": "VLazy", + "doc": "Options that are passed to the [Intersection observer](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API) constructor." }, { "name": "tag", "type": "string", "default": "'div'", - "source": "VLazy" + "source": "VLazy", + "doc": "Specify a custom tag used on the root element." }, { "name": "transition", "type": "string", "default": "'fade-transition'", - "source": "VLazy" + "source": "VLazy", + "doc": "Sets the component transition. Can be one of the [built in transitions](/styles/transitions) or one your own." }, { "name": "value", "type": "any", "default": "undefined", - "source": "toggleable" + "source": "toggleable", + "doc": "Controls whether the component is visible or hidden." } ], "mixins": ["toggleable"], - "slots": ["default"] + "slots": ["default"], + "doc": "The v-lazy component is used to dynamically load components based on visibility. It's useful for performance optimization." }, "v-list-item-action-text": { "props": [], @@ -11308,7 +12471,8 @@ { "name": "default" } - ] + ], + "doc": "Text content for list item actions." }, "v-list-item-content": { "props": [], @@ -11317,7 +12481,8 @@ { "name": "default" } - ] + ], + "doc": "The main content area of a list item." }, "v-list-item-title": { "props": [], @@ -11326,7 +12491,8 @@ { "name": "default" } - ] + ], + "doc": "The title element within a list item." }, "v-list-item-subtitle": { "props": [], @@ -11335,7 +12501,8 @@ { "name": "default" } - ] + ], + "doc": "The subtitle element within a list item." }, "v-list": { "props": [ @@ -11343,133 +12510,155 @@ "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-list" + "source": "v-list", + "doc": "Lowers max height of list tiles" }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "v-list" + "source": "v-list", + "doc": "Disables all children `v-list-item` components" }, { "name": "elevation", "type": ["number", "string"], "default": "undefined", - "source": "elevatable" + "source": "elevatable", + "doc": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)." }, { "name": "expand", "type": "boolean", "default": "false", - "source": "v-list" + "source": "v-list", + "doc": "Will only collapse when explicitly closed" }, { "name": "flat", "type": "boolean", "default": "false", - "source": "v-list" + "source": "v-list", + "doc": "Remove the highlighted background on active `v-list-item`s" }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the height for the component." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "maxHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum height for the component." }, { "name": "maxWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum width for the component." }, { "name": "minHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum height for the component." }, { "name": "minWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum width for the component." }, { "name": "nav", "type": "boolean", "default": "false", - "source": "v-list" + "source": "v-list", + "doc": "An alternative styling that reduces `v-list-item` width and rounds the corners. Typically used with **[v-navigation-drawer](/components/navigation-drawers)**" }, { "name": "rounded", "type": "boolean", "default": "false", - "source": "v-list" + "source": "v-list", + "doc": "Rounds the `v-list-item` edges" }, { "name": "shaped", "type": "boolean", "default": "false", - "source": "v-list" + "source": "v-list", + "doc": "Provides an alternative active style for `v-list-item`." }, { "name": "subheader", "type": "boolean", "default": "false", - "source": "v-list" + "source": "v-list", + "doc": "Removes top padding. Used when previous sibling is a header" }, { "name": "tag", "type": "string", "default": "'div'", - "source": "v-sheet" + "source": "v-sheet", + "doc": "Specify a custom tag used on the root element." }, { "name": "threeLine", "type": "boolean", "default": "false", - "source": "v-list" + "source": "v-list", + "doc": "Increases list-item height for three lines. This prop uses [line-clamp](https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-line-clamp) and is not supported in all browsers." }, { "name": "tile", "type": "boolean", "default": "true", - "source": "v-sheet" + "source": "v-sheet", + "doc": "Removes the component's **border-radius**." }, { "name": "twoLine", "type": "boolean", "default": "false", - "source": "v-list" + "source": "v-list", + "doc": "Increases list-item height for two lines. This prop uses [line-clamp](https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-line-clamp) and is not supported in all browsers." }, { "name": "width", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the width for the component." } ], "mixins": ["colorable", "elevatable", "measurable", "themeable"], @@ -11477,7 +12666,8 @@ { "name": "default" } - ] + ], + "doc": "The v-list component is used to display information in a organized way. It can contain avatars, content, actions, and more." }, "v-list-group": { "props": [ @@ -11485,67 +12675,78 @@ "name": "activeClass", "type": "string", "default": "undefined", - "source": "v-list-group" + "source": "v-list-group", + "doc": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation." }, { "name": "appendIcon", "type": "string", "default": "'$expand'", - "source": "v-list-group" + "source": "v-list-group", + "doc": "Appends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "color", "type": "string", "default": "'primary'", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "v-list-group" + "source": "v-list-group", + "doc": "Disables all children `v-list-item` components" }, { "name": "eager", "type": "boolean", "default": "false", - "source": "bootable" + "source": "bootable", + "doc": "Will force the components content to render on mounted. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO." }, { "name": "group", "type": "string", "default": "undefined", - "source": "v-list-group" + "source": "v-list-group", + "doc": "Assign a route namespace. Accepts a string or regexp for determining active state" }, { "name": "noAction", "type": "boolean", "default": "false", - "source": "v-list-group" + "source": "v-list-group", + "doc": "Removes left padding assigned for action icons from group items" }, { "name": "prependIcon", "type": "string", "default": "undefined", - "source": "v-list-group" + "source": "v-list-group", + "doc": "Prepends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "ripple", "type": ["boolean", "object"], "default": true, - "source": "v-list-group" + "source": "v-list-group", + "doc": "Applies the [v-ripple](/directives/ripple) directive." }, { "name": "subGroup", "type": "boolean", "default": "false", - "source": "v-list-group" + "source": "v-list-group", + "doc": "Designate the component as nested list group" }, { "name": "value", "type": "any", "default": "undefined", - "source": "toggleable" + "source": "toggleable", + "doc": "Expands / Collapse the list-group" } ], "mixins": ["bootable", "colorable", "registrable-inject", "toggleable"], @@ -11554,10 +12755,12 @@ "name": "activator" }, { - "name": "appendIcon" + "name": "appendIcon", + "doc": "Appends an icon to the component, uses the same syntax as `v-icon`" }, { - "name": "prependIcon" + "name": "prependIcon", + "doc": "Prepends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "default" @@ -11568,7 +12771,8 @@ "name": "click", "value": "MouseEvent" } - ] + ], + "doc": "A list component that can be expanded to show nested list items." }, "v-list-item": { "props": [ @@ -11576,139 +12780,162 @@ "name": "activeClass", "type": "string", "default": "", - "source": "routable" + "source": "routable", + "doc": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation." }, { "name": "append", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Setting **append** prop always appends the relative path to the current path. You can find more information about the [**append** prop](https://router.vuejs.org/api/#append) on the vue-router documentation." }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control when in an **active** state or **input-value** is **true** - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`)" }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-list-item" + "source": "v-list-item", + "doc": "Lowers max height of list tiles" }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Disables the component" }, { "name": "exact", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Exactly match the link. Without this, '/' will match every route. You can find more information about the [**exact** prop](https://router.vuejs.org/api/#exact) on the vue-router documentation." }, { "name": "exactActiveClass", "type": "string", "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Configure the active CSS class applied when the link is active with exact match. You can find more information about the [**exact-active-class** prop](https://router.vuejs.org/api/#exact-active-class) on the vue-router documentation." }, { "name": "href", "type": ["string", "object"], "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Designates the component as anchor and applies the **href** attribute." }, { "name": "inactive", "type": "boolean", "default": "false", - "source": "v-list-item" + "source": "v-list-item", + "doc": "If set, the list tile will not be rendered as a link even if it has to/href prop or @click handler" }, { "name": "inputValue", "type": "any", "default": "undefined", - "source": "toggleable" + "source": "toggleable", + "doc": "Controls the **active** state of the item. This is typically used to highlight the component" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "link", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Designates that the component is a link. This is automatic when using the **href** or **to** prop." }, { "name": "nuxt", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Specifies the link is a `nuxt-link`. For use with the [nuxt framework](https://nuxtjs.org/api/components-nuxt-link/)." }, { "name": "replace", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Setting **replace** prop will call `router.replace()` instead of `router.push()` when clicked, so the navigation will not leave a history record. You can find more information about the [**replace** prop](https://router.vuejs.org/api/#replace) on the vue-router documentation." }, { "name": "ripple", "type": ["boolean", "object"], "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Applies the [v-ripple](/directives/ripple) directive." }, { "name": "selectable", "type": "boolean", "default": "false", - "source": "v-list-item" + "source": "v-list-item", + "doc": "Allow text selection inside `v-list-item`. This prop uses [user-select](https://developer.mozilla.org/en-US/docs/Web/CSS/user-select)" }, { "name": "tag", "type": "string", "default": "'div'", - "source": "routable" + "source": "routable", + "doc": "Specify a custom tag used on the root element." }, { "name": "target", "type": "string", "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Designates the target attribute. This should only be applied when using the **href** prop." }, { "name": "threeLine", "type": "boolean", "default": "false", - "source": "v-list-item" + "source": "v-list-item", + "doc": "Increases list-item height for three lines. This prop uses [line-clamp](https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-line-clamp) and is not supported in all browsers." }, { "name": "to", "type": ["string", "object"], "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Denotes the target route of the link. You can find more information about the [**to** prop](https://router.vuejs.org/api/#to) on the vue-router documentation." }, { "name": "twoLine", "type": "boolean", "default": "false", - "source": "v-list-item" + "source": "v-list-item", + "doc": "Increases list-item height for two lines. This prop uses [line-clamp](https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-line-clamp) and is not supported in all browsers." }, { "name": "value", "type": "any", "default": "undefined", - "source": "v-list-item" + "source": "v-list-item", + "doc": "The value used when a child of a [v-list-item-group](/components/list-item-groups)." } ], "mixins": ["colorable", "routable", "themeable", "groupable", "toggleable"], @@ -11736,7 +12963,8 @@ "name": "keydown", "value": "KeyboardEvent" } - ] + ], + "doc": "A single item within a v-list component." }, "v-list-item-action": { "props": [], @@ -11745,7 +12973,8 @@ { "name": "default" } - ] + ], + "doc": "The action area of a list item, typically containing buttons or checkboxes." }, "v-list-item-avatar": { "props": [ @@ -11753,73 +12982,85 @@ "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the height for the component." }, { "name": "horizontal", "type": "boolean", "default": "false", - "source": "v-list-item-avatar" + "source": "v-list-item-avatar", + "doc": "Uses an alternative horizontal style." }, { "name": "left", "type": "boolean", "default": "false", - "source": "v-avatar" + "source": "v-avatar", + "doc": "Aligns the component towards the left." }, { "name": "maxHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum height for the component." }, { "name": "maxWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum width for the component." }, { "name": "minHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum height for the component." }, { "name": "minWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum width for the component." }, { "name": "right", "type": "boolean", "default": "false", - "source": "v-avatar" + "source": "v-avatar", + "doc": "Aligns the component towards the right." }, { "name": "size", "type": ["number", "string"], "default": 40, - "source": "v-avatar" + "source": "v-avatar", + "doc": "Sets the height and width of the component." }, { "name": "tile", "type": "boolean", "default": "false", - "source": "v-avatar" + "source": "v-avatar", + "doc": "Removes the component's **border-radius**." }, { "name": "width", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the width for the component." } ], "mixins": ["colorable", "measurable"], @@ -11827,7 +13068,8 @@ { "name": "default" } - ] + ], + "doc": "An avatar element within a list item." }, "v-list-item-icon": { "props": [], @@ -11836,7 +13078,8 @@ { "name": "default" } - ] + ], + "doc": "An icon element within a list item." }, "v-list-item-group": { "props": [ @@ -11844,25 +13087,29 @@ "name": "activeClass", "type": "string", "default": "'v-item--active'", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation." }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "mandatory", @@ -11874,19 +13121,22 @@ "name": "max", "type": ["number", "string"], "default": "undefined", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Sets a maximum number of selections that can be made." }, { "name": "multiple", "type": "boolean", "default": "false", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Changes select to multiple. Accepts array for value" }, { "name": "value", "type": "any", "default": "undefined", - "source": "proxyable" + "source": "proxyable", + "doc": "Sets the active list-item inside the list-group" } ], "mixins": ["base-item-group", "proxyable", "themeable", "colorable"], @@ -11900,7 +13150,8 @@ { "name": "default" } - ] + ], + "doc": "A group of selectable list items with v-model support." }, "v-menu": { "props": [ @@ -11908,247 +13159,288 @@ "name": "absolute", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Applies **position: absolute** to the component." }, { "name": "activator", "type": "any", "default": "undefined", - "source": "activatable" + "source": "activatable", + "doc": "Designate a custom activator when the `activator` slot is not used. String can be any valid querySelector and Object can be any valid Node." }, { "name": "allowOverflow", "type": "boolean", "default": "false", - "source": "menuable" + "source": "menuable", + "doc": "Removes overflow re-positioning for the content" }, { "name": "attach", "type": "any", "default": false, - "source": "detachable" + "source": "detachable", + "doc": "Specifies which DOM element that this component should detach to. String can be any valid querySelector and Object can be any valid Node. This will attach to the root `v-app` component by default." }, { "name": "auto", "type": "boolean", "default": "false", - "source": "v-menu" + "source": "v-menu", + "doc": "Centers list on selected element" }, { "name": "bottom", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Aligns the component towards the bottom." }, { "name": "closeDelay", "type": ["number", "string"], "default": 0, - "source": "delayable" + "source": "delayable", + "doc": "Milliseconds to wait before closing component. Only works with the **open-on-hover** prop" }, { "name": "closeOnClick", "type": "boolean", "default": "true", - "source": "v-menu" + "source": "v-menu", + "doc": "Designates if menu should close on outside-activator click" }, { "name": "closeOnContentClick", "type": "boolean", "default": "true", - "source": "v-menu" + "source": "v-menu", + "doc": "Designates if menu should close when its content is clicked" }, { "name": "contentClass", "type": "string", "default": "undefined", - "source": "detachable" + "source": "detachable", + "doc": "Applies a custom class to the detached element. This is useful because the content is moved to the beginning of the `v-app` component (unless the **attach** prop is provided) and is not targetable by classes passed directly on the component." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "menuable" + "source": "menuable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "disableKeys", "type": "boolean", "default": "false", - "source": "v-menu" + "source": "v-menu", + "doc": "Removes all keyboard interaction" }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "activatable" + "source": "activatable", + "doc": "Disables the menu" }, { "name": "eager", "type": "boolean", "default": "false", - "source": "bootable" + "source": "bootable", + "doc": "Will force the components content to render on mounted. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO." }, { "name": "fixed", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Applies **position: fixed** to the component." }, { "name": "internalActivator", "type": "boolean", "default": "false", - "source": "activatable" + "source": "activatable", + "doc": "Detaches the menu content inside of the component as opposed to the document." }, { "name": "left", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Aligns the component towards the left." }, { "name": "light", "type": "boolean", "default": "false", - "source": "menuable" + "source": "menuable", + "doc": "Applies the light theme variant to the component." }, { "name": "maxHeight", "type": ["number", "string"], "default": "auto", - "source": "v-menu" + "source": "v-menu", + "doc": "Sets the max height of the menu content" }, { "name": "maxWidth", "type": ["number", "string"], "default": "auto", - "source": "menuable" + "source": "menuable", + "doc": "Sets the maximum width for the component." }, { "name": "minWidth", "type": ["number", "string"], "default": "undefined", - "source": "menuable" + "source": "menuable", + "doc": "Sets the minimum width for the component." }, { "name": "nudgeBottom", "type": ["number", "string"], "default": 0, - "source": "menuable" + "source": "menuable", + "doc": "Nudge the content to the bottom" }, { "name": "nudgeLeft", "type": ["number", "string"], "default": 0, - "source": "menuable" + "source": "menuable", + "doc": "Nudge the content to the left" }, { "name": "nudgeRight", "type": ["number", "string"], "default": 0, - "source": "menuable" + "source": "menuable", + "doc": "Nudge the content to the right" }, { "name": "nudgeTop", "type": ["number", "string"], "default": 0, - "source": "menuable" + "source": "menuable", + "doc": "Nudge the content to the top" }, { "name": "nudgeWidth", "type": ["number", "string"], "default": 0, - "source": "menuable" + "source": "menuable", + "doc": "Nudge the content width" }, { "name": "offsetOverflow", "type": "boolean", "default": "false", - "source": "menuable" + "source": "menuable", + "doc": "Causes the component to flip to the opposite side when repositioned due to overflow" }, { "name": "offsetX", "type": "boolean", "default": "false", - "source": "v-menu" + "source": "v-menu", + "doc": "Offset the menu on the x-axis. Works in conjunction with direction left/right" }, { "name": "offsetY", "type": "boolean", "default": "false", - "source": "v-menu" + "source": "v-menu", + "doc": "Offset the menu on the y-axis. Works in conjunction with direction top/bottom" }, { "name": "openDelay", "type": ["number", "string"], "default": 0, - "source": "delayable" + "source": "delayable", + "doc": "Milliseconds to wait before opening component. Only works with the **open-on-hover** prop" }, { "name": "openOnClick", "type": "boolean", "default": "true", - "source": "menuable" + "source": "menuable", + "doc": "Designates whether menu should open on activator click" }, { "name": "openOnHover", "type": "boolean", "default": "false", - "source": "activatable" + "source": "activatable", + "doc": "Designates whether menu should open on activator hover" }, { "name": "origin", "type": "string", "default": "'top left'", - "source": "v-menu" + "source": "v-menu", + "doc": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)." }, { "name": "positionX", "type": "number", "default": "undefined", - "source": "menuable" + "source": "menuable", + "doc": "Used to position the content when not using an activator slot" }, { "name": "positionY", "type": "number", "default": "undefined", - "source": "menuable" + "source": "menuable", + "doc": "Used to position the content when not using an activator slot" }, { "name": "returnValue", "type": "any", "default": "undefined", - "source": "returnable" + "source": "returnable", + "doc": "The value that is updated when the menu is closed - must be primitive. Dot notation is supported" }, { "name": "right", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Aligns the component towards the right." }, { "name": "top", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Aligns the content towards the top." }, { "name": "transition", "type": ["boolean", "string"], "default": "v-menu-transition", - "source": "v-menu" + "source": "v-menu", + "doc": "Sets the component transition. Can be one of the [built in transitions](/styles/transitions) or one your own." }, { "name": "value", "type": "any", "default": "undefined", - "source": "toggleable" + "source": "toggleable", + "doc": "Controls whether the component is visible or hidden." }, { "name": "zIndex", "type": ["number", "string"], "default": "undefined", - "source": "menuable" + "source": "menuable", + "doc": "The z-index used for the component" } ], "mixins": [ @@ -12178,7 +13470,8 @@ { "name": "default" } - ] + ], + "doc": "The v-menu component displays a menu at the position of the element used to activate it. Menus can be activated with hover, click, or focus." }, "v-messages": { "props": [ @@ -12186,28 +13479,33 @@ "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "value", "type": "array", "default": [], - "source": "v-messages" + "source": "v-messages", + "doc": "Controls whether the component is visible or hidden." } ], - "mixins": ["colorable", "themeable"] + "mixins": ["colorable", "themeable"], + "doc": "A component for displaying multiple messages, typically used for validation feedback." }, "v-navigation-drawer": { "props": [ @@ -12215,97 +13513,113 @@ "name": "absolute", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Applies **position: absolute** to the component." }, { "name": "app", "type": "boolean", "default": "false", - "source": "applicationable" + "source": "applicationable", + "doc": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can find more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop" }, { "name": "bottom", "type": "boolean", "default": "false", - "source": "v-navigation-drawer" + "source": "v-navigation-drawer", + "doc": "Expands from the bottom of the screen on mobile devices" }, { "name": "clipped", "type": "boolean", "default": "false", - "source": "v-navigation-drawer" + "source": "v-navigation-drawer", + "doc": "A clipped drawer rests under the application toolbar. **Note:** requires the **clipped-left** or **clipped-right** prop on `v-app-bar` to work as intended" }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "disableResizeWatcher", "type": "boolean", "default": "false", - "source": "v-navigation-drawer" + "source": "v-navigation-drawer", + "doc": "Will automatically open/close drawer when resized depending if mobile or desktop." }, { "name": "disableRouteWatcher", "type": "boolean", "default": "false", - "source": "v-navigation-drawer" + "source": "v-navigation-drawer", + "doc": "Disables opening of navigation drawer when route changes" }, { "name": "expandOnHover", "type": "boolean", "default": "false", - "source": "v-navigation-drawer" + "source": "v-navigation-drawer", + "doc": "Collapses the drawer to a **mini-variant** until hovering with the mouse" }, { "name": "fixed", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Applies **position: fixed** to the component." }, { "name": "floating", "type": "boolean", "default": "false", - "source": "v-navigation-drawer" + "source": "v-navigation-drawer", + "doc": "A floating drawer has no visible container (no border-right)" }, { "name": "height", "type": ["number", "string"], "default": "100%", - "source": "v-navigation-drawer" + "source": "v-navigation-drawer", + "doc": "Sets the height of the navigation drawer" }, { "name": "hideOverlay", "type": "boolean", "default": "false", - "source": "overlayable" + "source": "overlayable", + "doc": "Hides the display of the overlay." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "miniVariant", "type": "boolean", "default": "false", - "source": "v-navigation-drawer" + "source": "v-navigation-drawer", + "doc": "Condenses navigation drawer width, also accepts the **.sync** modifier. With this, the drawer will re-open when clicking it" }, { "name": "miniVariantWidth", "type": ["number", "string"], "default": 56, - "source": "v-navigation-drawer" + "source": "v-navigation-drawer", + "doc": "Designates the width assigned when the `mini` prop is turned on" }, { "name": "mobileBreakPoint", @@ -12317,67 +13631,78 @@ "name": "overlayColor", "type": "string", "default": "undefined", - "source": "overlayable" + "source": "overlayable", + "doc": "Sets the overlay color." }, { "name": "overlayOpacity", "type": ["number", "string"], "default": "undefined", - "source": "overlayable" + "source": "overlayable", + "doc": "Sets the overlay opacity." }, { "name": "permanent", "type": "boolean", "default": "false", - "source": "v-navigation-drawer" + "source": "v-navigation-drawer", + "doc": "The drawer remains visible regardless of screen size" }, { "name": "right", "type": "boolean", "default": "false", - "source": "v-navigation-drawer" + "source": "v-navigation-drawer", + "doc": "Places the navigation drawer on the right" }, { "name": "src", "type": ["string", "object"], "default": "undefined", - "source": "v-navigation-drawer" + "source": "v-navigation-drawer", + "doc": "Specifies a [v-img](/components/images) as the component's background." }, { "name": "stateless", "type": "boolean", "default": "false", - "source": "v-navigation-drawer" + "source": "v-navigation-drawer", + "doc": "Remove all automated state functionality (resize, mobile, route) and manually control the drawer state" }, { "name": "tag", "type": "string", "default": "'aside'", - "source": "v-navigation-drawer" + "source": "v-navigation-drawer", + "doc": "Specify a custom tag used on the root element." }, { "name": "temporary", "type": "boolean", "default": "false", - "source": "v-navigation-drawer" + "source": "v-navigation-drawer", + "doc": "A temporary drawer sits above its application and uses a scrim (overlay) to darken the background" }, { "name": "touchless", "type": "boolean", "default": "false", - "source": "v-navigation-drawer" + "source": "v-navigation-drawer", + "doc": "Disable mobile touch functionality" }, { "name": "value", "type": "any", "default": "undefined", - "source": "v-navigation-drawer" + "source": "v-navigation-drawer", + "doc": "Controls whether the component is visible or hidden." }, { "name": "width", "type": ["number", "string"], "default": 256, - "source": "v-navigation-drawer" + "source": "v-navigation-drawer", + "doc": "Sets the width for the component." } ], "mixins": [ @@ -12391,17 +13716,20 @@ ], "slots": [ { - "name": "append" + "name": "append", + "doc": "A slot at the bottom of the drawer" }, { "name": "img", "props": { "height": "string", "src": "string | srcObject" - } + }, + "doc": "Used to modify `v-img` properties when using the **src** prop" }, { - "name": "prepend" + "name": "prepend", + "doc": "A slot at the top of the drawer" }, { "name": "default" @@ -12420,7 +13748,8 @@ "name": "update:mini-variant", "value": "boolean" } - ] + ], + "doc": "The v-navigation-drawer component is used to display application navigation. It can be permanently visible or temporarily shown." }, "v-overflow-btn": { "props": [ @@ -12428,25 +13757,29 @@ "name": "allowOverflow", "type": "boolean", "default": "true", - "source": "v-autocomplete" + "source": "v-autocomplete", + "doc": "Removes overflow re-positioning for the content" }, { "name": "appendIcon", "type": "string", "default": "'$dropdown'", - "source": "v-input" + "source": "v-input", + "doc": "Appends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "appendOuterIcon", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Appends an icon to the outside the component's input, uses same syntax as `v-icon`" }, { "name": "attach", "type": "any", "default": false, - "source": "v-select" + "source": "v-select", + "doc": "Specifies which DOM element that this component should detach to. String can be any valid querySelector and Object can be any valid Node. This will attach to the root `v-app` component by default." }, { "name": "autoSelectFirst", @@ -12464,7 +13797,8 @@ "name": "backgroundColor", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Changes the background-color of the input" }, { "name": "cacheItems", @@ -12476,31 +13810,36 @@ "name": "chips", "type": "boolean", "default": "false", - "source": "v-select" + "source": "v-select", + "doc": "Changes display of selections to chips" }, { "name": "clearIcon", "type": "string", "default": "'$clear'", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Applied when using **clearable** and the input is dirty" }, { "name": "clearable", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Add input clear functionality, default icon is Material Design Icons **mdi-clear**" }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "counter", "type": ["boolean", "number", "string"], "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation." }, { "name": "counterValue", @@ -12512,19 +13851,22 @@ "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "deletableChips", "type": "boolean", "default": "false", - "source": "v-select" + "source": "v-select", + "doc": "Adds a remove icon to selected chips" }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Reduces the input height" }, { "name": "disableLookup", @@ -12537,43 +13879,50 @@ "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Removes the ability to click or target the component." }, { "name": "eager", "type": "boolean", "default": "false", - "source": "v-select" + "source": "v-select", + "doc": "Will force the components content to render on mounted. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO." }, { "name": "editable", "type": "boolean", "default": "false", - "source": "v-overflow-btn" + "source": "v-overflow-btn", + "doc": "Creates an editable button" }, { "name": "error", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual error state" }, { "name": "errorCount", "type": ["number", "string"], "default": 1, - "source": "validatable" + "source": "validatable", + "doc": "The total number of errors that should display at once" }, { "name": "errorMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the **rules** prop. This field will not trigger validation" }, { "name": "filled", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Applies the alternate filled input style" }, { "name": "filter", @@ -12585,25 +13934,29 @@ "name": "flat", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Removes elevation (shadow) added to element when using the **solo** or **solo-inverted** props" }, { "name": "fullWidth", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Forces 100% width" }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Sets the height for the component." }, { "name": "hideDetails", "type": ["boolean", "string"], "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hides hint and validation errors. When set to `auto` messages will be rendered only if there's a message (hint, error message, counter value etc) to display" }, { "name": "hideNoData", @@ -12621,13 +13974,15 @@ "name": "hint", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hint text" }, { "name": "id", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Sets the DOM id on the component" }, { "name": "itemColor", @@ -12666,25 +14021,29 @@ { "name": "label", "type": "string", - "source": "v-input" + "source": "v-input", + "doc": "Sets input label" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "loaderHeight", "type": ["number", "string"], "default": 2, - "source": "loadable" + "source": "loadable", + "doc": "Specifies the height of the loader" }, { "name": "loading", "type": ["boolean", "string"], "default": false, - "source": "v-input" + "source": "v-input", + "doc": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color" }, { "name": "menuProps", @@ -12696,19 +14055,22 @@ "name": "messages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Displays a list of messages or message if using a string" }, { "name": "multiple", "type": "boolean", "default": "false", - "source": "v-select" + "source": "v-select", + "doc": "Changes select to multiple. Accepts array for value" }, { "name": "noDataText", "type": "string", "default": "'$vuetify.noDataText'", - "source": "filterable" + "source": "filterable", + "doc": "Display text when there is no data" }, { "name": "noFilter", @@ -12726,44 +14088,51 @@ "name": "outlined", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Applies the outlined style to the input" }, { "name": "persistentHint", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Forces hint to always be visible" }, { "name": "placeholder", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Sets the input's placeholder text" }, { "name": "prefix", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Displays prefix text" }, { "name": "prependIcon", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Prepends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "prependInnerIcon", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Prepends an icon inside the component's input, uses the same syntax as `v-icon`" }, { "name": "readonly", "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Puts input in readonly state" }, { "name": "returnObject", @@ -12775,19 +14144,22 @@ "name": "reverse", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Reverses the input orientation" }, { "name": "rounded", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Designates the **border-radius** applied to the component. You can find more information on the [Border Radius page](/styles/border-radius)." }, { "name": "rules", "type": "array", "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`" }, { "name": "searchInput", @@ -12799,49 +14171,57 @@ "name": "segmented", "type": "boolean", "default": "false", - "source": "v-overflow-btn" + "source": "v-overflow-btn", + "doc": "Creates a segmented button" }, { "name": "shaped", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Round if `outlined` and increase `border-radius` if `filled`. Must be used with either `outlined` or `filled`" }, { "name": "singleLine", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Label does not move on focus/dirty" }, { "name": "smallChips", "type": "boolean", "default": "false", - "source": "v-select" + "source": "v-select", + "doc": "Changes display of selections to chips with the **small** property" }, { "name": "solo", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Changes the style of the input" }, { "name": "soloInverted", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Reduces element opacity until focused" }, { "name": "success", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual success state" }, { "name": "successMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a success state and passes through custom success messages." }, { "name": "suffix", @@ -12859,18 +14239,21 @@ "name": "validateOnBlur", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Delays validation until blur event" }, { "name": "value", "type": "any", - "source": "v-input" + "source": "v-input", + "doc": "Controls whether the component is visible or hidden." }, { "name": "valueComparator", "type": "function", "default": "(a: any, b: any): boolean", - "source": "v-select" + "source": "v-select", + "doc": "Apply a custom value comparator function" } ], "mixins": [ @@ -13038,7 +14421,8 @@ }, "source": "v-select" } - ] + ], + "doc": "A styled select component that displays the selected value as a button with overflow menu behavior." }, "v-overlay": { "props": [ @@ -13046,43 +14430,50 @@ "name": "absolute", "type": "boolean", "default": "false", - "source": "v-overlay" + "source": "v-overlay", + "doc": "Applies **position: absolute** to the component." }, { "name": "color", "type": "string", "default": "'#212121'", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "true", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "opacity", "type": ["number", "string"], "default": 0.46, - "source": "v-overlay" + "source": "v-overlay", + "doc": "Sets the overlay opacity" }, { "name": "value", "type": "any", "default": true, - "source": "toggleable" + "source": "toggleable", + "doc": "Controls whether the component is visible or hidden." }, { "name": "zIndex", "type": ["number", "string"], "default": 5, - "source": "v-overlay" + "source": "v-overlay", + "doc": "The z-index used for the component" } ], "mixins": ["colorable", "themeable", "toggleable"], @@ -13090,7 +14481,8 @@ { "name": "default" } - ] + ], + "doc": "The v-overlay component provides an overlay effect and is used as a base for other components like dialogs and menus." }, "v-pagination": { "props": [ @@ -13098,61 +14490,71 @@ "name": "circle", "type": "boolean", "default": "false", - "source": "v-pagination" + "source": "v-pagination", + "doc": "Shape pagination elements as circles" }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "v-pagination" + "source": "v-pagination", + "doc": "Disables component" }, { "name": "length", "type": "number", "default": 0, - "source": "v-pagination" + "source": "v-pagination", + "doc": "The length of the pagination component" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "nextIcon", "type": "string", "default": "'$next'", - "source": "v-pagination" + "source": "v-pagination", + "doc": "Specify the icon to use for the next icon" }, { "name": "prevIcon", "type": "string", "default": "'$prev'", - "source": "v-pagination" + "source": "v-pagination", + "doc": "Specify the icon to use for the prev icon" }, { "name": "totalVisible", "type": ["number", "string"], "default": "undefined", - "source": "v-pagination" + "source": "v-pagination", + "doc": "Specify the max total visible pagination numbers" }, { "name": "value", "type": "number", "default": 0, - "source": "v-pagination" + "source": "v-pagination", + "doc": "Current selected page" } ], "mixins": ["colorable", "intersectable", "themeable"], @@ -13169,7 +14571,8 @@ "name": "previous", "value": "void" } - ] + ], + "doc": "The v-pagination component is used to separate long sets of data into multiple pages." }, "v-sheet": { "props": [ @@ -13177,73 +14580,85 @@ "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "elevation", "type": ["number", "string"], "default": "undefined", - "source": "elevatable" + "source": "elevatable", + "doc": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)." }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the height for the component." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "maxHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum height for the component." }, { "name": "maxWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum width for the component." }, { "name": "minHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum height for the component." }, { "name": "minWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum width for the component." }, { "name": "tag", "type": "string", "default": "div", - "source": "v-sheet" + "source": "v-sheet", + "doc": "Specify a custom tag used on the root element." }, { "name": "tile", "type": "boolean", "default": "false", - "source": "v-sheet" + "source": "v-sheet", + "doc": "Removes the component's **border-radius**." }, { "name": "width", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the width for the component." } ], "mixins": ["colorable", "elevatable", "measurable", "themeable"], @@ -13251,7 +14666,8 @@ { "name": "default" } - ] + ], + "doc": "The v-sheet component is a piece of paper on which content is displayed. It's a base for many other components." }, "v-parallax": { "props": [ @@ -13259,19 +14675,22 @@ "name": "alt", "type": "string", "default": "undefined", - "source": "v-parallax" + "source": "v-parallax", + "doc": "Attaches an alt property to the parallax image" }, { "name": "height", "type": ["string", "number"], "default": 500, - "source": "translatable" + "source": "translatable", + "doc": "Sets the height for the component." }, { "name": "src", "type": "string", "default": "undefined", - "source": "v-parallax" + "source": "v-parallax", + "doc": "The image to parallax" } ], "mixins": ["translatable"], @@ -13279,7 +14698,8 @@ { "name": "default" } - ] + ], + "doc": "The v-parallax component creates a 3D effect that makes an image appear to scroll slower than the window." }, "v-picker": { "props": [ @@ -13287,52 +14707,61 @@ "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "fullWidth", "type": "boolean", "default": "false", - "source": "v-picker" + "source": "v-picker", + "doc": "Forces 100% width" }, { "name": "landscape", "type": "boolean", "default": "false", - "source": "v-picker" + "source": "v-picker", + "doc": "Orients picker horizontal" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "noTitle", "type": "boolean", "default": "false", - "source": "v-picker" + "source": "v-picker", + "doc": "Hide the picker title" }, { "name": "transition", "type": "string", "default": "'fade-transition'", - "source": "v-picker" + "source": "v-picker", + "doc": "Sets the component transition. Can be one of the [built in transitions](/styles/transitions) or one your own." }, { "name": "width", "type": ["number", "string"], "default": 290, - "source": "v-picker" + "source": "v-picker", + "doc": "Sets the width for the component." } ], - "mixins": ["colorable", "themeable"] + "mixins": ["colorable", "themeable"], + "doc": "A base picker component that provides common functionality for date and time pickers." }, "v-progress-circular": { "props": [ @@ -13340,43 +14769,50 @@ "name": "button", "type": "boolean", "default": "false", - "source": "v-progress-circular" + "source": "v-progress-circular", + "doc": "Deprecated - Pending removal" }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "indeterminate", "type": "boolean", "default": "false", - "source": "v-progress-circular" + "source": "v-progress-circular", + "doc": "Constantly animates, use when loading progress is unknown." }, { "name": "rotate", "type": ["number", "string"], "default": 0, - "source": "v-progress-circular" + "source": "v-progress-circular", + "doc": "Rotates the circle start point in deg" }, { "name": "size", "type": ["number", "string"], "default": 32, - "source": "v-progress-circular" + "source": "v-progress-circular", + "doc": "Sets the diameter of the circle in pixels" }, { "name": "value", "type": ["number", "string"], "default": 0, - "source": "v-progress-circular" + "source": "v-progress-circular", + "doc": "The percentage value for current progress" }, { "name": "width", "type": ["number", "string"], "default": 4, - "source": "v-progress-circular" + "source": "v-progress-circular", + "doc": "Sets the stroke of the circle in pixels" } ], "mixins": [], @@ -13387,7 +14823,8 @@ "value": "number" } } - ] + ], + "doc": "The v-progress-circular component displays a circular progress indicator, used to show loading states or progress." }, "v-progress-linear": { "props": [ @@ -13395,109 +14832,127 @@ "name": "absolute", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Applies **position: absolute** to the component." }, { "name": "active", "type": "boolean", "default": "true", - "source": "v-progress-linear" + "source": "v-progress-linear", + "doc": "Reduce the height to 0, hiding component" }, { "name": "backgroundColor", "type": "string", "default": "undefined", - "source": "v-progress-linear" + "source": "v-progress-linear", + "doc": "Background color, set to component's color if null" }, { "name": "backgroundOpacity", "type": ["number", "string"], "default": "undefined", - "source": "v-progress-linear" + "source": "v-progress-linear", + "doc": "Background opacity, if null it defaults to 0.3 if background color is not specified or 1 otherwise" }, { "name": "bottom", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Aligns the component towards the bottom." }, { "name": "bufferValue", "type": ["number", "string"], "default": 100, - "source": "v-progress-linear" + "source": "v-progress-linear", + "doc": "The percentage value for the buffer" }, { "name": "color", "type": "string", "default": "'primary'", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "fixed", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Applies **position: fixed** to the component." }, { "name": "height", "type": ["number", "string"], "default": 4, - "source": "v-progress-linear" + "source": "v-progress-linear", + "doc": "Sets the height for the component." }, { "name": "indeterminate", "type": "boolean", "default": "false", - "source": "v-progress-linear" + "source": "v-progress-linear", + "doc": "Constantly animates, use when loading progress is unknown." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "query", "type": "boolean", "default": "false", - "source": "v-progress-linear" + "source": "v-progress-linear", + "doc": "Animates like **indeterminate** prop but inverse" }, { "name": "rounded", "type": "boolean", "default": "false", - "source": "v-progress-linear" + "source": "v-progress-linear", + "doc": "Adds a border radius to the progress component" }, { "name": "stream", "type": "boolean", "default": "false", - "source": "v-progress-linear" + "source": "v-progress-linear", + "doc": "An alternative style for portraying loading that works in tandem with **buffer-value**" }, { "name": "striped", "type": "boolean", "default": "false", - "source": "v-progress-linear" + "source": "v-progress-linear", + "doc": "Adds a stripe background to the filled portion of the progress component" }, { "name": "top", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Aligns the content towards the top." }, { "name": "value", "type": ["number", "string"], "default": 0, - "source": "proxyable" + "source": "proxyable", + "doc": "Controls whether the component is visible or hidden." } ], "mixins": ["colorable", "positionable", "proxyable", "themeable"], @@ -13506,9 +14961,11 @@ "name": "default", "props": { "value": "number" - } + }, + "doc": "Provides the current value of the component" } - ] + ], + "doc": "The v-progress-linear component displays a horizontal progress bar, used to show loading states or progress." }, "v-radio-group": { "props": [ @@ -13516,109 +14973,127 @@ "name": "activeClass", "type": "string", "default": "'v-item--active'", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation." }, { "name": "appendIcon", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Appends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "backgroundColor", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Changes the background-color of the input" }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "column", "type": "boolean", "default": "true", - "source": "v-radio-group" + "source": "v-radio-group", + "doc": "Displays radio buttons in column" }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Reduces the input height" }, { "name": "disabled", "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Removes the ability to click or target the component." }, { "name": "error", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual error state" }, { "name": "errorCount", "type": ["number", "string"], "default": 1, - "source": "validatable" + "source": "validatable", + "doc": "The total number of errors that should display at once" }, { "name": "errorMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the **rules** prop. This field will not trigger validation" }, { "name": "height", "type": ["number", "string"], "default": "auto", - "source": "v-input" + "source": "v-input", + "doc": "Sets the height for the component." }, { "name": "hideDetails", "type": ["boolean", "string"], "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hides hint and validation errors. When set to `auto` messages will be rendered only if there's a message (hint, error message, counter value etc) to display" }, { "name": "hint", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hint text" }, { "name": "id", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Sets the DOM id on the component" }, { "name": "label", "type": "string", - "source": "v-input" + "source": "v-input", + "doc": "Sets input label" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "loading", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color" }, { "name": "mandatory", @@ -13630,85 +15105,99 @@ "name": "max", "type": ["number", "string"], "default": "undefined", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Sets a maximum number of selections that can be made." }, { "name": "messages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Displays a list of messages or message if using a string" }, { "name": "multiple", "type": "boolean", "default": "false", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Changes select to multiple. Accepts array for value" }, { "name": "name", "type": "string", "default": "undefined", - "source": "v-radio-group" + "source": "v-radio-group", + "doc": "Sets the component's name attribute" }, { "name": "persistentHint", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Forces hint to always be visible" }, { "name": "prependIcon", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Prepends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "readonly", "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Puts input in readonly state" }, { "name": "row", "type": "boolean", "default": "false", - "source": "v-radio-group" + "source": "v-radio-group", + "doc": "Displays radio buttons in row" }, { "name": "rules", "type": "array", "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`" }, { "name": "success", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual success state" }, { "name": "successMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a success state and passes through custom success messages." }, { "name": "validateOnBlur", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Delays validation until blur event" }, { "name": "value", "type": "any", - "source": "v-input" + "source": "v-input", + "doc": "Controls whether the component is visible or hidden." }, { "name": "valueComparator", "type": "function", "default": "null", - "source": "comparable" + "source": "comparable", + "doc": "Apply a custom value comparator function" } ], "mixins": [ @@ -13774,86 +15263,100 @@ }, "source": "v-input" } - ] + ], + "doc": "The v-radio-group component is a wrapper for v-radio components that provides v-model support for radio button groups." }, "v-radio": { "props": [ { "name": "activeClass", "type": "string", - "source": "groupable" + "source": "groupable", + "doc": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation." }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "disabled", "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Removes the ability to click or target the component." }, { "name": "id", "type": "string", "default": "undefined", - "source": "v-radio" + "source": "v-radio", + "doc": "Sets the DOM id on the component" }, { "name": "label", "type": "string", - "source": "v-input" + "source": "v-input", + "doc": "Sets input label" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "name", "type": "string", "default": "undefined", - "source": "v-radio" + "source": "v-radio", + "doc": "Sets the component's name attribute" }, { "name": "offIcon", "type": "string", "default": "'$radioOff'", - "source": "v-radio" + "source": "v-radio", + "doc": "The icon used when inactive" }, { "name": "onIcon", "type": "string", "default": "'$radioOn'", - "source": "v-radio" + "source": "v-radio", + "doc": "The icon used when active" }, { "name": "readonly", "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Puts input in readonly state" }, { "name": "ripple", "type": ["boolean", "object"], "default": true, - "source": "rippleable" + "source": "rippleable", + "doc": "Applies the [v-ripple](/directives/ripple) directive." }, { "name": "value", "type": "any", - "source": "v-input" + "source": "v-input", + "doc": "Controls whether the component is visible or hidden." } ], "mixins": ["colorable", "rippleable", "groupable", "themeable"], @@ -13892,7 +15395,8 @@ { "name": "label" } - ] + ], + "doc": "The v-radio component is a simple radio button that allows users to select a single option from a group." }, "v-range-slider": { "props": [ @@ -13900,80 +15404,93 @@ "name": "appendIcon", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Appends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "backgroundColor", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Changes the background-color of the input" }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Reduces the input height" }, { "name": "disabled", "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Removes the ability to click or target the component." }, { "name": "error", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual error state" }, { "name": "errorCount", "type": ["number", "string"], "default": 1, - "source": "validatable" + "source": "validatable", + "doc": "The total number of errors that should display at once" }, { "name": "errorMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the **rules** prop. This field will not trigger validation" }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Sets the height for the component." }, { "name": "hideDetails", "type": ["boolean", "string"], "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hides hint and validation errors. When set to `auto` messages will be rendered only if there's a message (hint, error message, counter value etc) to display" }, { "name": "hint", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hint text" }, { "name": "id", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Sets the DOM id on the component" }, { "name": "inverseLabel", @@ -13984,37 +15501,43 @@ { "name": "label", "type": "string", - "source": "v-input" + "source": "v-input", + "doc": "Sets input label" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "loaderHeight", "type": ["number", "string"], "default": 2, - "source": "loadable" + "source": "loadable", + "doc": "Specifies the height of the loader" }, { "name": "loading", "type": ["boolean", "string"], "default": false, - "source": "v-input" + "source": "v-input", + "doc": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color" }, { "name": "max", "type": ["number", "string"], "default": 100, - "source": "v-slider" + "source": "v-slider", + "doc": "Sets a maximum number of selections that can be made." }, { "name": "messages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Displays a list of messages or message if using a string" }, { "name": "min", @@ -14026,26 +15549,30 @@ "name": "persistentHint", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Forces hint to always be visible" }, { "name": "prependIcon", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Prepends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "readonly", "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Puts input in readonly state" }, { "name": "rules", "type": "array", "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`" }, { "name": "step", @@ -14057,13 +15584,15 @@ "name": "success", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual success state" }, { "name": "successMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a success state and passes through custom success messages." }, { "name": "thumbColor", @@ -14117,12 +15646,14 @@ "name": "validateOnBlur", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Delays validation until blur event" }, { "name": "value", "type": "any", - "source": "v-input" + "source": "v-input", + "doc": "Controls whether the component is visible or hidden." }, { "name": "vertical", @@ -14206,7 +15737,8 @@ }, "source": "v-slider" } - ] + ], + "doc": "The v-range-slider component allows users to select a range of values on a continuous or discrete scale." }, "v-rating": { "props": [ @@ -14214,133 +15746,155 @@ "name": "backgroundColor", "type": "string", "default": "'accent'", - "source": "v-rating" + "source": "v-rating", + "doc": "The color used for empty icons" }, { "name": "clearable", "type": "boolean", "default": "false", - "source": "v-rating" + "source": "v-rating", + "doc": "Allows for the component to be cleared. Triggers when the icon containing the current value is clicked." }, { "name": "closeDelay", "type": ["number", "string"], "default": 0, - "source": "delayable" + "source": "delayable", + "doc": "Milliseconds to wait before closing component. Only applies to hover and focus events." }, { "name": "color", "type": "string", "default": "'primary'", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-rating" + "source": "v-rating", + "doc": "Icons have a smaller size" }, { "name": "emptyIcon", "type": "string", "default": "'$ratingEmpty'", - "source": "v-rating" + "source": "v-rating", + "doc": "The icon displayed when empty" }, { "name": "fullIcon", "type": "string", "default": "'$ratingFull'", - "source": "v-rating" + "source": "v-rating", + "doc": "The icon displayed when full" }, { "name": "halfIcon", "type": "string", "default": "'$ratingHalf'", - "source": "v-rating" + "source": "v-rating", + "doc": "The icon displayed when half (requires **half-increments** prop)" }, { "name": "halfIncrements", "type": "boolean", "default": "false", - "source": "v-rating" + "source": "v-rating", + "doc": "Allows the selection of half increments" }, { "name": "hover", "type": "boolean", "default": "false", - "source": "v-rating" + "source": "v-rating", + "doc": "Provides visual feedback when hovering over icons" }, { "name": "large", "type": "boolean", "default": "false", - "source": "sizeable" + "source": "sizeable", + "doc": "Makes the component large." }, { "name": "length", "type": ["number", "string"], "default": 5, - "source": "v-rating" + "source": "v-rating", + "doc": "The amount of ratings to show" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "openDelay", "type": ["number", "string"], "default": 0, - "source": "delayable" + "source": "delayable", + "doc": "Milliseconds to wait before opening component. Only applies to hover and focus events." }, { "name": "readonly", "type": "boolean", "default": "false", - "source": "v-rating" + "source": "v-rating", + "doc": "Removes all hover effects and pointer events" }, { "name": "ripple", "type": ["boolean", "object"], "default": true, - "source": "rippleable" + "source": "rippleable", + "doc": "Applies the [v-ripple](/directives/ripple) directive." }, { "name": "size", "type": ["number", "string"], "default": "undefined", - "source": "v-rating" + "source": "v-rating", + "doc": "Sets the height and width of the component." }, { "name": "small", "type": "boolean", "default": "false", - "source": "sizeable" + "source": "sizeable", + "doc": "Makes the component small." }, { "name": "value", "type": "number", "default": 0, - "source": "v-rating" + "source": "v-rating", + "doc": "The rating value" }, { "name": "xLarge", "type": "boolean", "default": "false", - "source": "sizeable" + "source": "sizeable", + "doc": "Makes the component extra large." }, { "name": "xSmall", "type": "boolean", "default": "false", - "source": "sizeable" + "source": "sizeable", + "doc": "Makes the component extra small." } ], "mixins": ["colorable", "delayable", "rippleable", "sizeable", "themeable"], @@ -14361,12 +15915,14 @@ "isHalfHovered": "?boolean", "isHovered": "boolean", "value": "number" - } + }, + "doc": "The slot for rendered items" }, { "name": "default" } - ] + ], + "doc": "The v-rating component provides a simple interface for gathering user feedback via ratings." }, "v-responsive": { "props": [ @@ -14374,43 +15930,50 @@ "name": "aspectRatio", "type": ["string", "number"], "default": "undefined", - "source": "v-responsive" + "source": "v-responsive", + "doc": "Sets a base aspect ratio, calculated as width/height. This will only set a **minimum** height, the component can still grow if it has a lot of content." }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the height for the component." }, { "name": "maxHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum height for the component." }, { "name": "maxWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum width for the component." }, { "name": "minHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum height for the component." }, { "name": "minWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum width for the component." }, { "name": "width", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the width for the component." } ], "mixins": ["measurable"], @@ -14418,7 +15981,8 @@ { "name": "default" } - ] + ], + "doc": "The v-responsive component is used to create components with specific aspect ratios or max-height/width." }, "v-select": { "props": [ @@ -14426,19 +15990,22 @@ "name": "appendIcon", "type": "string", "default": "'$dropdown'", - "source": "v-input" + "source": "v-input", + "doc": "Appends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "appendOuterIcon", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Appends an icon to the outside the component's input, uses same syntax as `v-icon`" }, { "name": "attach", "type": "any", "default": false, - "source": "v-select" + "source": "v-select", + "doc": "Specifies which DOM element that this component should detach to. String can be any valid querySelector and Object can be any valid Node. This will attach to the root `v-app` component by default." }, { "name": "autofocus", @@ -14450,43 +16017,50 @@ "name": "backgroundColor", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Changes the background-color of the input" }, { "name": "cacheItems", "type": "boolean", "default": "false", - "source": "v-select" + "source": "v-select", + "doc": "Keeps a local _unique_ copy of all items that have been passed through the **items** prop." }, { "name": "chips", "type": "boolean", "default": "false", - "source": "v-select" + "source": "v-select", + "doc": "Changes display of selections to chips" }, { "name": "clearIcon", "type": "string", "default": "'$clear'", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Applied when using **clearable** and the input is dirty" }, { "name": "clearable", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Add input clear functionality, default icon is Material Design Icons **mdi-clear**" }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "counter", "type": ["boolean", "number", "string"], "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation." }, { "name": "counterValue", @@ -14498,133 +16072,155 @@ "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. This will default the components color to _white_ unless you've configured your [application theme](/customization/theme) to **dark** or if you are using the **color** prop on the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "deletableChips", "type": "boolean", "default": "false", - "source": "v-select" + "source": "v-select", + "doc": "Adds a remove icon to selected chips" }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Reduces the input height" }, { "name": "disableLookup", "type": "boolean", "default": "false", - "source": "v-select" + "source": "v-select", + "doc": "Disables keyboard lookup" }, { "name": "disabled", "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Disables the input" }, { "name": "eager", "type": "boolean", "default": "false", - "source": "v-select" + "source": "v-select", + "doc": "Will force the components content to render on mounted. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO." }, { "name": "error", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual error state" }, { "name": "errorCount", "type": ["number", "string"], "default": 1, - "source": "validatable" + "source": "validatable", + "doc": "The total number of errors that should display at once" }, { "name": "errorMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the **rules** prop. This field will not trigger validation" }, { "name": "filled", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Applies the alternate filled input style" }, { "name": "filter", "default": "(item: object, queryText: string, itemText: string): boolean", - "source": "v-select" + "source": "v-select", + "doc": "The function used for filtering items" }, { "name": "flat", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Removes elevation (shadow) added to element when using the **solo** or **solo-inverted** props" }, { "name": "fullWidth", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Forces 100% width" }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Sets the height for the component." }, { "name": "hideDetails", "type": ["boolean", "string"], "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hides hint and validation errors. When set to `auto` messages will be rendered only if there's a message (hint, error message, counter value etc) to display" }, { "name": "hideSelected", "type": "boolean", "default": "false", - "source": "v-select" + "source": "v-select", + "doc": "Do not display in the select menu items that are already selected. Also removes checkboxes from the list when multiple" }, { "name": "hint", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hint text" }, { "name": "id", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Sets the DOM id on the component" }, { "name": "itemColor", "type": "string", "default": "'primary'", - "source": "v-select" + "source": "v-select", + "doc": "Sets color of selected items" }, { "name": "itemDisabled", "type": ["string", "array", "function"], "default": "disabled", - "source": "v-select" + "source": "v-select", + "doc": "Set property of **items**'s disabled value" }, { "name": "itemText", "type": ["string", "array", "function"], "default": "text", - "source": "v-select" + "source": "v-select", + "doc": "Set property of **items**'s text value" }, { "name": "itemValue", "type": ["string", "array", "function"], "default": "value", - "source": "v-select" + "source": "v-select", + "doc": "Set property of **items**'s value - **must be primitive**. Dot notation is supported. **Note:** This is currently not supported with `v-combobox` [GitHub Issue](https://github.com/vuetifyjs/vuetify/issues/5479)" }, { "name": "items", @@ -14634,169 +16230,197 @@ "example": { "text": "string | number | object", "value": "string | number | object" - } + }, + "doc": "Can be an array of objects or array of strings. When using objects, will look for a text, value and disabled keys. This can be changed using the **item-text**, **item-value** and **item-disabled** props. Objects that have a **header** or **divider** property are considered special cases and generate a list header or divider; these items are not selectable." }, { "name": "label", "type": "string", - "source": "v-input" + "source": "v-input", + "doc": "Sets input label" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "loaderHeight", "type": ["number", "string"], "default": 2, - "source": "loadable" + "source": "loadable", + "doc": "Specifies the height of the loader" }, { "name": "loading", "type": ["boolean", "string"], "default": false, - "source": "v-input" + "source": "v-input", + "doc": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color" }, { "name": "menuProps", "type": ["string", "array", "object"], "default": "{ \"closeOnClick\": false, \"closeOnContentClick\": false, \"disableKeys\": true, \"openOnClick\": false, \"maxHeight\": 304 }", - "source": "v-select" + "source": "v-select", + "doc": "Pass props through to the `v-menu` component. Accepts either a string for boolean props `menu-props=\"auto, overflowY\"`, or an object `:menu-props=\"{ auto: true, overflowY: true }\"`" }, { "name": "messages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Displays a list of messages or message if using a string" }, { "name": "multiple", "type": "boolean", "default": "false", - "source": "v-select" + "source": "v-select", + "doc": "Changes select to multiple. Accepts array for value" }, { "name": "noDataText", "type": "string", "default": "'$vuetify.noDataText'", - "source": "filterable" + "source": "filterable", + "doc": "Display text when there is no data" }, { "name": "openOnClear", "type": "boolean", "default": "false", - "source": "v-select" + "source": "v-select", + "doc": "When using the **clearable** prop, once cleared, the select menu will either open or stay open, depending on the current state" }, { "name": "outlined", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Applies the outlined style to the input" }, { "name": "persistentHint", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Forces hint to always be visible" }, { "name": "placeholder", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Sets the input's placeholder text" }, { "name": "prefix", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Displays prefix text" }, { "name": "prependIcon", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Prepends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "prependInnerIcon", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Prepends an icon inside the component's input, uses the same syntax as `v-icon`" }, { "name": "readonly", "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Puts input in readonly state" }, { "name": "returnObject", "type": "boolean", "default": "false", - "source": "v-select" + "source": "v-select", + "doc": "Changes the selection behavior to return the object directly rather than the value specified with **item-value**" }, { "name": "reverse", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Reverses the input orientation" }, { "name": "rounded", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Designates the **border-radius** applied to the component. You can find more information on the [Border Radius page](/styles/border-radius)." }, { "name": "rules", "type": "array", "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`" }, { "name": "shaped", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Round if `outlined` and increase `border-radius` if `filled`. Must be used with either `outlined` or `filled`" }, { "name": "singleLine", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Label does not move on focus/dirty" }, { "name": "smallChips", "type": "boolean", "default": "false", - "source": "v-select" + "source": "v-select", + "doc": "Changes display of selections to chips with the **small** property" }, { "name": "solo", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Changes the style of the input" }, { "name": "soloInverted", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Reduces element opacity until focused" }, { "name": "success", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual success state" }, { "name": "successMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a success state and passes through custom success messages." }, { "name": "suffix", @@ -14814,18 +16438,21 @@ "name": "validateOnBlur", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Delays validation until blur event" }, { "name": "value", "type": "any", - "source": "v-input" + "source": "v-input", + "doc": "Controls whether the component is visible or hidden." }, { "name": "valueComparator", "type": "function", "default": "(a: any, b: any): boolean", - "source": "v-select" + "source": "v-select", + "doc": "The comparison algorithm used for values. [More info](https://github.com/vuetifyjs/vuetify/blob/v2-stable/packages/vuetify/src/util/helpers.ts)" } ], "mixins": [ @@ -14961,11 +16588,13 @@ }, { "name": "append-item", - "source": "v-select" + "source": "v-select", + "doc": "Adds an item after menu content" }, { "name": "prepend-item", - "source": "v-select" + "source": "v-select", + "doc": "Adds an item before menu content" }, { "name": "item", @@ -14975,7 +16604,8 @@ "on": "object // Only needed when providing your own v-list-item", "attrs": "object // Only needed when providing your own v-list-item" }, - "source": "v-select" + "source": "v-select", + "doc": "Define a custom item appearance" }, { "name": "no-data", @@ -14991,9 +16621,11 @@ "selected": "boolean", "disabled": "boolean" }, - "source": "v-select" + "source": "v-select", + "doc": "Define a custom selection appearance" } - ] + ], + "doc": "The v-select component provides a dropdown selection interface with autocomplete, filtering, and multi-select capabilities." }, "v-skeleton-loader": { "props": [ @@ -15001,73 +16633,85 @@ "name": "boilerplate", "type": "boolean", "default": "false", - "source": "VSkeletonLoader" + "source": "VSkeletonLoader", + "doc": "Remove the loading animation from the skeleton" }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "elevation", "type": ["number", "string"], "default": "undefined", - "source": "elevatable" + "source": "elevatable", + "doc": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)." }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the height for the component." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "loading", "type": "boolean", "default": "false", - "source": "VSkeletonLoader" + "source": "VSkeletonLoader", + "doc": "Applies a loading animation with a on-hover loading cursor. A value of **false** will only work when there is content in the `default` slot." }, { "name": "maxHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum height for the component." }, { "name": "maxWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum width for the component." }, { "name": "minHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum height for the component." }, { "name": "minWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum width for the component." }, { "name": "tile", "type": "boolean", "default": "false", - "source": "VSkeletonLoader" + "source": "VSkeletonLoader", + "doc": "Removes the component's border-radius" }, { "name": "transition", "type": "string", "default": "undefined", - "source": "VSkeletonLoader" + "source": "VSkeletonLoader", + "doc": "Sets the component transition. Can be one of the [built in transitions](/styles/transitions) or one your own." }, { "name": "type", @@ -15105,22 +16749,26 @@ "table-cell": "text", "table-tfoot": "text@2, avatar@2", "text": "text" - } + }, + "doc": "A string delimited list of skeleton components to create such as `type=\"text@3\"` or `type=\"card, list-item\"`. Will recursively generate a corresponding skeleton from the provided string. Also supports short-hand for multiple elements such as **article@3** and **paragraph@2** which will generate 3 _article_ skeletons and 2 _paragraph_ skeletons. Please see below for a list of available pre-defined options." }, { "name": "types", "type": "object", "default": {}, - "source": "VSkeletonLoader" + "source": "VSkeletonLoader", + "doc": "A custom types object that will be combined with the pre-defined options. For a list of available pre-defined options, see the **type** prop." }, { "name": "width", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the width for the component." } ], - "mixins": ["elevatable", "measurable", "themeable"] + "mixins": ["elevatable", "measurable", "themeable"], + "doc": "The v-skeleton-loader component provides a placeholder preview while content is loading, improving perceived performance." }, "v-slider": { "props": [ @@ -15128,235 +16776,274 @@ "name": "appendIcon", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Appends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "backgroundColor", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Changes the background-color of the input" }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Reduces the input height" }, { "name": "disabled", "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Removes the ability to click or target the component." }, { "name": "error", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual error state" }, { "name": "errorCount", "type": ["number", "string"], "default": 1, - "source": "validatable" + "source": "validatable", + "doc": "The total number of errors that should display at once" }, { "name": "errorMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the **rules** prop. This field will not trigger validation" }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Sets the height for the component." }, { "name": "hideDetails", "type": ["boolean", "string"], "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hides hint and validation errors. When set to `auto` messages will be rendered only if there's a message (hint, error message, counter value etc) to display" }, { "name": "hint", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hint text" }, { "name": "id", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Sets the DOM id on the component" }, { "name": "inverseLabel", "type": "boolean", "default": "false", - "source": "v-slider" + "source": "v-slider", + "doc": "Reverse the label position. Works with **rtl**." }, { "name": "label", "type": "string", - "source": "v-input" + "source": "v-input", + "doc": "Sets input label" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "loaderHeight", "type": ["number", "string"], "default": 2, - "source": "loadable" + "source": "loadable", + "doc": "Specifies the height of the loader" }, { "name": "loading", "type": ["boolean", "string"], "default": false, - "source": "v-input" + "source": "v-input", + "doc": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color" }, { "name": "max", "type": ["number", "string"], "default": 100, - "source": "v-slider" + "source": "v-slider", + "doc": "Sets the maximum allowed value" }, { "name": "messages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Displays a list of messages or message if using a string" }, { "name": "min", "type": ["number", "string"], "default": 0, - "source": "v-slider" + "source": "v-slider", + "doc": "Sets the minimum allowed value" }, { "name": "persistentHint", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Forces hint to always be visible" }, { "name": "prependIcon", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Prepends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "readonly", "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Puts input in readonly state" }, { "name": "rules", "type": "array", "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`" }, { "name": "step", "type": ["number", "string"], "default": 1, - "source": "v-slider" + "source": "v-slider", + "doc": "If greater than 0, sets step interval for ticks" }, { "name": "success", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual success state" }, { "name": "successMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a success state and passes through custom success messages." }, { "name": "thumbColor", "type": "string", "default": "undefined", - "source": "v-slider" + "source": "v-slider", + "doc": "Sets the thumb and thumb label color" }, { "name": "thumbLabel", "type": ["boolean", "string"], "default": "undefined", - "source": "v-slider" + "source": "v-slider", + "doc": "Show thumb label. If `true` it shows label when using slider. If set to `'always'` it always shows label." }, { "name": "thumbSize", "type": ["number", "string"], "default": 32, - "source": "v-slider" + "source": "v-slider", + "doc": "Controls the size of the thumb label." }, { "name": "tickLabels", "type": "array", "default": [], - "source": "v-slider" + "source": "v-slider", + "doc": "When provided with Array, will attempt to map the labels to each step in index order" }, { "name": "tickSize", "type": ["number", "string"], "default": 2, - "source": "v-slider" + "source": "v-slider", + "doc": "Controls the size of **ticks**" }, { "name": "ticks", "type": ["boolean", "string"], "default": false, - "source": "v-slider" + "source": "v-slider", + "doc": "Show track ticks. If `true` it shows ticks when using slider. If set to `'always'` it always shows ticks." }, { "name": "trackColor", "type": "string", "default": "undefined", - "source": "v-slider" + "source": "v-slider", + "doc": "Sets the track's color" }, { "name": "trackFillColor", "type": "string", "default": "undefined", - "source": "v-slider" + "source": "v-slider", + "doc": "Sets the track's fill color" }, { "name": "validateOnBlur", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Delays validation until blur event" }, { "name": "value", "type": "any", - "source": "v-input" + "source": "v-input", + "doc": "Controls whether the component is visible or hidden." }, { "name": "vertical", "type": "boolean", "default": "false", - "source": "v-slider" + "source": "v-slider", + "doc": "Changes slider direction to vertical" } ], "mixins": ["loadable"], @@ -15432,9 +17119,11 @@ "props": { "value": "number | string" }, - "source": "v-slider" + "source": "v-slider", + "doc": "Replaces the content inside the thumb label" } - ] + ], + "doc": "The v-slider component allows users to select a single value from a range of values using a draggable slider." }, "v-slide-group": { "props": [ @@ -15442,25 +17131,29 @@ "name": "activeClass", "type": "string", "default": "'v-slide-item--active'", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation." }, { "name": "centerActive", "type": "boolean", "default": "false", - "source": "base-slide-group" + "source": "base-slide-group", + "doc": "Forces the selected component to be centered" }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "mandatory", @@ -15472,7 +17165,8 @@ "name": "max", "type": ["number", "string"], "default": "undefined", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Sets a maximum number of selections that can be made." }, { "name": "mobileBreakPoint", @@ -15484,31 +17178,36 @@ "name": "multiple", "type": "boolean", "default": "false", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Changes select to multiple. Accepts array for value" }, { "name": "nextIcon", "type": "string", "default": "'$next'", - "source": "base-slide-group" + "source": "base-slide-group", + "doc": "The appended slot when arrows are shown" }, { "name": "prevIcon", "type": "string", "default": "'$prev'", - "source": "base-slide-group" + "source": "base-slide-group", + "doc": "The prepended slot when arrows are shown" }, { "name": "showArrows", "type": "boolean", "default": "false", - "source": "base-slide-group" + "source": "base-slide-group", + "doc": "Change when the overflow arrow indicators are shown. By **default**, arrows *always* display on Desktop when the container is overflowing. When the container overflows on mobile, arrows are not shown by default. A **show-arrows** value of `true` allows these arrows to show on Mobile if the container overflowing. A value of `desktop` *always* displays arrows on Desktop while a value of `mobile` always displays arrows on Mobile. A value of `always` always displays arrows on Desktop *and* Mobile. A value of `never` always hides the arrows. Find more information on how to customize breakpoint thresholds on the [breakpoints page](/customizing/breakpoints)." }, { "name": "value", "type": "any", "default": "undefined", - "source": "proxyable" + "source": "proxyable", + "doc": "Controls whether the component is visible or hidden." } ], "mixins": ["base-item-group", "proxyable", "themeable"], @@ -15524,34 +17223,40 @@ ], "slots": [ { - "name": "next" + "name": "next", + "doc": "The next slot" }, { - "name": "prev" + "name": "prev", + "doc": "The prev slot" }, { "name": "default" } - ] + ], + "doc": "The v-slide-group component is used to display content in a horizontal scrollable container with pagination." }, "v-slide-item": { "props": [ { "name": "activeClass", "type": "string", - "source": "groupable" + "source": "groupable", + "doc": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "groupable" + "source": "groupable", + "doc": "Removes the ability to click or target the component." }, { "name": "value", "type": "any", "default": "undefined", - "source": "groupable" + "source": "groupable", + "doc": "Controls whether the component is visible or hidden." } ], "mixins": ["groupable"], @@ -15559,7 +17264,8 @@ { "name": "default" } - ] + ], + "doc": "A single item within a v-slide-group component." }, "v-snackbar": { "props": [ @@ -15567,61 +17273,71 @@ "name": "absolute", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Applies **position: absolute** to the component." }, { "name": "bottom", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Aligns the component towards the bottom." }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "left", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Aligns the component towards the left." }, { "name": "multiLine", "type": "boolean", "default": "false", - "source": "v-snackbar" + "source": "v-snackbar", + "doc": "Gives the snackbar a larger minimum height." }, { "name": "right", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Aligns the component towards the right." }, { "name": "timeout", "type": "number", "default": 6000, - "source": "v-snackbar" + "source": "v-snackbar", + "doc": "Time (in milliseconds) to wait until snackbar is automatically hidden. Use `-1` to keep open indefinitely (`0` in version < 2.3 ). It is recommended for this number to be between `4000` and `10000`. Changes to this property will reset the timeout." }, { "name": "top", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Aligns the content towards the top." }, { "name": "value", "type": "any", "default": "undefined", - "source": "toggleable" + "source": "toggleable", + "doc": "Controls whether the component is visible or hidden." }, { "name": "vertical", "type": "boolean", "default": "false", - "source": "v-snackbar" + "source": "v-snackbar", + "doc": "Stacks snackbar content on top of the actions (button)." } ], "mixins": ["colorable", "toggleable", "positionable"], @@ -15635,7 +17351,8 @@ { "name": "default" } - ] + ], + "doc": "The v-snackbar component displays brief messages at the bottom of the screen, typically for user notifications." }, "v-sparkline": { "props": [ @@ -15643,109 +17360,127 @@ "name": "autoDraw", "type": "boolean", "default": "false", - "source": "VSparkline" + "source": "VSparkline", + "doc": "Trace the length of the line when first rendered" }, { "name": "autoDrawDuration", "type": "number", "default": 2000, - "source": "VSparkline" + "source": "VSparkline", + "doc": "Amount of time (in ms) to run the trace animation" }, { "name": "autoDrawEasing", "type": "string", "default": "'ease'", - "source": "VSparkline" + "source": "VSparkline", + "doc": "The easing function to use for the trace animation" }, { "name": "autoLineWidth", "type": "boolean", "default": "false", - "source": "VSparkline" + "source": "VSparkline", + "doc": "Automatically expand bars to use space efficiently" }, { "name": "color", "type": "string", "default": "'primary'", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "fill", "type": "boolean", "default": "false", - "source": "VSparkline" + "source": "VSparkline", + "doc": "Using the **fill** property allows you to better customize the look and feel of your sparkline." }, { "name": "gradient", "type": "array", "default": [], - "source": "VSparkline" + "source": "VSparkline", + "doc": "An array of colors to use as a linear-gradient" }, { "name": "gradientDirection", "type": "string", "default": "'top'", - "source": "VSparkline" + "source": "VSparkline", + "doc": "The direction the gradient should run" }, { "name": "height", "type": ["string", "number"], "default": 75, - "source": "VSparkline" + "source": "VSparkline", + "doc": "Height of the SVG trendline or bars" }, { "name": "labelSize", "type": ["number", "string"], "default": 7, - "source": "VSparkline" + "source": "VSparkline", + "doc": "The label font size" }, { "name": "labels", "type": "array", "default": [], - "source": "VSparkline" + "source": "VSparkline", + "doc": "An array of string labels that correspond to the same index as its data counterpart" }, { "name": "lineWidth", "type": ["string", "number"], "default": 4, - "source": "VSparkline" + "source": "VSparkline", + "doc": "The thickness of the line, in px" }, { "name": "padding", "type": ["string", "number"], "default": 8, - "source": "VSparkline" + "source": "VSparkline", + "doc": "Low `smooth` or high `line-width` values may result in cropping, increase padding to compensate" }, { "name": "showLabels", "type": "boolean", "default": "false", - "source": "VSparkline" + "source": "VSparkline", + "doc": "Show labels below each data point" }, { "name": "smooth", "type": ["boolean", "number", "string"], "default": false, - "source": "VSparkline" + "source": "VSparkline", + "doc": "Number of px to use as a corner radius. `true` defaults to 8, `false` is 0" }, { "name": "type", "type": "string", "default": "'trend'", - "source": "VSparkline" + "source": "VSparkline", + "doc": "Choose between a trendline or bars" }, { "name": "value", "type": "array", "default": [], - "source": "VSparkline" + "source": "VSparkline", + "doc": "An array of numbers." }, { "name": "width", "type": ["number", "string"], "default": 300, - "source": "VSparkline" + "source": "VSparkline", + "doc": "Width of the SVG trendline or bars" } ], "mixins": ["colorable"], @@ -15753,7 +17488,8 @@ { "name": "label" } - ] + ], + "doc": "The v-sparkline component creates a simple chart for visualizing trends in data with minimal visual elements." }, "v-speed-dial": { "props": [ @@ -15761,73 +17497,85 @@ "name": "absolute", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Applies **position: absolute** to the component." }, { "name": "bottom", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Aligns the component towards the bottom." }, { "name": "direction", "type": "string", "default": "'top'", - "source": "v-speed-dial" + "source": "v-speed-dial", + "doc": "Direction in which speed-dial content will show. Possible values are `top`, `bottom`, `left`, `right`." }, { "name": "fixed", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Applies **position: fixed** to the component." }, { "name": "left", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Aligns the component towards the left." }, { "name": "mode", "type": "string", "default": "undefined", - "source": "transitionable" + "source": "transitionable", + "doc": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition)." }, { "name": "openOnHover", "type": "boolean", "default": "false", - "source": "v-speed-dial" + "source": "v-speed-dial", + "doc": "Opens speed-dial on hover" }, { "name": "origin", "type": "string", "default": "undefined", - "source": "transitionable" + "source": "transitionable", + "doc": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)." }, { "name": "right", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Aligns the component towards the right." }, { "name": "top", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Aligns the content towards the top." }, { "name": "transition", "type": "string", "default": "'scale-transition'", - "source": "transitionable" + "source": "transitionable", + "doc": "Sets the component transition. Can be one of the [built in transitions](/styles/transitions) or one your own." }, { "name": "value", "type": "any", "default": "undefined", - "source": "toggleable" + "source": "toggleable", + "doc": "Controls whether the component is visible or hidden." } ], "mixins": ["positionable", "toggleable", "transitionable"], @@ -15838,7 +17586,8 @@ { "name": "default" } - ] + ], + "doc": "The v-speed-dial component displays a floating action button that reveals related actions when activated." }, "v-stepper": { "props": [ @@ -15846,37 +17595,43 @@ "name": "altLabels", "type": "boolean", "default": "false", - "source": "v-stepper" + "source": "v-stepper", + "doc": "Places the labels beneath the step" }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "nonLinear", "type": "boolean", "default": "false", - "source": "v-stepper" + "source": "v-stepper", + "doc": "Allow user to jump to any step" }, { "name": "value", "type": "any", "default": "undefined", - "source": "proxyable" + "source": "proxyable", + "doc": "Controls whether the component is visible or hidden." }, { "name": "vertical", "type": "boolean", "default": "false", - "source": "v-stepper" + "source": "v-stepper", + "doc": "Display steps vertically" } ], "mixins": ["registrable-provide", "proxyable", "themeable"], @@ -15890,7 +17645,8 @@ { "name": "default" } - ] + ], + "doc": "The v-stepper component displays progress through numbered steps, commonly used for multi-step processes." }, "v-stepper-content": { "props": [ @@ -15898,7 +17654,8 @@ "name": "step", "type": ["number", "string"], "default": "undefined", - "source": "v-stepper-content" + "source": "v-stepper-content", + "doc": "Sets step to associate the content to" } ], "mixins": ["registrable-inject"], @@ -15906,7 +17663,8 @@ { "name": "default" } - ] + ], + "doc": "The content area of a stepper step, shown when the step is active." }, "v-stepper-step": { "props": [ @@ -15914,49 +17672,57 @@ "name": "color", "type": "string", "default": "'primary'", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "complete", "type": "boolean", "default": "false", - "source": "v-stepper-step" + "source": "v-stepper-step", + "doc": "Marks step as complete" }, { "name": "completeIcon", "type": "string", "default": "'$complete'", - "source": "v-stepper-step" + "source": "v-stepper-step", + "doc": "Icon to display when step is marked as completed" }, { "name": "editIcon", "type": "string", "default": "'$edit'", - "source": "v-stepper-step" + "source": "v-stepper-step", + "doc": "Icon to display when step is editable" }, { "name": "editable", "type": "boolean", "default": "false", - "source": "v-stepper-step" + "source": "v-stepper-step", + "doc": "Marks step as editable" }, { "name": "errorIcon", "type": "string", "default": "'$error'", - "source": "v-stepper-step" + "source": "v-stepper-step", + "doc": "Icon to display when step has an error" }, { "name": "rules", "type": "array", "default": [], - "source": "v-stepper-step" + "source": "v-stepper-step", + "doc": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`" }, { "name": "step", "type": ["number", "string"], "default": "undefined", - "source": "v-stepper-step" + "source": "v-stepper-step", + "doc": "Content to display inside step circle" } ], "mixins": ["colorable", "registrable-inject"], @@ -15970,7 +17736,8 @@ { "name": "default" } - ] + ], + "doc": "A single step within a v-stepper component." }, "v-stepper-header": { "props": [], @@ -15979,7 +17746,8 @@ { "name": "default" } - ] + ], + "doc": "The header area of a stepper containing all step indicators." }, "v-stepper-items": { "props": [], @@ -15988,7 +17756,8 @@ { "name": "default" } - ] + ], + "doc": "A container for stepper content areas." }, "v-subheader": { "props": [ @@ -15996,19 +17765,22 @@ "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "inset", "type": "boolean", "default": "false", - "source": "v-subheader" + "source": "v-subheader", + "doc": "Adds indentation (72px)" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." } ], "mixins": ["themeable"], @@ -16016,7 +17788,8 @@ { "name": "default" } - ] + ], + "doc": "The v-subheader component is used to separate sections of lists or content with text headings." }, "v-switch": { "props": [ @@ -16024,199 +17797,232 @@ "name": "appendIcon", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Appends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "backgroundColor", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Changes the background-color of the input" }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Reduces the input height" }, { "name": "disabled", "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Removes the ability to click or target the component." }, { "name": "error", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual error state" }, { "name": "errorCount", "type": ["number", "string"], "default": 1, - "source": "validatable" + "source": "validatable", + "doc": "The total number of errors that should display at once" }, { "name": "errorMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the **rules** prop. This field will not trigger validation" }, { "name": "falseValue", "type": "any", "default": "undefined", - "source": "selectable" + "source": "selectable", + "doc": "Sets value for falsy state" }, { "name": "flat", "type": "boolean", "default": "false", - "source": "v-switch" + "source": "v-switch", + "doc": "Display component without elevation. Default elevation for thumb is 4dp, `flat` resets it" }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Sets the height for the component." }, { "name": "hideDetails", "type": ["boolean", "string"], "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hides hint and validation errors. When set to `auto` messages will be rendered only if there's a message (hint, error message, counter value etc) to display" }, { "name": "hint", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hint text" }, { "name": "id", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Sets the DOM id on the component" }, { "name": "inputValue", "type": "any", "default": "undefined", - "source": "selectable" + "source": "selectable", + "doc": "The **v-model** bound value" }, { "name": "inset", "type": "boolean", "default": "false", - "source": "v-switch" + "source": "v-switch", + "doc": "Enlarge the `v-switch` track to encompass the thumb" }, { "name": "label", "type": "string", - "source": "v-input" + "source": "v-input", + "doc": "Sets input label" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "loading", "type": ["boolean", "string"], "default": false, - "source": "v-input" + "source": "v-input", + "doc": "Displays circular progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - primary, secondary, success, info, warning, error) or a Boolean which uses the component color (set by color prop - if it's supported by the component) or the primary color" }, { "name": "messages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Displays a list of messages or message if using a string" }, { "name": "multiple", "type": "boolean", "default": "false", - "source": "selectable" + "source": "selectable", + "doc": "Changes expected model to an array" }, { "name": "persistentHint", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Forces hint to always be visible" }, { "name": "prependIcon", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Prepends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "readonly", "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Puts input in readonly state" }, { "name": "ripple", "type": ["boolean", "object"], "default": true, - "source": "rippleable" + "source": "rippleable", + "doc": "Applies the [v-ripple](/directives/ripple) directive." }, { "name": "rules", "type": "array", "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`" }, { "name": "success", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual success state" }, { "name": "successMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a success state and passes through custom success messages." }, { "name": "trueValue", "type": "any", "default": "undefined", - "source": "selectable" + "source": "selectable", + "doc": "Sets value for truthy state" }, { "name": "validateOnBlur", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Delays validation until blur event" }, { "name": "value", "type": "any", - "source": "v-input" + "source": "v-input", + "doc": "Controls whether the component is visible or hidden." }, { "name": "valueComparator", "type": "function", "default": "null", - "source": "comparable" + "source": "comparable", + "doc": "Apply a custom value comparator function" } ], "mixins": [ @@ -16283,7 +18089,8 @@ { "name": "label" } - ] + ], + "doc": "The v-switch component provides a toggle switch for boolean input with on/off states." }, "v-system-bar": { "props": [ @@ -16291,58 +18098,68 @@ "name": "absolute", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Applies **position: absolute** to the component." }, { "name": "app", "type": "boolean", "default": "false", - "source": "applicationable" + "source": "applicationable", + "doc": "Designates the component as part of the application layout. Used for dynamically adjusting content sizing. Components using this prop should reside **outside** of `v-main` component to function properly. You can find more information about layouts on the [application page](/components/application). **Note:** this prop automatically applies **position: fixed** to the layout element. You can overwrite this functionality by using the `absolute` prop" }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "fixed", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Applies **position: fixed** to the component." }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "v-system-bar" + "source": "v-system-bar", + "doc": "Sets the height for the component." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "lightsOut", "type": "boolean", "default": "false", - "source": "v-system-bar" + "source": "v-system-bar", + "doc": "Reduces the system bar opacity." }, { "name": "window", "type": "boolean", "default": "false", - "source": "v-system-bar" + "source": "v-system-bar", + "doc": "Increases the system bar height to 32px (24px default)." } ], - "mixins": ["applicationable", "positionable", "colorable", "themeable"] + "mixins": ["applicationable", "positionable", "colorable", "themeable"], + "doc": "The v-system-bar component displays system-level information at the very top of an application." }, "v-tabs": { "props": [ @@ -16350,79 +18167,92 @@ "name": "activeClass", "type": "string", "default": "undefined", - "source": "v-tabs" + "source": "v-tabs", + "doc": "The **active-class** applied to children when they are activated." }, { "name": "alignWithTitle", "type": "boolean", "default": "false", - "source": "v-tabs" + "source": "v-tabs", + "doc": "Make `v-tabs` lined up with the toolbar title" }, { "name": "backgroundColor", "type": "string", "default": "undefined", - "source": "v-tabs" + "source": "v-tabs", + "doc": "Changes the background color of the component." }, { "name": "centerActive", "type": "boolean", "default": "false", - "source": "v-tabs" + "source": "v-tabs", + "doc": "Forces the selected tab to be centered" }, { "name": "centered", "type": "boolean", "default": "false", - "source": "v-tabs" + "source": "v-tabs", + "doc": "Centers the tabs" }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "fixedTabs", "type": "boolean", "default": "false", - "source": "v-tabs" + "source": "v-tabs", + "doc": "`v-tabs-item` min-width 160px, max-width 360px" }, { "name": "grow", "type": "boolean", "default": "false", - "source": "v-tabs" + "source": "v-tabs", + "doc": "Force `v-tab`'s to take up all available space" }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "v-tabs" + "source": "v-tabs", + "doc": "Sets the height of the tabs bar" }, { "name": "hideSlider", "type": "boolean", "default": "false", - "source": "v-tabs" + "source": "v-tabs", + "doc": "Hide's the generated `v-tabs-slider`" }, { "name": "iconsAndText", "type": "boolean", "default": "false", - "source": "v-tabs" + "source": "v-tabs", + "doc": "Will stack icon and text vertically" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "mobileBreakPoint", @@ -16434,55 +18264,64 @@ "name": "nextIcon", "type": "string", "default": "'$next'", - "source": "v-tabs" + "source": "v-tabs", + "doc": "Right pagination icon" }, { "name": "optional", "type": "boolean", "default": "false", - "source": "v-tabs" + "source": "v-tabs", + "doc": "Does not require an active item. Useful when using `v-tab` as a `router-link`" }, { "name": "prevIcon", "type": "string", "default": "'$prev'", - "source": "v-tabs" + "source": "v-tabs", + "doc": "Left pagination icon" }, { "name": "right", "type": "boolean", "default": "false", - "source": "v-tabs" + "source": "v-tabs", + "doc": "Aligns tabs to the right" }, { "name": "showArrows", "type": "boolean", "default": "false", - "source": "v-tabs" + "source": "v-tabs", + "doc": "Show pagination arrows if the tab items overflow their container. For mobile devices, arrows will only display when using this prop." }, { "name": "sliderColor", "type": "string", "default": "undefined", - "source": "v-tabs" + "source": "v-tabs", + "doc": "Changes the background color of an auto-generated `v-tabs-slider`" }, { "name": "sliderSize", "type": ["number", "string"], "default": 2, - "source": "v-tabs" + "source": "v-tabs", + "doc": "Changes the size of the slider, **height** for horizontal, **width** for vertical." }, { "name": "value", "type": "any", "default": "undefined", - "source": "proxyable" + "source": "proxyable", + "doc": "Controls whether the component is visible or hidden." }, { "name": "vertical", "type": "boolean", "default": "false", - "source": "v-tabs" + "source": "v-tabs", + "doc": "Stacks tabs on top of each other vertically." } ], "mixins": ["colorable", "proxyable", "themeable"], @@ -16496,98 +18335,114 @@ { "name": "default" } - ] + ], + "doc": "The v-tabs component is used for organizing content into different views where only one is visible at a time." }, "v-tab": { "props": [ { "name": "activeClass", "type": "string", - "source": "routable" + "source": "routable", + "doc": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation." }, { "name": "append", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Setting **append** prop always appends the relative path to the current path. You can find more information about the [**append** prop](https://router.vuejs.org/api/#append) on the vue-router documentation." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Removes the ability to click or target the component." }, { "name": "exact", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Exactly match the link. Without this, '/' will match every route. You can find more information about the [**exact** prop](https://router.vuejs.org/api/#exact) on the vue-router documentation." }, { "name": "exactActiveClass", "type": "string", "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Configure the active CSS class applied when the link is active with exact match. You can find more information about the [**exact-active-class** prop](https://router.vuejs.org/api/#exact-active-class) on the vue-router documentation." }, { "name": "href", "type": ["string", "object"], "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Designates the component as anchor and applies the **href** attribute." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "link", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Designates that the component is a link. This is automatic when using the **href** or **to** prop." }, { "name": "nuxt", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Specifies the link is a `nuxt-link`. For use with the [nuxt framework](https://nuxtjs.org/api/components-nuxt-link/)." }, { "name": "replace", "type": "boolean", "default": "false", - "source": "routable" + "source": "routable", + "doc": "Setting **replace** prop will call `router.replace()` instead of `router.push()` when clicked, so the navigation will not leave a history record. You can find more information about the [**replace** prop](https://router.vuejs.org/api/#replace) on the vue-router documentation." }, { "name": "ripple", "type": ["boolean", "object"], "default": true, - "source": "routable" + "source": "routable", + "doc": "Applies the [v-ripple](/directives/ripple) directive." }, { "name": "tag", "type": "string", "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Specify a custom tag used on the root element." }, { "name": "target", "type": "string", "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Designates the target attribute. This should only be applied when using the **href** prop." }, { "name": "to", "type": ["string", "object"], "default": "undefined", - "source": "routable" + "source": "routable", + "doc": "Denotes the target route of the link. You can find more information about the [**to** prop](https://router.vuejs.org/api/#to) on the vue-router documentation." } ], "mixins": ["routable", "groupable", "themeable"], @@ -16609,32 +18464,37 @@ { "name": "default" } - ] + ], + "doc": "A single tab within a v-tabs component that users click to switch views." }, "v-tab-item": { "props": [ { "name": "activeClass", "type": "string", - "source": "groupable" + "source": "groupable", + "doc": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "groupable" + "source": "groupable", + "doc": "Removes the ability to click or target the component." }, { "name": "eager", "type": "boolean", "default": "false", - "source": "bootable" + "source": "bootable", + "doc": "Will force the components content to render on mounted. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO." }, { "name": "id", "type": "string", "default": "undefined", - "source": "v-tab-item" + "source": "v-tab-item", + "doc": "Sets the DOM id on the component" }, { "name": "reverseTransition", @@ -16646,13 +18506,15 @@ "name": "transition", "type": ["boolean", "string"], "default": "undefined", - "source": "v-window-item" + "source": "v-window-item", + "doc": "Sets the component transition. Can be one of the [built in transitions](/styles/transitions) or one your own." }, { "name": "value", "type": "any", "default": "undefined", - "source": "v-window-item" + "source": "v-window-item", + "doc": "Sets the value of the tab. If not provided, the index will be used." } ], "mixins": ["bootable", "groupable"], @@ -16660,7 +18522,8 @@ { "name": "default" } - ] + ], + "doc": "The content panel associated with a tab, shown when the tab is active." }, "v-tabs-items": { "props": [ @@ -16668,7 +18531,8 @@ "name": "activeClass", "type": "string", "default": "'v-window-item--active'", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation." }, { "name": "continuous", @@ -16680,13 +18544,15 @@ "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "mandatory", @@ -16698,13 +18564,15 @@ "name": "max", "type": ["number", "string"], "default": "undefined", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Sets a maximum number of selections that can be made." }, { "name": "multiple", "type": "boolean", "default": "false", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Changes select to multiple. Accepts array for value" }, { "name": "nextIcon", @@ -16722,7 +18590,8 @@ "name": "reverse", "type": "boolean", "default": "false", - "source": "v-window" + "source": "v-window", + "doc": "Reverses the input orientation" }, { "name": "showArrows", @@ -16752,7 +18621,8 @@ "name": "value", "type": "any", "default": "undefined", - "source": "proxyable" + "source": "proxyable", + "doc": "Controls whether the component is visible or hidden." }, { "name": "vertical", @@ -16772,7 +18642,8 @@ { "name": "default" } - ] + ], + "doc": "A container for v-tab-item components." }, "v-tabs-slider": { "props": [ @@ -16780,10 +18651,12 @@ "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." } ], - "mixins": ["colorable"] + "mixins": ["colorable"], + "doc": "A sliding indicator that shows which tab is currently active." }, "v-textarea": { "props": [ @@ -16791,19 +18664,22 @@ "name": "appendIcon", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Appends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "appendOuterIcon", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Appends an icon to the outside the component's input, uses same syntax as `v-icon`" }, { "name": "autoGrow", "type": "boolean", "default": "false", - "source": "v-textarea" + "source": "v-textarea", + "doc": "Automatically grow the textarea depending on amount of text" }, { "name": "autofocus", @@ -16815,31 +18691,36 @@ "name": "backgroundColor", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Changes the background-color of the input" }, { "name": "clearIcon", "type": "string", "default": "'$clear'", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Applied when using **clearable** and the input is dirty" }, { "name": "clearable", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Add input clear functionality, default icon is Material Design Icons **mdi-clear**" }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "counter", "type": ["boolean", "number", "string"], "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation." }, { "name": "counterValue", @@ -16851,224 +18732,261 @@ "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Reduces the input height" }, { "name": "disabled", "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Removes the ability to click or target the component." }, { "name": "error", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual error state" }, { "name": "errorCount", "type": ["number", "string"], "default": 1, - "source": "validatable" + "source": "validatable", + "doc": "The total number of errors that should display at once" }, { "name": "errorMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the **rules** prop. This field will not trigger validation" }, { "name": "filled", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Applies the alternate filled input style" }, { "name": "flat", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Removes elevation (shadow) added to element when using the **solo** or **solo-inverted** props" }, { "name": "fullWidth", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Forces 100% width" }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Sets the height for the component." }, { "name": "hideDetails", "type": ["boolean", "string"], "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hides hint and validation errors. When set to `auto` messages will be rendered only if there's a message (hint, error message, counter value etc) to display" }, { "name": "hint", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hint text" }, { "name": "id", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Sets the DOM id on the component" }, { "name": "label", "type": "string", - "source": "v-input" + "source": "v-input", + "doc": "Sets input label" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "loaderHeight", "type": ["number", "string"], "default": 2, - "source": "loadable" + "source": "loadable", + "doc": "Specifies the height of the loader" }, { "name": "loading", "type": ["boolean", "string"], "default": false, - "source": "v-input" + "source": "v-input", + "doc": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color" }, { "name": "messages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Displays a list of messages or message if using a string" }, { "name": "noResize", "type": "boolean", "default": "false", - "source": "v-textarea" + "source": "v-textarea", + "doc": "Remove resize handle" }, { "name": "outlined", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Applies the outlined style to the input" }, { "name": "persistentHint", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Forces hint to always be visible" }, { "name": "placeholder", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Sets the input's placeholder text" }, { "name": "prefix", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Displays prefix text" }, { "name": "prependIcon", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Prepends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "prependInnerIcon", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Prepends an icon inside the component's input, uses the same syntax as `v-icon`" }, { "name": "readonly", "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Puts input in readonly state" }, { "name": "reverse", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Reverses the input orientation" }, { "name": "rounded", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Designates the **border-radius** applied to the component. You can find more information on the [Border Radius page](/styles/border-radius)." }, { "name": "rowHeight", "type": ["number", "string"], "default": 24, - "source": "v-textarea" + "source": "v-textarea", + "doc": "Height value for each row. Requires the use of the **auto-grow** prop." }, { "name": "rows", "type": ["number", "string"], "default": 5, - "source": "v-textarea" + "source": "v-textarea", + "doc": "Default row count" }, { "name": "rules", "type": "array", "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`" }, { "name": "shaped", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Round if `outlined` and increase `border-radius` if `filled`. Must be used with either `outlined` or `filled`" }, { "name": "singleLine", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Label does not move on focus/dirty" }, { "name": "solo", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Changes the style of the input" }, { "name": "soloInverted", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Reduces element opacity until focused" }, { "name": "success", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual success state" }, { "name": "successMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a success state and passes through custom success messages." }, { "name": "suffix", @@ -17086,12 +19004,14 @@ "name": "validateOnBlur", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Delays validation until blur event" }, { "name": "value", "type": "any", - "source": "v-input" + "source": "v-input", + "doc": "Controls whether the component is visible or hidden." } ], "mixins": [ @@ -17213,7 +19133,8 @@ "name": "progress", "source": "v-text-field" } - ] + ], + "doc": "The v-textarea component is a multi-line text input for collecting larger amounts of text from users." }, "v-text-field": { "props": [ @@ -17221,49 +19142,57 @@ "name": "appendIcon", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Appends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "appendOuterIcon", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Appends an icon to the outside the component's input, uses same syntax as `v-icon`" }, { "name": "autofocus", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Enables autofocus" }, { "name": "backgroundColor", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Changes the background-color of the input" }, { "name": "clearIcon", "type": "string", "default": "'$clear'", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Applied when using **clearable** and the input is dirty" }, { "name": "clearable", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Add input clear functionality, default icon is Material Design Icons **mdi-clear**" }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "counter", "type": ["boolean", "number", "string"], "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Creates counter for input length; if no number is specified, it defaults to 25. Does not apply any validation." }, { "name": "counterValue", @@ -17275,229 +19204,267 @@ "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. This will default the components color to _white_ unless you've configured your [application theme](/customization/theme) to **dark** or if you are using the **color** prop on the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Reduces the input height" }, { "name": "disabled", "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Removes the ability to click or target the component." }, { "name": "error", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual error state" }, { "name": "errorCount", "type": ["number", "string"], "default": 1, - "source": "validatable" + "source": "validatable", + "doc": "The total number of errors that should display at once" }, { "name": "errorMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the **rules** prop. This field will not trigger validation" }, { "name": "filled", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Applies the alternate filled input style" }, { "name": "flat", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Removes elevation (shadow) added to element when using the **solo** or **solo-inverted** props" }, { "name": "fullWidth", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Designates input type as full-width" }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Sets the height for the component." }, { "name": "hideDetails", "type": ["boolean", "string"], "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hides hint and validation errors. When set to `auto` messages will be rendered only if there's a message (hint, error message, counter value etc) to display" }, { "name": "hint", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Hint text" }, { "name": "id", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Sets the DOM id on the component" }, { "name": "label", "type": "string", - "source": "v-input" + "source": "v-input", + "doc": "Sets input label" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "loaderHeight", "type": ["number", "string"], "default": 2, - "source": "loadable" + "source": "loadable", + "doc": "Specifies the height of the loader" }, { "name": "loading", "type": ["boolean", "string"], "default": false, - "source": "v-input" + "source": "v-input", + "doc": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color" }, { "name": "messages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Displays a list of messages or message if using a string" }, { "name": "outlined", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Applies the outlined style to the input" }, { "name": "persistentHint", "type": "boolean", "default": "false", - "source": "v-input" + "source": "v-input", + "doc": "Forces hint to always be visible" }, { "name": "placeholder", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Sets the input\u2019s placeholder text" }, { "name": "prefix", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Displays prefix text" }, { "name": "prependIcon", "type": "string", "default": "undefined", - "source": "v-input" + "source": "v-input", + "doc": "Prepends an icon to the component, uses the same syntax as `v-icon`" }, { "name": "prependInnerIcon", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Prepends an icon inside the component's input, uses the same syntax as `v-icon`" }, { "name": "readonly", "type": "boolean", "default": false, "source": "validatable", - "value": "boolean" + "value": "boolean", + "doc": "Puts input in readonly state" }, { "name": "reverse", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Reverses the input orientation" }, { "name": "rounded", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Adds a border radius to the input" }, { "name": "rules", "type": "array", "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Accepts a mixed array of types `function`, `boolean` and `string`. Functions pass an input value as an argument and must return either `true` / `false` or a `string` containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) `false` or is a `string`" }, { "name": "shaped", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Round if `outlined` and increase `border-radius` if `filled`. Must be used with either `outlined` or `filled`" }, { "name": "singleLine", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Label does not move on focus/dirty" }, { "name": "solo", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Changes the style of the input" }, { "name": "soloInverted", "type": "boolean", "default": "false", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Reduces element opacity until focused" }, { "name": "success", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a manual success state" }, { "name": "successMessages", "type": ["string", "array"], "default": [], - "source": "validatable" + "source": "validatable", + "doc": "Puts the input in a success state and passes through custom success messages." }, { "name": "suffix", "type": "string", "default": "undefined", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Displays suffix text" }, { "name": "type", "type": "string", "default": "'text'", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Sets input type" }, { "name": "validateOnBlur", "type": "boolean", "default": "false", - "source": "validatable" + "source": "validatable", + "doc": "Delays validation until blur event" }, { "name": "value", "type": "any", - "source": "v-input" + "source": "v-input", + "doc": "Controls whether the component is visible or hidden." } ], "mixins": [ @@ -17604,7 +19571,8 @@ }, { "name": "append-outer", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Adds an item outside the input and after input content" }, { "name": "label", @@ -17612,13 +19580,15 @@ }, { "name": "prepend-inner", - "source": "v-text-field" + "source": "v-text-field", + "doc": "Adds an item inside the input and before input content" }, { "name": "progress", "source": "v-text-field" } - ] + ], + "doc": "The v-text-field component is a single-line text input used in forms and dialogs." }, "v-theme-provider": { "props": [ @@ -17626,22 +19596,26 @@ "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "root", "type": "boolean", "default": "false", - "source": "v-theme-provider" + "source": "v-theme-provider", + "doc": "Use the current value of `$vuetify.theme.dark` as opposed to the provided one." } ], - "mixins": [] + "mixins": [], + "doc": "The v-theme-provider component allows you to dynamically change theme (light/dark) for its children." }, "v-timeline": { "props": [ @@ -17649,31 +19623,36 @@ "name": "alignTop", "type": "boolean", "default": "false", - "source": "v-timeline" + "source": "v-timeline", + "doc": "Align caret and dot of timeline items to the top" }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-timeline" + "source": "v-timeline", + "doc": "Hide opposite slot content, and position all items to one side of timeline" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "reverse", "type": "boolean", "default": "false", - "source": "v-timeline" + "source": "v-timeline", + "doc": "Reverse direction of timeline items" } ], "mixins": ["themeable"], @@ -17681,7 +19660,8 @@ { "name": "default" } - ] + ], + "doc": "The v-timeline component displays a list of events in chronological order along a vertical line." }, "v-timeline-item": { "props": [ @@ -17689,81 +19669,95 @@ "name": "color", "type": "string", "default": "'primary'", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "fillDot", "type": "boolean", "default": "false", - "source": "v-timeline-item" + "source": "v-timeline-item", + "doc": "Remove padding from dot container" }, { "name": "hideDot", "type": "boolean", "default": "false", - "source": "v-timeline-item" + "source": "v-timeline-item", + "doc": "Hide display of timeline dot" }, { "name": "icon", "type": "string", "default": "undefined", - "source": "v-timeline-item" + "source": "v-timeline-item", + "doc": "Specify icon for dot container" }, { "name": "iconColor", "type": "string", "default": "undefined", - "source": "v-timeline-item" + "source": "v-timeline-item", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "large", "type": "boolean", "default": "false", - "source": "v-timeline-item" + "source": "v-timeline-item", + "doc": "Large size dot" }, { "name": "left", "type": "boolean", "default": "false", - "source": "v-timeline-item" + "source": "v-timeline-item", + "doc": "Explicitly set the item to a left orientation" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "right", "type": "boolean", "default": "false", - "source": "v-timeline-item" + "source": "v-timeline-item", + "doc": "Explicitly set the item to a right orientation" }, { "name": "small", "type": "boolean", "default": "false", - "source": "v-timeline-item" + "source": "v-timeline-item", + "doc": "Small size dot" } ], "mixins": ["colorable", "themeable"], "slots": [ { - "name": "icon" + "name": "icon", + "doc": "Used to customize the icon inside the timeline item's dot" }, { - "name": "opposite" + "name": "opposite", + "doc": "Used to customize the opposite side of timeline items" }, { "name": "default" } - ] + ], + "doc": "A single event item within a v-timeline component." }, "v-time-picker": { "props": [ @@ -17771,121 +19765,141 @@ "name": "allowedHours", "type": ["function", "array"], "default": "undefined", - "source": "v-time-picker" + "source": "v-time-picker", + "doc": "Restricts which hours can be selected" }, { "name": "allowedMinutes", "type": ["function", "array"], "default": "undefined", - "source": "v-time-picker" + "source": "v-time-picker", + "doc": "Restricts which minutes can be selected" }, { "name": "allowedSeconds", "type": ["function", "array"], "default": "undefined", - "source": "v-time-picker" + "source": "v-time-picker", + "doc": "Restricts which seconds can be selected" }, { "name": "ampmInTitle", "type": "boolean", "default": "false", - "source": "v-time-picker" + "source": "v-time-picker", + "doc": "Place AM/PM switch in title, not near the clock." }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "v-time-picker" + "source": "v-time-picker", + "doc": "disables picker" }, { "name": "format", "type": "string", "default": "'ampm'", - "source": "v-time-picker" + "source": "v-time-picker", + "doc": "Defines the format of a time displayed in picker. Available options are `ampm` and `24hr`." }, { "name": "fullWidth", "type": "boolean", "default": "false", - "source": "picker" + "source": "picker", + "doc": "Forces 100% width" }, { "name": "headerColor", "type": "string", "default": "undefined", - "source": "picker" + "source": "picker", + "doc": "Defines the header color. If not specified it will use the color defined by color prop or the default picker color" }, { "name": "landscape", "type": "boolean", "default": "false", - "source": "picker" + "source": "picker", + "doc": "Orients picker horizontal" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "max", "type": "string", "default": "undefined", - "source": "v-time-picker" + "source": "v-time-picker", + "doc": "Maximum allowed time" }, { "name": "min", "type": "string", "default": "undefined", - "source": "v-time-picker" + "source": "v-time-picker", + "doc": "Minimum allowed time" }, { "name": "noTitle", "type": "boolean", "default": "false", - "source": "picker" + "source": "picker", + "doc": "Hide the picker title" }, { "name": "readonly", "type": "boolean", "default": "false", - "source": "v-time-picker" + "source": "v-time-picker", + "doc": "Puts picker in readonly state" }, { "name": "scrollable", "type": "boolean", "default": "false", - "source": "v-time-picker" + "source": "v-time-picker", + "doc": "Allows changing hour/minute with mouse scroll" }, { "name": "useSeconds", "type": "boolean", "default": "false", - "source": "v-time-picker" + "source": "v-time-picker", + "doc": "Toggles the use of seconds in picker" }, { "name": "value", "type": "any", "default": "undefined", - "source": "v-time-picker" + "source": "v-time-picker", + "doc": "Time picker model (ISO 8601 format, 24hr hh:mm)" }, { "name": "width", "type": ["number", "string"], "default": 290, - "source": "picker" + "source": "picker", + "doc": "Width of the picker" } ], "mixins": ["picker", "colorable", "themeable", "colorable", "colorable"], @@ -17917,9 +19931,11 @@ ], "slots": [ { - "name": "default" + "name": "default", + "doc": "Displayed below the clock, can be used for example for adding action button (`OK` and `Cancel`)" } - ] + ], + "doc": "The v-time-picker component allows users to select a time from a clock interface." }, "v-time-picker-clock": { "props": [ @@ -17939,19 +19955,22 @@ "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "v-time-picker-clock" + "source": "v-time-picker-clock", + "doc": "Removes the ability to click or target the component." }, { "name": "double", @@ -17969,13 +19988,15 @@ "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "max", "type": "number", "default": "undefined", - "source": "v-time-picker-clock" + "source": "v-time-picker-clock", + "doc": "Sets a maximum number of selections that can be made." }, { "name": "min", @@ -17987,7 +20008,8 @@ "name": "readonly", "type": "boolean", "default": "false", - "source": "v-time-picker-clock" + "source": "v-time-picker-clock", + "doc": "Puts input in readonly state" }, { "name": "rotate", @@ -17999,7 +20021,8 @@ "name": "scrollable", "type": "boolean", "default": "false", - "source": "v-time-picker-clock" + "source": "v-time-picker-clock", + "doc": "Allows the use of the mouse wheel in the picker" }, { "name": "step", @@ -18011,10 +20034,12 @@ "name": "value", "type": "number", "default": "undefined", - "source": "v-time-picker-clock" + "source": "v-time-picker-clock", + "doc": "Controls whether the component is visible or hidden." } ], - "mixins": ["colorable", "themeable"] + "mixins": ["colorable", "themeable"], + "doc": "The clock face interface of the time picker." }, "v-time-picker-title": { "props": [ @@ -18034,13 +20059,15 @@ "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "v-time-picker-title" + "source": "v-time-picker-title", + "doc": "Removes the ability to click or target the component." }, { "name": "hour", @@ -18064,7 +20091,8 @@ "name": "readonly", "type": "boolean", "default": "false", - "source": "v-time-picker-title" + "source": "v-time-picker-title", + "doc": "Puts input in readonly state" }, { "name": "second", @@ -18085,7 +20113,8 @@ "source": "v-time-picker-title" } ], - "mixins": ["colorable", "colorable"] + "mixins": ["colorable", "colorable"], + "doc": "The title/display area of the time picker showing the selected time." }, "v-toolbar": { "props": [ @@ -18093,156 +20122,182 @@ "name": "absolute", "type": "boolean", "default": "false", - "source": "v-toolbar" + "source": "v-toolbar", + "doc": "Applies position: absolute to the component." }, { "name": "bottom", "type": "boolean", "default": "false", - "source": "v-toolbar" + "source": "v-toolbar", + "doc": "Aligns the component towards the bottom." }, { "name": "collapse", "type": "boolean", "default": "false", - "source": "v-toolbar" + "source": "v-toolbar", + "doc": "Puts the toolbar into a collapsed state reducing its maximum width." }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-toolbar" + "source": "v-toolbar", + "doc": "Reduces the height of the toolbar content to 48px (96px when using the **prominent** prop)." }, { "name": "elevation", "type": ["number", "string"], "default": "undefined", - "source": "elevatable" + "source": "elevatable", + "doc": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)." }, { "name": "extended", "type": "boolean", "default": "false", - "source": "v-toolbar" + "source": "v-toolbar", + "doc": "Use this prop to increase the height of the toolbar _without_ using the `extension` slot for adding content. May be used in conjunction with the **extension-height** prop, and any of the other props that affect the height of the toolbar, e.g. **prominent**, **dense**, etc., **WITH THE EXCEPTION** of **height**." }, { "name": "extensionHeight", "type": ["number", "string"], "default": 48, - "source": "v-toolbar" + "source": "v-toolbar", + "doc": "Specify an explicit height for the `extension` slot. " }, { "name": "flat", "type": "boolean", "default": "false", - "source": "v-toolbar" + "source": "v-toolbar", + "doc": "Removes the toolbar's box-shadow." }, { "name": "floating", "type": "boolean", "default": "false", - "source": "v-toolbar" + "source": "v-toolbar", + "doc": "Applies **display: inline-flex** to the component." }, { "name": "height", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Designates a specific height for the toolbar. Overrides the heights imposed by other props, e.g. **prominent**, **dense**, **extended**, etc." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "maxHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum height for the component." }, { "name": "maxWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the maximum width for the component." }, { "name": "minHeight", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum height for the component." }, { "name": "minWidth", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the minimum width for the component." }, { "name": "prominent", "type": "boolean", "default": "false", - "source": "v-toolbar" + "source": "v-toolbar", + "doc": "Increases the height of the toolbar content to 128px." }, { "name": "short", "type": "boolean", "default": "false", - "source": "v-toolbar" + "source": "v-toolbar", + "doc": "Reduce the height of the toolbar content to 56px (112px when using the **prominent** prop)." }, { "name": "src", "type": ["string", "object"], "default": "undefined", - "source": "v-toolbar" + "source": "v-toolbar", + "doc": "Specifies a [v-img](/components/images) as the component's background." }, { "name": "tag", "type": "string", "default": "'header'", - "source": "v-sheet" + "source": "v-sheet", + "doc": "Specify a custom tag used on the root element." }, { "name": "tile", "type": "boolean", "default": "true", - "source": "v-sheet" + "source": "v-sheet", + "doc": "Removes the component's **border-radius**." }, { "name": "width", "type": ["number", "string"], "default": "undefined", - "source": "measurable" + "source": "measurable", + "doc": "Sets the width for the component." } ], "mixins": ["colorable", "elevatable", "measurable", "themeable"], "slots": [ { - "name": "extension" + "name": "extension", + "doc": "Slot positioned directly under the main content of the toolbar. Height of this slot can be set explicitly with the **extension-height** prop. If this slot has no content, the **extended** prop may be used instead." }, { "name": "img", "props": { "props": "{ height: string, src: string | srcObject }" - } + }, + "doc": "Expects the [v-img](/components/images) component. Scoped **props** should be applied with `v-bind=\"props\"`." }, { "name": "default" } - ] + ], + "doc": "The v-toolbar component provides a flexible container for grouping actions, navigation, and content." }, "v-toolbar-items": { "props": [], @@ -18251,7 +20306,8 @@ { "name": "default" } - ] + ], + "doc": "A container for toolbar items that provides proper spacing." }, "v-toolbar-title": { "props": [], @@ -18260,7 +20316,8 @@ { "name": "default" } - ] + ], + "doc": "The title element of a toolbar." }, "v-tooltip": { "props": [ @@ -18268,205 +20325,239 @@ "name": "absolute", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Applies **position: absolute** to the component." }, { "name": "activator", "type": "any", "default": "undefined", - "source": "activatable" + "source": "activatable", + "doc": "Designate a custom activator when the `activator` slot is not used. String can be any valid querySelector and Object can be any valid Node." }, { "name": "allowOverflow", "type": "boolean", "default": "false", - "source": "menuable" + "source": "menuable", + "doc": "Removes overflow re-positioning for the content" }, { "name": "attach", "type": "any", "default": false, - "source": "detachable" + "source": "detachable", + "doc": "Specifies which DOM element that this component should detach to. String can be any valid querySelector and Object can be any valid Node. This will attach to the root `v-app` component by default." }, { "name": "bottom", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Aligns the component towards the bottom." }, { "name": "closeDelay", "type": ["number", "string"], "default": 0, - "source": "delayable" + "source": "delayable", + "doc": "Delay (in ms) after which menu closes (when open-on-hover prop is set to true)" }, { "name": "color", "type": "string", "default": "undefined", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "contentClass", "type": "string", "default": "undefined", - "source": "detachable" + "source": "detachable", + "doc": "Applies a custom class to the detached element. This is useful because the content is moved to the beginning of the `v-app` component (unless the **attach** prop is provided) and is not targetable by classes passed directly on the component." }, { "name": "dark", "type": "boolean", "default": "false", - "source": "menuable" + "source": "menuable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "activatable" + "source": "activatable", + "doc": "Disables the tooltip" }, { "name": "eager", "type": "boolean", "default": "false", - "source": "bootable" + "source": "bootable", + "doc": "Will force the components content to render on mounted. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO." }, { "name": "fixed", "type": "boolean", "default": "true", - "source": "positionable" + "source": "positionable", + "doc": "Applies **position: fixed** to the component." }, { "name": "internalActivator", "type": "boolean", "default": "false", - "source": "activatable" + "source": "activatable", + "doc": "Designates whether to use an internal activator" }, { "name": "left", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Aligns the component towards the left." }, { "name": "light", "type": "boolean", "default": "false", - "source": "menuable" + "source": "menuable", + "doc": "Applies the light theme variant to the component." }, { "name": "maxWidth", "type": ["number", "string"], "default": "auto", - "source": "menuable" + "source": "menuable", + "doc": "Sets the maximum width for the component." }, { "name": "minWidth", "type": ["number", "string"], "default": "undefined", - "source": "menuable" + "source": "menuable", + "doc": "Sets the minimum width for the component." }, { "name": "nudgeBottom", "type": ["number", "string"], "default": 0, - "source": "menuable" + "source": "menuable", + "doc": "Nudge the content to the bottom" }, { "name": "nudgeLeft", "type": ["number", "string"], "default": 0, - "source": "menuable" + "source": "menuable", + "doc": "Nudge the content to the left" }, { "name": "nudgeRight", "type": ["number", "string"], "default": 0, - "source": "menuable" + "source": "menuable", + "doc": "Nudge the content to the right" }, { "name": "nudgeTop", "type": ["number", "string"], "default": 0, - "source": "menuable" + "source": "menuable", + "doc": "Nudge the content to the top" }, { "name": "nudgeWidth", "type": ["number", "string"], "default": 0, - "source": "menuable" + "source": "menuable", + "doc": "Nudge the content width" }, { "name": "offsetOverflow", "type": "boolean", "default": "false", - "source": "menuable" + "source": "menuable", + "doc": "Causes the component to flip to the opposite side when repositioned due to overflow" }, { "name": "openDelay", "type": ["number", "string"], "default": 0, - "source": "delayable" + "source": "delayable", + "doc": "Delay (in ms) after which tooltip opens (when `open-on-hover` prop is set to **true**)" }, { "name": "openOnClick", "type": "boolean", "default": "false", - "source": "menuable" + "source": "menuable", + "doc": "Designates whether the tooltip should open on activator click" }, { "name": "openOnHover", "type": "boolean", "default": "true", - "source": "activatable" + "source": "activatable", + "doc": "Designates whether the tooltip should open on activator hover" }, { "name": "positionX", "type": "number", "default": "undefined", - "source": "menuable" + "source": "menuable", + "doc": "Used to position the content when not using an activator slot" }, { "name": "positionY", "type": "number", "default": "undefined", - "source": "menuable" + "source": "menuable", + "doc": "Used to position the content when not using an activator slot" }, { "name": "right", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Aligns the component towards the right." }, { "name": "tag", "type": "string", "default": "'span'", - "source": "v-tooltip" + "source": "v-tooltip", + "doc": "Specifies a custom tag for the activator wrapper" }, { "name": "top", "type": "boolean", "default": "false", - "source": "positionable" + "source": "positionable", + "doc": "Aligns the content towards the top." }, { "name": "transition", "type": "string", "default": "undefined", - "source": "v-tooltip" + "source": "v-tooltip", + "doc": "Sets the component transition. Can be one of the [built in transitions](/styles/transitions) or one your own." }, { "name": "value", "type": "any", "default": "undefined", - "source": "toggleable" + "source": "toggleable", + "doc": "Controls whether the component is visible or hidden." }, { "name": "zIndex", "type": "any", "default": "undefined", - "source": "menuable" + "source": "menuable", + "doc": "The z-index used for the component" } ], "mixins": [ @@ -18494,7 +20585,8 @@ { "name": "default" } - ] + ], + "doc": "The v-tooltip component displays contextual information when users hover over, focus on, or tap an element." }, "v-treeview": { "props": [ @@ -18502,199 +20594,232 @@ "name": "activatable", "type": "boolean", "default": "false", - "source": "v-treeview" + "source": "v-treeview", + "doc": "Allows user to mark a node as active by clicking on it" }, { "name": "active", "type": "array", "default": [], - "source": "v-treeview" + "source": "v-treeview", + "doc": "Syncable prop that allows one to control which nodes are active. The array consists of the `item-key` of each active item." }, { "name": "activeClass", "type": "string", "default": "'v-treeview-node--active'", - "source": "v-treeview" + "source": "v-treeview", + "doc": "The class applied to the node when active" }, { "name": "color", "type": "string", "default": "'primary'", - "source": "v-treeview" + "source": "v-treeview", + "doc": "Sets the color of the active node" }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "dense", "type": "boolean", "default": "false", - "source": "v-treeview" + "source": "v-treeview", + "doc": "Decreases the height of the items" }, { "name": "expandIcon", "type": "string", "default": "'$subgroup'", - "source": "v-treeview" + "source": "v-treeview", + "doc": "Icon used to indicate that a node can be expanded" }, { "name": "filter", "type": "function", "default": "null", - "source": "v-treeview" + "source": "v-treeview", + "doc": "Custom item filtering function. By default it will use case-insensitive search in item's label." }, { "name": "hoverable", "type": "boolean", "default": "false", - "source": "v-treeview" + "source": "v-treeview", + "doc": "Applies a hover class when mousing over nodes" }, { "name": "indeterminateIcon", "type": "string", "default": "'$checkboxIndeterminate'", - "source": "v-treeview" + "source": "v-treeview", + "doc": "Icon used when node is in an indeterminate state. Only visible when `selectable` is `true`." }, { "name": "itemChildren", "type": "string", "default": "'children'", - "source": "v-treeview" + "source": "v-treeview", + "doc": "Property on supplied `items` that contains its children" }, { "name": "itemDisabled", "type": "string", "default": "'disabled'", - "source": "v-treeview" + "source": "v-treeview", + "doc": "Property on supplied `items` that contains the disabled state of the item" }, { "name": "itemKey", "type": "string", "default": "'id'", - "source": "v-treeview" + "source": "v-treeview", + "doc": "Property on supplied `items` used to keep track of node state. The value of this property has to be unique among all items." }, { "name": "itemText", "type": "string", "default": "'name'", - "source": "v-treeview" + "source": "v-treeview", + "doc": "Property on supplied `items` that contains its label text" }, { "name": "items", "type": "array", "default": [], - "source": "v-treeview" + "source": "v-treeview", + "doc": "An array of items used to build the treeview" }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "loadChildren", "type": "function", "default": "null", - "source": "v-treeview" + "source": "v-treeview", + "doc": "A function used when dynamically loading children. If this prop is set, then the supplied function will be run if expanding an item that has a `item-children` property that is an empty array. Supports returning a Promise." }, { "name": "loadingIcon", "type": "string", "default": "'$loading'", - "source": "v-treeview" + "source": "v-treeview", + "doc": "Icon used when node is in a loading state" }, { "name": "multipleActive", "type": "boolean", "default": "false", - "source": "v-treeview" + "source": "v-treeview", + "doc": "When `true`, allows user to have multiple active nodes at the same time" }, { "name": "offIcon", "type": "string", "default": "'$checkboxOff'", - "source": "v-treeview" + "source": "v-treeview", + "doc": "Icon used when node is not selected. Only visible when `selectable` is `true`." }, { "name": "onIcon", "type": "string", "default": "'$checkboxOn'", - "source": "v-treeview" + "source": "v-treeview", + "doc": "Icon used when leaf node is selected or when a branch node is fully selected. Only visible when `selectable` is `true`." }, { "name": "open", "type": "array", "default": [], - "source": "v-treeview" + "source": "v-treeview", + "doc": "Syncable prop that allows one to control which nodes are open. The array consists of the `item-key` of each open item." }, { "name": "openAll", "type": "boolean", "default": "false", - "source": "v-treeview" + "source": "v-treeview", + "doc": "When `true` will cause all branch nodes to be opened when component is mounted" }, { "name": "openOnClick", "type": "boolean", "default": "false", - "source": "v-treeview" + "source": "v-treeview", + "doc": "When `true` will cause nodes to be opened by clicking anywhere on it, instead of only opening by clicking on expand icon. When using this prop with `activatable` you will be unable to mark nodes with children as active." }, { "name": "returnObject", "type": "boolean", "default": "false", - "source": "v-treeview" + "source": "v-treeview", + "doc": "When `true` will make `v-model`, `active.sync` and `open.sync` return the complete object instead of just the key" }, { "name": "rounded", "type": "boolean", "default": "false", - "source": "v-treeview" + "source": "v-treeview", + "doc": "Provides an alternative active style for `v-treeview` node. Only visible when `activatable` is `true` and should not be used in conjunction with the `shaped` prop." }, { "name": "search", "type": "string", "default": "undefined", - "source": "v-treeview" + "source": "v-treeview", + "doc": "The search model for filtering results" }, { "name": "selectable", "type": "boolean", "default": "false", - "source": "v-treeview" + "source": "v-treeview", + "doc": "Will render a checkbox next to each node allowing them to be selected" }, { "name": "selectedColor", "type": "string", "default": "'accent'", - "source": "v-treeview" + "source": "v-treeview", + "doc": "The color of the selection checkbox" }, { "name": "selectionType", "type": "string", "default": "'leaf'", - "source": "v-treeview" + "source": "v-treeview", + "doc": "Controls how the treeview selects nodes. There are two modes available: 'leaf' and 'independent'" }, { "name": "shaped", "type": "boolean", "default": "false", - "source": "v-treeview" + "source": "v-treeview", + "doc": "Provides an alternative active style for `v-treeview` node. Only visible when `activatable` is `true` and should not be used in conjunction with the `rounded` prop." }, { "name": "transition", "type": "boolean", "default": "false", - "source": "v-treeview" + "source": "v-treeview", + "doc": "Applies a transition when nodes are opened and closed" }, { "name": "value", "type": "array", "default": [], - "source": "v-treeview" + "source": "v-treeview", + "doc": "Allows one to control which nodes are selected. The array consists of the `item-key` of each selected item. Is used with `@input` event to allow for `v-model` binding." } ], "mixins": ["registrable-provide", "themeable"], @@ -18708,7 +20833,8 @@ "indeterminate": "boolean", "active": "boolean", "open": "boolean" - } + }, + "doc": "Appends content after label" }, { "name": "label", @@ -18719,7 +20845,8 @@ "indeterminate": "boolean", "active": "boolean", "open": "boolean" - } + }, + "doc": "Label content" }, { "name": "prepend", @@ -18730,7 +20857,8 @@ "indeterminate": "boolean", "active": "boolean", "open": "boolean" - } + }, + "doc": "Prepends content before label" } ], "functions": [ @@ -18752,7 +20880,8 @@ "name": "update:open", "value": "array" } - ] + ], + "doc": "The v-treeview component displays hierarchical data in a tree structure with expand/collapse functionality." }, "v-treeview-node": { "props": [ @@ -18760,130 +20889,152 @@ "name": "activatable", "type": "boolean", "default": "false", - "source": "v-treeview-node" + "source": "v-treeview-node", + "doc": "Allows user to mark a node as active by clicking on it" }, { "name": "activeClass", "type": "string", "default": "'v-treeview-node--active'", - "source": "v-treeview-node" + "source": "v-treeview-node", + "doc": "The class applied to the node when active" }, { "name": "color", "type": "string", "default": "'primary'", - "source": "colorable" + "source": "colorable", + "doc": "Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors)." }, { "name": "expandIcon", "type": "string", "default": "'$subgroup'", - "source": "v-treeview-node" + "source": "v-treeview-node", + "doc": "Icon used to indicate that a node can be expanded" }, { "name": "indeterminateIcon", "type": "string", "default": "'$checkboxIndeterminate'", - "source": "v-treeview-node" + "source": "v-treeview-node", + "doc": "Icon used when node is in an indeterminate state. Only visible when `selectable` is `true`." }, { "name": "item", "type": "object", "default": null, - "source": "v-treeview-node" + "source": "v-treeview-node", + "doc": "Item object used to build the node" }, { "name": "itemChildren", "type": "string", "default": "'children'", - "source": "v-treeview-node" + "source": "v-treeview-node", + "doc": "Property on supplied `items` that contains its children" }, { "name": "itemDisabled", "type": "string", "default": "'disabled'", - "source": "v-treeview-node" + "source": "v-treeview-node", + "doc": "Property on supplied `items` that contains the disabled state of the item" }, { "name": "itemKey", "type": "string", "default": "'id'", - "source": "v-treeview-node" + "source": "v-treeview-node", + "doc": "Property on supplied `items` used to keep track of node state. The value of this property has to be unique among all items." }, { "name": "itemText", "type": "string", "default": "'name'", - "source": "v-treeview-node" + "source": "v-treeview-node", + "doc": "Property on supplied `items` that contains its label text" }, { "name": "level", "type": "number", "default": "undefined", - "source": "v-treeview-node" + "source": "v-treeview-node", + "doc": "Property designating how deep the node is from the root of the treeview" }, { "name": "loadChildren", "type": "function", "default": "null", - "source": "v-treeview-node" + "source": "v-treeview-node", + "doc": "A function used when dynamically loading children. If this prop is set, then the supplied function will be run if expanding an item that has a `item-children` property that is an empty array. Supports returning a Promise." }, { "name": "loadingIcon", "type": "string", "default": "'$loading'", - "source": "v-treeview-node" + "source": "v-treeview-node", + "doc": "Icon used when node is in a loading state" }, { "name": "offIcon", "type": "string", "default": "'$checkboxOff'", - "source": "v-treeview-node" + "source": "v-treeview-node", + "doc": "Icon used when node is not selected. Only visible when `selectable` is `true`." }, { "name": "onIcon", "type": "string", "default": "'$checkboxOn'", - "source": "v-treeview-node" + "source": "v-treeview-node", + "doc": "Icon used when leaf node is selected or when a branch node is fully selected. Only visible when `selectable` is `true`." }, { "name": "openOnClick", "type": "boolean", "default": "false", - "source": "v-treeview-node" + "source": "v-treeview-node", + "doc": "When `true` will cause nodes to be opened by clicking anywhere on it, instead of only opening by clicking on expand icon. When using this prop with `activatable` you will be unable to mark nodes with children as active." }, { "name": "rounded", "type": "boolean", "default": "false", - "source": "v-treeview-node" + "source": "v-treeview-node", + "doc": "Provides an alternative active style for `v-treeview` node. Only visible when `activatable` is `true` and should not be used in conjunction with the `shaped` prop." }, { "name": "selectable", "type": "boolean", "default": "false", - "source": "v-treeview-node" + "source": "v-treeview-node", + "doc": "Will render a checkbox next to each node allowing them to be selected" }, { "name": "selectedColor", "type": "string", "default": "'accent'", - "source": "v-treeview-node" + "source": "v-treeview-node", + "doc": "The color of the selection checkbox" }, { "name": "shaped", "type": "boolean", "default": "false", - "source": "v-treeview-node" + "source": "v-treeview-node", + "doc": "Provides an alternative active style for `v-treeview` node. Only visible when `activatable` is `true` and should not be used in conjunction with the `rounded` prop." }, { "name": "transition", "type": "boolean", "default": "false", - "source": "v-treeview-node" + "source": "v-treeview-node", + "doc": "Applies a transition when nodes are opened and closed" } ], - "mixins": ["colorable", "registrable-inject"] + "mixins": ["colorable", "registrable-inject"], + "doc": "A single node within a v-treeview component." }, "v-window": { "props": [ @@ -18891,25 +21042,29 @@ "name": "activeClass", "type": "string", "default": "'v-window-item--active'", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation." }, { "name": "continuous", "type": "boolean", "default": "false", - "source": "v-window" + "source": "v-window", + "doc": "If `true`, window will \"wrap around\" from the last item to the first, and from the first item to the last" }, { "name": "dark", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html)." }, { "name": "light", "type": "boolean", "default": "false", - "source": "themeable" + "source": "themeable", + "doc": "Applies the light theme variant to the component." }, { "name": "mandatory", @@ -18921,43 +21076,50 @@ "name": "max", "type": ["number", "string"], "default": "undefined", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Sets a maximum number of selections that can be made." }, { "name": "multiple", "type": "boolean", "default": "false", - "source": "base-item-group" + "source": "base-item-group", + "doc": "Changes select to multiple. Accepts array for value" }, { "name": "nextIcon", "type": ["boolean", "string"], "default": "$next", - "source": "v-window" + "source": "v-window", + "doc": "Icon used for the \"next\" button if `show-arrows` is `true`" }, { "name": "prevIcon", "type": ["boolean", "string"], "default": "$prev", - "source": "v-window" + "source": "v-window", + "doc": "Icon used for the \"prev\" button if `show-arrows` is `true`" }, { "name": "reverse", "type": "boolean", "default": "false", - "source": "v-window" + "source": "v-window", + "doc": "Reverse the normal transition direction." }, { "name": "showArrows", "type": "boolean", "default": "false", - "source": "v-window" + "source": "v-window", + "doc": "Display the \"next\" and \"prev\" buttons" }, { "name": "showArrowsOnHover", "type": "boolean", "default": "false", - "source": "v-window" + "source": "v-window", + "doc": "Display the \"next\" and \"prev\" buttons on hover. `show-arrows` MUST ALSO be set." }, { "name": "touch", @@ -18967,25 +21129,29 @@ "example": { "left": "Function", "right": "Function" - } + }, + "doc": "Provide a custom **left** and **right** function when swiped left or right." }, { "name": "touchless", "type": "boolean", "default": "false", - "source": "v-window" + "source": "v-window", + "doc": "Disable touch support." }, { "name": "value", "type": "any", "default": "undefined", - "source": "proxyable" + "source": "proxyable", + "doc": "Controls whether the component is visible or hidden." }, { "name": "vertical", "type": "boolean", "default": "false", - "source": "v-window" + "source": "v-window", + "doc": "Uses a vertical transition when changing windows." } ], "mixins": ["proxyable", "themeable"], @@ -18999,44 +21165,51 @@ { "name": "default" } - ] + ], + "doc": "The v-window component provides a base for creating sliding window presentations like carousels and steppers." }, "v-window-item": { "props": [ { "name": "activeClass", "type": "string", - "source": "groupable" + "source": "groupable", + "doc": "Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation." }, { "name": "disabled", "type": "boolean", "default": "false", - "source": "groupable" + "source": "groupable", + "doc": "Prevents the item from becoming active when using the \"next\" and \"prev\" buttons or the `toggle` method" }, { "name": "eager", "type": "boolean", "default": "false", - "source": "bootable" + "source": "bootable", + "doc": "Will force the components content to render on mounted. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO." }, { "name": "reverseTransition", "type": ["boolean", "string"], "default": "undefined", - "source": "v-window-item" + "source": "v-window-item", + "doc": "Sets the reverse transition" }, { "name": "transition", "type": ["boolean", "string"], "default": "undefined", - "source": "v-window-item" + "source": "v-window-item", + "doc": "The transition used when the component progressing through items. Can be one of the [built in transitions](/styles/transitions) or one your own." }, { "name": "value", "type": "any", "default": "undefined", - "source": "v-window-item" + "source": "v-window-item", + "doc": "Controls whether the component is visible or hidden." } ], "mixins": ["bootable", "groupable"], @@ -19044,7 +21217,8 @@ { "name": "default" } - ] + ], + "doc": "A single panel/slide within a v-window component." }, "v-carousel-transition": { "props": [ @@ -19052,34 +21226,40 @@ "name": "group", "type": "boolean", "default": "false", - "source": "carousel-transition" + "source": "carousel-transition", + "doc": "Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group)" }, { "name": "hideOnLeave", "type": "boolean", "default": "false", - "source": "carousel-transition" + "source": "carousel-transition", + "doc": "Hides the leaving element (no exit animation)" }, { "name": "leaveAbsolute", "type": "boolean", "default": "false", - "source": "carousel-transition" + "source": "carousel-transition", + "doc": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))" }, { "name": "mode", "type": "string", "default": "undefined", - "source": "carousel-transition" + "source": "carousel-transition", + "doc": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition)." }, { "name": "origin", "type": "string", "default": "'top center 0'", - "source": "carousel-transition" + "source": "carousel-transition", + "doc": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)." } ], - "mixins": [] + "mixins": [], + "doc": "A transition component that provides carousel-style animation effects." }, "v-carousel-reverse-transition": { "props": [ @@ -19087,34 +21267,40 @@ "name": "group", "type": "boolean", "default": "false", - "source": "carousel-reverse-transition" + "source": "carousel-reverse-transition", + "doc": "Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group)" }, { "name": "hideOnLeave", "type": "boolean", "default": "false", - "source": "carousel-reverse-transition" + "source": "carousel-reverse-transition", + "doc": "Hides the leaving element (no exit animation)" }, { "name": "leaveAbsolute", "type": "boolean", "default": "false", - "source": "carousel-reverse-transition" + "source": "carousel-reverse-transition", + "doc": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))" }, { "name": "mode", "type": "string", "default": "undefined", - "source": "carousel-reverse-transition" + "source": "carousel-reverse-transition", + "doc": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition)." }, { "name": "origin", "type": "string", "default": "'top center 0'", - "source": "carousel-reverse-transition" + "source": "carousel-reverse-transition", + "doc": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)." } ], - "mixins": [] + "mixins": [], + "doc": "A transition component that provides reverse carousel-style animation effects." }, "v-tab-transition": { "props": [ @@ -19122,34 +21308,40 @@ "name": "group", "type": "boolean", "default": "false", - "source": "tab-transition" + "source": "tab-transition", + "doc": "Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group)" }, { "name": "hideOnLeave", "type": "boolean", "default": "false", - "source": "tab-transition" + "source": "tab-transition", + "doc": "Hides the leaving element (no exit animation)" }, { "name": "leaveAbsolute", "type": "boolean", "default": "false", - "source": "tab-transition" + "source": "tab-transition", + "doc": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))" }, { "name": "mode", "type": "string", "default": "undefined", - "source": "tab-transition" + "source": "tab-transition", + "doc": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition)." }, { "name": "origin", "type": "string", "default": "'top center 0'", - "source": "tab-transition" + "source": "tab-transition", + "doc": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)." } ], - "mixins": [] + "mixins": [], + "doc": "A transition component that provides tab-style animation effects." }, "v-tab-reverse-transition": { "props": [ @@ -19157,34 +21349,40 @@ "name": "group", "type": "boolean", "default": "false", - "source": "tab-reverse-transition" + "source": "tab-reverse-transition", + "doc": "Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group)" }, { "name": "hideOnLeave", "type": "boolean", "default": "false", - "source": "tab-reverse-transition" + "source": "tab-reverse-transition", + "doc": "Hides the leaving element (no exit animation)" }, { "name": "leaveAbsolute", "type": "boolean", "default": "false", - "source": "tab-reverse-transition" + "source": "tab-reverse-transition", + "doc": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))" }, { "name": "mode", "type": "string", "default": "undefined", - "source": "tab-reverse-transition" + "source": "tab-reverse-transition", + "doc": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition)." }, { "name": "origin", "type": "string", "default": "'top center 0'", - "source": "tab-reverse-transition" + "source": "tab-reverse-transition", + "doc": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)." } ], - "mixins": [] + "mixins": [], + "doc": "A transition component that provides reverse tab-style animation effects." }, "v-menu-transition": { "props": [ @@ -19192,34 +21390,40 @@ "name": "group", "type": "boolean", "default": "false", - "source": "menu-transition" + "source": "menu-transition", + "doc": "Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group)" }, { "name": "hideOnLeave", "type": "boolean", "default": "false", - "source": "menu-transition" + "source": "menu-transition", + "doc": "Hides the leaving element (no exit animation)" }, { "name": "leaveAbsolute", "type": "boolean", "default": "false", - "source": "menu-transition" + "source": "menu-transition", + "doc": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))" }, { "name": "mode", "type": "string", "default": "undefined", - "source": "menu-transition" + "source": "menu-transition", + "doc": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition)." }, { "name": "origin", "type": "string", "default": "'top center 0'", - "source": "menu-transition" + "source": "menu-transition", + "doc": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)." } ], - "mixins": [] + "mixins": [], + "doc": "A transition component that provides menu-style animation effects." }, "v-fab-transition": { "props": [ @@ -19227,34 +21431,40 @@ "name": "group", "type": "boolean", "default": "false", - "source": "fab-transition" + "source": "fab-transition", + "doc": "Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group)" }, { "name": "hideOnLeave", "type": "boolean", "default": "false", - "source": "fab-transition" + "source": "fab-transition", + "doc": "Hides the leaving element (no exit animation)" }, { "name": "leaveAbsolute", "type": "boolean", "default": "false", - "source": "fab-transition" + "source": "fab-transition", + "doc": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))" }, { "name": "mode", "type": "string", "default": "'out-in'", - "source": "fab-transition" + "source": "fab-transition", + "doc": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition)." }, { "name": "origin", "type": "string", "default": "'center center'", - "source": "fab-transition" + "source": "fab-transition", + "doc": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)." } ], - "mixins": [] + "mixins": [], + "doc": "A transition component that provides floating action button animation effects." }, "v-dialog-transition": { "props": [ @@ -19262,34 +21472,40 @@ "name": "group", "type": "boolean", "default": "false", - "source": "dialog-transition" + "source": "dialog-transition", + "doc": "Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group)" }, { "name": "hideOnLeave", "type": "boolean", "default": "false", - "source": "dialog-transition" + "source": "dialog-transition", + "doc": "Hides the leaving element (no exit animation)" }, { "name": "leaveAbsolute", "type": "boolean", "default": "false", - "source": "dialog-transition" + "source": "dialog-transition", + "doc": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))" }, { "name": "mode", "type": "string", "default": "undefined", - "source": "dialog-transition" + "source": "dialog-transition", + "doc": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition)." }, { "name": "origin", "type": "string", "default": "'top center 0'", - "source": "dialog-transition" + "source": "dialog-transition", + "doc": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)." } ], - "mixins": [] + "mixins": [], + "doc": "A transition component that provides dialog animation effects." }, "v-dialog-bottom-transition": { "props": [ @@ -19297,34 +21513,40 @@ "name": "group", "type": "boolean", "default": "false", - "source": "dialog-bottom-transition" + "source": "dialog-bottom-transition", + "doc": "Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group)" }, { "name": "hideOnLeave", "type": "boolean", "default": "false", - "source": "dialog-bottom-transition" + "source": "dialog-bottom-transition", + "doc": "Hides the leaving element (no exit animation)" }, { "name": "leaveAbsolute", "type": "boolean", "default": "false", - "source": "dialog-bottom-transition" + "source": "dialog-bottom-transition", + "doc": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))" }, { "name": "mode", "type": "string", "default": "undefined", - "source": "dialog-bottom-transition" + "source": "dialog-bottom-transition", + "doc": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition)." }, { "name": "origin", "type": "string", "default": "'top center 0'", - "source": "dialog-bottom-transition" + "source": "dialog-bottom-transition", + "doc": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)." } ], - "mixins": [] + "mixins": [], + "doc": "A transition component for dialogs that slide from the bottom." }, "v-fade-transition": { "props": [ @@ -19332,34 +21554,40 @@ "name": "group", "type": "boolean", "default": "false", - "source": "fade-transition" + "source": "fade-transition", + "doc": "Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group)" }, { "name": "hideOnLeave", "type": "boolean", "default": "false", - "source": "fade-transition" + "source": "fade-transition", + "doc": "Hides the leaving element (no exit animation)" }, { "name": "leaveAbsolute", "type": "boolean", "default": "false", - "source": "fade-transition" + "source": "fade-transition", + "doc": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))" }, { "name": "mode", "type": "string", "default": "undefined", - "source": "fade-transition" + "source": "fade-transition", + "doc": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition)." }, { "name": "origin", "type": "string", "default": "'top center 0'", - "source": "fade-transition" + "source": "fade-transition", + "doc": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)." } ], - "mixins": [] + "mixins": [], + "doc": "A transition component that provides fade in/out animation effects." }, "v-scale-transition": { "props": [ @@ -19367,34 +21595,40 @@ "name": "group", "type": "boolean", "default": "false", - "source": "scale-transition" + "source": "scale-transition", + "doc": "Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group)" }, { "name": "hideOnLeave", "type": "boolean", "default": "false", - "source": "scale-transition" + "source": "scale-transition", + "doc": "Hides the leaving element (no exit animation)" }, { "name": "leaveAbsolute", "type": "boolean", "default": "false", - "source": "scale-transition" + "source": "scale-transition", + "doc": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))" }, { "name": "mode", "type": "string", "default": "undefined", - "source": "scale-transition" + "source": "scale-transition", + "doc": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition)." }, { "name": "origin", "type": "string", "default": "'top center 0'", - "source": "scale-transition" + "source": "scale-transition", + "doc": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)." } ], - "mixins": [] + "mixins": [], + "doc": "A transition component that provides scale animation effects." }, "v-scroll-x-transition": { "props": [ @@ -19402,34 +21636,40 @@ "name": "group", "type": "boolean", "default": "false", - "source": "scroll-x-transition" + "source": "scroll-x-transition", + "doc": "Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group)" }, { "name": "hideOnLeave", "type": "boolean", "default": "false", - "source": "scroll-x-transition" + "source": "scroll-x-transition", + "doc": "Hides the leaving element (no exit animation)" }, { "name": "leaveAbsolute", "type": "boolean", "default": "false", - "source": "scroll-x-transition" + "source": "scroll-x-transition", + "doc": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))" }, { "name": "mode", "type": "string", "default": "undefined", - "source": "scroll-x-transition" + "source": "scroll-x-transition", + "doc": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition)." }, { "name": "origin", "type": "string", "default": "'top center 0'", - "source": "scroll-x-transition" + "source": "scroll-x-transition", + "doc": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)." } ], - "mixins": [] + "mixins": [], + "doc": "A transition component that provides horizontal scroll animation effects." }, "v-scroll-x-reverse-transition": { "props": [ @@ -19437,34 +21677,40 @@ "name": "group", "type": "boolean", "default": "false", - "source": "scroll-x-reverse-transition" + "source": "scroll-x-reverse-transition", + "doc": "Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group)" }, { "name": "hideOnLeave", "type": "boolean", "default": "false", - "source": "scroll-x-reverse-transition" + "source": "scroll-x-reverse-transition", + "doc": "Hides the leaving element (no exit animation)" }, { "name": "leaveAbsolute", "type": "boolean", "default": "false", - "source": "scroll-x-reverse-transition" + "source": "scroll-x-reverse-transition", + "doc": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))" }, { "name": "mode", "type": "string", "default": "undefined", - "source": "scroll-x-reverse-transition" + "source": "scroll-x-reverse-transition", + "doc": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition)." }, { "name": "origin", "type": "string", "default": "'top center 0'", - "source": "scroll-x-reverse-transition" + "source": "scroll-x-reverse-transition", + "doc": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)." } ], - "mixins": [] + "mixins": [], + "doc": "A transition component that provides reverse horizontal scroll animation effects." }, "v-scroll-y-transition": { "props": [ @@ -19472,34 +21718,40 @@ "name": "group", "type": "boolean", "default": "false", - "source": "scroll-y-transition" + "source": "scroll-y-transition", + "doc": "Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group)" }, { "name": "hideOnLeave", "type": "boolean", "default": "false", - "source": "scroll-y-transition" + "source": "scroll-y-transition", + "doc": "Hides the leaving element (no exit animation)" }, { "name": "leaveAbsolute", "type": "boolean", "default": "false", - "source": "scroll-y-transition" + "source": "scroll-y-transition", + "doc": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))" }, { "name": "mode", "type": "string", "default": "undefined", - "source": "scroll-y-transition" + "source": "scroll-y-transition", + "doc": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition)." }, { "name": "origin", "type": "string", "default": "'top center 0'", - "source": "scroll-y-transition" + "source": "scroll-y-transition", + "doc": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)." } ], - "mixins": [] + "mixins": [], + "doc": "A transition component that provides vertical scroll animation effects." }, "v-scroll-y-reverse-transition": { "props": [ @@ -19507,34 +21759,40 @@ "name": "group", "type": "boolean", "default": "false", - "source": "scroll-y-reverse-transition" + "source": "scroll-y-reverse-transition", + "doc": "Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group)" }, { "name": "hideOnLeave", "type": "boolean", "default": "false", - "source": "scroll-y-reverse-transition" + "source": "scroll-y-reverse-transition", + "doc": "Hides the leaving element (no exit animation)" }, { "name": "leaveAbsolute", "type": "boolean", "default": "false", - "source": "scroll-y-reverse-transition" + "source": "scroll-y-reverse-transition", + "doc": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))" }, { "name": "mode", "type": "string", "default": "undefined", - "source": "scroll-y-reverse-transition" + "source": "scroll-y-reverse-transition", + "doc": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition)." }, { "name": "origin", "type": "string", "default": "'top center 0'", - "source": "scroll-y-reverse-transition" + "source": "scroll-y-reverse-transition", + "doc": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)." } ], - "mixins": [] + "mixins": [], + "doc": "A transition component that provides reverse vertical scroll animation effects." }, "v-slide-x-transition": { "props": [ @@ -19542,34 +21800,40 @@ "name": "group", "type": "boolean", "default": "false", - "source": "slide-x-transition" + "source": "slide-x-transition", + "doc": "Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group)" }, { "name": "hideOnLeave", "type": "boolean", "default": "false", - "source": "slide-x-transition" + "source": "slide-x-transition", + "doc": "Hides the leaving element (no exit animation)" }, { "name": "leaveAbsolute", "type": "boolean", "default": "false", - "source": "slide-x-transition" + "source": "slide-x-transition", + "doc": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))" }, { "name": "mode", "type": "string", "default": "undefined", - "source": "slide-x-transition" + "source": "slide-x-transition", + "doc": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition)." }, { "name": "origin", "type": "string", "default": "'top center 0'", - "source": "slide-x-transition" + "source": "slide-x-transition", + "doc": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)." } ], - "mixins": [] + "mixins": [], + "doc": "A transition component that provides horizontal slide animation effects." }, "v-slide-x-reverse-transition": { "props": [ @@ -19577,34 +21841,40 @@ "name": "group", "type": "boolean", "default": "false", - "source": "slide-x-reverse-transition" + "source": "slide-x-reverse-transition", + "doc": "Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group)" }, { "name": "hideOnLeave", "type": "boolean", "default": "false", - "source": "slide-x-reverse-transition" + "source": "slide-x-reverse-transition", + "doc": "Hides the leaving element (no exit animation)" }, { "name": "leaveAbsolute", "type": "boolean", "default": "false", - "source": "slide-x-reverse-transition" + "source": "slide-x-reverse-transition", + "doc": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))" }, { "name": "mode", "type": "string", "default": "undefined", - "source": "slide-x-reverse-transition" + "source": "slide-x-reverse-transition", + "doc": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition)." }, { "name": "origin", "type": "string", "default": "'top center 0'", - "source": "slide-x-reverse-transition" + "source": "slide-x-reverse-transition", + "doc": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)." } ], - "mixins": [] + "mixins": [], + "doc": "A transition component that provides reverse horizontal slide animation effects." }, "v-slide-y-transition": { "props": [ @@ -19612,34 +21882,40 @@ "name": "group", "type": "boolean", "default": "false", - "source": "slide-y-transition" + "source": "slide-y-transition", + "doc": "Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group)" }, { "name": "hideOnLeave", "type": "boolean", "default": "false", - "source": "slide-y-transition" + "source": "slide-y-transition", + "doc": "Hides the leaving element (no exit animation)" }, { "name": "leaveAbsolute", "type": "boolean", "default": "false", - "source": "slide-y-transition" + "source": "slide-y-transition", + "doc": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))" }, { "name": "mode", "type": "string", "default": "undefined", - "source": "slide-y-transition" + "source": "slide-y-transition", + "doc": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition)." }, { "name": "origin", "type": "string", "default": "'top center 0'", - "source": "slide-y-transition" + "source": "slide-y-transition", + "doc": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)." } ], - "mixins": [] + "mixins": [], + "doc": "A transition component that provides vertical slide animation effects." }, "v-slide-y-reverse-transition": { "props": [ @@ -19647,34 +21923,40 @@ "name": "group", "type": "boolean", "default": "false", - "source": "slide-y-reverse-transition" + "source": "slide-y-reverse-transition", + "doc": "Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group)" }, { "name": "hideOnLeave", "type": "boolean", "default": "false", - "source": "slide-y-reverse-transition" + "source": "slide-y-reverse-transition", + "doc": "Hides the leaving element (no exit animation)" }, { "name": "leaveAbsolute", "type": "boolean", "default": "false", - "source": "slide-y-reverse-transition" + "source": "slide-y-reverse-transition", + "doc": "Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/))" }, { "name": "mode", "type": "string", "default": "undefined", - "source": "slide-y-reverse-transition" + "source": "slide-y-reverse-transition", + "doc": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition)." }, { "name": "origin", "type": "string", "default": "'top center 0'", - "source": "slide-y-reverse-transition" + "source": "slide-y-reverse-transition", + "doc": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin)." } ], - "mixins": [] + "mixins": [], + "doc": "A transition component that provides reverse vertical slide animation effects." }, "v-expand-transition": { "props": [ @@ -19682,10 +21964,12 @@ "name": "mode", "type": "string", "default": "'in-out'", - "source": "expand-transition" + "source": "expand-transition", + "doc": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition)." } ], - "mixins": [] + "mixins": [], + "doc": "A transition component that provides expand/collapse animation effects." }, "v-expand-x-transition": { "props": [ @@ -19693,10 +21977,12 @@ "name": "mode", "type": "string", "default": "'in-out'", - "source": "expand-x-transition" + "source": "expand-x-transition", + "doc": "Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition)." } ], - "mixins": [] + "mixins": [], + "doc": "A transition component that provides horizontal expand/collapse animation effects." }, "$vuetify": { "functions": [ @@ -19704,7 +21990,8 @@ "name": "goTo", "signature": "(target: string | number | HTMLElement | VueComponent, options?: object): void" } - ] + ], + "doc": "The Vuetify service object that provides access to theme, breakpoint, and other Vuetify configuration." }, "internationalization": { "api": [ @@ -19723,7 +22010,8 @@ "default": "(key: string, ...params: Array): string", "type": "Function" } - ] + ], + "doc": "Vuetify's internationalization service for managing translations and locale-specific content." }, "v-mutate": { "options": [ @@ -19764,7 +22052,8 @@ "snippet": "html_directive_mutate" } ], - "type": "undefined" + "type": "undefined", + "doc": "A directive that observes DOM mutations on an element." }, "v-intersect": { "options": [ @@ -19787,7 +22076,8 @@ "snippet": "html_directive_intersect" } ], - "type": "undefined" + "type": "undefined", + "doc": "A directive that detects when an element enters or leaves the viewport." }, "v-ripple": { "options": [ @@ -19807,7 +22097,8 @@ "type": "string" } ], - "type": "undefined" + "type": "undefined", + "doc": "A directive that adds material design ripple effect to elements when clicked." }, "v-resize": { "options": [ @@ -19822,7 +22113,8 @@ "type": "Function" } ], - "type": "undefined" + "type": "undefined", + "doc": "A directive that triggers a callback when the window is resized." }, "v-scroll": { "options": [ @@ -19837,7 +22129,8 @@ "type": "Function" } ], - "type": "undefined" + "type": "undefined", + "doc": "A directive that triggers a callback when scrolling occurs." }, "v-touch": { "options": [ @@ -19847,6 +22140,7 @@ "type": "object" } ], - "type": "undefined" + "type": "undefined", + "doc": "A directive that provides touch gesture detection for mobile interactions." } } From 684f012518ab4fa9661dafdf0fa0df7924c61429 Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Thu, 20 Nov 2025 22:28:27 +0000 Subject: [PATCH 017/110] fix: add the documentation to the template --- docs/autoapi/ipyvuetify/Alert.rst | 95 -- docs/autoapi/ipyvuetify/App.rst | 20 +- docs/autoapi/ipyvuetify/AppBar.rst | 128 --- docs/autoapi/ipyvuetify/AppBarNavIcon.rst | 11 +- docs/autoapi/ipyvuetify/Autocomplete.rst | 224 ----- docs/autoapi/ipyvuetify/Avatar.rst | 50 - docs/autoapi/ipyvuetify/Badge.rst | 77 -- docs/autoapi/ipyvuetify/Banner.rst | 74 -- docs/autoapi/ipyvuetify/BottomNavigation.rst | 86 -- docs/autoapi/ipyvuetify/BottomSheet.rst | 95 -- docs/autoapi/ipyvuetify/Breadcrumbs.rst | 26 +- .../autoapi/ipyvuetify/BreadcrumbsDivider.rst | 11 +- docs/autoapi/ipyvuetify/BreadcrumbsItem.rst | 56 -- docs/autoapi/ipyvuetify/Btn.rst | 155 --- docs/autoapi/ipyvuetify/BtnToggle.rst | 62 -- docs/autoapi/ipyvuetify/Calendar.rst | 122 --- docs/autoapi/ipyvuetify/CalendarDaily.rst | 68 -- docs/autoapi/ipyvuetify/CalendarMonthly.rst | 56 -- docs/autoapi/ipyvuetify/CalendarWeekly.rst | 56 -- docs/autoapi/ipyvuetify/Card.rst | 113 --- docs/autoapi/ipyvuetify/CardActions.rst | 11 +- docs/autoapi/ipyvuetify/CardSubtitle.rst | 11 +- docs/autoapi/ipyvuetify/CardText.rst | 11 +- docs/autoapi/ipyvuetify/CardTitle.rst | 11 +- docs/autoapi/ipyvuetify/Carousel.rst | 92 -- docs/autoapi/ipyvuetify/CarouselItem.rst | 68 -- .../ipyvuetify/CarouselReverseTransition.rst | 26 +- .../autoapi/ipyvuetify/CarouselTransition.rst | 26 +- docs/autoapi/ipyvuetify/Checkbox.rst | 119 --- docs/autoapi/ipyvuetify/Chip.rst | 113 --- docs/autoapi/ipyvuetify/ChipGroup.rst | 59 -- docs/autoapi/ipyvuetify/Col.rst | 68 -- docs/autoapi/ipyvuetify/ColorPicker.rst | 62 -- docs/autoapi/ipyvuetify/ColorPickerCanvas.rst | 32 - .../ipyvuetify/ColorPickerSwatches.rst | 35 - docs/autoapi/ipyvuetify/Combobox.rst | 227 ----- docs/autoapi/ipyvuetify/Container.rst | 320 ------- docs/autoapi/ipyvuetify/Content.rst | 314 ------ docs/autoapi/ipyvuetify/Counter.rst | 29 - docs/autoapi/ipyvuetify/Data.rst | 65 -- docs/autoapi/ipyvuetify/DataFooter.rst | 53 +- docs/autoapi/ipyvuetify/DataIterator.rst | 110 --- docs/autoapi/ipyvuetify/DataTable.rst | 149 --- docs/autoapi/ipyvuetify/DataTableHeader.rst | 14 +- docs/autoapi/ipyvuetify/DatePicker.rst | 107 --- .../ipyvuetify/DatePickerDateTable.rst | 71 -- docs/autoapi/ipyvuetify/DatePickerHeader.rst | 50 - .../ipyvuetify/DatePickerMonthTable.rst | 62 -- docs/autoapi/ipyvuetify/DatePickerTitle.rst | 41 - docs/autoapi/ipyvuetify/DatePickerYears.rst | 35 - docs/autoapi/ipyvuetify/Dialog.rst | 92 -- .../ipyvuetify/DialogBottomTransition.rst | 26 +- docs/autoapi/ipyvuetify/DialogTransition.rst | 26 +- docs/autoapi/ipyvuetify/Divider.rst | 23 +- docs/autoapi/ipyvuetify/EditDialog.rst | 38 +- docs/autoapi/ipyvuetify/ExpandTransition.rst | 14 +- docs/autoapi/ipyvuetify/ExpandXTransition.rst | 14 +- docs/autoapi/ipyvuetify/ExpansionPanel.rst | 20 +- .../ipyvuetify/ExpansionPanelContent.rst | 17 +- .../ipyvuetify/ExpansionPanelHeader.rst | 32 - docs/autoapi/ipyvuetify/ExpansionPanels.rst | 65 -- docs/autoapi/ipyvuetify/FabTransition.rst | 26 +- docs/autoapi/ipyvuetify/FadeTransition.rst | 26 +- docs/autoapi/ipyvuetify/FileInput.rst | 176 ---- docs/autoapi/ipyvuetify/Flex.rst | 890 ------------------ docs/autoapi/ipyvuetify/Footer.rst | 68 -- docs/autoapi/ipyvuetify/Form.rst | 17 +- docs/autoapi/ipyvuetify/Hover.rst | 29 - docs/autoapi/ipyvuetify/Icon.rst | 56 -- docs/autoapi/ipyvuetify/Img.rst | 71 -- docs/autoapi/ipyvuetify/Input.rst | 92 -- docs/autoapi/ipyvuetify/Item.rst | 20 +- docs/autoapi/ipyvuetify/ItemGroup.rst | 38 - docs/autoapi/ipyvuetify/Label.rst | 47 - docs/autoapi/ipyvuetify/Layout.rst | 443 --------- docs/autoapi/ipyvuetify/Lazy.rst | 32 - docs/autoapi/ipyvuetify/List.rst | 83 -- docs/autoapi/ipyvuetify/ListGroup.rst | 50 - docs/autoapi/ipyvuetify/ListItem.rst | 86 -- docs/autoapi/ipyvuetify/ListItemAction.rst | 11 +- .../autoapi/ipyvuetify/ListItemActionText.rst | 11 +- docs/autoapi/ipyvuetify/ListItemAvatar.rst | 53 -- docs/autoapi/ipyvuetify/ListItemContent.rst | 11 +- docs/autoapi/ipyvuetify/ListItemGroup.rst | 41 - docs/autoapi/ipyvuetify/ListItemIcon.rst | 11 +- docs/autoapi/ipyvuetify/ListItemSubtitle.rst | 11 +- docs/autoapi/ipyvuetify/ListItemTitle.rst | 11 +- docs/autoapi/ipyvuetify/Menu.rst | 140 --- docs/autoapi/ipyvuetify/MenuTransition.rst | 26 +- docs/autoapi/ipyvuetify/Messages.rst | 23 +- docs/autoapi/ipyvuetify/NavigationDrawer.rst | 101 -- docs/autoapi/ipyvuetify/OverflowBtn.rst | 230 ----- docs/autoapi/ipyvuetify/Overlay.rst | 38 - docs/autoapi/ipyvuetify/Pagination.rst | 47 - docs/autoapi/ipyvuetify/Parallax.rst | 26 - docs/autoapi/ipyvuetify/Picker.rst | 41 - docs/autoapi/ipyvuetify/ProgressCircular.rst | 38 - docs/autoapi/ipyvuetify/ProgressLinear.rst | 71 -- docs/autoapi/ipyvuetify/Radio.rst | 56 -- docs/autoapi/ipyvuetify/RadioGroup.rst | 113 --- docs/autoapi/ipyvuetify/RangeSlider.rst | 134 --- docs/autoapi/ipyvuetify/Rating.rst | 83 -- docs/autoapi/ipyvuetify/Responsive.rst | 38 - docs/autoapi/ipyvuetify/Row.rst | 65 +- docs/autoapi/ipyvuetify/ScaleTransition.rst | 26 +- .../ipyvuetify/ScrollXReverseTransition.rst | 26 +- docs/autoapi/ipyvuetify/ScrollXTransition.rst | 26 +- .../ipyvuetify/ScrollYReverseTransition.rst | 26 +- docs/autoapi/ipyvuetify/ScrollYTransition.rst | 26 +- docs/autoapi/ipyvuetify/Select.rst | 209 ---- docs/autoapi/ipyvuetify/Sheet.rst | 53 -- docs/autoapi/ipyvuetify/SimpleCheckbox.rst | 41 +- docs/autoapi/ipyvuetify/SimpleTable.rst | 32 - docs/autoapi/ipyvuetify/SkeletonLoader.rst | 62 -- docs/autoapi/ipyvuetify/SlideGroup.rst | 53 -- docs/autoapi/ipyvuetify/SlideItem.rst | 20 +- .../ipyvuetify/SlideXReverseTransition.rst | 26 +- docs/autoapi/ipyvuetify/SlideXTransition.rst | 26 +- .../ipyvuetify/SlideYReverseTransition.rst | 26 +- docs/autoapi/ipyvuetify/SlideYTransition.rst | 26 +- docs/autoapi/ipyvuetify/Slider.rst | 134 --- docs/autoapi/ipyvuetify/Snackbar.rst | 41 +- docs/autoapi/ipyvuetify/Spacer.rst | 11 +- docs/autoapi/ipyvuetify/Sparkline.rst | 71 -- docs/autoapi/ipyvuetify/SpeedDial.rst | 47 +- docs/autoapi/ipyvuetify/Stepper.rst | 29 +- docs/autoapi/ipyvuetify/StepperContent.rst | 20 - docs/autoapi/ipyvuetify/StepperHeader.rst | 11 +- docs/autoapi/ipyvuetify/StepperItems.rst | 11 +- docs/autoapi/ipyvuetify/StepperStep.rst | 41 - docs/autoapi/ipyvuetify/Subheader.rst | 20 +- docs/autoapi/ipyvuetify/Switch.rst | 113 --- docs/autoapi/ipyvuetify/SystemBar.rst | 44 - docs/autoapi/ipyvuetify/Tab.rst | 62 -- docs/autoapi/ipyvuetify/TabItem.rst | 38 - .../ipyvuetify/TabReverseTransition.rst | 26 +- docs/autoapi/ipyvuetify/TabTransition.rst | 26 +- docs/autoapi/ipyvuetify/TableOverflow.rst | 11 +- docs/autoapi/ipyvuetify/Tabs.rst | 86 -- docs/autoapi/ipyvuetify/TabsItems.rst | 65 -- docs/autoapi/ipyvuetify/TabsSlider.rst | 14 +- docs/autoapi/ipyvuetify/Text.rst | 20 - docs/autoapi/ipyvuetify/TextField.rst | 155 --- docs/autoapi/ipyvuetify/Textarea.rst | 167 ---- docs/autoapi/ipyvuetify/ThemeProvider.rst | 20 +- docs/autoapi/ipyvuetify/TimePicker.rst | 77 -- docs/autoapi/ipyvuetify/TimePickerClock.rst | 50 +- docs/autoapi/ipyvuetify/TimePickerTitle.rst | 44 +- docs/autoapi/ipyvuetify/Timeline.rst | 26 +- docs/autoapi/ipyvuetify/TimelineItem.rst | 44 +- docs/autoapi/ipyvuetify/Toolbar.rst | 86 -- docs/autoapi/ipyvuetify/ToolbarItems.rst | 11 +- docs/autoapi/ipyvuetify/ToolbarTitle.rst | 11 +- docs/autoapi/ipyvuetify/Tooltip.rst | 119 --- docs/autoapi/ipyvuetify/Treeview.rst | 104 +- docs/autoapi/ipyvuetify/TreeviewNode.rst | 71 +- docs/autoapi/ipyvuetify/VirtualTable.rst | 44 - docs/autoapi/ipyvuetify/VuetifyWidget.rst | 17 - docs/autoapi/ipyvuetify/Window.rst | 65 -- docs/autoapi/ipyvuetify/WindowItem.rst | 35 - docs/autoapi/ipyvuetify/components/Alert.rst | 4 + docs/autoapi/ipyvuetify/components/App.rst | 4 + docs/autoapi/ipyvuetify/components/AppBar.rst | 4 + .../ipyvuetify/components/AppBarNavIcon.rst | 4 + .../ipyvuetify/components/Autocomplete.rst | 4 + docs/autoapi/ipyvuetify/components/Avatar.rst | 4 + docs/autoapi/ipyvuetify/components/Badge.rst | 4 + docs/autoapi/ipyvuetify/components/Banner.rst | 4 + .../components/BottomNavigation.rst | 4 + .../ipyvuetify/components/BottomSheet.rst | 4 + .../ipyvuetify/components/Breadcrumbs.rst | 4 + .../components/BreadcrumbsDivider.rst | 4 + .../ipyvuetify/components/BreadcrumbsItem.rst | 4 + docs/autoapi/ipyvuetify/components/Btn.rst | 4 + .../ipyvuetify/components/BtnToggle.rst | 4 + .../ipyvuetify/components/Calendar.rst | 4 + .../ipyvuetify/components/CalendarDaily.rst | 4 + .../ipyvuetify/components/CalendarMonthly.rst | 4 + .../ipyvuetify/components/CalendarWeekly.rst | 4 + docs/autoapi/ipyvuetify/components/Card.rst | 4 + .../ipyvuetify/components/CardActions.rst | 4 + .../ipyvuetify/components/CardSubtitle.rst | 4 + .../ipyvuetify/components/CardText.rst | 4 + .../ipyvuetify/components/CardTitle.rst | 4 + .../ipyvuetify/components/Carousel.rst | 4 + .../ipyvuetify/components/CarouselItem.rst | 4 + .../components/CarouselReverseTransition.rst | 4 + .../components/CarouselTransition.rst | 4 + .../ipyvuetify/components/Checkbox.rst | 4 + docs/autoapi/ipyvuetify/components/Chip.rst | 4 + .../ipyvuetify/components/ChipGroup.rst | 4 + .../components/CodeGen.has_callback.rst | 4 + .../autoapi/ipyvuetify/components/CodeGen.rst | 12 +- docs/autoapi/ipyvuetify/components/Col.rst | 4 + .../ipyvuetify/components/ColorPicker.rst | 4 + .../components/ColorPickerCanvas.rst | 4 + .../components/ColorPickerSwatches.rst | 4 + .../ipyvuetify/components/Combobox.rst | 4 + .../ipyvuetify/components/Container.rst | 4 + .../autoapi/ipyvuetify/components/Content.rst | 4 + .../autoapi/ipyvuetify/components/Counter.rst | 4 + docs/autoapi/ipyvuetify/components/Data.rst | 4 + .../ipyvuetify/components/DataFooter.rst | 4 + .../ipyvuetify/components/DataIterator.rst | 4 + .../ipyvuetify/components/DataTable.rst | 4 + .../ipyvuetify/components/DataTableHeader.rst | 4 + .../ipyvuetify/components/DatePicker.rst | 4 + .../components/DatePickerDateTable.rst | 4 + .../components/DatePickerHeader.rst | 4 + .../components/DatePickerMonthTable.rst | 4 + .../ipyvuetify/components/DatePickerTitle.rst | 4 + .../ipyvuetify/components/DatePickerYears.rst | 4 + docs/autoapi/ipyvuetify/components/Dialog.rst | 4 + .../components/DialogBottomTransition.rst | 4 + .../components/DialogTransition.rst | 4 + .../autoapi/ipyvuetify/components/Divider.rst | 4 + .../ipyvuetify/components/EditDialog.rst | 4 + .../components/ExpandTransition.rst | 4 + .../components/ExpandXTransition.rst | 4 + .../ipyvuetify/components/ExpansionPanel.rst | 4 + .../components/ExpansionPanelContent.rst | 4 + .../components/ExpansionPanelHeader.rst | 4 + .../ipyvuetify/components/ExpansionPanels.rst | 4 + .../ipyvuetify/components/FabTransition.rst | 4 + .../ipyvuetify/components/FadeTransition.rst | 4 + .../ipyvuetify/components/FileInput.rst | 4 + docs/autoapi/ipyvuetify/components/Flex.rst | 4 + docs/autoapi/ipyvuetify/components/Footer.rst | 4 + docs/autoapi/ipyvuetify/components/Form.rst | 4 + docs/autoapi/ipyvuetify/components/Hover.rst | 4 + docs/autoapi/ipyvuetify/components/Html.rst | 4 + docs/autoapi/ipyvuetify/components/Icon.rst | 4 + docs/autoapi/ipyvuetify/components/Img.rst | 4 + docs/autoapi/ipyvuetify/components/Input.rst | 4 + docs/autoapi/ipyvuetify/components/Item.rst | 4 + .../ipyvuetify/components/ItemGroup.rst | 4 + docs/autoapi/ipyvuetify/components/Label.rst | 4 + docs/autoapi/ipyvuetify/components/Layout.rst | 4 + docs/autoapi/ipyvuetify/components/Lazy.rst | 4 + docs/autoapi/ipyvuetify/components/List.rst | 4 + .../ipyvuetify/components/ListGroup.rst | 4 + .../ipyvuetify/components/ListItem.rst | 4 + .../ipyvuetify/components/ListItemAction.rst | 4 + .../components/ListItemActionText.rst | 4 + .../ipyvuetify/components/ListItemAvatar.rst | 4 + .../ipyvuetify/components/ListItemContent.rst | 4 + .../ipyvuetify/components/ListItemGroup.rst | 4 + .../ipyvuetify/components/ListItemIcon.rst | 4 + .../components/ListItemSubtitle.rst | 4 + .../ipyvuetify/components/ListItemTitle.rst | 4 + docs/autoapi/ipyvuetify/components/Menu.rst | 4 + .../ipyvuetify/components/MenuTransition.rst | 4 + .../ipyvuetify/components/Messages.rst | 4 + .../components/NavigationDrawer.rst | 4 + .../ipyvuetify/components/OverflowBtn.rst | 4 + .../autoapi/ipyvuetify/components/Overlay.rst | 4 + .../ipyvuetify/components/Pagination.rst | 4 + .../ipyvuetify/components/Parallax.rst | 4 + docs/autoapi/ipyvuetify/components/Picker.rst | 4 + .../components/ProgressCircular.rst | 4 + .../ipyvuetify/components/ProgressLinear.rst | 4 + docs/autoapi/ipyvuetify/components/Radio.rst | 4 + .../ipyvuetify/components/RadioGroup.rst | 4 + .../ipyvuetify/components/RangeSlider.rst | 4 + docs/autoapi/ipyvuetify/components/Rating.rst | 4 + .../ipyvuetify/components/Responsive.rst | 4 + docs/autoapi/ipyvuetify/components/Row.rst | 4 + .../ipyvuetify/components/ScaleTransition.rst | 4 + .../components/ScrollXReverseTransition.rst | 4 + .../components/ScrollXTransition.rst | 4 + .../components/ScrollYReverseTransition.rst | 4 + .../components/ScrollYTransition.rst | 4 + docs/autoapi/ipyvuetify/components/Select.rst | 4 + docs/autoapi/ipyvuetify/components/Sheet.rst | 4 + .../ipyvuetify/components/SimpleCheckbox.rst | 4 + .../ipyvuetify/components/SimpleTable.rst | 4 + .../ipyvuetify/components/SkeletonLoader.rst | 4 + .../ipyvuetify/components/SlideGroup.rst | 4 + .../ipyvuetify/components/SlideItem.rst | 4 + .../components/SlideXReverseTransition.rst | 4 + .../components/SlideXTransition.rst | 4 + .../components/SlideYReverseTransition.rst | 4 + .../components/SlideYTransition.rst | 4 + docs/autoapi/ipyvuetify/components/Slider.rst | 4 + .../ipyvuetify/components/Snackbar.rst | 4 + docs/autoapi/ipyvuetify/components/Spacer.rst | 4 + .../ipyvuetify/components/Sparkline.rst | 4 + .../ipyvuetify/components/SpeedDial.rst | 4 + .../autoapi/ipyvuetify/components/Stepper.rst | 4 + .../ipyvuetify/components/StepperContent.rst | 4 + .../ipyvuetify/components/StepperHeader.rst | 4 + .../ipyvuetify/components/StepperItems.rst | 4 + .../ipyvuetify/components/StepperStep.rst | 4 + .../ipyvuetify/components/Subheader.rst | 4 + docs/autoapi/ipyvuetify/components/Switch.rst | 4 + .../ipyvuetify/components/SystemBar.rst | 4 + docs/autoapi/ipyvuetify/components/Tab.rst | 4 + .../autoapi/ipyvuetify/components/TabItem.rst | 4 + .../components/TabReverseTransition.rst | 4 + .../ipyvuetify/components/TabTransition.rst | 4 + .../ipyvuetify/components/TableOverflow.rst | 4 + docs/autoapi/ipyvuetify/components/Tabs.rst | 4 + .../ipyvuetify/components/TabsItems.rst | 4 + .../ipyvuetify/components/TabsSlider.rst | 4 + docs/autoapi/ipyvuetify/components/Text.rst | 4 + .../ipyvuetify/components/TextField.rst | 4 + .../ipyvuetify/components/Textarea.rst | 4 + .../ipyvuetify/components/ThemeProvider.rst | 4 + .../ipyvuetify/components/TimePicker.rst | 4 + .../ipyvuetify/components/TimePickerClock.rst | 4 + .../ipyvuetify/components/TimePickerTitle.rst | 4 + .../ipyvuetify/components/Timeline.rst | 4 + .../ipyvuetify/components/TimelineItem.rst | 4 + .../autoapi/ipyvuetify/components/Toolbar.rst | 4 + .../ipyvuetify/components/ToolbarItems.rst | 4 + .../ipyvuetify/components/ToolbarTitle.rst | 4 + .../autoapi/ipyvuetify/components/Tooltip.rst | 4 + .../ipyvuetify/components/Treeview.rst | 4 + .../ipyvuetify/components/TreeviewNode.rst | 4 + .../ipyvuetify/components/VirtualTable.rst | 4 + .../ipyvuetify/components/VuetifyTemplate.rst | 4 + .../ipyvuetify/components/VuetifyWidget.rst | 4 + docs/autoapi/ipyvuetify/components/Window.rst | 4 + .../ipyvuetify/components/WindowItem.rst | 4 + docs/autoapi/ipyvuetify/components/index.rst | 493 ++++------ .../ipyvuetify/extra/FileInput.clear.rst | 4 + .../ipyvuetify/extra/FileInput.get_files.rst | 4 + .../extra/FileInput.reset_stats.rst | 4 + docs/autoapi/ipyvuetify/extra/FileInput.rst | 36 +- .../extra/FileInput.update_stats.rst | 4 + .../ipyvuetify/extra/FileInput.vue_upload.rst | 4 + .../extra/file_input/FileInput.clear.rst | 4 + .../extra/file_input/FileInput.get_files.rst | 4 + .../file_input/FileInput.reset_stats.rst | 4 + .../ipyvuetify/extra/file_input/FileInput.rst | 36 +- .../file_input/FileInput.update_stats.rst | 4 + .../extra/file_input/FileInput.vue_upload.rst | 4 + docs/autoapi/ipyvuetify/index.rst | 192 ---- generate_source/generate_schema.py | 12 +- generate_source/python.njk | 2 + 340 files changed, 1946 insertions(+), 10343 deletions(-) delete mode 100644 docs/autoapi/ipyvuetify/Alert.rst delete mode 100644 docs/autoapi/ipyvuetify/AppBar.rst delete mode 100644 docs/autoapi/ipyvuetify/Autocomplete.rst delete mode 100644 docs/autoapi/ipyvuetify/Avatar.rst delete mode 100644 docs/autoapi/ipyvuetify/Badge.rst delete mode 100644 docs/autoapi/ipyvuetify/Banner.rst delete mode 100644 docs/autoapi/ipyvuetify/BottomNavigation.rst delete mode 100644 docs/autoapi/ipyvuetify/BottomSheet.rst delete mode 100644 docs/autoapi/ipyvuetify/BreadcrumbsItem.rst delete mode 100644 docs/autoapi/ipyvuetify/Btn.rst delete mode 100644 docs/autoapi/ipyvuetify/BtnToggle.rst delete mode 100644 docs/autoapi/ipyvuetify/Calendar.rst delete mode 100644 docs/autoapi/ipyvuetify/CalendarDaily.rst delete mode 100644 docs/autoapi/ipyvuetify/CalendarMonthly.rst delete mode 100644 docs/autoapi/ipyvuetify/CalendarWeekly.rst delete mode 100644 docs/autoapi/ipyvuetify/Card.rst delete mode 100644 docs/autoapi/ipyvuetify/Carousel.rst delete mode 100644 docs/autoapi/ipyvuetify/CarouselItem.rst delete mode 100644 docs/autoapi/ipyvuetify/Checkbox.rst delete mode 100644 docs/autoapi/ipyvuetify/Chip.rst delete mode 100644 docs/autoapi/ipyvuetify/ChipGroup.rst delete mode 100644 docs/autoapi/ipyvuetify/Col.rst delete mode 100644 docs/autoapi/ipyvuetify/ColorPicker.rst delete mode 100644 docs/autoapi/ipyvuetify/ColorPickerCanvas.rst delete mode 100644 docs/autoapi/ipyvuetify/ColorPickerSwatches.rst delete mode 100644 docs/autoapi/ipyvuetify/Combobox.rst delete mode 100644 docs/autoapi/ipyvuetify/Container.rst delete mode 100644 docs/autoapi/ipyvuetify/Content.rst delete mode 100644 docs/autoapi/ipyvuetify/Counter.rst delete mode 100644 docs/autoapi/ipyvuetify/Data.rst delete mode 100644 docs/autoapi/ipyvuetify/DataIterator.rst delete mode 100644 docs/autoapi/ipyvuetify/DataTable.rst delete mode 100644 docs/autoapi/ipyvuetify/DatePicker.rst delete mode 100644 docs/autoapi/ipyvuetify/DatePickerDateTable.rst delete mode 100644 docs/autoapi/ipyvuetify/DatePickerHeader.rst delete mode 100644 docs/autoapi/ipyvuetify/DatePickerMonthTable.rst delete mode 100644 docs/autoapi/ipyvuetify/DatePickerTitle.rst delete mode 100644 docs/autoapi/ipyvuetify/DatePickerYears.rst delete mode 100644 docs/autoapi/ipyvuetify/Dialog.rst delete mode 100644 docs/autoapi/ipyvuetify/ExpansionPanelHeader.rst delete mode 100644 docs/autoapi/ipyvuetify/ExpansionPanels.rst delete mode 100644 docs/autoapi/ipyvuetify/FileInput.rst delete mode 100644 docs/autoapi/ipyvuetify/Flex.rst delete mode 100644 docs/autoapi/ipyvuetify/Footer.rst delete mode 100644 docs/autoapi/ipyvuetify/Hover.rst delete mode 100644 docs/autoapi/ipyvuetify/Icon.rst delete mode 100644 docs/autoapi/ipyvuetify/Img.rst delete mode 100644 docs/autoapi/ipyvuetify/Input.rst delete mode 100644 docs/autoapi/ipyvuetify/ItemGroup.rst delete mode 100644 docs/autoapi/ipyvuetify/Label.rst delete mode 100644 docs/autoapi/ipyvuetify/Layout.rst delete mode 100644 docs/autoapi/ipyvuetify/Lazy.rst delete mode 100644 docs/autoapi/ipyvuetify/List.rst delete mode 100644 docs/autoapi/ipyvuetify/ListGroup.rst delete mode 100644 docs/autoapi/ipyvuetify/ListItem.rst delete mode 100644 docs/autoapi/ipyvuetify/ListItemAvatar.rst delete mode 100644 docs/autoapi/ipyvuetify/ListItemGroup.rst delete mode 100644 docs/autoapi/ipyvuetify/Menu.rst delete mode 100644 docs/autoapi/ipyvuetify/NavigationDrawer.rst delete mode 100644 docs/autoapi/ipyvuetify/OverflowBtn.rst delete mode 100644 docs/autoapi/ipyvuetify/Overlay.rst delete mode 100644 docs/autoapi/ipyvuetify/Pagination.rst delete mode 100644 docs/autoapi/ipyvuetify/Parallax.rst delete mode 100644 docs/autoapi/ipyvuetify/Picker.rst delete mode 100644 docs/autoapi/ipyvuetify/ProgressCircular.rst delete mode 100644 docs/autoapi/ipyvuetify/ProgressLinear.rst delete mode 100644 docs/autoapi/ipyvuetify/Radio.rst delete mode 100644 docs/autoapi/ipyvuetify/RadioGroup.rst delete mode 100644 docs/autoapi/ipyvuetify/RangeSlider.rst delete mode 100644 docs/autoapi/ipyvuetify/Rating.rst delete mode 100644 docs/autoapi/ipyvuetify/Responsive.rst delete mode 100644 docs/autoapi/ipyvuetify/Select.rst delete mode 100644 docs/autoapi/ipyvuetify/Sheet.rst delete mode 100644 docs/autoapi/ipyvuetify/SimpleTable.rst delete mode 100644 docs/autoapi/ipyvuetify/SkeletonLoader.rst delete mode 100644 docs/autoapi/ipyvuetify/SlideGroup.rst delete mode 100644 docs/autoapi/ipyvuetify/Slider.rst delete mode 100644 docs/autoapi/ipyvuetify/Sparkline.rst delete mode 100644 docs/autoapi/ipyvuetify/StepperContent.rst delete mode 100644 docs/autoapi/ipyvuetify/StepperStep.rst delete mode 100644 docs/autoapi/ipyvuetify/Switch.rst delete mode 100644 docs/autoapi/ipyvuetify/SystemBar.rst delete mode 100644 docs/autoapi/ipyvuetify/Tab.rst delete mode 100644 docs/autoapi/ipyvuetify/TabItem.rst delete mode 100644 docs/autoapi/ipyvuetify/Tabs.rst delete mode 100644 docs/autoapi/ipyvuetify/TabsItems.rst delete mode 100644 docs/autoapi/ipyvuetify/Text.rst delete mode 100644 docs/autoapi/ipyvuetify/TextField.rst delete mode 100644 docs/autoapi/ipyvuetify/Textarea.rst delete mode 100644 docs/autoapi/ipyvuetify/TimePicker.rst delete mode 100644 docs/autoapi/ipyvuetify/Toolbar.rst delete mode 100644 docs/autoapi/ipyvuetify/Tooltip.rst delete mode 100644 docs/autoapi/ipyvuetify/VirtualTable.rst delete mode 100644 docs/autoapi/ipyvuetify/VuetifyWidget.rst delete mode 100644 docs/autoapi/ipyvuetify/Window.rst delete mode 100644 docs/autoapi/ipyvuetify/WindowItem.rst create mode 100644 docs/autoapi/ipyvuetify/components/Alert.rst create mode 100644 docs/autoapi/ipyvuetify/components/App.rst create mode 100644 docs/autoapi/ipyvuetify/components/AppBar.rst create mode 100644 docs/autoapi/ipyvuetify/components/AppBarNavIcon.rst create mode 100644 docs/autoapi/ipyvuetify/components/Autocomplete.rst create mode 100644 docs/autoapi/ipyvuetify/components/Avatar.rst create mode 100644 docs/autoapi/ipyvuetify/components/Badge.rst create mode 100644 docs/autoapi/ipyvuetify/components/Banner.rst create mode 100644 docs/autoapi/ipyvuetify/components/BottomNavigation.rst create mode 100644 docs/autoapi/ipyvuetify/components/BottomSheet.rst create mode 100644 docs/autoapi/ipyvuetify/components/Breadcrumbs.rst create mode 100644 docs/autoapi/ipyvuetify/components/BreadcrumbsDivider.rst create mode 100644 docs/autoapi/ipyvuetify/components/BreadcrumbsItem.rst create mode 100644 docs/autoapi/ipyvuetify/components/Btn.rst create mode 100644 docs/autoapi/ipyvuetify/components/BtnToggle.rst create mode 100644 docs/autoapi/ipyvuetify/components/Calendar.rst create mode 100644 docs/autoapi/ipyvuetify/components/CalendarDaily.rst create mode 100644 docs/autoapi/ipyvuetify/components/CalendarMonthly.rst create mode 100644 docs/autoapi/ipyvuetify/components/CalendarWeekly.rst create mode 100644 docs/autoapi/ipyvuetify/components/Card.rst create mode 100644 docs/autoapi/ipyvuetify/components/CardActions.rst create mode 100644 docs/autoapi/ipyvuetify/components/CardSubtitle.rst create mode 100644 docs/autoapi/ipyvuetify/components/CardText.rst create mode 100644 docs/autoapi/ipyvuetify/components/CardTitle.rst create mode 100644 docs/autoapi/ipyvuetify/components/Carousel.rst create mode 100644 docs/autoapi/ipyvuetify/components/CarouselItem.rst create mode 100644 docs/autoapi/ipyvuetify/components/CarouselReverseTransition.rst create mode 100644 docs/autoapi/ipyvuetify/components/CarouselTransition.rst create mode 100644 docs/autoapi/ipyvuetify/components/Checkbox.rst create mode 100644 docs/autoapi/ipyvuetify/components/Chip.rst create mode 100644 docs/autoapi/ipyvuetify/components/ChipGroup.rst create mode 100644 docs/autoapi/ipyvuetify/components/CodeGen.has_callback.rst create mode 100644 docs/autoapi/ipyvuetify/components/Col.rst create mode 100644 docs/autoapi/ipyvuetify/components/ColorPicker.rst create mode 100644 docs/autoapi/ipyvuetify/components/ColorPickerCanvas.rst create mode 100644 docs/autoapi/ipyvuetify/components/ColorPickerSwatches.rst create mode 100644 docs/autoapi/ipyvuetify/components/Combobox.rst create mode 100644 docs/autoapi/ipyvuetify/components/Container.rst create mode 100644 docs/autoapi/ipyvuetify/components/Content.rst create mode 100644 docs/autoapi/ipyvuetify/components/Counter.rst create mode 100644 docs/autoapi/ipyvuetify/components/Data.rst create mode 100644 docs/autoapi/ipyvuetify/components/DataFooter.rst create mode 100644 docs/autoapi/ipyvuetify/components/DataIterator.rst create mode 100644 docs/autoapi/ipyvuetify/components/DataTable.rst create mode 100644 docs/autoapi/ipyvuetify/components/DataTableHeader.rst create mode 100644 docs/autoapi/ipyvuetify/components/DatePicker.rst create mode 100644 docs/autoapi/ipyvuetify/components/DatePickerDateTable.rst create mode 100644 docs/autoapi/ipyvuetify/components/DatePickerHeader.rst create mode 100644 docs/autoapi/ipyvuetify/components/DatePickerMonthTable.rst create mode 100644 docs/autoapi/ipyvuetify/components/DatePickerTitle.rst create mode 100644 docs/autoapi/ipyvuetify/components/DatePickerYears.rst create mode 100644 docs/autoapi/ipyvuetify/components/Dialog.rst create mode 100644 docs/autoapi/ipyvuetify/components/DialogBottomTransition.rst create mode 100644 docs/autoapi/ipyvuetify/components/DialogTransition.rst create mode 100644 docs/autoapi/ipyvuetify/components/Divider.rst create mode 100644 docs/autoapi/ipyvuetify/components/EditDialog.rst create mode 100644 docs/autoapi/ipyvuetify/components/ExpandTransition.rst create mode 100644 docs/autoapi/ipyvuetify/components/ExpandXTransition.rst create mode 100644 docs/autoapi/ipyvuetify/components/ExpansionPanel.rst create mode 100644 docs/autoapi/ipyvuetify/components/ExpansionPanelContent.rst create mode 100644 docs/autoapi/ipyvuetify/components/ExpansionPanelHeader.rst create mode 100644 docs/autoapi/ipyvuetify/components/ExpansionPanels.rst create mode 100644 docs/autoapi/ipyvuetify/components/FabTransition.rst create mode 100644 docs/autoapi/ipyvuetify/components/FadeTransition.rst create mode 100644 docs/autoapi/ipyvuetify/components/FileInput.rst create mode 100644 docs/autoapi/ipyvuetify/components/Flex.rst create mode 100644 docs/autoapi/ipyvuetify/components/Footer.rst create mode 100644 docs/autoapi/ipyvuetify/components/Form.rst create mode 100644 docs/autoapi/ipyvuetify/components/Hover.rst create mode 100644 docs/autoapi/ipyvuetify/components/Html.rst create mode 100644 docs/autoapi/ipyvuetify/components/Icon.rst create mode 100644 docs/autoapi/ipyvuetify/components/Img.rst create mode 100644 docs/autoapi/ipyvuetify/components/Input.rst create mode 100644 docs/autoapi/ipyvuetify/components/Item.rst create mode 100644 docs/autoapi/ipyvuetify/components/ItemGroup.rst create mode 100644 docs/autoapi/ipyvuetify/components/Label.rst create mode 100644 docs/autoapi/ipyvuetify/components/Layout.rst create mode 100644 docs/autoapi/ipyvuetify/components/Lazy.rst create mode 100644 docs/autoapi/ipyvuetify/components/List.rst create mode 100644 docs/autoapi/ipyvuetify/components/ListGroup.rst create mode 100644 docs/autoapi/ipyvuetify/components/ListItem.rst create mode 100644 docs/autoapi/ipyvuetify/components/ListItemAction.rst create mode 100644 docs/autoapi/ipyvuetify/components/ListItemActionText.rst create mode 100644 docs/autoapi/ipyvuetify/components/ListItemAvatar.rst create mode 100644 docs/autoapi/ipyvuetify/components/ListItemContent.rst create mode 100644 docs/autoapi/ipyvuetify/components/ListItemGroup.rst create mode 100644 docs/autoapi/ipyvuetify/components/ListItemIcon.rst create mode 100644 docs/autoapi/ipyvuetify/components/ListItemSubtitle.rst create mode 100644 docs/autoapi/ipyvuetify/components/ListItemTitle.rst create mode 100644 docs/autoapi/ipyvuetify/components/Menu.rst create mode 100644 docs/autoapi/ipyvuetify/components/MenuTransition.rst create mode 100644 docs/autoapi/ipyvuetify/components/Messages.rst create mode 100644 docs/autoapi/ipyvuetify/components/NavigationDrawer.rst create mode 100644 docs/autoapi/ipyvuetify/components/OverflowBtn.rst create mode 100644 docs/autoapi/ipyvuetify/components/Overlay.rst create mode 100644 docs/autoapi/ipyvuetify/components/Pagination.rst create mode 100644 docs/autoapi/ipyvuetify/components/Parallax.rst create mode 100644 docs/autoapi/ipyvuetify/components/Picker.rst create mode 100644 docs/autoapi/ipyvuetify/components/ProgressCircular.rst create mode 100644 docs/autoapi/ipyvuetify/components/ProgressLinear.rst create mode 100644 docs/autoapi/ipyvuetify/components/Radio.rst create mode 100644 docs/autoapi/ipyvuetify/components/RadioGroup.rst create mode 100644 docs/autoapi/ipyvuetify/components/RangeSlider.rst create mode 100644 docs/autoapi/ipyvuetify/components/Rating.rst create mode 100644 docs/autoapi/ipyvuetify/components/Responsive.rst create mode 100644 docs/autoapi/ipyvuetify/components/Row.rst create mode 100644 docs/autoapi/ipyvuetify/components/ScaleTransition.rst create mode 100644 docs/autoapi/ipyvuetify/components/ScrollXReverseTransition.rst create mode 100644 docs/autoapi/ipyvuetify/components/ScrollXTransition.rst create mode 100644 docs/autoapi/ipyvuetify/components/ScrollYReverseTransition.rst create mode 100644 docs/autoapi/ipyvuetify/components/ScrollYTransition.rst create mode 100644 docs/autoapi/ipyvuetify/components/Select.rst create mode 100644 docs/autoapi/ipyvuetify/components/Sheet.rst create mode 100644 docs/autoapi/ipyvuetify/components/SimpleCheckbox.rst create mode 100644 docs/autoapi/ipyvuetify/components/SimpleTable.rst create mode 100644 docs/autoapi/ipyvuetify/components/SkeletonLoader.rst create mode 100644 docs/autoapi/ipyvuetify/components/SlideGroup.rst create mode 100644 docs/autoapi/ipyvuetify/components/SlideItem.rst create mode 100644 docs/autoapi/ipyvuetify/components/SlideXReverseTransition.rst create mode 100644 docs/autoapi/ipyvuetify/components/SlideXTransition.rst create mode 100644 docs/autoapi/ipyvuetify/components/SlideYReverseTransition.rst create mode 100644 docs/autoapi/ipyvuetify/components/SlideYTransition.rst create mode 100644 docs/autoapi/ipyvuetify/components/Slider.rst create mode 100644 docs/autoapi/ipyvuetify/components/Snackbar.rst create mode 100644 docs/autoapi/ipyvuetify/components/Spacer.rst create mode 100644 docs/autoapi/ipyvuetify/components/Sparkline.rst create mode 100644 docs/autoapi/ipyvuetify/components/SpeedDial.rst create mode 100644 docs/autoapi/ipyvuetify/components/Stepper.rst create mode 100644 docs/autoapi/ipyvuetify/components/StepperContent.rst create mode 100644 docs/autoapi/ipyvuetify/components/StepperHeader.rst create mode 100644 docs/autoapi/ipyvuetify/components/StepperItems.rst create mode 100644 docs/autoapi/ipyvuetify/components/StepperStep.rst create mode 100644 docs/autoapi/ipyvuetify/components/Subheader.rst create mode 100644 docs/autoapi/ipyvuetify/components/Switch.rst create mode 100644 docs/autoapi/ipyvuetify/components/SystemBar.rst create mode 100644 docs/autoapi/ipyvuetify/components/Tab.rst create mode 100644 docs/autoapi/ipyvuetify/components/TabItem.rst create mode 100644 docs/autoapi/ipyvuetify/components/TabReverseTransition.rst create mode 100644 docs/autoapi/ipyvuetify/components/TabTransition.rst create mode 100644 docs/autoapi/ipyvuetify/components/TableOverflow.rst create mode 100644 docs/autoapi/ipyvuetify/components/Tabs.rst create mode 100644 docs/autoapi/ipyvuetify/components/TabsItems.rst create mode 100644 docs/autoapi/ipyvuetify/components/TabsSlider.rst create mode 100644 docs/autoapi/ipyvuetify/components/Text.rst create mode 100644 docs/autoapi/ipyvuetify/components/TextField.rst create mode 100644 docs/autoapi/ipyvuetify/components/Textarea.rst create mode 100644 docs/autoapi/ipyvuetify/components/ThemeProvider.rst create mode 100644 docs/autoapi/ipyvuetify/components/TimePicker.rst create mode 100644 docs/autoapi/ipyvuetify/components/TimePickerClock.rst create mode 100644 docs/autoapi/ipyvuetify/components/TimePickerTitle.rst create mode 100644 docs/autoapi/ipyvuetify/components/Timeline.rst create mode 100644 docs/autoapi/ipyvuetify/components/TimelineItem.rst create mode 100644 docs/autoapi/ipyvuetify/components/Toolbar.rst create mode 100644 docs/autoapi/ipyvuetify/components/ToolbarItems.rst create mode 100644 docs/autoapi/ipyvuetify/components/ToolbarTitle.rst create mode 100644 docs/autoapi/ipyvuetify/components/Tooltip.rst create mode 100644 docs/autoapi/ipyvuetify/components/Treeview.rst create mode 100644 docs/autoapi/ipyvuetify/components/TreeviewNode.rst create mode 100644 docs/autoapi/ipyvuetify/components/VirtualTable.rst create mode 100644 docs/autoapi/ipyvuetify/components/VuetifyTemplate.rst create mode 100644 docs/autoapi/ipyvuetify/components/VuetifyWidget.rst create mode 100644 docs/autoapi/ipyvuetify/components/Window.rst create mode 100644 docs/autoapi/ipyvuetify/components/WindowItem.rst create mode 100644 docs/autoapi/ipyvuetify/extra/FileInput.clear.rst create mode 100644 docs/autoapi/ipyvuetify/extra/FileInput.get_files.rst create mode 100644 docs/autoapi/ipyvuetify/extra/FileInput.reset_stats.rst create mode 100644 docs/autoapi/ipyvuetify/extra/FileInput.update_stats.rst create mode 100644 docs/autoapi/ipyvuetify/extra/FileInput.vue_upload.rst create mode 100644 docs/autoapi/ipyvuetify/extra/file_input/FileInput.clear.rst create mode 100644 docs/autoapi/ipyvuetify/extra/file_input/FileInput.get_files.rst create mode 100644 docs/autoapi/ipyvuetify/extra/file_input/FileInput.reset_stats.rst create mode 100644 docs/autoapi/ipyvuetify/extra/file_input/FileInput.update_stats.rst create mode 100644 docs/autoapi/ipyvuetify/extra/file_input/FileInput.vue_upload.rst diff --git a/docs/autoapi/ipyvuetify/Alert.rst b/docs/autoapi/ipyvuetify/Alert.rst deleted file mode 100644 index c8f53790..00000000 --- a/docs/autoapi/ipyvuetify/Alert.rst +++ /dev/null @@ -1,95 +0,0 @@ -ipyvuetify.Alert -================ - -.. py:class:: ipyvuetify.Alert(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: border - - - .. py:attribute:: close_label - - - .. py:attribute:: color - - - .. py:attribute:: colored_border - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: dismissible - - - .. py:attribute:: elevation - - - .. py:attribute:: height - - - .. py:attribute:: icon - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: mode - - - .. py:attribute:: origin - - - .. py:attribute:: outlined - - - .. py:attribute:: prominent - - - .. py:attribute:: tag - - - .. py:attribute:: text - - - .. py:attribute:: tile - - - .. py:attribute:: transition - - - .. py:attribute:: type - - - .. py:attribute:: value - - - .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/App.rst b/docs/autoapi/ipyvuetify/App.rst index faa2eca7..ddaaf822 100644 --- a/docs/autoapi/ipyvuetify/App.rst +++ b/docs/autoapi/ipyvuetify/App.rst @@ -1,26 +1,28 @@ ipyvuetify.App ============== -.. py:class:: ipyvuetify.App(**kwargs) +.. py:class:: ipyvuetify.App Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + The v-app component is REQUIRED for all Vuetify applications. This is the mount point for many of Vuetify's components and functionality and ensures proper cross-browser support for custom properties. .. py:attribute:: dark + Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). + + .. py:attribute:: id + Sets the DOM id on the component + + .. py:attribute:: light + Applies the light theme variant to the component. + + diff --git a/docs/autoapi/ipyvuetify/AppBar.rst b/docs/autoapi/ipyvuetify/AppBar.rst deleted file mode 100644 index 9f092bb8..00000000 --- a/docs/autoapi/ipyvuetify/AppBar.rst +++ /dev/null @@ -1,128 +0,0 @@ -ipyvuetify.AppBar -================= - -.. py:class:: ipyvuetify.AppBar(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: app - - - .. py:attribute:: bottom - - - .. py:attribute:: clipped_left - - - .. py:attribute:: clipped_right - - - .. py:attribute:: collapse - - - .. py:attribute:: collapse_on_scroll - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: elevate_on_scroll - - - .. py:attribute:: elevation - - - .. py:attribute:: extended - - - .. py:attribute:: extension_height - - - .. py:attribute:: fade_img_on_scroll - - - .. py:attribute:: fixed - - - .. py:attribute:: flat - - - .. py:attribute:: floating - - - .. py:attribute:: height - - - .. py:attribute:: hide_on_scroll - - - .. py:attribute:: inverted_scroll - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: prominent - - - .. py:attribute:: scroll_off_screen - - - .. py:attribute:: scroll_target - - - .. py:attribute:: scroll_threshold - - - .. py:attribute:: short - - - .. py:attribute:: shrink_on_scroll - - - .. py:attribute:: src - - - .. py:attribute:: tag - - - .. py:attribute:: tile - - - .. py:attribute:: value - - - .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/AppBarNavIcon.rst b/docs/autoapi/ipyvuetify/AppBarNavIcon.rst index 5f5043ee..3bd32d8d 100644 --- a/docs/autoapi/ipyvuetify/AppBarNavIcon.rst +++ b/docs/autoapi/ipyvuetify/AppBarNavIcon.rst @@ -1,17 +1,10 @@ ipyvuetify.AppBarNavIcon ======================== -.. py:class:: ipyvuetify.AppBarNavIcon(**kwargs) +.. py:class:: ipyvuetify.AppBarNavIcon Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A stylized icon button component used in app-bars to toggle navigation drawers. It displays the standard hamburger menu icon. diff --git a/docs/autoapi/ipyvuetify/Autocomplete.rst b/docs/autoapi/ipyvuetify/Autocomplete.rst deleted file mode 100644 index 917385dd..00000000 --- a/docs/autoapi/ipyvuetify/Autocomplete.rst +++ /dev/null @@ -1,224 +0,0 @@ -ipyvuetify.Autocomplete -======================= - -.. py:class:: ipyvuetify.Autocomplete(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: allow_overflow - - - .. py:attribute:: append_icon - - - .. py:attribute:: append_outer_icon - - - .. py:attribute:: attach - - - .. py:attribute:: auto_select_first - - - .. py:attribute:: autofocus - - - .. py:attribute:: background_color - - - .. py:attribute:: cache_items - - - .. py:attribute:: chips - - - .. py:attribute:: clear_icon - - - .. py:attribute:: clearable - - - .. py:attribute:: color - - - .. py:attribute:: counter - - - .. py:attribute:: dark - - - .. py:attribute:: deletable_chips - - - .. py:attribute:: dense - - - .. py:attribute:: disable_lookup - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: filled - - - .. py:attribute:: flat - - - .. py:attribute:: full_width - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hide_no_data - - - .. py:attribute:: hide_selected - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: item_color - - - .. py:attribute:: item_disabled - - - .. py:attribute:: item_text - - - .. py:attribute:: item_value - - - .. py:attribute:: items - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: menu_props - - - .. py:attribute:: messages - - - .. py:attribute:: multiple - - - .. py:attribute:: no_data_text - - - .. py:attribute:: no_filter - - - .. py:attribute:: open_on_clear - - - .. py:attribute:: outlined - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: placeholder - - - .. py:attribute:: prefix - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: prepend_inner_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: return_object - - - .. py:attribute:: reverse - - - .. py:attribute:: rounded - - - .. py:attribute:: rules - - - .. py:attribute:: search_input - - - .. py:attribute:: shaped - - - .. py:attribute:: single_line - - - .. py:attribute:: small_chips - - - .. py:attribute:: solo - - - .. py:attribute:: solo_inverted - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: suffix - - - .. py:attribute:: type - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/Avatar.rst b/docs/autoapi/ipyvuetify/Avatar.rst deleted file mode 100644 index 88bf22eb..00000000 --- a/docs/autoapi/ipyvuetify/Avatar.rst +++ /dev/null @@ -1,50 +0,0 @@ -ipyvuetify.Avatar -================= - -.. py:class:: ipyvuetify.Avatar(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: height - - - .. py:attribute:: left - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: right - - - .. py:attribute:: size - - - .. py:attribute:: tile - - - .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/Badge.rst b/docs/autoapi/ipyvuetify/Badge.rst deleted file mode 100644 index 7eeb7dc1..00000000 --- a/docs/autoapi/ipyvuetify/Badge.rst +++ /dev/null @@ -1,77 +0,0 @@ -ipyvuetify.Badge -================ - -.. py:class:: ipyvuetify.Badge(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: avatar - - - .. py:attribute:: bordered - - - .. py:attribute:: bottom - - - .. py:attribute:: color - - - .. py:attribute:: content - - - .. py:attribute:: dark - - - .. py:attribute:: dot - - - .. py:attribute:: icon - - - .. py:attribute:: inline - - - .. py:attribute:: label - - - .. py:attribute:: left - - - .. py:attribute:: light - - - .. py:attribute:: mode - - - .. py:attribute:: offset_x - - - .. py:attribute:: offset_y - - - .. py:attribute:: origin - - - .. py:attribute:: overlap - - - .. py:attribute:: tile - - - .. py:attribute:: transition - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/Banner.rst b/docs/autoapi/ipyvuetify/Banner.rst deleted file mode 100644 index d656b0a1..00000000 --- a/docs/autoapi/ipyvuetify/Banner.rst +++ /dev/null @@ -1,74 +0,0 @@ -ipyvuetify.Banner -================= - -.. py:class:: ipyvuetify.Banner(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: app - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: elevation - - - .. py:attribute:: height - - - .. py:attribute:: icon - - - .. py:attribute:: icon_color - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: mobile_break_point - - - .. py:attribute:: single_line - - - .. py:attribute:: sticky - - - .. py:attribute:: tag - - - .. py:attribute:: tile - - - .. py:attribute:: value - - - .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/BottomNavigation.rst b/docs/autoapi/ipyvuetify/BottomNavigation.rst deleted file mode 100644 index 6320b173..00000000 --- a/docs/autoapi/ipyvuetify/BottomNavigation.rst +++ /dev/null @@ -1,86 +0,0 @@ -ipyvuetify.BottomNavigation -=========================== - -.. py:class:: ipyvuetify.BottomNavigation(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: active_class - - - .. py:attribute:: app - - - .. py:attribute:: background_color - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: fixed - - - .. py:attribute:: grow - - - .. py:attribute:: height - - - .. py:attribute:: hide_on_scroll - - - .. py:attribute:: horizontal - - - .. py:attribute:: input_value - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: scroll_target - - - .. py:attribute:: scroll_threshold - - - .. py:attribute:: shift - - - .. py:attribute:: value - - - .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/BottomSheet.rst b/docs/autoapi/ipyvuetify/BottomSheet.rst deleted file mode 100644 index 56abedf3..00000000 --- a/docs/autoapi/ipyvuetify/BottomSheet.rst +++ /dev/null @@ -1,95 +0,0 @@ -ipyvuetify.BottomSheet -====================== - -.. py:class:: ipyvuetify.BottomSheet(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: activator - - - .. py:attribute:: attach - - - .. py:attribute:: close_delay - - - .. py:attribute:: content_class - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: fullscreen - - - .. py:attribute:: hide_overlay - - - .. py:attribute:: inset - - - .. py:attribute:: internal_activator - - - .. py:attribute:: light - - - .. py:attribute:: max_width - - - .. py:attribute:: no_click_animation - - - .. py:attribute:: open_delay - - - .. py:attribute:: open_on_hover - - - .. py:attribute:: origin - - - .. py:attribute:: overlay_color - - - .. py:attribute:: overlay_opacity - - - .. py:attribute:: persistent - - - .. py:attribute:: retain_focus - - - .. py:attribute:: return_value - - - .. py:attribute:: scrollable - - - .. py:attribute:: transition - - - .. py:attribute:: value - - - .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/Breadcrumbs.rst b/docs/autoapi/ipyvuetify/Breadcrumbs.rst index 4af35132..a3cacea9 100644 --- a/docs/autoapi/ipyvuetify/Breadcrumbs.rst +++ b/docs/autoapi/ipyvuetify/Breadcrumbs.rst @@ -1,32 +1,40 @@ ipyvuetify.Breadcrumbs ====================== -.. py:class:: ipyvuetify.Breadcrumbs(**kwargs) +.. py:class:: ipyvuetify.Breadcrumbs Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + The v-breadcrumbs component is a navigational helper for pages that shows hierarchical navigation structure. It allows users to understand their location within a site. .. py:attribute:: dark + Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). + + .. py:attribute:: divider + Specifies the dividing character between items. + + .. py:attribute:: items + An array of objects for each breadcrumb. + + .. py:attribute:: large + Increase the font-size of the breadcrumb item text to 16px (14px default). + + .. py:attribute:: light + Applies the light theme variant to the component. + + diff --git a/docs/autoapi/ipyvuetify/BreadcrumbsDivider.rst b/docs/autoapi/ipyvuetify/BreadcrumbsDivider.rst index b7f7192f..a829a954 100644 --- a/docs/autoapi/ipyvuetify/BreadcrumbsDivider.rst +++ b/docs/autoapi/ipyvuetify/BreadcrumbsDivider.rst @@ -1,17 +1,10 @@ ipyvuetify.BreadcrumbsDivider ============================= -.. py:class:: ipyvuetify.BreadcrumbsDivider(**kwargs) +.. py:class:: ipyvuetify.BreadcrumbsDivider Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A divider element between breadcrumb items, typically showing '/' or '>' character. diff --git a/docs/autoapi/ipyvuetify/BreadcrumbsItem.rst b/docs/autoapi/ipyvuetify/BreadcrumbsItem.rst deleted file mode 100644 index 454597d0..00000000 --- a/docs/autoapi/ipyvuetify/BreadcrumbsItem.rst +++ /dev/null @@ -1,56 +0,0 @@ -ipyvuetify.BreadcrumbsItem -========================== - -.. py:class:: ipyvuetify.BreadcrumbsItem(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: append - - - .. py:attribute:: disabled - - - .. py:attribute:: exact - - - .. py:attribute:: exact_active_class - - - .. py:attribute:: href - - - .. py:attribute:: link - - - .. py:attribute:: nuxt - - - .. py:attribute:: replace - - - .. py:attribute:: ripple - - - .. py:attribute:: tag - - - .. py:attribute:: target - - - .. py:attribute:: to - diff --git a/docs/autoapi/ipyvuetify/Btn.rst b/docs/autoapi/ipyvuetify/Btn.rst deleted file mode 100644 index c05872b0..00000000 --- a/docs/autoapi/ipyvuetify/Btn.rst +++ /dev/null @@ -1,155 +0,0 @@ -ipyvuetify.Btn -============== - -.. py:class:: ipyvuetify.Btn(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: active_class - - - .. py:attribute:: append - - - .. py:attribute:: block - - - .. py:attribute:: bottom - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: depressed - - - .. py:attribute:: disabled - - - .. py:attribute:: elevation - - - .. py:attribute:: exact - - - .. py:attribute:: exact_active_class - - - .. py:attribute:: fab - - - .. py:attribute:: fixed - - - .. py:attribute:: height - - - .. py:attribute:: href - - - .. py:attribute:: icon - - - .. py:attribute:: input_value - - - .. py:attribute:: large - - - .. py:attribute:: left - - - .. py:attribute:: light - - - .. py:attribute:: link - - - .. py:attribute:: loading - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: nuxt - - - .. py:attribute:: outlined - - - .. py:attribute:: replace - - - .. py:attribute:: retain_focus_on_click - - - .. py:attribute:: right - - - .. py:attribute:: ripple - - - .. py:attribute:: rounded - - - .. py:attribute:: small - - - .. py:attribute:: tag - - - .. py:attribute:: target - - - .. py:attribute:: text - - - .. py:attribute:: tile - - - .. py:attribute:: to - - - .. py:attribute:: top - - - .. py:attribute:: type - - - .. py:attribute:: value - - - .. py:attribute:: width - - - .. py:attribute:: x_large - - - .. py:attribute:: x_small - diff --git a/docs/autoapi/ipyvuetify/BtnToggle.rst b/docs/autoapi/ipyvuetify/BtnToggle.rst deleted file mode 100644 index 64ffcffa..00000000 --- a/docs/autoapi/ipyvuetify/BtnToggle.rst +++ /dev/null @@ -1,62 +0,0 @@ -ipyvuetify.BtnToggle -==================== - -.. py:class:: ipyvuetify.BtnToggle(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: background_color - - - .. py:attribute:: borderless - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: group - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: multiple - - - .. py:attribute:: rounded - - - .. py:attribute:: shaped - - - .. py:attribute:: tile - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/Calendar.rst b/docs/autoapi/ipyvuetify/Calendar.rst deleted file mode 100644 index 59a7d5b1..00000000 --- a/docs/autoapi/ipyvuetify/Calendar.rst +++ /dev/null @@ -1,122 +0,0 @@ -ipyvuetify.Calendar -=================== - -.. py:class:: ipyvuetify.Calendar(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: end - - - .. py:attribute:: event_color - - - .. py:attribute:: event_end - - - .. py:attribute:: event_height - - - .. py:attribute:: event_margin_bottom - - - .. py:attribute:: event_more - - - .. py:attribute:: event_more_text - - - .. py:attribute:: event_name - - - .. py:attribute:: event_overlap_mode - - - .. py:attribute:: event_overlap_threshold - - - .. py:attribute:: event_ripple - - - .. py:attribute:: event_start - - - .. py:attribute:: event_text_color - - - .. py:attribute:: events - - - .. py:attribute:: first_interval - - - .. py:attribute:: hide_header - - - .. py:attribute:: interval_count - - - .. py:attribute:: interval_height - - - .. py:attribute:: interval_minutes - - - .. py:attribute:: interval_width - - - .. py:attribute:: light - - - .. py:attribute:: locale - - - .. py:attribute:: max_days - - - .. py:attribute:: min_weeks - - - .. py:attribute:: now - - - .. py:attribute:: short_intervals - - - .. py:attribute:: short_months - - - .. py:attribute:: short_weekdays - - - .. py:attribute:: show_month_on_first - - - .. py:attribute:: start - - - .. py:attribute:: type - - - .. py:attribute:: value - - - .. py:attribute:: weekdays - diff --git a/docs/autoapi/ipyvuetify/CalendarDaily.rst b/docs/autoapi/ipyvuetify/CalendarDaily.rst deleted file mode 100644 index 712bf13a..00000000 --- a/docs/autoapi/ipyvuetify/CalendarDaily.rst +++ /dev/null @@ -1,68 +0,0 @@ -ipyvuetify.CalendarDaily -======================== - -.. py:class:: ipyvuetify.CalendarDaily(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: end - - - .. py:attribute:: first_interval - - - .. py:attribute:: hide_header - - - .. py:attribute:: interval_count - - - .. py:attribute:: interval_height - - - .. py:attribute:: interval_minutes - - - .. py:attribute:: interval_width - - - .. py:attribute:: light - - - .. py:attribute:: locale - - - .. py:attribute:: max_days - - - .. py:attribute:: now - - - .. py:attribute:: short_intervals - - - .. py:attribute:: short_weekdays - - - .. py:attribute:: start - - - .. py:attribute:: weekdays - diff --git a/docs/autoapi/ipyvuetify/CalendarMonthly.rst b/docs/autoapi/ipyvuetify/CalendarMonthly.rst deleted file mode 100644 index a4cba556..00000000 --- a/docs/autoapi/ipyvuetify/CalendarMonthly.rst +++ /dev/null @@ -1,56 +0,0 @@ -ipyvuetify.CalendarMonthly -========================== - -.. py:class:: ipyvuetify.CalendarMonthly(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: end - - - .. py:attribute:: hide_header - - - .. py:attribute:: light - - - .. py:attribute:: locale - - - .. py:attribute:: min_weeks - - - .. py:attribute:: now - - - .. py:attribute:: short_months - - - .. py:attribute:: short_weekdays - - - .. py:attribute:: show_month_on_first - - - .. py:attribute:: start - - - .. py:attribute:: weekdays - diff --git a/docs/autoapi/ipyvuetify/CalendarWeekly.rst b/docs/autoapi/ipyvuetify/CalendarWeekly.rst deleted file mode 100644 index 78eb89d4..00000000 --- a/docs/autoapi/ipyvuetify/CalendarWeekly.rst +++ /dev/null @@ -1,56 +0,0 @@ -ipyvuetify.CalendarWeekly -========================= - -.. py:class:: ipyvuetify.CalendarWeekly(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: end - - - .. py:attribute:: hide_header - - - .. py:attribute:: light - - - .. py:attribute:: locale - - - .. py:attribute:: min_weeks - - - .. py:attribute:: now - - - .. py:attribute:: short_months - - - .. py:attribute:: short_weekdays - - - .. py:attribute:: show_month_on_first - - - .. py:attribute:: start - - - .. py:attribute:: weekdays - diff --git a/docs/autoapi/ipyvuetify/Card.rst b/docs/autoapi/ipyvuetify/Card.rst deleted file mode 100644 index 799be162..00000000 --- a/docs/autoapi/ipyvuetify/Card.rst +++ /dev/null @@ -1,113 +0,0 @@ -ipyvuetify.Card -=============== - -.. py:class:: ipyvuetify.Card(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: append - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: elevation - - - .. py:attribute:: exact - - - .. py:attribute:: exact_active_class - - - .. py:attribute:: flat - - - .. py:attribute:: height - - - .. py:attribute:: hover - - - .. py:attribute:: href - - - .. py:attribute:: img - - - .. py:attribute:: light - - - .. py:attribute:: link - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: nuxt - - - .. py:attribute:: outlined - - - .. py:attribute:: raised - - - .. py:attribute:: replace - - - .. py:attribute:: ripple - - - .. py:attribute:: shaped - - - .. py:attribute:: tag - - - .. py:attribute:: target - - - .. py:attribute:: tile - - - .. py:attribute:: to - - - .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/CardActions.rst b/docs/autoapi/ipyvuetify/CardActions.rst index d6e897b7..73013bfe 100644 --- a/docs/autoapi/ipyvuetify/CardActions.rst +++ b/docs/autoapi/ipyvuetify/CardActions.rst @@ -1,17 +1,10 @@ ipyvuetify.CardActions ====================== -.. py:class:: ipyvuetify.CardActions(**kwargs) +.. py:class:: ipyvuetify.CardActions Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + The v-card-actions component is used to contain action buttons within a v-card. It's typically placed at the bottom of the card. diff --git a/docs/autoapi/ipyvuetify/CardSubtitle.rst b/docs/autoapi/ipyvuetify/CardSubtitle.rst index e2db50e6..64a789e0 100644 --- a/docs/autoapi/ipyvuetify/CardSubtitle.rst +++ b/docs/autoapi/ipyvuetify/CardSubtitle.rst @@ -1,17 +1,10 @@ ipyvuetify.CardSubtitle ======================= -.. py:class:: ipyvuetify.CardSubtitle(**kwargs) +.. py:class:: ipyvuetify.CardSubtitle Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A subtitle element within a v-card, typically displayed below the card title. diff --git a/docs/autoapi/ipyvuetify/CardText.rst b/docs/autoapi/ipyvuetify/CardText.rst index eb40d1e2..54585e17 100644 --- a/docs/autoapi/ipyvuetify/CardText.rst +++ b/docs/autoapi/ipyvuetify/CardText.rst @@ -1,17 +1,10 @@ ipyvuetify.CardText =================== -.. py:class:: ipyvuetify.CardText(**kwargs) +.. py:class:: ipyvuetify.CardText Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + The main content area of a v-card component. diff --git a/docs/autoapi/ipyvuetify/CardTitle.rst b/docs/autoapi/ipyvuetify/CardTitle.rst index a4b9ba63..f005ef7c 100644 --- a/docs/autoapi/ipyvuetify/CardTitle.rst +++ b/docs/autoapi/ipyvuetify/CardTitle.rst @@ -1,17 +1,10 @@ ipyvuetify.CardTitle ==================== -.. py:class:: ipyvuetify.CardTitle(**kwargs) +.. py:class:: ipyvuetify.CardTitle Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + The title element of a v-card component, typically displayed at the top. diff --git a/docs/autoapi/ipyvuetify/Carousel.rst b/docs/autoapi/ipyvuetify/Carousel.rst deleted file mode 100644 index 4735d6df..00000000 --- a/docs/autoapi/ipyvuetify/Carousel.rst +++ /dev/null @@ -1,92 +0,0 @@ -ipyvuetify.Carousel -=================== - -.. py:class:: ipyvuetify.Carousel(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: continuous - - - .. py:attribute:: cycle - - - .. py:attribute:: dark - - - .. py:attribute:: delimiter_icon - - - .. py:attribute:: height - - - .. py:attribute:: hide_delimiter_background - - - .. py:attribute:: hide_delimiters - - - .. py:attribute:: interval - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: multiple - - - .. py:attribute:: next_icon - - - .. py:attribute:: prev_icon - - - .. py:attribute:: progress - - - .. py:attribute:: progress_color - - - .. py:attribute:: reverse - - - .. py:attribute:: show_arrows - - - .. py:attribute:: show_arrows_on_hover - - - .. py:attribute:: touch - - - .. py:attribute:: touchless - - - .. py:attribute:: value - - - .. py:attribute:: vertical - - - .. py:attribute:: vertical_delimiters - diff --git a/docs/autoapi/ipyvuetify/CarouselItem.rst b/docs/autoapi/ipyvuetify/CarouselItem.rst deleted file mode 100644 index ca0d106f..00000000 --- a/docs/autoapi/ipyvuetify/CarouselItem.rst +++ /dev/null @@ -1,68 +0,0 @@ -ipyvuetify.CarouselItem -======================= - -.. py:class:: ipyvuetify.CarouselItem(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: append - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: exact - - - .. py:attribute:: exact_active_class - - - .. py:attribute:: href - - - .. py:attribute:: link - - - .. py:attribute:: nuxt - - - .. py:attribute:: replace - - - .. py:attribute:: reverse_transition - - - .. py:attribute:: ripple - - - .. py:attribute:: tag - - - .. py:attribute:: target - - - .. py:attribute:: to - - - .. py:attribute:: transition - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/CarouselReverseTransition.rst b/docs/autoapi/ipyvuetify/CarouselReverseTransition.rst index c3801275..358416ed 100644 --- a/docs/autoapi/ipyvuetify/CarouselReverseTransition.rst +++ b/docs/autoapi/ipyvuetify/CarouselReverseTransition.rst @@ -1,32 +1,40 @@ ipyvuetify.CarouselReverseTransition ==================================== -.. py:class:: ipyvuetify.CarouselReverseTransition(**kwargs) +.. py:class:: ipyvuetify.CarouselReverseTransition Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A transition component that provides reverse carousel-style animation effects. .. py:attribute:: group + Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) + + .. py:attribute:: hide_on_leave + Hides the leaving element (no exit animation) + + .. py:attribute:: leave_absolute + Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) + + .. py:attribute:: mode + Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). + + .. py:attribute:: origin + Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). + + diff --git a/docs/autoapi/ipyvuetify/CarouselTransition.rst b/docs/autoapi/ipyvuetify/CarouselTransition.rst index 16676ecf..4b2a1d83 100644 --- a/docs/autoapi/ipyvuetify/CarouselTransition.rst +++ b/docs/autoapi/ipyvuetify/CarouselTransition.rst @@ -1,32 +1,40 @@ ipyvuetify.CarouselTransition ============================= -.. py:class:: ipyvuetify.CarouselTransition(**kwargs) +.. py:class:: ipyvuetify.CarouselTransition Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A transition component that provides carousel-style animation effects. .. py:attribute:: group + Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) + + .. py:attribute:: hide_on_leave + Hides the leaving element (no exit animation) + + .. py:attribute:: leave_absolute + Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) + + .. py:attribute:: mode + Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). + + .. py:attribute:: origin + Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). + + diff --git a/docs/autoapi/ipyvuetify/Checkbox.rst b/docs/autoapi/ipyvuetify/Checkbox.rst deleted file mode 100644 index d357170d..00000000 --- a/docs/autoapi/ipyvuetify/Checkbox.rst +++ /dev/null @@ -1,119 +0,0 @@ -ipyvuetify.Checkbox -=================== - -.. py:class:: ipyvuetify.Checkbox(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: background_color - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: false_value - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: indeterminate - - - .. py:attribute:: indeterminate_icon - - - .. py:attribute:: input_value - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loading - - - .. py:attribute:: messages - - - .. py:attribute:: multiple - - - .. py:attribute:: off_icon - - - .. py:attribute:: on_icon - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: ripple - - - .. py:attribute:: rules - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: true_value - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/Chip.rst b/docs/autoapi/ipyvuetify/Chip.rst deleted file mode 100644 index d46470ca..00000000 --- a/docs/autoapi/ipyvuetify/Chip.rst +++ /dev/null @@ -1,113 +0,0 @@ -ipyvuetify.Chip -=============== - -.. py:class:: ipyvuetify.Chip(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active - - - .. py:attribute:: active_class - - - .. py:attribute:: append - - - .. py:attribute:: close_ - - - .. py:attribute:: close_icon - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: draggable - - - .. py:attribute:: exact - - - .. py:attribute:: exact_active_class - - - .. py:attribute:: filter - - - .. py:attribute:: filter_icon - - - .. py:attribute:: href - - - .. py:attribute:: input_value - - - .. py:attribute:: label - - - .. py:attribute:: large - - - .. py:attribute:: light - - - .. py:attribute:: link - - - .. py:attribute:: nuxt - - - .. py:attribute:: outlined - - - .. py:attribute:: pill - - - .. py:attribute:: replace - - - .. py:attribute:: ripple - - - .. py:attribute:: small - - - .. py:attribute:: tag - - - .. py:attribute:: target - - - .. py:attribute:: text_color - - - .. py:attribute:: to - - - .. py:attribute:: value - - - .. py:attribute:: x_large - - - .. py:attribute:: x_small - diff --git a/docs/autoapi/ipyvuetify/ChipGroup.rst b/docs/autoapi/ipyvuetify/ChipGroup.rst deleted file mode 100644 index 9ce9c317..00000000 --- a/docs/autoapi/ipyvuetify/ChipGroup.rst +++ /dev/null @@ -1,59 +0,0 @@ -ipyvuetify.ChipGroup -==================== - -.. py:class:: ipyvuetify.ChipGroup(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: center_active - - - .. py:attribute:: color - - - .. py:attribute:: column - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: mobile_break_point - - - .. py:attribute:: multiple - - - .. py:attribute:: next_icon - - - .. py:attribute:: prev_icon - - - .. py:attribute:: show_arrows - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/Col.rst b/docs/autoapi/ipyvuetify/Col.rst deleted file mode 100644 index 75954598..00000000 --- a/docs/autoapi/ipyvuetify/Col.rst +++ /dev/null @@ -1,68 +0,0 @@ -ipyvuetify.Col -============== - -.. py:class:: ipyvuetify.Col(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: align_self - - - .. py:attribute:: cols - - - .. py:attribute:: lg - - - .. py:attribute:: md - - - .. py:attribute:: offset - - - .. py:attribute:: offset_lg - - - .. py:attribute:: offset_md - - - .. py:attribute:: offset_sm - - - .. py:attribute:: offset_xl - - - .. py:attribute:: order - - - .. py:attribute:: order_lg - - - .. py:attribute:: order_md - - - .. py:attribute:: order_sm - - - .. py:attribute:: order_xl - - - .. py:attribute:: sm - - - .. py:attribute:: tag - - - .. py:attribute:: xl - diff --git a/docs/autoapi/ipyvuetify/ColorPicker.rst b/docs/autoapi/ipyvuetify/ColorPicker.rst deleted file mode 100644 index 005018b9..00000000 --- a/docs/autoapi/ipyvuetify/ColorPicker.rst +++ /dev/null @@ -1,62 +0,0 @@ -ipyvuetify.ColorPicker -====================== - -.. py:class:: ipyvuetify.ColorPicker(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: canvas_height - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: dot_size - - - .. py:attribute:: flat - - - .. py:attribute:: hide_canvas - - - .. py:attribute:: hide_inputs - - - .. py:attribute:: hide_mode_switch - - - .. py:attribute:: light - - - .. py:attribute:: mode - - - .. py:attribute:: show_swatches - - - .. py:attribute:: swatches - - - .. py:attribute:: swatches_max_height - - - .. py:attribute:: value - - - .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/ColorPickerCanvas.rst b/docs/autoapi/ipyvuetify/ColorPickerCanvas.rst deleted file mode 100644 index 1764379f..00000000 --- a/docs/autoapi/ipyvuetify/ColorPickerCanvas.rst +++ /dev/null @@ -1,32 +0,0 @@ -ipyvuetify.ColorPickerCanvas -============================ - -.. py:class:: ipyvuetify.ColorPickerCanvas(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: disabled - - - .. py:attribute:: dot_size - - - .. py:attribute:: height - - - .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/ColorPickerSwatches.rst b/docs/autoapi/ipyvuetify/ColorPickerSwatches.rst deleted file mode 100644 index 9073fc38..00000000 --- a/docs/autoapi/ipyvuetify/ColorPickerSwatches.rst +++ /dev/null @@ -1,35 +0,0 @@ -ipyvuetify.ColorPickerSwatches -============================== - -.. py:class:: ipyvuetify.ColorPickerSwatches(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: swatches - diff --git a/docs/autoapi/ipyvuetify/Combobox.rst b/docs/autoapi/ipyvuetify/Combobox.rst deleted file mode 100644 index e04a0405..00000000 --- a/docs/autoapi/ipyvuetify/Combobox.rst +++ /dev/null @@ -1,227 +0,0 @@ -ipyvuetify.Combobox -=================== - -.. py:class:: ipyvuetify.Combobox(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: allow_overflow - - - .. py:attribute:: append_icon - - - .. py:attribute:: append_outer_icon - - - .. py:attribute:: attach - - - .. py:attribute:: auto_select_first - - - .. py:attribute:: autofocus - - - .. py:attribute:: background_color - - - .. py:attribute:: cache_items - - - .. py:attribute:: chips - - - .. py:attribute:: clear_icon - - - .. py:attribute:: clearable - - - .. py:attribute:: color - - - .. py:attribute:: counter - - - .. py:attribute:: dark - - - .. py:attribute:: deletable_chips - - - .. py:attribute:: delimiters - - - .. py:attribute:: dense - - - .. py:attribute:: disable_lookup - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: filled - - - .. py:attribute:: flat - - - .. py:attribute:: full_width - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hide_no_data - - - .. py:attribute:: hide_selected - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: item_color - - - .. py:attribute:: item_disabled - - - .. py:attribute:: item_text - - - .. py:attribute:: item_value - - - .. py:attribute:: items - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: menu_props - - - .. py:attribute:: messages - - - .. py:attribute:: multiple - - - .. py:attribute:: no_data_text - - - .. py:attribute:: no_filter - - - .. py:attribute:: open_on_clear - - - .. py:attribute:: outlined - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: placeholder - - - .. py:attribute:: prefix - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: prepend_inner_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: return_object - - - .. py:attribute:: reverse - - - .. py:attribute:: rounded - - - .. py:attribute:: rules - - - .. py:attribute:: search_input - - - .. py:attribute:: shaped - - - .. py:attribute:: single_line - - - .. py:attribute:: small_chips - - - .. py:attribute:: solo - - - .. py:attribute:: solo_inverted - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: suffix - - - .. py:attribute:: type - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/Container.rst b/docs/autoapi/ipyvuetify/Container.rst deleted file mode 100644 index e1f9ffe0..00000000 --- a/docs/autoapi/ipyvuetify/Container.rst +++ /dev/null @@ -1,320 +0,0 @@ -ipyvuetify.Container -==================== - -.. py:class:: ipyvuetify.Container(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: fluid - - - .. py:attribute:: id - - - .. py:attribute:: ma_0 - - - .. py:attribute:: ma_1 - - - .. py:attribute:: ma_2 - - - .. py:attribute:: ma_3 - - - .. py:attribute:: ma_4 - - - .. py:attribute:: ma_5 - - - .. py:attribute:: ma_auto - - - .. py:attribute:: mb_0 - - - .. py:attribute:: mb_1 - - - .. py:attribute:: mb_2 - - - .. py:attribute:: mb_3 - - - .. py:attribute:: mb_4 - - - .. py:attribute:: mb_5 - - - .. py:attribute:: mb_auto - - - .. py:attribute:: ml_0 - - - .. py:attribute:: ml_1 - - - .. py:attribute:: ml_2 - - - .. py:attribute:: ml_3 - - - .. py:attribute:: ml_4 - - - .. py:attribute:: ml_5 - - - .. py:attribute:: ml_auto - - - .. py:attribute:: mr_0 - - - .. py:attribute:: mr_1 - - - .. py:attribute:: mr_2 - - - .. py:attribute:: mr_3 - - - .. py:attribute:: mr_4 - - - .. py:attribute:: mr_5 - - - .. py:attribute:: mr_auto - - - .. py:attribute:: mt_0 - - - .. py:attribute:: mt_1 - - - .. py:attribute:: mt_2 - - - .. py:attribute:: mt_3 - - - .. py:attribute:: mt_4 - - - .. py:attribute:: mt_5 - - - .. py:attribute:: mt_auto - - - .. py:attribute:: mx_0 - - - .. py:attribute:: mx_1 - - - .. py:attribute:: mx_2 - - - .. py:attribute:: mx_3 - - - .. py:attribute:: mx_4 - - - .. py:attribute:: mx_5 - - - .. py:attribute:: mx_auto - - - .. py:attribute:: my_0 - - - .. py:attribute:: my_1 - - - .. py:attribute:: my_2 - - - .. py:attribute:: my_3 - - - .. py:attribute:: my_4 - - - .. py:attribute:: my_5 - - - .. py:attribute:: my_auto - - - .. py:attribute:: pa_0 - - - .. py:attribute:: pa_1 - - - .. py:attribute:: pa_2 - - - .. py:attribute:: pa_3 - - - .. py:attribute:: pa_4 - - - .. py:attribute:: pa_5 - - - .. py:attribute:: pa_auto - - - .. py:attribute:: pb_0 - - - .. py:attribute:: pb_1 - - - .. py:attribute:: pb_2 - - - .. py:attribute:: pb_3 - - - .. py:attribute:: pb_4 - - - .. py:attribute:: pb_5 - - - .. py:attribute:: pb_auto - - - .. py:attribute:: pl_0 - - - .. py:attribute:: pl_1 - - - .. py:attribute:: pl_2 - - - .. py:attribute:: pl_3 - - - .. py:attribute:: pl_4 - - - .. py:attribute:: pl_5 - - - .. py:attribute:: pl_auto - - - .. py:attribute:: pr_0 - - - .. py:attribute:: pr_1 - - - .. py:attribute:: pr_2 - - - .. py:attribute:: pr_3 - - - .. py:attribute:: pr_4 - - - .. py:attribute:: pr_5 - - - .. py:attribute:: pr_auto - - - .. py:attribute:: pt_0 - - - .. py:attribute:: pt_1 - - - .. py:attribute:: pt_2 - - - .. py:attribute:: pt_3 - - - .. py:attribute:: pt_4 - - - .. py:attribute:: pt_5 - - - .. py:attribute:: pt_auto - - - .. py:attribute:: px_0 - - - .. py:attribute:: px_1 - - - .. py:attribute:: px_2 - - - .. py:attribute:: px_3 - - - .. py:attribute:: px_4 - - - .. py:attribute:: px_5 - - - .. py:attribute:: px_auto - - - .. py:attribute:: py_0 - - - .. py:attribute:: py_1 - - - .. py:attribute:: py_2 - - - .. py:attribute:: py_3 - - - .. py:attribute:: py_4 - - - .. py:attribute:: py_5 - - - .. py:attribute:: py_auto - - - .. py:attribute:: tag - diff --git a/docs/autoapi/ipyvuetify/Content.rst b/docs/autoapi/ipyvuetify/Content.rst deleted file mode 100644 index 9d65cc8e..00000000 --- a/docs/autoapi/ipyvuetify/Content.rst +++ /dev/null @@ -1,314 +0,0 @@ -ipyvuetify.Content -================== - -.. py:class:: ipyvuetify.Content(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: ma_0 - - - .. py:attribute:: ma_1 - - - .. py:attribute:: ma_2 - - - .. py:attribute:: ma_3 - - - .. py:attribute:: ma_4 - - - .. py:attribute:: ma_5 - - - .. py:attribute:: ma_auto - - - .. py:attribute:: mb_0 - - - .. py:attribute:: mb_1 - - - .. py:attribute:: mb_2 - - - .. py:attribute:: mb_3 - - - .. py:attribute:: mb_4 - - - .. py:attribute:: mb_5 - - - .. py:attribute:: mb_auto - - - .. py:attribute:: ml_0 - - - .. py:attribute:: ml_1 - - - .. py:attribute:: ml_2 - - - .. py:attribute:: ml_3 - - - .. py:attribute:: ml_4 - - - .. py:attribute:: ml_5 - - - .. py:attribute:: ml_auto - - - .. py:attribute:: mr_0 - - - .. py:attribute:: mr_1 - - - .. py:attribute:: mr_2 - - - .. py:attribute:: mr_3 - - - .. py:attribute:: mr_4 - - - .. py:attribute:: mr_5 - - - .. py:attribute:: mr_auto - - - .. py:attribute:: mt_0 - - - .. py:attribute:: mt_1 - - - .. py:attribute:: mt_2 - - - .. py:attribute:: mt_3 - - - .. py:attribute:: mt_4 - - - .. py:attribute:: mt_5 - - - .. py:attribute:: mt_auto - - - .. py:attribute:: mx_0 - - - .. py:attribute:: mx_1 - - - .. py:attribute:: mx_2 - - - .. py:attribute:: mx_3 - - - .. py:attribute:: mx_4 - - - .. py:attribute:: mx_5 - - - .. py:attribute:: mx_auto - - - .. py:attribute:: my_0 - - - .. py:attribute:: my_1 - - - .. py:attribute:: my_2 - - - .. py:attribute:: my_3 - - - .. py:attribute:: my_4 - - - .. py:attribute:: my_5 - - - .. py:attribute:: my_auto - - - .. py:attribute:: pa_0 - - - .. py:attribute:: pa_1 - - - .. py:attribute:: pa_2 - - - .. py:attribute:: pa_3 - - - .. py:attribute:: pa_4 - - - .. py:attribute:: pa_5 - - - .. py:attribute:: pa_auto - - - .. py:attribute:: pb_0 - - - .. py:attribute:: pb_1 - - - .. py:attribute:: pb_2 - - - .. py:attribute:: pb_3 - - - .. py:attribute:: pb_4 - - - .. py:attribute:: pb_5 - - - .. py:attribute:: pb_auto - - - .. py:attribute:: pl_0 - - - .. py:attribute:: pl_1 - - - .. py:attribute:: pl_2 - - - .. py:attribute:: pl_3 - - - .. py:attribute:: pl_4 - - - .. py:attribute:: pl_5 - - - .. py:attribute:: pl_auto - - - .. py:attribute:: pr_0 - - - .. py:attribute:: pr_1 - - - .. py:attribute:: pr_2 - - - .. py:attribute:: pr_3 - - - .. py:attribute:: pr_4 - - - .. py:attribute:: pr_5 - - - .. py:attribute:: pr_auto - - - .. py:attribute:: pt_0 - - - .. py:attribute:: pt_1 - - - .. py:attribute:: pt_2 - - - .. py:attribute:: pt_3 - - - .. py:attribute:: pt_4 - - - .. py:attribute:: pt_5 - - - .. py:attribute:: pt_auto - - - .. py:attribute:: px_0 - - - .. py:attribute:: px_1 - - - .. py:attribute:: px_2 - - - .. py:attribute:: px_3 - - - .. py:attribute:: px_4 - - - .. py:attribute:: px_5 - - - .. py:attribute:: px_auto - - - .. py:attribute:: py_0 - - - .. py:attribute:: py_1 - - - .. py:attribute:: py_2 - - - .. py:attribute:: py_3 - - - .. py:attribute:: py_4 - - - .. py:attribute:: py_5 - - - .. py:attribute:: py_auto - - - .. py:attribute:: tag - diff --git a/docs/autoapi/ipyvuetify/Counter.rst b/docs/autoapi/ipyvuetify/Counter.rst deleted file mode 100644 index 18449f52..00000000 --- a/docs/autoapi/ipyvuetify/Counter.rst +++ /dev/null @@ -1,29 +0,0 @@ -ipyvuetify.Counter -================== - -.. py:class:: ipyvuetify.Counter(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: max - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/Data.rst b/docs/autoapi/ipyvuetify/Data.rst deleted file mode 100644 index 433a2db8..00000000 --- a/docs/autoapi/ipyvuetify/Data.rst +++ /dev/null @@ -1,65 +0,0 @@ -ipyvuetify.Data -=============== - -.. py:class:: ipyvuetify.Data(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: disable_filtering - - - .. py:attribute:: disable_pagination - - - .. py:attribute:: disable_sort - - - .. py:attribute:: group_by - - - .. py:attribute:: group_desc - - - .. py:attribute:: items - - - .. py:attribute:: items_per_page - - - .. py:attribute:: locale - - - .. py:attribute:: multi_sort - - - .. py:attribute:: must_sort - - - .. py:attribute:: options - - - .. py:attribute:: page - - - .. py:attribute:: search - - - .. py:attribute:: server_items_length - - - .. py:attribute:: sort_by - - - .. py:attribute:: sort_desc - diff --git a/docs/autoapi/ipyvuetify/DataFooter.rst b/docs/autoapi/ipyvuetify/DataFooter.rst index 097e6873..64d0f6f0 100644 --- a/docs/autoapi/ipyvuetify/DataFooter.rst +++ b/docs/autoapi/ipyvuetify/DataFooter.rst @@ -1,59 +1,94 @@ ipyvuetify.DataFooter ===================== -.. py:class:: ipyvuetify.DataFooter(**kwargs) +.. py:class:: ipyvuetify.DataFooter Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + The footer component for data tables, typically containing pagination controls. .. py:attribute:: disable_items_per_page + Disables items-per-page dropdown + + .. py:attribute:: disable_pagination + Disables pagination buttons + + .. py:attribute:: first_icon + First icon + + .. py:attribute:: items_per_page_all_text + Text for 'All' option in items-per-page dropdown + + .. py:attribute:: items_per_page_options + Array of options to show in the items-per-page dropdown + + .. py:attribute:: items_per_page_text + Text for items-per-page dropdown + + .. py:attribute:: last_icon + Last icon + + .. py:attribute:: next_icon + Next icon + + .. py:attribute:: options + DataOptions + + .. py:attribute:: page_text + The doc could not be extracted from vuetify API + + .. py:attribute:: pagination + DataPagination + + .. py:attribute:: prev_icon + Previous icon + + .. py:attribute:: show_current_page + Show current page number between prev/next icons + + .. py:attribute:: show_first_last_page + Show first/last icons + + diff --git a/docs/autoapi/ipyvuetify/DataIterator.rst b/docs/autoapi/ipyvuetify/DataIterator.rst deleted file mode 100644 index 2f447edb..00000000 --- a/docs/autoapi/ipyvuetify/DataIterator.rst +++ /dev/null @@ -1,110 +0,0 @@ -ipyvuetify.DataIterator -======================= - -.. py:class:: ipyvuetify.DataIterator(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: dark - - - .. py:attribute:: disable_filtering - - - .. py:attribute:: disable_pagination - - - .. py:attribute:: disable_sort - - - .. py:attribute:: expanded - - - .. py:attribute:: footer_props - - - .. py:attribute:: group_by - - - .. py:attribute:: group_desc - - - .. py:attribute:: hide_default_footer - - - .. py:attribute:: item_key - - - .. py:attribute:: items - - - .. py:attribute:: items_per_page - - - .. py:attribute:: light - - - .. py:attribute:: loading - - - .. py:attribute:: loading_text - - - .. py:attribute:: locale - - - .. py:attribute:: mobile_breakpoint - - - .. py:attribute:: multi_sort - - - .. py:attribute:: must_sort - - - .. py:attribute:: no_data_text - - - .. py:attribute:: no_results_text - - - .. py:attribute:: options - - - .. py:attribute:: page - - - .. py:attribute:: search - - - .. py:attribute:: selectable_key - - - .. py:attribute:: server_items_length - - - .. py:attribute:: single_expand - - - .. py:attribute:: single_select - - - .. py:attribute:: sort_by - - - .. py:attribute:: sort_desc - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/DataTable.rst b/docs/autoapi/ipyvuetify/DataTable.rst deleted file mode 100644 index acd13d05..00000000 --- a/docs/autoapi/ipyvuetify/DataTable.rst +++ /dev/null @@ -1,149 +0,0 @@ -ipyvuetify.DataTable -==================== - -.. py:class:: ipyvuetify.DataTable(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: calculate_widths - - - .. py:attribute:: caption - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disable_filtering - - - .. py:attribute:: disable_pagination - - - .. py:attribute:: disable_sort - - - .. py:attribute:: expand_icon - - - .. py:attribute:: expanded - - - .. py:attribute:: fixed_header - - - .. py:attribute:: footer_props - - - .. py:attribute:: group_by - - - .. py:attribute:: group_desc - - - .. py:attribute:: header_props - - - .. py:attribute:: headers - - - .. py:attribute:: headers_length - - - .. py:attribute:: height - - - .. py:attribute:: hide_default_footer - - - .. py:attribute:: hide_default_header - - - .. py:attribute:: item_key - - - .. py:attribute:: items - - - .. py:attribute:: items_per_page - - - .. py:attribute:: light - - - .. py:attribute:: loading - - - .. py:attribute:: loading_text - - - .. py:attribute:: locale - - - .. py:attribute:: mobile_breakpoint - - - .. py:attribute:: multi_sort - - - .. py:attribute:: must_sort - - - .. py:attribute:: no_data_text - - - .. py:attribute:: no_results_text - - - .. py:attribute:: options - - - .. py:attribute:: page - - - .. py:attribute:: search - - - .. py:attribute:: selectable_key - - - .. py:attribute:: server_items_length - - - .. py:attribute:: show_expand - - - .. py:attribute:: show_group_by - - - .. py:attribute:: show_select - - - .. py:attribute:: single_expand - - - .. py:attribute:: single_select - - - .. py:attribute:: sort_by - - - .. py:attribute:: sort_desc - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/DataTableHeader.rst b/docs/autoapi/ipyvuetify/DataTableHeader.rst index 563c07db..b13b5c9c 100644 --- a/docs/autoapi/ipyvuetify/DataTableHeader.rst +++ b/docs/autoapi/ipyvuetify/DataTableHeader.rst @@ -1,20 +1,16 @@ ipyvuetify.DataTableHeader ========================== -.. py:class:: ipyvuetify.DataTableHeader(**kwargs) +.. py:class:: ipyvuetify.DataTableHeader Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + The header component for data tables containing column headers. .. py:attribute:: mobile + Renders mobile view of headers + + diff --git a/docs/autoapi/ipyvuetify/DatePicker.rst b/docs/autoapi/ipyvuetify/DatePicker.rst deleted file mode 100644 index d1d26df6..00000000 --- a/docs/autoapi/ipyvuetify/DatePicker.rst +++ /dev/null @@ -1,107 +0,0 @@ -ipyvuetify.DatePicker -===================== - -.. py:class:: ipyvuetify.DatePicker(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: event_color - - - .. py:attribute:: events - - - .. py:attribute:: first_day_of_week - - - .. py:attribute:: full_width - - - .. py:attribute:: header_color - - - .. py:attribute:: landscape - - - .. py:attribute:: light - - - .. py:attribute:: locale - - - .. py:attribute:: locale_first_day_of_year - - - .. py:attribute:: max - - - .. py:attribute:: min - - - .. py:attribute:: multiple - - - .. py:attribute:: next_icon - - - .. py:attribute:: no_title - - - .. py:attribute:: picker_date - - - .. py:attribute:: prev_icon - - - .. py:attribute:: range - - - .. py:attribute:: reactive - - - .. py:attribute:: readonly - - - .. py:attribute:: scrollable - - - .. py:attribute:: selected_items_text - - - .. py:attribute:: show_current - - - .. py:attribute:: show_week - - - .. py:attribute:: type - - - .. py:attribute:: value - - - .. py:attribute:: width - - - .. py:attribute:: year_icon - diff --git a/docs/autoapi/ipyvuetify/DatePickerDateTable.rst b/docs/autoapi/ipyvuetify/DatePickerDateTable.rst deleted file mode 100644 index 75aab77e..00000000 --- a/docs/autoapi/ipyvuetify/DatePickerDateTable.rst +++ /dev/null @@ -1,71 +0,0 @@ -ipyvuetify.DatePickerDateTable -============================== - -.. py:class:: ipyvuetify.DatePickerDateTable(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: current - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: event_color - - - .. py:attribute:: events - - - .. py:attribute:: first_day_of_week - - - .. py:attribute:: light - - - .. py:attribute:: locale - - - .. py:attribute:: locale_first_day_of_year - - - .. py:attribute:: max - - - .. py:attribute:: min - - - .. py:attribute:: range - - - .. py:attribute:: readonly - - - .. py:attribute:: scrollable - - - .. py:attribute:: show_week - - - .. py:attribute:: table_date - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/DatePickerHeader.rst b/docs/autoapi/ipyvuetify/DatePickerHeader.rst deleted file mode 100644 index d51888ea..00000000 --- a/docs/autoapi/ipyvuetify/DatePickerHeader.rst +++ /dev/null @@ -1,50 +0,0 @@ -ipyvuetify.DatePickerHeader -=========================== - -.. py:class:: ipyvuetify.DatePickerHeader(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: light - - - .. py:attribute:: locale - - - .. py:attribute:: max - - - .. py:attribute:: min - - - .. py:attribute:: next_icon - - - .. py:attribute:: prev_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/DatePickerMonthTable.rst b/docs/autoapi/ipyvuetify/DatePickerMonthTable.rst deleted file mode 100644 index c5a88e78..00000000 --- a/docs/autoapi/ipyvuetify/DatePickerMonthTable.rst +++ /dev/null @@ -1,62 +0,0 @@ -ipyvuetify.DatePickerMonthTable -=============================== - -.. py:class:: ipyvuetify.DatePickerMonthTable(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: current - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: event_color - - - .. py:attribute:: events - - - .. py:attribute:: light - - - .. py:attribute:: locale - - - .. py:attribute:: max - - - .. py:attribute:: min - - - .. py:attribute:: range - - - .. py:attribute:: readonly - - - .. py:attribute:: scrollable - - - .. py:attribute:: table_date - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/DatePickerTitle.rst b/docs/autoapi/ipyvuetify/DatePickerTitle.rst deleted file mode 100644 index e6022386..00000000 --- a/docs/autoapi/ipyvuetify/DatePickerTitle.rst +++ /dev/null @@ -1,41 +0,0 @@ -ipyvuetify.DatePickerTitle -========================== - -.. py:class:: ipyvuetify.DatePickerTitle(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: date - - - .. py:attribute:: disabled - - - .. py:attribute:: readonly - - - .. py:attribute:: selecting_year - - - .. py:attribute:: value - - - .. py:attribute:: year - - - .. py:attribute:: year_icon - diff --git a/docs/autoapi/ipyvuetify/DatePickerYears.rst b/docs/autoapi/ipyvuetify/DatePickerYears.rst deleted file mode 100644 index 587e5d66..00000000 --- a/docs/autoapi/ipyvuetify/DatePickerYears.rst +++ /dev/null @@ -1,35 +0,0 @@ -ipyvuetify.DatePickerYears -========================== - -.. py:class:: ipyvuetify.DatePickerYears(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: locale - - - .. py:attribute:: max - - - .. py:attribute:: min - - - .. py:attribute:: readonly - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/Dialog.rst b/docs/autoapi/ipyvuetify/Dialog.rst deleted file mode 100644 index 07e208c0..00000000 --- a/docs/autoapi/ipyvuetify/Dialog.rst +++ /dev/null @@ -1,92 +0,0 @@ -ipyvuetify.Dialog -================= - -.. py:class:: ipyvuetify.Dialog(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: activator - - - .. py:attribute:: attach - - - .. py:attribute:: close_delay - - - .. py:attribute:: content_class - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: fullscreen - - - .. py:attribute:: hide_overlay - - - .. py:attribute:: internal_activator - - - .. py:attribute:: light - - - .. py:attribute:: max_width - - - .. py:attribute:: no_click_animation - - - .. py:attribute:: open_delay - - - .. py:attribute:: open_on_hover - - - .. py:attribute:: origin - - - .. py:attribute:: overlay_color - - - .. py:attribute:: overlay_opacity - - - .. py:attribute:: persistent - - - .. py:attribute:: retain_focus - - - .. py:attribute:: return_value - - - .. py:attribute:: scrollable - - - .. py:attribute:: transition - - - .. py:attribute:: value - - - .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/DialogBottomTransition.rst b/docs/autoapi/ipyvuetify/DialogBottomTransition.rst index ce6da4ad..7750ad8d 100644 --- a/docs/autoapi/ipyvuetify/DialogBottomTransition.rst +++ b/docs/autoapi/ipyvuetify/DialogBottomTransition.rst @@ -1,32 +1,40 @@ ipyvuetify.DialogBottomTransition ================================= -.. py:class:: ipyvuetify.DialogBottomTransition(**kwargs) +.. py:class:: ipyvuetify.DialogBottomTransition Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A transition component for dialogs that slide from the bottom. .. py:attribute:: group + Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) + + .. py:attribute:: hide_on_leave + Hides the leaving element (no exit animation) + + .. py:attribute:: leave_absolute + Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) + + .. py:attribute:: mode + Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). + + .. py:attribute:: origin + Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). + + diff --git a/docs/autoapi/ipyvuetify/DialogTransition.rst b/docs/autoapi/ipyvuetify/DialogTransition.rst index eb71753d..0ed61e96 100644 --- a/docs/autoapi/ipyvuetify/DialogTransition.rst +++ b/docs/autoapi/ipyvuetify/DialogTransition.rst @@ -1,32 +1,40 @@ ipyvuetify.DialogTransition =========================== -.. py:class:: ipyvuetify.DialogTransition(**kwargs) +.. py:class:: ipyvuetify.DialogTransition Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A transition component that provides dialog animation effects. .. py:attribute:: group + Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) + + .. py:attribute:: hide_on_leave + Hides the leaving element (no exit animation) + + .. py:attribute:: leave_absolute + Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) + + .. py:attribute:: mode + Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). + + .. py:attribute:: origin + Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). + + diff --git a/docs/autoapi/ipyvuetify/Divider.rst b/docs/autoapi/ipyvuetify/Divider.rst index cbe920bd..41346bfb 100644 --- a/docs/autoapi/ipyvuetify/Divider.rst +++ b/docs/autoapi/ipyvuetify/Divider.rst @@ -1,29 +1,34 @@ ipyvuetify.Divider ================== -.. py:class:: ipyvuetify.Divider(**kwargs) +.. py:class:: ipyvuetify.Divider Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + The v-divider component is used to separate sections of lists or layouts with a thin line. .. py:attribute:: dark + Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). + + .. py:attribute:: inset + Adds indentation (72px) for **normal** dividers, reduces max height for **vertical**. + + .. py:attribute:: light + Applies the light theme variant to the component. + + .. py:attribute:: vertical + Displays dividers vertically + + diff --git a/docs/autoapi/ipyvuetify/EditDialog.rst b/docs/autoapi/ipyvuetify/EditDialog.rst index 9fa6312e..a6f8f3f5 100644 --- a/docs/autoapi/ipyvuetify/EditDialog.rst +++ b/docs/autoapi/ipyvuetify/EditDialog.rst @@ -1,44 +1,64 @@ ipyvuetify.EditDialog ===================== -.. py:class:: ipyvuetify.EditDialog(**kwargs) +.. py:class:: ipyvuetify.EditDialog Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A dialog component specifically designed for inline editing within data tables. .. py:attribute:: cancel_text + Sets the default text for the cancel button when using the **large** prop + + .. py:attribute:: dark + Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). + + .. py:attribute:: eager + Will force the components content to render on mounted. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO. + + .. py:attribute:: large + Attaches a submit and cancel button to the dialog + + .. py:attribute:: light + Applies the light theme variant to the component. + + .. py:attribute:: persistent + Clicking outside or pressing **esc** key will not dismiss the dialog + + .. py:attribute:: return_value + The doc could not be extracted from vuetify API + + .. py:attribute:: save_text + Sets the default text for the save button when using the **large** prop + + .. py:attribute:: transition + Sets the component transition. Can be one of the [built in transitions](/styles/transitions) or one your own. + + diff --git a/docs/autoapi/ipyvuetify/ExpandTransition.rst b/docs/autoapi/ipyvuetify/ExpandTransition.rst index 3c541150..626ba415 100644 --- a/docs/autoapi/ipyvuetify/ExpandTransition.rst +++ b/docs/autoapi/ipyvuetify/ExpandTransition.rst @@ -1,20 +1,16 @@ ipyvuetify.ExpandTransition =========================== -.. py:class:: ipyvuetify.ExpandTransition(**kwargs) +.. py:class:: ipyvuetify.ExpandTransition Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A transition component that provides expand/collapse animation effects. .. py:attribute:: mode + Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). + + diff --git a/docs/autoapi/ipyvuetify/ExpandXTransition.rst b/docs/autoapi/ipyvuetify/ExpandXTransition.rst index ae59cc4d..83a5fead 100644 --- a/docs/autoapi/ipyvuetify/ExpandXTransition.rst +++ b/docs/autoapi/ipyvuetify/ExpandXTransition.rst @@ -1,20 +1,16 @@ ipyvuetify.ExpandXTransition ============================ -.. py:class:: ipyvuetify.ExpandXTransition(**kwargs) +.. py:class:: ipyvuetify.ExpandXTransition Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A transition component that provides horizontal expand/collapse animation effects. .. py:attribute:: mode + Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). + + diff --git a/docs/autoapi/ipyvuetify/ExpansionPanel.rst b/docs/autoapi/ipyvuetify/ExpansionPanel.rst index b2619f60..3b161f8d 100644 --- a/docs/autoapi/ipyvuetify/ExpansionPanel.rst +++ b/docs/autoapi/ipyvuetify/ExpansionPanel.rst @@ -1,26 +1,28 @@ ipyvuetify.ExpansionPanel ========================= -.. py:class:: ipyvuetify.ExpansionPanel(**kwargs) +.. py:class:: ipyvuetify.ExpansionPanel Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A single expandable panel within v-expansion-panels that can show or hide content. .. py:attribute:: active_class + Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation. + + .. py:attribute:: disabled + Disables the expansion-panel content + + .. py:attribute:: readonly + Makes the expansion-panel content read only. + + diff --git a/docs/autoapi/ipyvuetify/ExpansionPanelContent.rst b/docs/autoapi/ipyvuetify/ExpansionPanelContent.rst index 934518ff..4b4b72d1 100644 --- a/docs/autoapi/ipyvuetify/ExpansionPanelContent.rst +++ b/docs/autoapi/ipyvuetify/ExpansionPanelContent.rst @@ -1,23 +1,22 @@ ipyvuetify.ExpansionPanelContent ================================ -.. py:class:: ipyvuetify.ExpansionPanelContent(**kwargs) +.. py:class:: ipyvuetify.ExpansionPanelContent Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + The content area of an expansion panel that is shown when expanded. .. py:attribute:: color + Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors). + + .. py:attribute:: eager + Will force the components content to render on mounted. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO. + + diff --git a/docs/autoapi/ipyvuetify/ExpansionPanelHeader.rst b/docs/autoapi/ipyvuetify/ExpansionPanelHeader.rst deleted file mode 100644 index 3431d601..00000000 --- a/docs/autoapi/ipyvuetify/ExpansionPanelHeader.rst +++ /dev/null @@ -1,32 +0,0 @@ -ipyvuetify.ExpansionPanelHeader -=============================== - -.. py:class:: ipyvuetify.ExpansionPanelHeader(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: disable_icon_rotate - - - .. py:attribute:: expand_icon - - - .. py:attribute:: hide_actions - - - .. py:attribute:: ripple - diff --git a/docs/autoapi/ipyvuetify/ExpansionPanels.rst b/docs/autoapi/ipyvuetify/ExpansionPanels.rst deleted file mode 100644 index bfba632a..00000000 --- a/docs/autoapi/ipyvuetify/ExpansionPanels.rst +++ /dev/null @@ -1,65 +0,0 @@ -ipyvuetify.ExpansionPanels -========================== - -.. py:class:: ipyvuetify.ExpansionPanels(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: accordion - - - .. py:attribute:: active_class - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: flat - - - .. py:attribute:: focusable - - - .. py:attribute:: hover - - - .. py:attribute:: inset - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: multiple - - - .. py:attribute:: popout - - - .. py:attribute:: readonly - - - .. py:attribute:: tile - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/FabTransition.rst b/docs/autoapi/ipyvuetify/FabTransition.rst index 93a89e4d..2b43eab4 100644 --- a/docs/autoapi/ipyvuetify/FabTransition.rst +++ b/docs/autoapi/ipyvuetify/FabTransition.rst @@ -1,32 +1,40 @@ ipyvuetify.FabTransition ======================== -.. py:class:: ipyvuetify.FabTransition(**kwargs) +.. py:class:: ipyvuetify.FabTransition Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A transition component that provides floating action button animation effects. .. py:attribute:: group + Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) + + .. py:attribute:: hide_on_leave + Hides the leaving element (no exit animation) + + .. py:attribute:: leave_absolute + Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) + + .. py:attribute:: mode + Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). + + .. py:attribute:: origin + Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). + + diff --git a/docs/autoapi/ipyvuetify/FadeTransition.rst b/docs/autoapi/ipyvuetify/FadeTransition.rst index 880078c2..e272e861 100644 --- a/docs/autoapi/ipyvuetify/FadeTransition.rst +++ b/docs/autoapi/ipyvuetify/FadeTransition.rst @@ -1,32 +1,40 @@ ipyvuetify.FadeTransition ========================= -.. py:class:: ipyvuetify.FadeTransition(**kwargs) +.. py:class:: ipyvuetify.FadeTransition Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A transition component that provides fade in/out animation effects. .. py:attribute:: group + Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) + + .. py:attribute:: hide_on_leave + Hides the leaving element (no exit animation) + + .. py:attribute:: leave_absolute + Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) + + .. py:attribute:: mode + Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). + + .. py:attribute:: origin + Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). + + diff --git a/docs/autoapi/ipyvuetify/FileInput.rst b/docs/autoapi/ipyvuetify/FileInput.rst deleted file mode 100644 index 1a4dc884..00000000 --- a/docs/autoapi/ipyvuetify/FileInput.rst +++ /dev/null @@ -1,176 +0,0 @@ -ipyvuetify.FileInput -==================== - -.. py:class:: ipyvuetify.FileInput(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: append_outer_icon - - - .. py:attribute:: autofocus - - - .. py:attribute:: background_color - - - .. py:attribute:: chips - - - .. py:attribute:: clear_icon - - - .. py:attribute:: clearable - - - .. py:attribute:: color - - - .. py:attribute:: counter - - - .. py:attribute:: counter_size_string - - - .. py:attribute:: counter_string - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: filled - - - .. py:attribute:: flat - - - .. py:attribute:: full_width - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: messages - - - .. py:attribute:: multiple - - - .. py:attribute:: outlined - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: placeholder - - - .. py:attribute:: prefix - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: prepend_inner_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: reverse - - - .. py:attribute:: rounded - - - .. py:attribute:: rules - - - .. py:attribute:: shaped - - - .. py:attribute:: show_size - - - .. py:attribute:: single_line - - - .. py:attribute:: small_chips - - - .. py:attribute:: solo - - - .. py:attribute:: solo_inverted - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: suffix - - - .. py:attribute:: truncate_length - - - .. py:attribute:: type - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/Flex.rst b/docs/autoapi/ipyvuetify/Flex.rst deleted file mode 100644 index ac243617..00000000 --- a/docs/autoapi/ipyvuetify/Flex.rst +++ /dev/null @@ -1,890 +0,0 @@ -ipyvuetify.Flex -=============== - -.. py:class:: ipyvuetify.Flex(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: align_self_baseline - - - .. py:attribute:: align_self_center - - - .. py:attribute:: align_self_end - - - .. py:attribute:: align_self_start - - - .. py:attribute:: grow - - - .. py:attribute:: id - - - .. py:attribute:: lg1 - - - .. py:attribute:: lg10 - - - .. py:attribute:: lg11 - - - .. py:attribute:: lg12 - - - .. py:attribute:: lg2 - - - .. py:attribute:: lg3 - - - .. py:attribute:: lg4 - - - .. py:attribute:: lg5 - - - .. py:attribute:: lg6 - - - .. py:attribute:: lg7 - - - .. py:attribute:: lg8 - - - .. py:attribute:: lg9 - - - .. py:attribute:: ma_0 - - - .. py:attribute:: ma_1 - - - .. py:attribute:: ma_2 - - - .. py:attribute:: ma_3 - - - .. py:attribute:: ma_4 - - - .. py:attribute:: ma_5 - - - .. py:attribute:: ma_auto - - - .. py:attribute:: mb_0 - - - .. py:attribute:: mb_1 - - - .. py:attribute:: mb_2 - - - .. py:attribute:: mb_3 - - - .. py:attribute:: mb_4 - - - .. py:attribute:: mb_5 - - - .. py:attribute:: mb_auto - - - .. py:attribute:: md1 - - - .. py:attribute:: md10 - - - .. py:attribute:: md11 - - - .. py:attribute:: md12 - - - .. py:attribute:: md2 - - - .. py:attribute:: md3 - - - .. py:attribute:: md4 - - - .. py:attribute:: md5 - - - .. py:attribute:: md6 - - - .. py:attribute:: md7 - - - .. py:attribute:: md8 - - - .. py:attribute:: md9 - - - .. py:attribute:: ml_0 - - - .. py:attribute:: ml_1 - - - .. py:attribute:: ml_2 - - - .. py:attribute:: ml_3 - - - .. py:attribute:: ml_4 - - - .. py:attribute:: ml_5 - - - .. py:attribute:: ml_auto - - - .. py:attribute:: mr_0 - - - .. py:attribute:: mr_1 - - - .. py:attribute:: mr_2 - - - .. py:attribute:: mr_3 - - - .. py:attribute:: mr_4 - - - .. py:attribute:: mr_5 - - - .. py:attribute:: mr_auto - - - .. py:attribute:: mt_0 - - - .. py:attribute:: mt_1 - - - .. py:attribute:: mt_2 - - - .. py:attribute:: mt_3 - - - .. py:attribute:: mt_4 - - - .. py:attribute:: mt_5 - - - .. py:attribute:: mt_auto - - - .. py:attribute:: mx_0 - - - .. py:attribute:: mx_1 - - - .. py:attribute:: mx_2 - - - .. py:attribute:: mx_3 - - - .. py:attribute:: mx_4 - - - .. py:attribute:: mx_5 - - - .. py:attribute:: mx_auto - - - .. py:attribute:: my_0 - - - .. py:attribute:: my_1 - - - .. py:attribute:: my_2 - - - .. py:attribute:: my_3 - - - .. py:attribute:: my_4 - - - .. py:attribute:: my_5 - - - .. py:attribute:: my_auto - - - .. py:attribute:: offset_lg0 - - - .. py:attribute:: offset_lg1 - - - .. py:attribute:: offset_lg10 - - - .. py:attribute:: offset_lg11 - - - .. py:attribute:: offset_lg12 - - - .. py:attribute:: offset_lg2 - - - .. py:attribute:: offset_lg3 - - - .. py:attribute:: offset_lg4 - - - .. py:attribute:: offset_lg5 - - - .. py:attribute:: offset_lg6 - - - .. py:attribute:: offset_lg7 - - - .. py:attribute:: offset_lg8 - - - .. py:attribute:: offset_lg9 - - - .. py:attribute:: offset_md0 - - - .. py:attribute:: offset_md1 - - - .. py:attribute:: offset_md10 - - - .. py:attribute:: offset_md11 - - - .. py:attribute:: offset_md12 - - - .. py:attribute:: offset_md2 - - - .. py:attribute:: offset_md3 - - - .. py:attribute:: offset_md4 - - - .. py:attribute:: offset_md5 - - - .. py:attribute:: offset_md6 - - - .. py:attribute:: offset_md7 - - - .. py:attribute:: offset_md8 - - - .. py:attribute:: offset_md9 - - - .. py:attribute:: offset_sm0 - - - .. py:attribute:: offset_sm1 - - - .. py:attribute:: offset_sm10 - - - .. py:attribute:: offset_sm11 - - - .. py:attribute:: offset_sm12 - - - .. py:attribute:: offset_sm2 - - - .. py:attribute:: offset_sm3 - - - .. py:attribute:: offset_sm4 - - - .. py:attribute:: offset_sm5 - - - .. py:attribute:: offset_sm6 - - - .. py:attribute:: offset_sm7 - - - .. py:attribute:: offset_sm8 - - - .. py:attribute:: offset_sm9 - - - .. py:attribute:: offset_xl0 - - - .. py:attribute:: offset_xl1 - - - .. py:attribute:: offset_xl10 - - - .. py:attribute:: offset_xl11 - - - .. py:attribute:: offset_xl12 - - - .. py:attribute:: offset_xl2 - - - .. py:attribute:: offset_xl3 - - - .. py:attribute:: offset_xl4 - - - .. py:attribute:: offset_xl5 - - - .. py:attribute:: offset_xl6 - - - .. py:attribute:: offset_xl7 - - - .. py:attribute:: offset_xl8 - - - .. py:attribute:: offset_xl9 - - - .. py:attribute:: offset_xs0 - - - .. py:attribute:: offset_xs1 - - - .. py:attribute:: offset_xs10 - - - .. py:attribute:: offset_xs11 - - - .. py:attribute:: offset_xs12 - - - .. py:attribute:: offset_xs2 - - - .. py:attribute:: offset_xs3 - - - .. py:attribute:: offset_xs4 - - - .. py:attribute:: offset_xs5 - - - .. py:attribute:: offset_xs6 - - - .. py:attribute:: offset_xs7 - - - .. py:attribute:: offset_xs8 - - - .. py:attribute:: offset_xs9 - - - .. py:attribute:: order_lg1 - - - .. py:attribute:: order_lg10 - - - .. py:attribute:: order_lg11 - - - .. py:attribute:: order_lg12 - - - .. py:attribute:: order_lg2 - - - .. py:attribute:: order_lg3 - - - .. py:attribute:: order_lg4 - - - .. py:attribute:: order_lg5 - - - .. py:attribute:: order_lg6 - - - .. py:attribute:: order_lg7 - - - .. py:attribute:: order_lg8 - - - .. py:attribute:: order_lg9 - - - .. py:attribute:: order_md1 - - - .. py:attribute:: order_md10 - - - .. py:attribute:: order_md11 - - - .. py:attribute:: order_md12 - - - .. py:attribute:: order_md2 - - - .. py:attribute:: order_md3 - - - .. py:attribute:: order_md4 - - - .. py:attribute:: order_md5 - - - .. py:attribute:: order_md6 - - - .. py:attribute:: order_md7 - - - .. py:attribute:: order_md8 - - - .. py:attribute:: order_md9 - - - .. py:attribute:: order_sm1 - - - .. py:attribute:: order_sm10 - - - .. py:attribute:: order_sm11 - - - .. py:attribute:: order_sm12 - - - .. py:attribute:: order_sm2 - - - .. py:attribute:: order_sm3 - - - .. py:attribute:: order_sm4 - - - .. py:attribute:: order_sm5 - - - .. py:attribute:: order_sm6 - - - .. py:attribute:: order_sm7 - - - .. py:attribute:: order_sm8 - - - .. py:attribute:: order_sm9 - - - .. py:attribute:: order_xl1 - - - .. py:attribute:: order_xl10 - - - .. py:attribute:: order_xl11 - - - .. py:attribute:: order_xl12 - - - .. py:attribute:: order_xl2 - - - .. py:attribute:: order_xl3 - - - .. py:attribute:: order_xl4 - - - .. py:attribute:: order_xl5 - - - .. py:attribute:: order_xl6 - - - .. py:attribute:: order_xl7 - - - .. py:attribute:: order_xl8 - - - .. py:attribute:: order_xl9 - - - .. py:attribute:: order_xs1 - - - .. py:attribute:: order_xs10 - - - .. py:attribute:: order_xs11 - - - .. py:attribute:: order_xs12 - - - .. py:attribute:: order_xs2 - - - .. py:attribute:: order_xs3 - - - .. py:attribute:: order_xs4 - - - .. py:attribute:: order_xs5 - - - .. py:attribute:: order_xs6 - - - .. py:attribute:: order_xs7 - - - .. py:attribute:: order_xs8 - - - .. py:attribute:: order_xs9 - - - .. py:attribute:: pa_0 - - - .. py:attribute:: pa_1 - - - .. py:attribute:: pa_2 - - - .. py:attribute:: pa_3 - - - .. py:attribute:: pa_4 - - - .. py:attribute:: pa_5 - - - .. py:attribute:: pa_auto - - - .. py:attribute:: pb_0 - - - .. py:attribute:: pb_1 - - - .. py:attribute:: pb_2 - - - .. py:attribute:: pb_3 - - - .. py:attribute:: pb_4 - - - .. py:attribute:: pb_5 - - - .. py:attribute:: pb_auto - - - .. py:attribute:: pl_0 - - - .. py:attribute:: pl_1 - - - .. py:attribute:: pl_2 - - - .. py:attribute:: pl_3 - - - .. py:attribute:: pl_4 - - - .. py:attribute:: pl_5 - - - .. py:attribute:: pl_auto - - - .. py:attribute:: pr_0 - - - .. py:attribute:: pr_1 - - - .. py:attribute:: pr_2 - - - .. py:attribute:: pr_3 - - - .. py:attribute:: pr_4 - - - .. py:attribute:: pr_5 - - - .. py:attribute:: pr_auto - - - .. py:attribute:: pt_0 - - - .. py:attribute:: pt_1 - - - .. py:attribute:: pt_2 - - - .. py:attribute:: pt_3 - - - .. py:attribute:: pt_4 - - - .. py:attribute:: pt_5 - - - .. py:attribute:: pt_auto - - - .. py:attribute:: px_0 - - - .. py:attribute:: px_1 - - - .. py:attribute:: px_2 - - - .. py:attribute:: px_3 - - - .. py:attribute:: px_4 - - - .. py:attribute:: px_5 - - - .. py:attribute:: px_auto - - - .. py:attribute:: py_0 - - - .. py:attribute:: py_1 - - - .. py:attribute:: py_2 - - - .. py:attribute:: py_3 - - - .. py:attribute:: py_4 - - - .. py:attribute:: py_5 - - - .. py:attribute:: py_auto - - - .. py:attribute:: shrink - - - .. py:attribute:: sm1 - - - .. py:attribute:: sm10 - - - .. py:attribute:: sm11 - - - .. py:attribute:: sm12 - - - .. py:attribute:: sm2 - - - .. py:attribute:: sm3 - - - .. py:attribute:: sm4 - - - .. py:attribute:: sm5 - - - .. py:attribute:: sm6 - - - .. py:attribute:: sm7 - - - .. py:attribute:: sm8 - - - .. py:attribute:: sm9 - - - .. py:attribute:: tag - - - .. py:attribute:: xl1 - - - .. py:attribute:: xl10 - - - .. py:attribute:: xl11 - - - .. py:attribute:: xl12 - - - .. py:attribute:: xl2 - - - .. py:attribute:: xl3 - - - .. py:attribute:: xl4 - - - .. py:attribute:: xl5 - - - .. py:attribute:: xl6 - - - .. py:attribute:: xl7 - - - .. py:attribute:: xl8 - - - .. py:attribute:: xl9 - - - .. py:attribute:: xs1 - - - .. py:attribute:: xs10 - - - .. py:attribute:: xs11 - - - .. py:attribute:: xs12 - - - .. py:attribute:: xs2 - - - .. py:attribute:: xs3 - - - .. py:attribute:: xs4 - - - .. py:attribute:: xs5 - - - .. py:attribute:: xs6 - - - .. py:attribute:: xs7 - - - .. py:attribute:: xs8 - - - .. py:attribute:: xs9 - diff --git a/docs/autoapi/ipyvuetify/Footer.rst b/docs/autoapi/ipyvuetify/Footer.rst deleted file mode 100644 index 0d0f4bf4..00000000 --- a/docs/autoapi/ipyvuetify/Footer.rst +++ /dev/null @@ -1,68 +0,0 @@ -ipyvuetify.Footer -================= - -.. py:class:: ipyvuetify.Footer(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: app - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: elevation - - - .. py:attribute:: fixed - - - .. py:attribute:: height - - - .. py:attribute:: inset - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: padless - - - .. py:attribute:: tag - - - .. py:attribute:: tile - - - .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/Form.rst b/docs/autoapi/ipyvuetify/Form.rst index f021dbfa..1e518738 100644 --- a/docs/autoapi/ipyvuetify/Form.rst +++ b/docs/autoapi/ipyvuetify/Form.rst @@ -1,23 +1,22 @@ ipyvuetify.Form =============== -.. py:class:: ipyvuetify.Form(**kwargs) +.. py:class:: ipyvuetify.Form Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + The v-form component is used to wrap input components and provide validation capabilities for the entire form. .. py:attribute:: lazy_validation + If enabled, **value** will always be _true_ unless there are visible validation errors. You can still call `validate()` to manually trigger validation + + .. py:attribute:: value + A boolean value representing the validity of the form. + + diff --git a/docs/autoapi/ipyvuetify/Hover.rst b/docs/autoapi/ipyvuetify/Hover.rst deleted file mode 100644 index 49ff64f2..00000000 --- a/docs/autoapi/ipyvuetify/Hover.rst +++ /dev/null @@ -1,29 +0,0 @@ -ipyvuetify.Hover -================ - -.. py:class:: ipyvuetify.Hover(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: close_delay - - - .. py:attribute:: disabled - - - .. py:attribute:: open_delay - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/Icon.rst b/docs/autoapi/ipyvuetify/Icon.rst deleted file mode 100644 index ecb2d385..00000000 --- a/docs/autoapi/ipyvuetify/Icon.rst +++ /dev/null @@ -1,56 +0,0 @@ -ipyvuetify.Icon -=============== - -.. py:class:: ipyvuetify.Icon(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: large - - - .. py:attribute:: left - - - .. py:attribute:: light - - - .. py:attribute:: right - - - .. py:attribute:: size - - - .. py:attribute:: small - - - .. py:attribute:: tag - - - .. py:attribute:: x_large - - - .. py:attribute:: x_small - diff --git a/docs/autoapi/ipyvuetify/Img.rst b/docs/autoapi/ipyvuetify/Img.rst deleted file mode 100644 index 77448a2b..00000000 --- a/docs/autoapi/ipyvuetify/Img.rst +++ /dev/null @@ -1,71 +0,0 @@ -ipyvuetify.Img -============== - -.. py:class:: ipyvuetify.Img(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: alt - - - .. py:attribute:: aspect_ratio - - - .. py:attribute:: contain - - - .. py:attribute:: eager - - - .. py:attribute:: gradient - - - .. py:attribute:: height - - - .. py:attribute:: lazy_src - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: options - - - .. py:attribute:: position - - - .. py:attribute:: sizes - - - .. py:attribute:: src - - - .. py:attribute:: srcset - - - .. py:attribute:: transition - - - .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/Input.rst b/docs/autoapi/ipyvuetify/Input.rst deleted file mode 100644 index 660dd6d1..00000000 --- a/docs/autoapi/ipyvuetify/Input.rst +++ /dev/null @@ -1,92 +0,0 @@ -ipyvuetify.Input -================ - -.. py:class:: ipyvuetify.Input(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: background_color - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loading - - - .. py:attribute:: messages - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: rules - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/Item.rst b/docs/autoapi/ipyvuetify/Item.rst index d904b13c..43b104fb 100644 --- a/docs/autoapi/ipyvuetify/Item.rst +++ b/docs/autoapi/ipyvuetify/Item.rst @@ -1,26 +1,28 @@ ipyvuetify.Item =============== -.. py:class:: ipyvuetify.Item(**kwargs) +.. py:class:: ipyvuetify.Item Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A component used within v-item-group for creating selectable items in a group. .. py:attribute:: active_class + Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation. + + .. py:attribute:: disabled + Removes the ability to click or target the component. + + .. py:attribute:: value + The value used when the component is selected in a group. If not provided, the index will be used. + + diff --git a/docs/autoapi/ipyvuetify/ItemGroup.rst b/docs/autoapi/ipyvuetify/ItemGroup.rst deleted file mode 100644 index c3a6f87b..00000000 --- a/docs/autoapi/ipyvuetify/ItemGroup.rst +++ /dev/null @@ -1,38 +0,0 @@ -ipyvuetify.ItemGroup -==================== - -.. py:class:: ipyvuetify.ItemGroup(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: multiple - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/Label.rst b/docs/autoapi/ipyvuetify/Label.rst deleted file mode 100644 index d1d1da97..00000000 --- a/docs/autoapi/ipyvuetify/Label.rst +++ /dev/null @@ -1,47 +0,0 @@ -ipyvuetify.Label -================ - -.. py:class:: ipyvuetify.Label(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: focused - - - .. py:attribute:: for_ - - - .. py:attribute:: left - - - .. py:attribute:: light - - - .. py:attribute:: right - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/Layout.rst b/docs/autoapi/ipyvuetify/Layout.rst deleted file mode 100644 index 7cbef2af..00000000 --- a/docs/autoapi/ipyvuetify/Layout.rst +++ /dev/null @@ -1,443 +0,0 @@ -ipyvuetify.Layout -================= - -.. py:class:: ipyvuetify.Layout(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: align_baseline - - - .. py:attribute:: align_center - - - .. py:attribute:: align_content_center - - - .. py:attribute:: align_content_end - - - .. py:attribute:: align_content_space_around - - - .. py:attribute:: align_content_space_between - - - .. py:attribute:: align_content_start - - - .. py:attribute:: align_end - - - .. py:attribute:: align_start - - - .. py:attribute:: column - - - .. py:attribute:: d_block - - - .. py:attribute:: d_contents - - - .. py:attribute:: d_flex - - - .. py:attribute:: d_grid - - - .. py:attribute:: d_inherit - - - .. py:attribute:: d_initial - - - .. py:attribute:: d_inline - - - .. py:attribute:: d_inline_block - - - .. py:attribute:: d_inline_flex - - - .. py:attribute:: d_inline_grid - - - .. py:attribute:: d_inline_table - - - .. py:attribute:: d_list_item - - - .. py:attribute:: d_none - - - .. py:attribute:: d_run_in - - - .. py:attribute:: d_table - - - .. py:attribute:: d_table_caption - - - .. py:attribute:: d_table_cell - - - .. py:attribute:: d_table_column - - - .. py:attribute:: d_table_column_group - - - .. py:attribute:: d_table_footer_group - - - .. py:attribute:: d_table_header_group - - - .. py:attribute:: d_table_row - - - .. py:attribute:: d_table_row_group - - - .. py:attribute:: fill_height - - - .. py:attribute:: id - - - .. py:attribute:: justify_center - - - .. py:attribute:: justify_end - - - .. py:attribute:: justify_space_around - - - .. py:attribute:: justify_space_between - - - .. py:attribute:: justify_start - - - .. py:attribute:: ma_0 - - - .. py:attribute:: ma_1 - - - .. py:attribute:: ma_2 - - - .. py:attribute:: ma_3 - - - .. py:attribute:: ma_4 - - - .. py:attribute:: ma_5 - - - .. py:attribute:: ma_auto - - - .. py:attribute:: mb_0 - - - .. py:attribute:: mb_1 - - - .. py:attribute:: mb_2 - - - .. py:attribute:: mb_3 - - - .. py:attribute:: mb_4 - - - .. py:attribute:: mb_5 - - - .. py:attribute:: mb_auto - - - .. py:attribute:: ml_0 - - - .. py:attribute:: ml_1 - - - .. py:attribute:: ml_2 - - - .. py:attribute:: ml_3 - - - .. py:attribute:: ml_4 - - - .. py:attribute:: ml_5 - - - .. py:attribute:: ml_auto - - - .. py:attribute:: mr_0 - - - .. py:attribute:: mr_1 - - - .. py:attribute:: mr_2 - - - .. py:attribute:: mr_3 - - - .. py:attribute:: mr_4 - - - .. py:attribute:: mr_5 - - - .. py:attribute:: mr_auto - - - .. py:attribute:: mt_0 - - - .. py:attribute:: mt_1 - - - .. py:attribute:: mt_2 - - - .. py:attribute:: mt_3 - - - .. py:attribute:: mt_4 - - - .. py:attribute:: mt_5 - - - .. py:attribute:: mt_auto - - - .. py:attribute:: mx_0 - - - .. py:attribute:: mx_1 - - - .. py:attribute:: mx_2 - - - .. py:attribute:: mx_3 - - - .. py:attribute:: mx_4 - - - .. py:attribute:: mx_5 - - - .. py:attribute:: mx_auto - - - .. py:attribute:: my_0 - - - .. py:attribute:: my_1 - - - .. py:attribute:: my_2 - - - .. py:attribute:: my_3 - - - .. py:attribute:: my_4 - - - .. py:attribute:: my_5 - - - .. py:attribute:: my_auto - - - .. py:attribute:: pa_0 - - - .. py:attribute:: pa_1 - - - .. py:attribute:: pa_2 - - - .. py:attribute:: pa_3 - - - .. py:attribute:: pa_4 - - - .. py:attribute:: pa_5 - - - .. py:attribute:: pa_auto - - - .. py:attribute:: pb_0 - - - .. py:attribute:: pb_1 - - - .. py:attribute:: pb_2 - - - .. py:attribute:: pb_3 - - - .. py:attribute:: pb_4 - - - .. py:attribute:: pb_5 - - - .. py:attribute:: pb_auto - - - .. py:attribute:: pl_0 - - - .. py:attribute:: pl_1 - - - .. py:attribute:: pl_2 - - - .. py:attribute:: pl_3 - - - .. py:attribute:: pl_4 - - - .. py:attribute:: pl_5 - - - .. py:attribute:: pl_auto - - - .. py:attribute:: pr_0 - - - .. py:attribute:: pr_1 - - - .. py:attribute:: pr_2 - - - .. py:attribute:: pr_3 - - - .. py:attribute:: pr_4 - - - .. py:attribute:: pr_5 - - - .. py:attribute:: pr_auto - - - .. py:attribute:: pt_0 - - - .. py:attribute:: pt_1 - - - .. py:attribute:: pt_2 - - - .. py:attribute:: pt_3 - - - .. py:attribute:: pt_4 - - - .. py:attribute:: pt_5 - - - .. py:attribute:: pt_auto - - - .. py:attribute:: px_0 - - - .. py:attribute:: px_1 - - - .. py:attribute:: px_2 - - - .. py:attribute:: px_3 - - - .. py:attribute:: px_4 - - - .. py:attribute:: px_5 - - - .. py:attribute:: px_auto - - - .. py:attribute:: py_0 - - - .. py:attribute:: py_1 - - - .. py:attribute:: py_2 - - - .. py:attribute:: py_3 - - - .. py:attribute:: py_4 - - - .. py:attribute:: py_5 - - - .. py:attribute:: py_auto - - - .. py:attribute:: reverse - - - .. py:attribute:: row - - - .. py:attribute:: tag - - - .. py:attribute:: wrap - diff --git a/docs/autoapi/ipyvuetify/Lazy.rst b/docs/autoapi/ipyvuetify/Lazy.rst deleted file mode 100644 index fa65517f..00000000 --- a/docs/autoapi/ipyvuetify/Lazy.rst +++ /dev/null @@ -1,32 +0,0 @@ -ipyvuetify.Lazy -=============== - -.. py:class:: ipyvuetify.Lazy(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: min_height - - - .. py:attribute:: options - - - .. py:attribute:: tag - - - .. py:attribute:: transition - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/List.rst b/docs/autoapi/ipyvuetify/List.rst deleted file mode 100644 index fe4e04f3..00000000 --- a/docs/autoapi/ipyvuetify/List.rst +++ /dev/null @@ -1,83 +0,0 @@ -ipyvuetify.List -=============== - -.. py:class:: ipyvuetify.List(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: elevation - - - .. py:attribute:: expand - - - .. py:attribute:: flat - - - .. py:attribute:: height - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: nav - - - .. py:attribute:: rounded - - - .. py:attribute:: shaped - - - .. py:attribute:: subheader - - - .. py:attribute:: tag - - - .. py:attribute:: three_line - - - .. py:attribute:: tile - - - .. py:attribute:: two_line - - - .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/ListGroup.rst b/docs/autoapi/ipyvuetify/ListGroup.rst deleted file mode 100644 index 3f496856..00000000 --- a/docs/autoapi/ipyvuetify/ListGroup.rst +++ /dev/null @@ -1,50 +0,0 @@ -ipyvuetify.ListGroup -==================== - -.. py:class:: ipyvuetify.ListGroup(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: append_icon - - - .. py:attribute:: color - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: group - - - .. py:attribute:: no_action - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: ripple - - - .. py:attribute:: sub_group - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/ListItem.rst b/docs/autoapi/ipyvuetify/ListItem.rst deleted file mode 100644 index 6a12368c..00000000 --- a/docs/autoapi/ipyvuetify/ListItem.rst +++ /dev/null @@ -1,86 +0,0 @@ -ipyvuetify.ListItem -=================== - -.. py:class:: ipyvuetify.ListItem(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: append - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: exact - - - .. py:attribute:: exact_active_class - - - .. py:attribute:: href - - - .. py:attribute:: inactive - - - .. py:attribute:: input_value - - - .. py:attribute:: light - - - .. py:attribute:: link - - - .. py:attribute:: nuxt - - - .. py:attribute:: replace - - - .. py:attribute:: ripple - - - .. py:attribute:: selectable - - - .. py:attribute:: tag - - - .. py:attribute:: target - - - .. py:attribute:: three_line - - - .. py:attribute:: to - - - .. py:attribute:: two_line - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/ListItemAction.rst b/docs/autoapi/ipyvuetify/ListItemAction.rst index 46ef6f19..0dd27dc9 100644 --- a/docs/autoapi/ipyvuetify/ListItemAction.rst +++ b/docs/autoapi/ipyvuetify/ListItemAction.rst @@ -1,17 +1,10 @@ ipyvuetify.ListItemAction ========================= -.. py:class:: ipyvuetify.ListItemAction(**kwargs) +.. py:class:: ipyvuetify.ListItemAction Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + The action area of a list item, typically containing buttons or checkboxes. diff --git a/docs/autoapi/ipyvuetify/ListItemActionText.rst b/docs/autoapi/ipyvuetify/ListItemActionText.rst index d379cdfb..7b7c7640 100644 --- a/docs/autoapi/ipyvuetify/ListItemActionText.rst +++ b/docs/autoapi/ipyvuetify/ListItemActionText.rst @@ -1,17 +1,10 @@ ipyvuetify.ListItemActionText ============================= -.. py:class:: ipyvuetify.ListItemActionText(**kwargs) +.. py:class:: ipyvuetify.ListItemActionText Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + Text content for list item actions. diff --git a/docs/autoapi/ipyvuetify/ListItemAvatar.rst b/docs/autoapi/ipyvuetify/ListItemAvatar.rst deleted file mode 100644 index 3a0b98b4..00000000 --- a/docs/autoapi/ipyvuetify/ListItemAvatar.rst +++ /dev/null @@ -1,53 +0,0 @@ -ipyvuetify.ListItemAvatar -========================= - -.. py:class:: ipyvuetify.ListItemAvatar(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: height - - - .. py:attribute:: horizontal - - - .. py:attribute:: left - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: right - - - .. py:attribute:: size - - - .. py:attribute:: tile - - - .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/ListItemContent.rst b/docs/autoapi/ipyvuetify/ListItemContent.rst index d8931f1e..329babd2 100644 --- a/docs/autoapi/ipyvuetify/ListItemContent.rst +++ b/docs/autoapi/ipyvuetify/ListItemContent.rst @@ -1,17 +1,10 @@ ipyvuetify.ListItemContent ========================== -.. py:class:: ipyvuetify.ListItemContent(**kwargs) +.. py:class:: ipyvuetify.ListItemContent Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + The main content area of a list item. diff --git a/docs/autoapi/ipyvuetify/ListItemGroup.rst b/docs/autoapi/ipyvuetify/ListItemGroup.rst deleted file mode 100644 index 3d4dac1a..00000000 --- a/docs/autoapi/ipyvuetify/ListItemGroup.rst +++ /dev/null @@ -1,41 +0,0 @@ -ipyvuetify.ListItemGroup -======================== - -.. py:class:: ipyvuetify.ListItemGroup(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: multiple - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/ListItemIcon.rst b/docs/autoapi/ipyvuetify/ListItemIcon.rst index 44667b4f..4c8a6be9 100644 --- a/docs/autoapi/ipyvuetify/ListItemIcon.rst +++ b/docs/autoapi/ipyvuetify/ListItemIcon.rst @@ -1,17 +1,10 @@ ipyvuetify.ListItemIcon ======================= -.. py:class:: ipyvuetify.ListItemIcon(**kwargs) +.. py:class:: ipyvuetify.ListItemIcon Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + An icon element within a list item. diff --git a/docs/autoapi/ipyvuetify/ListItemSubtitle.rst b/docs/autoapi/ipyvuetify/ListItemSubtitle.rst index 33e25896..a6646a3a 100644 --- a/docs/autoapi/ipyvuetify/ListItemSubtitle.rst +++ b/docs/autoapi/ipyvuetify/ListItemSubtitle.rst @@ -1,17 +1,10 @@ ipyvuetify.ListItemSubtitle =========================== -.. py:class:: ipyvuetify.ListItemSubtitle(**kwargs) +.. py:class:: ipyvuetify.ListItemSubtitle Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + The subtitle element within a list item. diff --git a/docs/autoapi/ipyvuetify/ListItemTitle.rst b/docs/autoapi/ipyvuetify/ListItemTitle.rst index 4dab4350..94c555ed 100644 --- a/docs/autoapi/ipyvuetify/ListItemTitle.rst +++ b/docs/autoapi/ipyvuetify/ListItemTitle.rst @@ -1,17 +1,10 @@ ipyvuetify.ListItemTitle ======================== -.. py:class:: ipyvuetify.ListItemTitle(**kwargs) +.. py:class:: ipyvuetify.ListItemTitle Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + The title element within a list item. diff --git a/docs/autoapi/ipyvuetify/Menu.rst b/docs/autoapi/ipyvuetify/Menu.rst deleted file mode 100644 index d6f2dac3..00000000 --- a/docs/autoapi/ipyvuetify/Menu.rst +++ /dev/null @@ -1,140 +0,0 @@ -ipyvuetify.Menu -=============== - -.. py:class:: ipyvuetify.Menu(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: activator - - - .. py:attribute:: allow_overflow - - - .. py:attribute:: attach - - - .. py:attribute:: auto - - - .. py:attribute:: bottom - - - .. py:attribute:: close_delay - - - .. py:attribute:: close_on_click - - - .. py:attribute:: close_on_content_click - - - .. py:attribute:: content_class - - - .. py:attribute:: dark - - - .. py:attribute:: disable_keys - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: fixed - - - .. py:attribute:: internal_activator - - - .. py:attribute:: left - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_width - - - .. py:attribute:: nudge_bottom - - - .. py:attribute:: nudge_left - - - .. py:attribute:: nudge_right - - - .. py:attribute:: nudge_top - - - .. py:attribute:: nudge_width - - - .. py:attribute:: offset_overflow - - - .. py:attribute:: offset_x - - - .. py:attribute:: offset_y - - - .. py:attribute:: open_delay - - - .. py:attribute:: open_on_click - - - .. py:attribute:: open_on_hover - - - .. py:attribute:: origin - - - .. py:attribute:: position_x - - - .. py:attribute:: position_y - - - .. py:attribute:: return_value - - - .. py:attribute:: right - - - .. py:attribute:: top - - - .. py:attribute:: transition - - - .. py:attribute:: value - - - .. py:attribute:: z_index - diff --git a/docs/autoapi/ipyvuetify/MenuTransition.rst b/docs/autoapi/ipyvuetify/MenuTransition.rst index c478bd15..e84d7985 100644 --- a/docs/autoapi/ipyvuetify/MenuTransition.rst +++ b/docs/autoapi/ipyvuetify/MenuTransition.rst @@ -1,32 +1,40 @@ ipyvuetify.MenuTransition ========================= -.. py:class:: ipyvuetify.MenuTransition(**kwargs) +.. py:class:: ipyvuetify.MenuTransition Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A transition component that provides menu-style animation effects. .. py:attribute:: group + Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) + + .. py:attribute:: hide_on_leave + Hides the leaving element (no exit animation) + + .. py:attribute:: leave_absolute + Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) + + .. py:attribute:: mode + Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). + + .. py:attribute:: origin + Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). + + diff --git a/docs/autoapi/ipyvuetify/Messages.rst b/docs/autoapi/ipyvuetify/Messages.rst index d7f98dea..5111fe84 100644 --- a/docs/autoapi/ipyvuetify/Messages.rst +++ b/docs/autoapi/ipyvuetify/Messages.rst @@ -1,29 +1,34 @@ ipyvuetify.Messages =================== -.. py:class:: ipyvuetify.Messages(**kwargs) +.. py:class:: ipyvuetify.Messages Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A component for displaying multiple messages, typically used for validation feedback. .. py:attribute:: color + Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors). + + .. py:attribute:: dark + Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). + + .. py:attribute:: light + Applies the light theme variant to the component. + + .. py:attribute:: value + Controls whether the component is visible or hidden. + + diff --git a/docs/autoapi/ipyvuetify/NavigationDrawer.rst b/docs/autoapi/ipyvuetify/NavigationDrawer.rst deleted file mode 100644 index dc48d105..00000000 --- a/docs/autoapi/ipyvuetify/NavigationDrawer.rst +++ /dev/null @@ -1,101 +0,0 @@ -ipyvuetify.NavigationDrawer -=========================== - -.. py:class:: ipyvuetify.NavigationDrawer(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: app - - - .. py:attribute:: bottom - - - .. py:attribute:: clipped - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disable_resize_watcher - - - .. py:attribute:: disable_route_watcher - - - .. py:attribute:: expand_on_hover - - - .. py:attribute:: fixed - - - .. py:attribute:: floating - - - .. py:attribute:: height - - - .. py:attribute:: hide_overlay - - - .. py:attribute:: light - - - .. py:attribute:: mini_variant - - - .. py:attribute:: mini_variant_width - - - .. py:attribute:: mobile_break_point - - - .. py:attribute:: overlay_color - - - .. py:attribute:: overlay_opacity - - - .. py:attribute:: permanent - - - .. py:attribute:: right - - - .. py:attribute:: src - - - .. py:attribute:: stateless - - - .. py:attribute:: tag - - - .. py:attribute:: temporary - - - .. py:attribute:: touchless - - - .. py:attribute:: value - - - .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/OverflowBtn.rst b/docs/autoapi/ipyvuetify/OverflowBtn.rst deleted file mode 100644 index 6ab3ea0c..00000000 --- a/docs/autoapi/ipyvuetify/OverflowBtn.rst +++ /dev/null @@ -1,230 +0,0 @@ -ipyvuetify.OverflowBtn -====================== - -.. py:class:: ipyvuetify.OverflowBtn(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: allow_overflow - - - .. py:attribute:: append_icon - - - .. py:attribute:: append_outer_icon - - - .. py:attribute:: attach - - - .. py:attribute:: auto_select_first - - - .. py:attribute:: autofocus - - - .. py:attribute:: background_color - - - .. py:attribute:: cache_items - - - .. py:attribute:: chips - - - .. py:attribute:: clear_icon - - - .. py:attribute:: clearable - - - .. py:attribute:: color - - - .. py:attribute:: counter - - - .. py:attribute:: dark - - - .. py:attribute:: deletable_chips - - - .. py:attribute:: dense - - - .. py:attribute:: disable_lookup - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: editable - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: filled - - - .. py:attribute:: flat - - - .. py:attribute:: full_width - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hide_no_data - - - .. py:attribute:: hide_selected - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: item_color - - - .. py:attribute:: item_disabled - - - .. py:attribute:: item_text - - - .. py:attribute:: item_value - - - .. py:attribute:: items - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: menu_props - - - .. py:attribute:: messages - - - .. py:attribute:: multiple - - - .. py:attribute:: no_data_text - - - .. py:attribute:: no_filter - - - .. py:attribute:: open_on_clear - - - .. py:attribute:: outlined - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: placeholder - - - .. py:attribute:: prefix - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: prepend_inner_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: return_object - - - .. py:attribute:: reverse - - - .. py:attribute:: rounded - - - .. py:attribute:: rules - - - .. py:attribute:: search_input - - - .. py:attribute:: segmented - - - .. py:attribute:: shaped - - - .. py:attribute:: single_line - - - .. py:attribute:: small_chips - - - .. py:attribute:: solo - - - .. py:attribute:: solo_inverted - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: suffix - - - .. py:attribute:: type - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/Overlay.rst b/docs/autoapi/ipyvuetify/Overlay.rst deleted file mode 100644 index c50d479c..00000000 --- a/docs/autoapi/ipyvuetify/Overlay.rst +++ /dev/null @@ -1,38 +0,0 @@ -ipyvuetify.Overlay -================== - -.. py:class:: ipyvuetify.Overlay(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: opacity - - - .. py:attribute:: value - - - .. py:attribute:: z_index - diff --git a/docs/autoapi/ipyvuetify/Pagination.rst b/docs/autoapi/ipyvuetify/Pagination.rst deleted file mode 100644 index caa3a921..00000000 --- a/docs/autoapi/ipyvuetify/Pagination.rst +++ /dev/null @@ -1,47 +0,0 @@ -ipyvuetify.Pagination -===================== - -.. py:class:: ipyvuetify.Pagination(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: circle - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: length - - - .. py:attribute:: light - - - .. py:attribute:: next_icon - - - .. py:attribute:: prev_icon - - - .. py:attribute:: total_visible - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/Parallax.rst b/docs/autoapi/ipyvuetify/Parallax.rst deleted file mode 100644 index 1ecf77ae..00000000 --- a/docs/autoapi/ipyvuetify/Parallax.rst +++ /dev/null @@ -1,26 +0,0 @@ -ipyvuetify.Parallax -=================== - -.. py:class:: ipyvuetify.Parallax(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: alt - - - .. py:attribute:: height - - - .. py:attribute:: src - diff --git a/docs/autoapi/ipyvuetify/Picker.rst b/docs/autoapi/ipyvuetify/Picker.rst deleted file mode 100644 index cce99f14..00000000 --- a/docs/autoapi/ipyvuetify/Picker.rst +++ /dev/null @@ -1,41 +0,0 @@ -ipyvuetify.Picker -================= - -.. py:class:: ipyvuetify.Picker(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: full_width - - - .. py:attribute:: landscape - - - .. py:attribute:: light - - - .. py:attribute:: no_title - - - .. py:attribute:: transition - - - .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/ProgressCircular.rst b/docs/autoapi/ipyvuetify/ProgressCircular.rst deleted file mode 100644 index c6c3d3b8..00000000 --- a/docs/autoapi/ipyvuetify/ProgressCircular.rst +++ /dev/null @@ -1,38 +0,0 @@ -ipyvuetify.ProgressCircular -=========================== - -.. py:class:: ipyvuetify.ProgressCircular(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: button - - - .. py:attribute:: color - - - .. py:attribute:: indeterminate - - - .. py:attribute:: rotate - - - .. py:attribute:: size - - - .. py:attribute:: value - - - .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/ProgressLinear.rst b/docs/autoapi/ipyvuetify/ProgressLinear.rst deleted file mode 100644 index 37f6f3e8..00000000 --- a/docs/autoapi/ipyvuetify/ProgressLinear.rst +++ /dev/null @@ -1,71 +0,0 @@ -ipyvuetify.ProgressLinear -========================= - -.. py:class:: ipyvuetify.ProgressLinear(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: active - - - .. py:attribute:: background_color - - - .. py:attribute:: background_opacity - - - .. py:attribute:: bottom - - - .. py:attribute:: buffer_value - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: fixed - - - .. py:attribute:: height - - - .. py:attribute:: indeterminate - - - .. py:attribute:: light - - - .. py:attribute:: query - - - .. py:attribute:: rounded - - - .. py:attribute:: stream - - - .. py:attribute:: striped - - - .. py:attribute:: top - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/Radio.rst b/docs/autoapi/ipyvuetify/Radio.rst deleted file mode 100644 index d9755c06..00000000 --- a/docs/autoapi/ipyvuetify/Radio.rst +++ /dev/null @@ -1,56 +0,0 @@ -ipyvuetify.Radio -================ - -.. py:class:: ipyvuetify.Radio(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: id - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: name - - - .. py:attribute:: off_icon - - - .. py:attribute:: on_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: ripple - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/RadioGroup.rst b/docs/autoapi/ipyvuetify/RadioGroup.rst deleted file mode 100644 index b7035698..00000000 --- a/docs/autoapi/ipyvuetify/RadioGroup.rst +++ /dev/null @@ -1,113 +0,0 @@ -ipyvuetify.RadioGroup -===================== - -.. py:class:: ipyvuetify.RadioGroup(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: append_icon - - - .. py:attribute:: background_color - - - .. py:attribute:: color - - - .. py:attribute:: column - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loading - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: messages - - - .. py:attribute:: multiple - - - .. py:attribute:: name - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: row - - - .. py:attribute:: rules - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/RangeSlider.rst b/docs/autoapi/ipyvuetify/RangeSlider.rst deleted file mode 100644 index f6cd33fb..00000000 --- a/docs/autoapi/ipyvuetify/RangeSlider.rst +++ /dev/null @@ -1,134 +0,0 @@ -ipyvuetify.RangeSlider -====================== - -.. py:class:: ipyvuetify.RangeSlider(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: background_color - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: inverse_label - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: max - - - .. py:attribute:: messages - - - .. py:attribute:: min - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: rules - - - .. py:attribute:: step - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: thumb_color - - - .. py:attribute:: thumb_label - - - .. py:attribute:: thumb_size - - - .. py:attribute:: tick_labels - - - .. py:attribute:: tick_size - - - .. py:attribute:: ticks - - - .. py:attribute:: track_color - - - .. py:attribute:: track_fill_color - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - - .. py:attribute:: vertical - diff --git a/docs/autoapi/ipyvuetify/Rating.rst b/docs/autoapi/ipyvuetify/Rating.rst deleted file mode 100644 index 2dd708dc..00000000 --- a/docs/autoapi/ipyvuetify/Rating.rst +++ /dev/null @@ -1,83 +0,0 @@ -ipyvuetify.Rating -================= - -.. py:class:: ipyvuetify.Rating(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: background_color - - - .. py:attribute:: clearable - - - .. py:attribute:: close_delay - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: empty_icon - - - .. py:attribute:: full_icon - - - .. py:attribute:: half_icon - - - .. py:attribute:: half_increments - - - .. py:attribute:: hover - - - .. py:attribute:: large - - - .. py:attribute:: length - - - .. py:attribute:: light - - - .. py:attribute:: open_delay - - - .. py:attribute:: readonly - - - .. py:attribute:: ripple - - - .. py:attribute:: size - - - .. py:attribute:: small - - - .. py:attribute:: value - - - .. py:attribute:: x_large - - - .. py:attribute:: x_small - diff --git a/docs/autoapi/ipyvuetify/Responsive.rst b/docs/autoapi/ipyvuetify/Responsive.rst deleted file mode 100644 index e6ab7c63..00000000 --- a/docs/autoapi/ipyvuetify/Responsive.rst +++ /dev/null @@ -1,38 +0,0 @@ -ipyvuetify.Responsive -===================== - -.. py:class:: ipyvuetify.Responsive(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: aspect_ratio - - - .. py:attribute:: height - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/Row.rst b/docs/autoapi/ipyvuetify/Row.rst index 0a6b09c2..c0a3f6e3 100644 --- a/docs/autoapi/ipyvuetify/Row.rst +++ b/docs/autoapi/ipyvuetify/Row.rst @@ -1,71 +1,118 @@ ipyvuetify.Row ============== -.. py:class:: ipyvuetify.Row(**kwargs) +.. py:class:: ipyvuetify.Row Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A row component that contains v-col components for creating responsive grid layouts. .. py:attribute:: align + Applies the [align-items](https://developer.mozilla.org/en-US/docs/Web/CSS/align-items) css property. Available options are **start**, **center**, **end**, **baseline** and **stretch**. + + .. py:attribute:: align_content + Applies the [align-content](https://developer.mozilla.org/en-US/docs/Web/CSS/align-content) css property. Available options are **start**, **center**, **end**, **space-between**, **space-around** and **stretch**. + + .. py:attribute:: align_content_lg + Changes the **align-content** property on large and greater breakpoints. + + .. py:attribute:: align_content_md + Changes the **align-content** property on medium and greater breakpoints. + + .. py:attribute:: align_content_sm + Changes the **align-content** property on small and greater breakpoints. + + .. py:attribute:: align_content_xl + Changes the **align-content** property on extra large and greater breakpoints. + + .. py:attribute:: align_lg + Changes the **align-items** property on large and greater breakpoints. + + .. py:attribute:: align_md + Changes the **align-items** property on medium and greater breakpoints. + + .. py:attribute:: align_sm + Changes the **align-items** property on small and greater breakpoints. + + .. py:attribute:: align_xl + Changes the **align-items** property on extra large and greater breakpoints. + + .. py:attribute:: dense + Reduces the gutter between `v-col`s. + + .. py:attribute:: justify + Applies the [justify-content](https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content) css property. Available options are **start**, **center**, **end**, **space-between** and **space-around**. + + .. py:attribute:: justify_lg + Changes the **justify-content** property on large and greater breakpoints. + + .. py:attribute:: justify_md + Changes the **justify-content** property on medium and greater breakpoints. + + .. py:attribute:: justify_sm + Changes the **justify-content** property on small and greater breakpoints. + + .. py:attribute:: justify_xl + Changes the **justify-content** property on extra large and greater breakpoints. + + .. py:attribute:: no_gutters + Removes the gutter between `v-col`s. + + .. py:attribute:: tag + Specify a custom tag used on the root element. + + diff --git a/docs/autoapi/ipyvuetify/ScaleTransition.rst b/docs/autoapi/ipyvuetify/ScaleTransition.rst index 4ab4e38b..4ef8ecc0 100644 --- a/docs/autoapi/ipyvuetify/ScaleTransition.rst +++ b/docs/autoapi/ipyvuetify/ScaleTransition.rst @@ -1,32 +1,40 @@ ipyvuetify.ScaleTransition ========================== -.. py:class:: ipyvuetify.ScaleTransition(**kwargs) +.. py:class:: ipyvuetify.ScaleTransition Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A transition component that provides scale animation effects. .. py:attribute:: group + Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) + + .. py:attribute:: hide_on_leave + Hides the leaving element (no exit animation) + + .. py:attribute:: leave_absolute + Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) + + .. py:attribute:: mode + Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). + + .. py:attribute:: origin + Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). + + diff --git a/docs/autoapi/ipyvuetify/ScrollXReverseTransition.rst b/docs/autoapi/ipyvuetify/ScrollXReverseTransition.rst index 4daf884a..97bf6a48 100644 --- a/docs/autoapi/ipyvuetify/ScrollXReverseTransition.rst +++ b/docs/autoapi/ipyvuetify/ScrollXReverseTransition.rst @@ -1,32 +1,40 @@ ipyvuetify.ScrollXReverseTransition =================================== -.. py:class:: ipyvuetify.ScrollXReverseTransition(**kwargs) +.. py:class:: ipyvuetify.ScrollXReverseTransition Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A transition component that provides reverse horizontal scroll animation effects. .. py:attribute:: group + Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) + + .. py:attribute:: hide_on_leave + Hides the leaving element (no exit animation) + + .. py:attribute:: leave_absolute + Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) + + .. py:attribute:: mode + Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). + + .. py:attribute:: origin + Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). + + diff --git a/docs/autoapi/ipyvuetify/ScrollXTransition.rst b/docs/autoapi/ipyvuetify/ScrollXTransition.rst index 0bf06f2e..d0b83c84 100644 --- a/docs/autoapi/ipyvuetify/ScrollXTransition.rst +++ b/docs/autoapi/ipyvuetify/ScrollXTransition.rst @@ -1,32 +1,40 @@ ipyvuetify.ScrollXTransition ============================ -.. py:class:: ipyvuetify.ScrollXTransition(**kwargs) +.. py:class:: ipyvuetify.ScrollXTransition Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A transition component that provides horizontal scroll animation effects. .. py:attribute:: group + Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) + + .. py:attribute:: hide_on_leave + Hides the leaving element (no exit animation) + + .. py:attribute:: leave_absolute + Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) + + .. py:attribute:: mode + Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). + + .. py:attribute:: origin + Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). + + diff --git a/docs/autoapi/ipyvuetify/ScrollYReverseTransition.rst b/docs/autoapi/ipyvuetify/ScrollYReverseTransition.rst index 6c917aaf..4a73b88b 100644 --- a/docs/autoapi/ipyvuetify/ScrollYReverseTransition.rst +++ b/docs/autoapi/ipyvuetify/ScrollYReverseTransition.rst @@ -1,32 +1,40 @@ ipyvuetify.ScrollYReverseTransition =================================== -.. py:class:: ipyvuetify.ScrollYReverseTransition(**kwargs) +.. py:class:: ipyvuetify.ScrollYReverseTransition Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A transition component that provides reverse vertical scroll animation effects. .. py:attribute:: group + Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) + + .. py:attribute:: hide_on_leave + Hides the leaving element (no exit animation) + + .. py:attribute:: leave_absolute + Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) + + .. py:attribute:: mode + Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). + + .. py:attribute:: origin + Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). + + diff --git a/docs/autoapi/ipyvuetify/ScrollYTransition.rst b/docs/autoapi/ipyvuetify/ScrollYTransition.rst index 8622fc72..27b1c459 100644 --- a/docs/autoapi/ipyvuetify/ScrollYTransition.rst +++ b/docs/autoapi/ipyvuetify/ScrollYTransition.rst @@ -1,32 +1,40 @@ ipyvuetify.ScrollYTransition ============================ -.. py:class:: ipyvuetify.ScrollYTransition(**kwargs) +.. py:class:: ipyvuetify.ScrollYTransition Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A transition component that provides vertical scroll animation effects. .. py:attribute:: group + Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) + + .. py:attribute:: hide_on_leave + Hides the leaving element (no exit animation) + + .. py:attribute:: leave_absolute + Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) + + .. py:attribute:: mode + Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). + + .. py:attribute:: origin + Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). + + diff --git a/docs/autoapi/ipyvuetify/Select.rst b/docs/autoapi/ipyvuetify/Select.rst deleted file mode 100644 index 1968a408..00000000 --- a/docs/autoapi/ipyvuetify/Select.rst +++ /dev/null @@ -1,209 +0,0 @@ -ipyvuetify.Select -================= - -.. py:class:: ipyvuetify.Select(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: append_outer_icon - - - .. py:attribute:: attach - - - .. py:attribute:: autofocus - - - .. py:attribute:: background_color - - - .. py:attribute:: cache_items - - - .. py:attribute:: chips - - - .. py:attribute:: clear_icon - - - .. py:attribute:: clearable - - - .. py:attribute:: color - - - .. py:attribute:: counter - - - .. py:attribute:: dark - - - .. py:attribute:: deletable_chips - - - .. py:attribute:: dense - - - .. py:attribute:: disable_lookup - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: filled - - - .. py:attribute:: flat - - - .. py:attribute:: full_width - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hide_selected - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: item_color - - - .. py:attribute:: item_disabled - - - .. py:attribute:: item_text - - - .. py:attribute:: item_value - - - .. py:attribute:: items - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: menu_props - - - .. py:attribute:: messages - - - .. py:attribute:: multiple - - - .. py:attribute:: no_data_text - - - .. py:attribute:: open_on_clear - - - .. py:attribute:: outlined - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: placeholder - - - .. py:attribute:: prefix - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: prepend_inner_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: return_object - - - .. py:attribute:: reverse - - - .. py:attribute:: rounded - - - .. py:attribute:: rules - - - .. py:attribute:: shaped - - - .. py:attribute:: single_line - - - .. py:attribute:: small_chips - - - .. py:attribute:: solo - - - .. py:attribute:: solo_inverted - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: suffix - - - .. py:attribute:: type - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/Sheet.rst b/docs/autoapi/ipyvuetify/Sheet.rst deleted file mode 100644 index f56f4c3e..00000000 --- a/docs/autoapi/ipyvuetify/Sheet.rst +++ /dev/null @@ -1,53 +0,0 @@ -ipyvuetify.Sheet -================ - -.. py:class:: ipyvuetify.Sheet(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: elevation - - - .. py:attribute:: height - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: tag - - - .. py:attribute:: tile - - - .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/SimpleCheckbox.rst b/docs/autoapi/ipyvuetify/SimpleCheckbox.rst index 6c1c294c..d20b5b9b 100644 --- a/docs/autoapi/ipyvuetify/SimpleCheckbox.rst +++ b/docs/autoapi/ipyvuetify/SimpleCheckbox.rst @@ -1,47 +1,70 @@ ipyvuetify.SimpleCheckbox ========================= -.. py:class:: ipyvuetify.SimpleCheckbox(**kwargs) +.. py:class:: ipyvuetify.SimpleCheckbox Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A simplified version of v-checkbox with minimal styling, often used in data tables. .. py:attribute:: color + Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors). + + .. py:attribute:: dark + Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). + + .. py:attribute:: disabled + Disables simple checkbox. + + .. py:attribute:: indeterminate + Sets an indeterminate state for the simple checkbox. + + .. py:attribute:: indeterminate_icon + The icon used when in an indeterminate state. + + .. py:attribute:: light + Applies the light theme variant to the component. + + .. py:attribute:: off_icon + The icon used when inactive. + + .. py:attribute:: on_icon + The icon used when active. + + .. py:attribute:: ripple + Applies the [v-ripple](/directives/ripple) directive. + + .. py:attribute:: value + A boolean value that represents whether the simple checkbox is checked. + + diff --git a/docs/autoapi/ipyvuetify/SimpleTable.rst b/docs/autoapi/ipyvuetify/SimpleTable.rst deleted file mode 100644 index f18c3613..00000000 --- a/docs/autoapi/ipyvuetify/SimpleTable.rst +++ /dev/null @@ -1,32 +0,0 @@ -ipyvuetify.SimpleTable -====================== - -.. py:class:: ipyvuetify.SimpleTable(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: fixed_header - - - .. py:attribute:: height - - - .. py:attribute:: light - diff --git a/docs/autoapi/ipyvuetify/SkeletonLoader.rst b/docs/autoapi/ipyvuetify/SkeletonLoader.rst deleted file mode 100644 index 1bb7e718..00000000 --- a/docs/autoapi/ipyvuetify/SkeletonLoader.rst +++ /dev/null @@ -1,62 +0,0 @@ -ipyvuetify.SkeletonLoader -========================= - -.. py:class:: ipyvuetify.SkeletonLoader(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: boilerplate - - - .. py:attribute:: dark - - - .. py:attribute:: elevation - - - .. py:attribute:: height - - - .. py:attribute:: light - - - .. py:attribute:: loading - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: tile - - - .. py:attribute:: transition - - - .. py:attribute:: type - - - .. py:attribute:: types - - - .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/SlideGroup.rst b/docs/autoapi/ipyvuetify/SlideGroup.rst deleted file mode 100644 index 53eee727..00000000 --- a/docs/autoapi/ipyvuetify/SlideGroup.rst +++ /dev/null @@ -1,53 +0,0 @@ -ipyvuetify.SlideGroup -===================== - -.. py:class:: ipyvuetify.SlideGroup(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: center_active - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: mobile_break_point - - - .. py:attribute:: multiple - - - .. py:attribute:: next_icon - - - .. py:attribute:: prev_icon - - - .. py:attribute:: show_arrows - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/SlideItem.rst b/docs/autoapi/ipyvuetify/SlideItem.rst index be715c17..52679f77 100644 --- a/docs/autoapi/ipyvuetify/SlideItem.rst +++ b/docs/autoapi/ipyvuetify/SlideItem.rst @@ -1,26 +1,28 @@ ipyvuetify.SlideItem ==================== -.. py:class:: ipyvuetify.SlideItem(**kwargs) +.. py:class:: ipyvuetify.SlideItem Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A single item within a v-slide-group component. .. py:attribute:: active_class + Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation. + + .. py:attribute:: disabled + Removes the ability to click or target the component. + + .. py:attribute:: value + Controls whether the component is visible or hidden. + + diff --git a/docs/autoapi/ipyvuetify/SlideXReverseTransition.rst b/docs/autoapi/ipyvuetify/SlideXReverseTransition.rst index e157cd30..a3100696 100644 --- a/docs/autoapi/ipyvuetify/SlideXReverseTransition.rst +++ b/docs/autoapi/ipyvuetify/SlideXReverseTransition.rst @@ -1,32 +1,40 @@ ipyvuetify.SlideXReverseTransition ================================== -.. py:class:: ipyvuetify.SlideXReverseTransition(**kwargs) +.. py:class:: ipyvuetify.SlideXReverseTransition Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A transition component that provides reverse horizontal slide animation effects. .. py:attribute:: group + Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) + + .. py:attribute:: hide_on_leave + Hides the leaving element (no exit animation) + + .. py:attribute:: leave_absolute + Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) + + .. py:attribute:: mode + Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). + + .. py:attribute:: origin + Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). + + diff --git a/docs/autoapi/ipyvuetify/SlideXTransition.rst b/docs/autoapi/ipyvuetify/SlideXTransition.rst index 712db043..329b5586 100644 --- a/docs/autoapi/ipyvuetify/SlideXTransition.rst +++ b/docs/autoapi/ipyvuetify/SlideXTransition.rst @@ -1,32 +1,40 @@ ipyvuetify.SlideXTransition =========================== -.. py:class:: ipyvuetify.SlideXTransition(**kwargs) +.. py:class:: ipyvuetify.SlideXTransition Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A transition component that provides horizontal slide animation effects. .. py:attribute:: group + Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) + + .. py:attribute:: hide_on_leave + Hides the leaving element (no exit animation) + + .. py:attribute:: leave_absolute + Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) + + .. py:attribute:: mode + Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). + + .. py:attribute:: origin + Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). + + diff --git a/docs/autoapi/ipyvuetify/SlideYReverseTransition.rst b/docs/autoapi/ipyvuetify/SlideYReverseTransition.rst index 753043d0..51fdafbc 100644 --- a/docs/autoapi/ipyvuetify/SlideYReverseTransition.rst +++ b/docs/autoapi/ipyvuetify/SlideYReverseTransition.rst @@ -1,32 +1,40 @@ ipyvuetify.SlideYReverseTransition ================================== -.. py:class:: ipyvuetify.SlideYReverseTransition(**kwargs) +.. py:class:: ipyvuetify.SlideYReverseTransition Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A transition component that provides reverse vertical slide animation effects. .. py:attribute:: group + Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) + + .. py:attribute:: hide_on_leave + Hides the leaving element (no exit animation) + + .. py:attribute:: leave_absolute + Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) + + .. py:attribute:: mode + Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). + + .. py:attribute:: origin + Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). + + diff --git a/docs/autoapi/ipyvuetify/SlideYTransition.rst b/docs/autoapi/ipyvuetify/SlideYTransition.rst index 9eacc9c4..f4e375b7 100644 --- a/docs/autoapi/ipyvuetify/SlideYTransition.rst +++ b/docs/autoapi/ipyvuetify/SlideYTransition.rst @@ -1,32 +1,40 @@ ipyvuetify.SlideYTransition =========================== -.. py:class:: ipyvuetify.SlideYTransition(**kwargs) +.. py:class:: ipyvuetify.SlideYTransition Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A transition component that provides vertical slide animation effects. .. py:attribute:: group + Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) + + .. py:attribute:: hide_on_leave + Hides the leaving element (no exit animation) + + .. py:attribute:: leave_absolute + Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) + + .. py:attribute:: mode + Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). + + .. py:attribute:: origin + Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). + + diff --git a/docs/autoapi/ipyvuetify/Slider.rst b/docs/autoapi/ipyvuetify/Slider.rst deleted file mode 100644 index 96e0a689..00000000 --- a/docs/autoapi/ipyvuetify/Slider.rst +++ /dev/null @@ -1,134 +0,0 @@ -ipyvuetify.Slider -================= - -.. py:class:: ipyvuetify.Slider(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: background_color - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: inverse_label - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: max - - - .. py:attribute:: messages - - - .. py:attribute:: min - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: rules - - - .. py:attribute:: step - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: thumb_color - - - .. py:attribute:: thumb_label - - - .. py:attribute:: thumb_size - - - .. py:attribute:: tick_labels - - - .. py:attribute:: tick_size - - - .. py:attribute:: ticks - - - .. py:attribute:: track_color - - - .. py:attribute:: track_fill_color - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - - - .. py:attribute:: vertical - diff --git a/docs/autoapi/ipyvuetify/Snackbar.rst b/docs/autoapi/ipyvuetify/Snackbar.rst index 8653b355..1dedf4e3 100644 --- a/docs/autoapi/ipyvuetify/Snackbar.rst +++ b/docs/autoapi/ipyvuetify/Snackbar.rst @@ -1,47 +1,70 @@ ipyvuetify.Snackbar =================== -.. py:class:: ipyvuetify.Snackbar(**kwargs) +.. py:class:: ipyvuetify.Snackbar Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + The v-snackbar component displays brief messages at the bottom of the screen, typically for user notifications. .. py:attribute:: absolute + Applies **position: absolute** to the component. + + .. py:attribute:: bottom + Aligns the component towards the bottom. + + .. py:attribute:: color + Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors). + + .. py:attribute:: left + Aligns the component towards the left. + + .. py:attribute:: multi_line + Gives the snackbar a larger minimum height. + + .. py:attribute:: right + Aligns the component towards the right. + + .. py:attribute:: timeout + Time (in milliseconds) to wait until snackbar is automatically hidden. Use `-1` to keep open indefinitely (`0` in version < 2.3 ). It is recommended for this number to be between `4000` and `10000`. Changes to this property will reset the timeout. + + .. py:attribute:: top + Aligns the content towards the top. + + .. py:attribute:: value + Controls whether the component is visible or hidden. + + .. py:attribute:: vertical + Stacks snackbar content on top of the actions (button). + + diff --git a/docs/autoapi/ipyvuetify/Spacer.rst b/docs/autoapi/ipyvuetify/Spacer.rst index 3aa478cc..2bcc11b8 100644 --- a/docs/autoapi/ipyvuetify/Spacer.rst +++ b/docs/autoapi/ipyvuetify/Spacer.rst @@ -1,17 +1,10 @@ ipyvuetify.Spacer ================= -.. py:class:: ipyvuetify.Spacer(**kwargs) +.. py:class:: ipyvuetify.Spacer Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A flex spacer component that fills available space between other elements. diff --git a/docs/autoapi/ipyvuetify/Sparkline.rst b/docs/autoapi/ipyvuetify/Sparkline.rst deleted file mode 100644 index 217ca4b9..00000000 --- a/docs/autoapi/ipyvuetify/Sparkline.rst +++ /dev/null @@ -1,71 +0,0 @@ -ipyvuetify.Sparkline -==================== - -.. py:class:: ipyvuetify.Sparkline(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: auto_draw - - - .. py:attribute:: auto_draw_duration - - - .. py:attribute:: auto_draw_easing - - - .. py:attribute:: auto_line_width - - - .. py:attribute:: color - - - .. py:attribute:: fill - - - .. py:attribute:: gradient - - - .. py:attribute:: gradient_direction - - - .. py:attribute:: height - - - .. py:attribute:: label_size - - - .. py:attribute:: labels - - - .. py:attribute:: line_width - - - .. py:attribute:: padding - - - .. py:attribute:: show_labels - - - .. py:attribute:: smooth - - - .. py:attribute:: type - - - .. py:attribute:: value - - - .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/SpeedDial.rst b/docs/autoapi/ipyvuetify/SpeedDial.rst index d7c324c5..921954a6 100644 --- a/docs/autoapi/ipyvuetify/SpeedDial.rst +++ b/docs/autoapi/ipyvuetify/SpeedDial.rst @@ -1,53 +1,82 @@ ipyvuetify.SpeedDial ==================== -.. py:class:: ipyvuetify.SpeedDial(**kwargs) +.. py:class:: ipyvuetify.SpeedDial Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + The v-speed-dial component displays a floating action button that reveals related actions when activated. .. py:attribute:: absolute + Applies **position: absolute** to the component. + + .. py:attribute:: bottom + Aligns the component towards the bottom. + + .. py:attribute:: direction + Direction in which speed-dial content will show. Possible values are `top`, `bottom`, `left`, `right`. + + .. py:attribute:: fixed + Applies **position: fixed** to the component. + + .. py:attribute:: left + Aligns the component towards the left. + + .. py:attribute:: mode + Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). + + .. py:attribute:: open_on_hover + Opens speed-dial on hover + + .. py:attribute:: origin + Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). + + .. py:attribute:: right + Aligns the component towards the right. + + .. py:attribute:: top + Aligns the content towards the top. + + .. py:attribute:: transition + Sets the component transition. Can be one of the [built in transitions](/styles/transitions) or one your own. + + .. py:attribute:: value + Controls whether the component is visible or hidden. + + diff --git a/docs/autoapi/ipyvuetify/Stepper.rst b/docs/autoapi/ipyvuetify/Stepper.rst index 9109d0a2..33f1d0c3 100644 --- a/docs/autoapi/ipyvuetify/Stepper.rst +++ b/docs/autoapi/ipyvuetify/Stepper.rst @@ -1,35 +1,46 @@ ipyvuetify.Stepper ================== -.. py:class:: ipyvuetify.Stepper(**kwargs) +.. py:class:: ipyvuetify.Stepper Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + The v-stepper component displays progress through numbered steps, commonly used for multi-step processes. .. py:attribute:: alt_labels + Places the labels beneath the step + + .. py:attribute:: dark + Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). + + .. py:attribute:: light + Applies the light theme variant to the component. + + .. py:attribute:: non_linear + Allow user to jump to any step + + .. py:attribute:: value + Controls whether the component is visible or hidden. + + .. py:attribute:: vertical + Display steps vertically + + diff --git a/docs/autoapi/ipyvuetify/StepperContent.rst b/docs/autoapi/ipyvuetify/StepperContent.rst deleted file mode 100644 index e87d00ea..00000000 --- a/docs/autoapi/ipyvuetify/StepperContent.rst +++ /dev/null @@ -1,20 +0,0 @@ -ipyvuetify.StepperContent -========================= - -.. py:class:: ipyvuetify.StepperContent(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: step - diff --git a/docs/autoapi/ipyvuetify/StepperHeader.rst b/docs/autoapi/ipyvuetify/StepperHeader.rst index 44279e4a..6cc452a0 100644 --- a/docs/autoapi/ipyvuetify/StepperHeader.rst +++ b/docs/autoapi/ipyvuetify/StepperHeader.rst @@ -1,17 +1,10 @@ ipyvuetify.StepperHeader ======================== -.. py:class:: ipyvuetify.StepperHeader(**kwargs) +.. py:class:: ipyvuetify.StepperHeader Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + The header area of a stepper containing all step indicators. diff --git a/docs/autoapi/ipyvuetify/StepperItems.rst b/docs/autoapi/ipyvuetify/StepperItems.rst index 2f34da21..4c614c6f 100644 --- a/docs/autoapi/ipyvuetify/StepperItems.rst +++ b/docs/autoapi/ipyvuetify/StepperItems.rst @@ -1,17 +1,10 @@ ipyvuetify.StepperItems ======================= -.. py:class:: ipyvuetify.StepperItems(**kwargs) +.. py:class:: ipyvuetify.StepperItems Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A container for stepper content areas. diff --git a/docs/autoapi/ipyvuetify/StepperStep.rst b/docs/autoapi/ipyvuetify/StepperStep.rst deleted file mode 100644 index f69917b7..00000000 --- a/docs/autoapi/ipyvuetify/StepperStep.rst +++ /dev/null @@ -1,41 +0,0 @@ -ipyvuetify.StepperStep -====================== - -.. py:class:: ipyvuetify.StepperStep(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: color - - - .. py:attribute:: complete - - - .. py:attribute:: complete_icon - - - .. py:attribute:: edit_icon - - - .. py:attribute:: editable - - - .. py:attribute:: error_icon - - - .. py:attribute:: rules - - - .. py:attribute:: step - diff --git a/docs/autoapi/ipyvuetify/Subheader.rst b/docs/autoapi/ipyvuetify/Subheader.rst index 6f6ca620..801a85e4 100644 --- a/docs/autoapi/ipyvuetify/Subheader.rst +++ b/docs/autoapi/ipyvuetify/Subheader.rst @@ -1,26 +1,28 @@ ipyvuetify.Subheader ==================== -.. py:class:: ipyvuetify.Subheader(**kwargs) +.. py:class:: ipyvuetify.Subheader Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + The v-subheader component is used to separate sections of lists or content with text headings. .. py:attribute:: dark + Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). + + .. py:attribute:: inset + Adds indentation (72px) + + .. py:attribute:: light + Applies the light theme variant to the component. + + diff --git a/docs/autoapi/ipyvuetify/Switch.rst b/docs/autoapi/ipyvuetify/Switch.rst deleted file mode 100644 index 3369d783..00000000 --- a/docs/autoapi/ipyvuetify/Switch.rst +++ /dev/null @@ -1,113 +0,0 @@ -ipyvuetify.Switch -================= - -.. py:class:: ipyvuetify.Switch(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: background_color - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: false_value - - - .. py:attribute:: flat - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: input_value - - - .. py:attribute:: inset - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loading - - - .. py:attribute:: messages - - - .. py:attribute:: multiple - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: ripple - - - .. py:attribute:: rules - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: true_value - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/SystemBar.rst b/docs/autoapi/ipyvuetify/SystemBar.rst deleted file mode 100644 index c64437de..00000000 --- a/docs/autoapi/ipyvuetify/SystemBar.rst +++ /dev/null @@ -1,44 +0,0 @@ -ipyvuetify.SystemBar -==================== - -.. py:class:: ipyvuetify.SystemBar(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: app - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: fixed - - - .. py:attribute:: height - - - .. py:attribute:: light - - - .. py:attribute:: lights_out - - - .. py:attribute:: window - diff --git a/docs/autoapi/ipyvuetify/Tab.rst b/docs/autoapi/ipyvuetify/Tab.rst deleted file mode 100644 index c353403d..00000000 --- a/docs/autoapi/ipyvuetify/Tab.rst +++ /dev/null @@ -1,62 +0,0 @@ -ipyvuetify.Tab -============== - -.. py:class:: ipyvuetify.Tab(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: append - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: exact - - - .. py:attribute:: exact_active_class - - - .. py:attribute:: href - - - .. py:attribute:: light - - - .. py:attribute:: link - - - .. py:attribute:: nuxt - - - .. py:attribute:: replace - - - .. py:attribute:: ripple - - - .. py:attribute:: tag - - - .. py:attribute:: target - - - .. py:attribute:: to - diff --git a/docs/autoapi/ipyvuetify/TabItem.rst b/docs/autoapi/ipyvuetify/TabItem.rst deleted file mode 100644 index f2b48184..00000000 --- a/docs/autoapi/ipyvuetify/TabItem.rst +++ /dev/null @@ -1,38 +0,0 @@ -ipyvuetify.TabItem -================== - -.. py:class:: ipyvuetify.TabItem(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: id - - - .. py:attribute:: reverse_transition - - - .. py:attribute:: transition - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/TabReverseTransition.rst b/docs/autoapi/ipyvuetify/TabReverseTransition.rst index a224cc15..d9aaf17b 100644 --- a/docs/autoapi/ipyvuetify/TabReverseTransition.rst +++ b/docs/autoapi/ipyvuetify/TabReverseTransition.rst @@ -1,32 +1,40 @@ ipyvuetify.TabReverseTransition =============================== -.. py:class:: ipyvuetify.TabReverseTransition(**kwargs) +.. py:class:: ipyvuetify.TabReverseTransition Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A transition component that provides reverse tab-style animation effects. .. py:attribute:: group + Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) + + .. py:attribute:: hide_on_leave + Hides the leaving element (no exit animation) + + .. py:attribute:: leave_absolute + Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) + + .. py:attribute:: mode + Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). + + .. py:attribute:: origin + Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). + + diff --git a/docs/autoapi/ipyvuetify/TabTransition.rst b/docs/autoapi/ipyvuetify/TabTransition.rst index 85ce5ba3..cf0e351f 100644 --- a/docs/autoapi/ipyvuetify/TabTransition.rst +++ b/docs/autoapi/ipyvuetify/TabTransition.rst @@ -1,32 +1,40 @@ ipyvuetify.TabTransition ======================== -.. py:class:: ipyvuetify.TabTransition(**kwargs) +.. py:class:: ipyvuetify.TabTransition Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A transition component that provides tab-style animation effects. .. py:attribute:: group + Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) + + .. py:attribute:: hide_on_leave + Hides the leaving element (no exit animation) + + .. py:attribute:: leave_absolute + Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) + + .. py:attribute:: mode + Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). + + .. py:attribute:: origin + Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). + + diff --git a/docs/autoapi/ipyvuetify/TableOverflow.rst b/docs/autoapi/ipyvuetify/TableOverflow.rst index 98abb5fe..58adc59e 100644 --- a/docs/autoapi/ipyvuetify/TableOverflow.rst +++ b/docs/autoapi/ipyvuetify/TableOverflow.rst @@ -1,17 +1,10 @@ ipyvuetify.TableOverflow ======================== -.. py:class:: ipyvuetify.TableOverflow(**kwargs) +.. py:class:: ipyvuetify.TableOverflow Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A component that handles overflow behavior in tables. diff --git a/docs/autoapi/ipyvuetify/Tabs.rst b/docs/autoapi/ipyvuetify/Tabs.rst deleted file mode 100644 index c1a4e1e7..00000000 --- a/docs/autoapi/ipyvuetify/Tabs.rst +++ /dev/null @@ -1,86 +0,0 @@ -ipyvuetify.Tabs -=============== - -.. py:class:: ipyvuetify.Tabs(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: align_with_title - - - .. py:attribute:: background_color - - - .. py:attribute:: center_active - - - .. py:attribute:: centered - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: fixed_tabs - - - .. py:attribute:: grow - - - .. py:attribute:: height - - - .. py:attribute:: hide_slider - - - .. py:attribute:: icons_and_text - - - .. py:attribute:: light - - - .. py:attribute:: mobile_break_point - - - .. py:attribute:: next_icon - - - .. py:attribute:: optional - - - .. py:attribute:: prev_icon - - - .. py:attribute:: right - - - .. py:attribute:: show_arrows - - - .. py:attribute:: slider_color - - - .. py:attribute:: slider_size - - - .. py:attribute:: value - - - .. py:attribute:: vertical - diff --git a/docs/autoapi/ipyvuetify/TabsItems.rst b/docs/autoapi/ipyvuetify/TabsItems.rst deleted file mode 100644 index f793ab6c..00000000 --- a/docs/autoapi/ipyvuetify/TabsItems.rst +++ /dev/null @@ -1,65 +0,0 @@ -ipyvuetify.TabsItems -==================== - -.. py:class:: ipyvuetify.TabsItems(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: continuous - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: multiple - - - .. py:attribute:: next_icon - - - .. py:attribute:: prev_icon - - - .. py:attribute:: reverse - - - .. py:attribute:: show_arrows - - - .. py:attribute:: show_arrows_on_hover - - - .. py:attribute:: touch - - - .. py:attribute:: touchless - - - .. py:attribute:: value - - - .. py:attribute:: vertical - diff --git a/docs/autoapi/ipyvuetify/TabsSlider.rst b/docs/autoapi/ipyvuetify/TabsSlider.rst index 8115021c..4f9423d6 100644 --- a/docs/autoapi/ipyvuetify/TabsSlider.rst +++ b/docs/autoapi/ipyvuetify/TabsSlider.rst @@ -1,20 +1,16 @@ ipyvuetify.TabsSlider ===================== -.. py:class:: ipyvuetify.TabsSlider(**kwargs) +.. py:class:: ipyvuetify.TabsSlider Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A sliding indicator that shows which tab is currently active. .. py:attribute:: color + Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors). + + diff --git a/docs/autoapi/ipyvuetify/Text.rst b/docs/autoapi/ipyvuetify/Text.rst deleted file mode 100644 index 1d804e2d..00000000 --- a/docs/autoapi/ipyvuetify/Text.rst +++ /dev/null @@ -1,20 +0,0 @@ -ipyvuetify.Text -=============== - -.. py:class:: ipyvuetify.Text(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/TextField.rst b/docs/autoapi/ipyvuetify/TextField.rst deleted file mode 100644 index 603016a1..00000000 --- a/docs/autoapi/ipyvuetify/TextField.rst +++ /dev/null @@ -1,155 +0,0 @@ -ipyvuetify.TextField -==================== - -.. py:class:: ipyvuetify.TextField(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: append_outer_icon - - - .. py:attribute:: autofocus - - - .. py:attribute:: background_color - - - .. py:attribute:: clear_icon - - - .. py:attribute:: clearable - - - .. py:attribute:: color - - - .. py:attribute:: counter - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: filled - - - .. py:attribute:: flat - - - .. py:attribute:: full_width - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: messages - - - .. py:attribute:: outlined - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: placeholder - - - .. py:attribute:: prefix - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: prepend_inner_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: reverse - - - .. py:attribute:: rounded - - - .. py:attribute:: rules - - - .. py:attribute:: shaped - - - .. py:attribute:: single_line - - - .. py:attribute:: solo - - - .. py:attribute:: solo_inverted - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: suffix - - - .. py:attribute:: type - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/Textarea.rst b/docs/autoapi/ipyvuetify/Textarea.rst deleted file mode 100644 index d0150029..00000000 --- a/docs/autoapi/ipyvuetify/Textarea.rst +++ /dev/null @@ -1,167 +0,0 @@ -ipyvuetify.Textarea -=================== - -.. py:class:: ipyvuetify.Textarea(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: append_icon - - - .. py:attribute:: append_outer_icon - - - .. py:attribute:: auto_grow - - - .. py:attribute:: autofocus - - - .. py:attribute:: background_color - - - .. py:attribute:: clear_icon - - - .. py:attribute:: clearable - - - .. py:attribute:: color - - - .. py:attribute:: counter - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: disabled - - - .. py:attribute:: error - - - .. py:attribute:: error_count - - - .. py:attribute:: error_messages - - - .. py:attribute:: filled - - - .. py:attribute:: flat - - - .. py:attribute:: full_width - - - .. py:attribute:: height - - - .. py:attribute:: hide_details - - - .. py:attribute:: hint - - - .. py:attribute:: id - - - .. py:attribute:: label - - - .. py:attribute:: light - - - .. py:attribute:: loader_height - - - .. py:attribute:: loading - - - .. py:attribute:: messages - - - .. py:attribute:: no_resize - - - .. py:attribute:: outlined - - - .. py:attribute:: persistent_hint - - - .. py:attribute:: placeholder - - - .. py:attribute:: prefix - - - .. py:attribute:: prepend_icon - - - .. py:attribute:: prepend_inner_icon - - - .. py:attribute:: readonly - - - .. py:attribute:: reverse - - - .. py:attribute:: rounded - - - .. py:attribute:: row_height - - - .. py:attribute:: rows - - - .. py:attribute:: rules - - - .. py:attribute:: shaped - - - .. py:attribute:: single_line - - - .. py:attribute:: solo - - - .. py:attribute:: solo_inverted - - - .. py:attribute:: success - - - .. py:attribute:: success_messages - - - .. py:attribute:: suffix - - - .. py:attribute:: type - - - .. py:attribute:: validate_on_blur - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/ThemeProvider.rst b/docs/autoapi/ipyvuetify/ThemeProvider.rst index e72c3627..889fbc86 100644 --- a/docs/autoapi/ipyvuetify/ThemeProvider.rst +++ b/docs/autoapi/ipyvuetify/ThemeProvider.rst @@ -1,26 +1,28 @@ ipyvuetify.ThemeProvider ======================== -.. py:class:: ipyvuetify.ThemeProvider(**kwargs) +.. py:class:: ipyvuetify.ThemeProvider Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + The v-theme-provider component allows you to dynamically change theme (light/dark) for its children. .. py:attribute:: dark + Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). + + .. py:attribute:: light + Applies the light theme variant to the component. + + .. py:attribute:: root + Use the current value of `$vuetify.theme.dark` as opposed to the provided one. + + diff --git a/docs/autoapi/ipyvuetify/TimePicker.rst b/docs/autoapi/ipyvuetify/TimePicker.rst deleted file mode 100644 index c2b9acd0..00000000 --- a/docs/autoapi/ipyvuetify/TimePicker.rst +++ /dev/null @@ -1,77 +0,0 @@ -ipyvuetify.TimePicker -===================== - -.. py:class:: ipyvuetify.TimePicker(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: allowed_hours - - - .. py:attribute:: allowed_minutes - - - .. py:attribute:: allowed_seconds - - - .. py:attribute:: ampm_in_title - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: format - - - .. py:attribute:: full_width - - - .. py:attribute:: header_color - - - .. py:attribute:: landscape - - - .. py:attribute:: light - - - .. py:attribute:: max - - - .. py:attribute:: min - - - .. py:attribute:: no_title - - - .. py:attribute:: readonly - - - .. py:attribute:: scrollable - - - .. py:attribute:: use_seconds - - - .. py:attribute:: value - - - .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/TimePickerClock.rst b/docs/autoapi/ipyvuetify/TimePickerClock.rst index 6bab0c16..86906712 100644 --- a/docs/autoapi/ipyvuetify/TimePickerClock.rst +++ b/docs/autoapi/ipyvuetify/TimePickerClock.rst @@ -1,56 +1,88 @@ ipyvuetify.TimePickerClock ========================== -.. py:class:: ipyvuetify.TimePickerClock(**kwargs) +.. py:class:: ipyvuetify.TimePickerClock Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + The clock face interface of the time picker. .. py:attribute:: ampm + The doc could not be extracted from vuetify API + + .. py:attribute:: color + Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors). + + .. py:attribute:: dark + Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). + + .. py:attribute:: disabled + Removes the ability to click or target the component. + + .. py:attribute:: double + The doc could not be extracted from vuetify API + + .. py:attribute:: light + Applies the light theme variant to the component. + + .. py:attribute:: max + Sets a maximum number of selections that can be made. + + .. py:attribute:: min + The doc could not be extracted from vuetify API + + .. py:attribute:: readonly + Puts input in readonly state + + .. py:attribute:: rotate + The doc could not be extracted from vuetify API + + .. py:attribute:: scrollable + Allows the use of the mouse wheel in the picker + + .. py:attribute:: step + The doc could not be extracted from vuetify API + + .. py:attribute:: value + Controls whether the component is visible or hidden. + + diff --git a/docs/autoapi/ipyvuetify/TimePickerTitle.rst b/docs/autoapi/ipyvuetify/TimePickerTitle.rst index dddd913c..7e3ba379 100644 --- a/docs/autoapi/ipyvuetify/TimePickerTitle.rst +++ b/docs/autoapi/ipyvuetify/TimePickerTitle.rst @@ -1,50 +1,76 @@ ipyvuetify.TimePickerTitle ========================== -.. py:class:: ipyvuetify.TimePickerTitle(**kwargs) +.. py:class:: ipyvuetify.TimePickerTitle Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + The title/display area of the time picker showing the selected time. .. py:attribute:: ampm + The doc could not be extracted from vuetify API + + .. py:attribute:: ampm_readonly + The doc could not be extracted from vuetify API + + .. py:attribute:: color + Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors). + + .. py:attribute:: disabled + Removes the ability to click or target the component. + + .. py:attribute:: hour + The doc could not be extracted from vuetify API + + .. py:attribute:: minute + The doc could not be extracted from vuetify API + + .. py:attribute:: period + The doc could not be extracted from vuetify API + + .. py:attribute:: readonly + Puts input in readonly state + + .. py:attribute:: second + The doc could not be extracted from vuetify API + + .. py:attribute:: selecting + The doc could not be extracted from vuetify API + + .. py:attribute:: use_seconds + The doc could not be extracted from vuetify API + + diff --git a/docs/autoapi/ipyvuetify/Timeline.rst b/docs/autoapi/ipyvuetify/Timeline.rst index 282f95b4..574e95c7 100644 --- a/docs/autoapi/ipyvuetify/Timeline.rst +++ b/docs/autoapi/ipyvuetify/Timeline.rst @@ -1,32 +1,40 @@ ipyvuetify.Timeline =================== -.. py:class:: ipyvuetify.Timeline(**kwargs) +.. py:class:: ipyvuetify.Timeline Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + The v-timeline component displays a list of events in chronological order along a vertical line. .. py:attribute:: align_top + Align caret and dot of timeline items to the top + + .. py:attribute:: dark + Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). + + .. py:attribute:: dense + Hide opposite slot content, and position all items to one side of timeline + + .. py:attribute:: light + Applies the light theme variant to the component. + + .. py:attribute:: reverse + Reverse direction of timeline items + + diff --git a/docs/autoapi/ipyvuetify/TimelineItem.rst b/docs/autoapi/ipyvuetify/TimelineItem.rst index 6c40db76..3bd20e40 100644 --- a/docs/autoapi/ipyvuetify/TimelineItem.rst +++ b/docs/autoapi/ipyvuetify/TimelineItem.rst @@ -1,50 +1,76 @@ ipyvuetify.TimelineItem ======================= -.. py:class:: ipyvuetify.TimelineItem(**kwargs) +.. py:class:: ipyvuetify.TimelineItem Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A single event item within a v-timeline component. .. py:attribute:: color + Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors). + + .. py:attribute:: dark + Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). + + .. py:attribute:: fill_dot + Remove padding from dot container + + .. py:attribute:: hide_dot + Hide display of timeline dot + + .. py:attribute:: icon + Specify icon for dot container + + .. py:attribute:: icon_color + Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors). + + .. py:attribute:: large + Large size dot + + .. py:attribute:: left + Explicitly set the item to a left orientation + + .. py:attribute:: light + Applies the light theme variant to the component. + + .. py:attribute:: right + Explicitly set the item to a right orientation + + .. py:attribute:: small + Small size dot + + diff --git a/docs/autoapi/ipyvuetify/Toolbar.rst b/docs/autoapi/ipyvuetify/Toolbar.rst deleted file mode 100644 index 7e6ffe5e..00000000 --- a/docs/autoapi/ipyvuetify/Toolbar.rst +++ /dev/null @@ -1,86 +0,0 @@ -ipyvuetify.Toolbar -================== - -.. py:class:: ipyvuetify.Toolbar(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: bottom - - - .. py:attribute:: collapse - - - .. py:attribute:: color - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: elevation - - - .. py:attribute:: extended - - - .. py:attribute:: extension_height - - - .. py:attribute:: flat - - - .. py:attribute:: floating - - - .. py:attribute:: height - - - .. py:attribute:: light - - - .. py:attribute:: max_height - - - .. py:attribute:: max_width - - - .. py:attribute:: min_height - - - .. py:attribute:: min_width - - - .. py:attribute:: prominent - - - .. py:attribute:: short - - - .. py:attribute:: src - - - .. py:attribute:: tag - - - .. py:attribute:: tile - - - .. py:attribute:: width - diff --git a/docs/autoapi/ipyvuetify/ToolbarItems.rst b/docs/autoapi/ipyvuetify/ToolbarItems.rst index 1ec6ba93..5be60cc1 100644 --- a/docs/autoapi/ipyvuetify/ToolbarItems.rst +++ b/docs/autoapi/ipyvuetify/ToolbarItems.rst @@ -1,17 +1,10 @@ ipyvuetify.ToolbarItems ======================= -.. py:class:: ipyvuetify.ToolbarItems(**kwargs) +.. py:class:: ipyvuetify.ToolbarItems Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A container for toolbar items that provides proper spacing. diff --git a/docs/autoapi/ipyvuetify/ToolbarTitle.rst b/docs/autoapi/ipyvuetify/ToolbarTitle.rst index d578b664..ab433274 100644 --- a/docs/autoapi/ipyvuetify/ToolbarTitle.rst +++ b/docs/autoapi/ipyvuetify/ToolbarTitle.rst @@ -1,17 +1,10 @@ ipyvuetify.ToolbarTitle ======================= -.. py:class:: ipyvuetify.ToolbarTitle(**kwargs) +.. py:class:: ipyvuetify.ToolbarTitle Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + The title element of a toolbar. diff --git a/docs/autoapi/ipyvuetify/Tooltip.rst b/docs/autoapi/ipyvuetify/Tooltip.rst deleted file mode 100644 index 5024b66c..00000000 --- a/docs/autoapi/ipyvuetify/Tooltip.rst +++ /dev/null @@ -1,119 +0,0 @@ -ipyvuetify.Tooltip -================== - -.. py:class:: ipyvuetify.Tooltip(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: absolute - - - .. py:attribute:: activator - - - .. py:attribute:: allow_overflow - - - .. py:attribute:: attach - - - .. py:attribute:: bottom - - - .. py:attribute:: close_delay - - - .. py:attribute:: color - - - .. py:attribute:: content_class - - - .. py:attribute:: dark - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: fixed - - - .. py:attribute:: internal_activator - - - .. py:attribute:: left - - - .. py:attribute:: light - - - .. py:attribute:: max_width - - - .. py:attribute:: min_width - - - .. py:attribute:: nudge_bottom - - - .. py:attribute:: nudge_left - - - .. py:attribute:: nudge_right - - - .. py:attribute:: nudge_top - - - .. py:attribute:: nudge_width - - - .. py:attribute:: offset_overflow - - - .. py:attribute:: open_delay - - - .. py:attribute:: open_on_click - - - .. py:attribute:: open_on_hover - - - .. py:attribute:: position_x - - - .. py:attribute:: position_y - - - .. py:attribute:: right - - - .. py:attribute:: tag - - - .. py:attribute:: top - - - .. py:attribute:: transition - - - .. py:attribute:: value - - - .. py:attribute:: z_index - diff --git a/docs/autoapi/ipyvuetify/Treeview.rst b/docs/autoapi/ipyvuetify/Treeview.rst index ea84fd59..f8509f9f 100644 --- a/docs/autoapi/ipyvuetify/Treeview.rst +++ b/docs/autoapi/ipyvuetify/Treeview.rst @@ -1,110 +1,196 @@ ipyvuetify.Treeview =================== -.. py:class:: ipyvuetify.Treeview(**kwargs) +.. py:class:: ipyvuetify.Treeview Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + The v-treeview component displays hierarchical data in a tree structure with expand/collapse functionality. .. py:attribute:: activatable + Allows user to mark a node as active by clicking on it + + .. py:attribute:: active + Syncable prop that allows one to control which nodes are active. The array consists of the `item-key` of each active item. + + .. py:attribute:: active_class + The class applied to the node when active + + .. py:attribute:: color + Sets the color of the active node + + .. py:attribute:: dark + Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). + + .. py:attribute:: dense + Decreases the height of the items + + .. py:attribute:: expand_icon + Icon used to indicate that a node can be expanded + + .. py:attribute:: hoverable + Applies a hover class when mousing over nodes + + .. py:attribute:: indeterminate_icon + Icon used when node is in an indeterminate state. Only visible when `selectable` is `true`. + + .. py:attribute:: item_children + Property on supplied `items` that contains its children + + .. py:attribute:: item_disabled + Property on supplied `items` that contains the disabled state of the item + + .. py:attribute:: item_key + Property on supplied `items` used to keep track of node state. The value of this property has to be unique among all items. + + .. py:attribute:: item_text + Property on supplied `items` that contains its label text + + .. py:attribute:: items + An array of items used to build the treeview + + .. py:attribute:: light + Applies the light theme variant to the component. + + .. py:attribute:: loading_icon + Icon used when node is in a loading state + + .. py:attribute:: multiple_active + When `true`, allows user to have multiple active nodes at the same time + + .. py:attribute:: off_icon + Icon used when node is not selected. Only visible when `selectable` is `true`. + + .. py:attribute:: on_icon + Icon used when leaf node is selected or when a branch node is fully selected. Only visible when `selectable` is `true`. + + .. py:attribute:: open_ + Syncable prop that allows one to control which nodes are open. The array consists of the `item-key` of each open item. + + .. py:attribute:: open_all + When `true` will cause all branch nodes to be opened when component is mounted + + .. py:attribute:: open_on_click + When `true` will cause nodes to be opened by clicking anywhere on it, instead of only opening by clicking on expand icon. When using this prop with `activatable` you will be unable to mark nodes with children as active. + + .. py:attribute:: return_object + When `true` will make `v-model`, `active.sync` and `open.sync` return the complete object instead of just the key + + .. py:attribute:: rounded + Provides an alternative active style for `v-treeview` node. Only visible when `activatable` is `true` and should not be used in conjunction with the `shaped` prop. + + .. py:attribute:: search + The search model for filtering results + + .. py:attribute:: selectable + Will render a checkbox next to each node allowing them to be selected + + .. py:attribute:: selected_color + The color of the selection checkbox + + .. py:attribute:: selection_type + Controls how the treeview selects nodes. There are two modes available: 'leaf' and 'independent' + + .. py:attribute:: shaped + Provides an alternative active style for `v-treeview` node. Only visible when `activatable` is `true` and should not be used in conjunction with the `rounded` prop. + + .. py:attribute:: transition + Applies a transition when nodes are opened and closed + + .. py:attribute:: value + Allows one to control which nodes are selected. The array consists of the `item-key` of each selected item. Is used with `@input` event to allow for `v-model` binding. + + diff --git a/docs/autoapi/ipyvuetify/TreeviewNode.rst b/docs/autoapi/ipyvuetify/TreeviewNode.rst index 383cca9e..11367338 100644 --- a/docs/autoapi/ipyvuetify/TreeviewNode.rst +++ b/docs/autoapi/ipyvuetify/TreeviewNode.rst @@ -1,77 +1,130 @@ ipyvuetify.TreeviewNode ======================= -.. py:class:: ipyvuetify.TreeviewNode(**kwargs) +.. py:class:: ipyvuetify.TreeviewNode Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout + A single node within a v-treeview component. .. py:attribute:: activatable + Allows user to mark a node as active by clicking on it + + .. py:attribute:: active_class + The class applied to the node when active + + .. py:attribute:: color + Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors). + + .. py:attribute:: expand_icon + Icon used to indicate that a node can be expanded + + .. py:attribute:: indeterminate_icon + Icon used when node is in an indeterminate state. Only visible when `selectable` is `true`. + + .. py:attribute:: item + Item object used to build the node + + .. py:attribute:: item_children + Property on supplied `items` that contains its children + + .. py:attribute:: item_disabled + Property on supplied `items` that contains the disabled state of the item + + .. py:attribute:: item_key + Property on supplied `items` used to keep track of node state. The value of this property has to be unique among all items. + + .. py:attribute:: item_text + Property on supplied `items` that contains its label text + + .. py:attribute:: level + Property designating how deep the node is from the root of the treeview + + .. py:attribute:: loading_icon + Icon used when node is in a loading state + + .. py:attribute:: off_icon + Icon used when node is not selected. Only visible when `selectable` is `true`. + + .. py:attribute:: on_icon + Icon used when leaf node is selected or when a branch node is fully selected. Only visible when `selectable` is `true`. + + .. py:attribute:: open_on_click + When `true` will cause nodes to be opened by clicking anywhere on it, instead of only opening by clicking on expand icon. When using this prop with `activatable` you will be unable to mark nodes with children as active. + + .. py:attribute:: rounded + Provides an alternative active style for `v-treeview` node. Only visible when `activatable` is `true` and should not be used in conjunction with the `shaped` prop. + + .. py:attribute:: selectable + Will render a checkbox next to each node allowing them to be selected + + .. py:attribute:: selected_color + The color of the selection checkbox + + .. py:attribute:: shaped + Provides an alternative active style for `v-treeview` node. Only visible when `activatable` is `true` and should not be used in conjunction with the `rounded` prop. + + .. py:attribute:: transition + Applies a transition when nodes are opened and closed + + diff --git a/docs/autoapi/ipyvuetify/VirtualTable.rst b/docs/autoapi/ipyvuetify/VirtualTable.rst deleted file mode 100644 index 24eb3ad6..00000000 --- a/docs/autoapi/ipyvuetify/VirtualTable.rst +++ /dev/null @@ -1,44 +0,0 @@ -ipyvuetify.VirtualTable -======================= - -.. py:class:: ipyvuetify.VirtualTable(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: chunk_size - - - .. py:attribute:: dark - - - .. py:attribute:: dense - - - .. py:attribute:: fixed_header - - - .. py:attribute:: header_height - - - .. py:attribute:: height - - - .. py:attribute:: items - - - .. py:attribute:: light - - - .. py:attribute:: row_height - diff --git a/docs/autoapi/ipyvuetify/VuetifyWidget.rst b/docs/autoapi/ipyvuetify/VuetifyWidget.rst deleted file mode 100644 index 7d91e362..00000000 --- a/docs/autoapi/ipyvuetify/VuetifyWidget.rst +++ /dev/null @@ -1,17 +0,0 @@ -ipyvuetify.VuetifyWidget -======================== - -.. py:class:: ipyvuetify.VuetifyWidget(**kwargs) - - Bases: :py:obj:`ipyvue.VueWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - diff --git a/docs/autoapi/ipyvuetify/Window.rst b/docs/autoapi/ipyvuetify/Window.rst deleted file mode 100644 index f8c00315..00000000 --- a/docs/autoapi/ipyvuetify/Window.rst +++ /dev/null @@ -1,65 +0,0 @@ -ipyvuetify.Window -================= - -.. py:class:: ipyvuetify.Window(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: continuous - - - .. py:attribute:: dark - - - .. py:attribute:: light - - - .. py:attribute:: mandatory - - - .. py:attribute:: max - - - .. py:attribute:: multiple - - - .. py:attribute:: next_icon - - - .. py:attribute:: prev_icon - - - .. py:attribute:: reverse - - - .. py:attribute:: show_arrows - - - .. py:attribute:: show_arrows_on_hover - - - .. py:attribute:: touch - - - .. py:attribute:: touchless - - - .. py:attribute:: value - - - .. py:attribute:: vertical - diff --git a/docs/autoapi/ipyvuetify/WindowItem.rst b/docs/autoapi/ipyvuetify/WindowItem.rst deleted file mode 100644 index b6b6349b..00000000 --- a/docs/autoapi/ipyvuetify/WindowItem.rst +++ /dev/null @@ -1,35 +0,0 @@ -ipyvuetify.WindowItem -===================== - -.. py:class:: ipyvuetify.WindowItem(**kwargs) - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: active_class - - - .. py:attribute:: disabled - - - .. py:attribute:: eager - - - .. py:attribute:: reverse_transition - - - .. py:attribute:: transition - - - .. py:attribute:: value - diff --git a/docs/autoapi/ipyvuetify/components/Alert.rst b/docs/autoapi/ipyvuetify/components/Alert.rst new file mode 100644 index 00000000..7e6177f2 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Alert.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Alert +=========================== + +.. py:function:: ipyvuetify.components.Alert(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/App.rst b/docs/autoapi/ipyvuetify/components/App.rst new file mode 100644 index 00000000..4612a38e --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/App.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.App +========================= + +.. py:function:: ipyvuetify.components.App(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/AppBar.rst b/docs/autoapi/ipyvuetify/components/AppBar.rst new file mode 100644 index 00000000..bae1c559 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/AppBar.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.AppBar +============================ + +.. py:function:: ipyvuetify.components.AppBar(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/AppBarNavIcon.rst b/docs/autoapi/ipyvuetify/components/AppBarNavIcon.rst new file mode 100644 index 00000000..aa8612a1 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/AppBarNavIcon.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.AppBarNavIcon +=================================== + +.. py:function:: ipyvuetify.components.AppBarNavIcon(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Autocomplete.rst b/docs/autoapi/ipyvuetify/components/Autocomplete.rst new file mode 100644 index 00000000..f2aae94c --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Autocomplete.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Autocomplete +================================== + +.. py:function:: ipyvuetify.components.Autocomplete(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Avatar.rst b/docs/autoapi/ipyvuetify/components/Avatar.rst new file mode 100644 index 00000000..58f892ae --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Avatar.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Avatar +============================ + +.. py:function:: ipyvuetify.components.Avatar(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Badge.rst b/docs/autoapi/ipyvuetify/components/Badge.rst new file mode 100644 index 00000000..60c77491 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Badge.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Badge +=========================== + +.. py:function:: ipyvuetify.components.Badge(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Banner.rst b/docs/autoapi/ipyvuetify/components/Banner.rst new file mode 100644 index 00000000..a25b0bd3 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Banner.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Banner +============================ + +.. py:function:: ipyvuetify.components.Banner(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/BottomNavigation.rst b/docs/autoapi/ipyvuetify/components/BottomNavigation.rst new file mode 100644 index 00000000..dac4776f --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/BottomNavigation.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.BottomNavigation +====================================== + +.. py:function:: ipyvuetify.components.BottomNavigation(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/BottomSheet.rst b/docs/autoapi/ipyvuetify/components/BottomSheet.rst new file mode 100644 index 00000000..91e9c02f --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/BottomSheet.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.BottomSheet +================================= + +.. py:function:: ipyvuetify.components.BottomSheet(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Breadcrumbs.rst b/docs/autoapi/ipyvuetify/components/Breadcrumbs.rst new file mode 100644 index 00000000..751e222a --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Breadcrumbs.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Breadcrumbs +================================= + +.. py:function:: ipyvuetify.components.Breadcrumbs(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/BreadcrumbsDivider.rst b/docs/autoapi/ipyvuetify/components/BreadcrumbsDivider.rst new file mode 100644 index 00000000..b0536502 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/BreadcrumbsDivider.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.BreadcrumbsDivider +======================================== + +.. py:function:: ipyvuetify.components.BreadcrumbsDivider(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/BreadcrumbsItem.rst b/docs/autoapi/ipyvuetify/components/BreadcrumbsItem.rst new file mode 100644 index 00000000..0d0717c2 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/BreadcrumbsItem.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.BreadcrumbsItem +===================================== + +.. py:function:: ipyvuetify.components.BreadcrumbsItem(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Btn.rst b/docs/autoapi/ipyvuetify/components/Btn.rst new file mode 100644 index 00000000..b8a31666 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Btn.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Btn +========================= + +.. py:function:: ipyvuetify.components.Btn(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/BtnToggle.rst b/docs/autoapi/ipyvuetify/components/BtnToggle.rst new file mode 100644 index 00000000..cfe94d54 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/BtnToggle.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.BtnToggle +=============================== + +.. py:function:: ipyvuetify.components.BtnToggle(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Calendar.rst b/docs/autoapi/ipyvuetify/components/Calendar.rst new file mode 100644 index 00000000..a076811b --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Calendar.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Calendar +============================== + +.. py:function:: ipyvuetify.components.Calendar(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/CalendarDaily.rst b/docs/autoapi/ipyvuetify/components/CalendarDaily.rst new file mode 100644 index 00000000..23876fff --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/CalendarDaily.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.CalendarDaily +=================================== + +.. py:function:: ipyvuetify.components.CalendarDaily(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/CalendarMonthly.rst b/docs/autoapi/ipyvuetify/components/CalendarMonthly.rst new file mode 100644 index 00000000..5518391f --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/CalendarMonthly.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.CalendarMonthly +===================================== + +.. py:function:: ipyvuetify.components.CalendarMonthly(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/CalendarWeekly.rst b/docs/autoapi/ipyvuetify/components/CalendarWeekly.rst new file mode 100644 index 00000000..4f4b6d03 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/CalendarWeekly.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.CalendarWeekly +==================================== + +.. py:function:: ipyvuetify.components.CalendarWeekly(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Card.rst b/docs/autoapi/ipyvuetify/components/Card.rst new file mode 100644 index 00000000..688c601d --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Card.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Card +========================== + +.. py:function:: ipyvuetify.components.Card(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/CardActions.rst b/docs/autoapi/ipyvuetify/components/CardActions.rst new file mode 100644 index 00000000..6ff9726a --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/CardActions.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.CardActions +================================= + +.. py:function:: ipyvuetify.components.CardActions(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/CardSubtitle.rst b/docs/autoapi/ipyvuetify/components/CardSubtitle.rst new file mode 100644 index 00000000..a6f3cd81 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/CardSubtitle.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.CardSubtitle +================================== + +.. py:function:: ipyvuetify.components.CardSubtitle(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/CardText.rst b/docs/autoapi/ipyvuetify/components/CardText.rst new file mode 100644 index 00000000..dde1b023 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/CardText.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.CardText +============================== + +.. py:function:: ipyvuetify.components.CardText(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/CardTitle.rst b/docs/autoapi/ipyvuetify/components/CardTitle.rst new file mode 100644 index 00000000..c22e04df --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/CardTitle.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.CardTitle +=============================== + +.. py:function:: ipyvuetify.components.CardTitle(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Carousel.rst b/docs/autoapi/ipyvuetify/components/Carousel.rst new file mode 100644 index 00000000..b972a217 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Carousel.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Carousel +============================== + +.. py:function:: ipyvuetify.components.Carousel(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/CarouselItem.rst b/docs/autoapi/ipyvuetify/components/CarouselItem.rst new file mode 100644 index 00000000..039509dd --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/CarouselItem.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.CarouselItem +================================== + +.. py:function:: ipyvuetify.components.CarouselItem(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/CarouselReverseTransition.rst b/docs/autoapi/ipyvuetify/components/CarouselReverseTransition.rst new file mode 100644 index 00000000..cfcc3312 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/CarouselReverseTransition.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.CarouselReverseTransition +=============================================== + +.. py:function:: ipyvuetify.components.CarouselReverseTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/CarouselTransition.rst b/docs/autoapi/ipyvuetify/components/CarouselTransition.rst new file mode 100644 index 00000000..6c778efd --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/CarouselTransition.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.CarouselTransition +======================================== + +.. py:function:: ipyvuetify.components.CarouselTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Checkbox.rst b/docs/autoapi/ipyvuetify/components/Checkbox.rst new file mode 100644 index 00000000..4dc9f315 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Checkbox.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Checkbox +============================== + +.. py:function:: ipyvuetify.components.Checkbox(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Chip.rst b/docs/autoapi/ipyvuetify/components/Chip.rst new file mode 100644 index 00000000..159390df --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Chip.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Chip +========================== + +.. py:function:: ipyvuetify.components.Chip(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ChipGroup.rst b/docs/autoapi/ipyvuetify/components/ChipGroup.rst new file mode 100644 index 00000000..940fd879 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ChipGroup.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ChipGroup +=============================== + +.. py:function:: ipyvuetify.components.ChipGroup(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/CodeGen.has_callback.rst b/docs/autoapi/ipyvuetify/components/CodeGen.has_callback.rst new file mode 100644 index 00000000..e1432b3d --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/CodeGen.has_callback.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.CodeGen.has_callback +========================================== + +.. py:method:: ipyvuetify.components.CodeGen.has_callback(cls, name) diff --git a/docs/autoapi/ipyvuetify/components/CodeGen.rst b/docs/autoapi/ipyvuetify/components/CodeGen.rst index 6843bb61..2f99f923 100644 --- a/docs/autoapi/ipyvuetify/components/CodeGen.rst +++ b/docs/autoapi/ipyvuetify/components/CodeGen.rst @@ -1,10 +1,20 @@ ipyvuetify.components.CodeGen ============================= +.. toctree:: + :hidden: + + /autoapi/ipyvuetify/components/CodeGen.has_callback + .. py:class:: ipyvuetify.components.CodeGen Bases: :py:obj:`reacton.generate.CodeGen` +Methods +------- + +.. autoapisummary:: + + ipyvuetify.components.CodeGen.has_callback - .. py:method:: has_callback(cls, name) diff --git a/docs/autoapi/ipyvuetify/components/Col.rst b/docs/autoapi/ipyvuetify/components/Col.rst new file mode 100644 index 00000000..a62da73f --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Col.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Col +========================= + +.. py:function:: ipyvuetify.components.Col(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ColorPicker.rst b/docs/autoapi/ipyvuetify/components/ColorPicker.rst new file mode 100644 index 00000000..88ccb5e7 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ColorPicker.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ColorPicker +================================= + +.. py:function:: ipyvuetify.components.ColorPicker(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ColorPickerCanvas.rst b/docs/autoapi/ipyvuetify/components/ColorPickerCanvas.rst new file mode 100644 index 00000000..396489f3 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ColorPickerCanvas.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ColorPickerCanvas +======================================= + +.. py:function:: ipyvuetify.components.ColorPickerCanvas(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ColorPickerSwatches.rst b/docs/autoapi/ipyvuetify/components/ColorPickerSwatches.rst new file mode 100644 index 00000000..3e25b1e8 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ColorPickerSwatches.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ColorPickerSwatches +========================================= + +.. py:function:: ipyvuetify.components.ColorPickerSwatches(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Combobox.rst b/docs/autoapi/ipyvuetify/components/Combobox.rst new file mode 100644 index 00000000..8c2b643a --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Combobox.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Combobox +============================== + +.. py:function:: ipyvuetify.components.Combobox(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Container.rst b/docs/autoapi/ipyvuetify/components/Container.rst new file mode 100644 index 00000000..06173b11 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Container.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Container +=============================== + +.. py:function:: ipyvuetify.components.Container(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Content.rst b/docs/autoapi/ipyvuetify/components/Content.rst new file mode 100644 index 00000000..b0577594 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Content.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Content +============================= + +.. py:function:: ipyvuetify.components.Content(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Counter.rst b/docs/autoapi/ipyvuetify/components/Counter.rst new file mode 100644 index 00000000..f32117fd --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Counter.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Counter +============================= + +.. py:function:: ipyvuetify.components.Counter(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Data.rst b/docs/autoapi/ipyvuetify/components/Data.rst new file mode 100644 index 00000000..c73c8103 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Data.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Data +========================== + +.. py:function:: ipyvuetify.components.Data(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/DataFooter.rst b/docs/autoapi/ipyvuetify/components/DataFooter.rst new file mode 100644 index 00000000..c326edd9 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/DataFooter.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.DataFooter +================================ + +.. py:function:: ipyvuetify.components.DataFooter(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/DataIterator.rst b/docs/autoapi/ipyvuetify/components/DataIterator.rst new file mode 100644 index 00000000..56f6368c --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/DataIterator.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.DataIterator +================================== + +.. py:function:: ipyvuetify.components.DataIterator(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/DataTable.rst b/docs/autoapi/ipyvuetify/components/DataTable.rst new file mode 100644 index 00000000..b6c1976f --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/DataTable.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.DataTable +=============================== + +.. py:function:: ipyvuetify.components.DataTable(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/DataTableHeader.rst b/docs/autoapi/ipyvuetify/components/DataTableHeader.rst new file mode 100644 index 00000000..68e29f48 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/DataTableHeader.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.DataTableHeader +===================================== + +.. py:function:: ipyvuetify.components.DataTableHeader(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/DatePicker.rst b/docs/autoapi/ipyvuetify/components/DatePicker.rst new file mode 100644 index 00000000..ccfaa9d9 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/DatePicker.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.DatePicker +================================ + +.. py:function:: ipyvuetify.components.DatePicker(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/DatePickerDateTable.rst b/docs/autoapi/ipyvuetify/components/DatePickerDateTable.rst new file mode 100644 index 00000000..8090e921 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/DatePickerDateTable.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.DatePickerDateTable +========================================= + +.. py:function:: ipyvuetify.components.DatePickerDateTable(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/DatePickerHeader.rst b/docs/autoapi/ipyvuetify/components/DatePickerHeader.rst new file mode 100644 index 00000000..9a638f44 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/DatePickerHeader.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.DatePickerHeader +====================================== + +.. py:function:: ipyvuetify.components.DatePickerHeader(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/DatePickerMonthTable.rst b/docs/autoapi/ipyvuetify/components/DatePickerMonthTable.rst new file mode 100644 index 00000000..2113664d --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/DatePickerMonthTable.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.DatePickerMonthTable +========================================== + +.. py:function:: ipyvuetify.components.DatePickerMonthTable(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/DatePickerTitle.rst b/docs/autoapi/ipyvuetify/components/DatePickerTitle.rst new file mode 100644 index 00000000..cac82e52 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/DatePickerTitle.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.DatePickerTitle +===================================== + +.. py:function:: ipyvuetify.components.DatePickerTitle(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/DatePickerYears.rst b/docs/autoapi/ipyvuetify/components/DatePickerYears.rst new file mode 100644 index 00000000..e9dda0d1 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/DatePickerYears.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.DatePickerYears +===================================== + +.. py:function:: ipyvuetify.components.DatePickerYears(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Dialog.rst b/docs/autoapi/ipyvuetify/components/Dialog.rst new file mode 100644 index 00000000..d9736ea2 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Dialog.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Dialog +============================ + +.. py:function:: ipyvuetify.components.Dialog(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/DialogBottomTransition.rst b/docs/autoapi/ipyvuetify/components/DialogBottomTransition.rst new file mode 100644 index 00000000..fd64573b --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/DialogBottomTransition.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.DialogBottomTransition +============================================ + +.. py:function:: ipyvuetify.components.DialogBottomTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/DialogTransition.rst b/docs/autoapi/ipyvuetify/components/DialogTransition.rst new file mode 100644 index 00000000..56773ad5 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/DialogTransition.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.DialogTransition +====================================== + +.. py:function:: ipyvuetify.components.DialogTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Divider.rst b/docs/autoapi/ipyvuetify/components/Divider.rst new file mode 100644 index 00000000..ed541716 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Divider.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Divider +============================= + +.. py:function:: ipyvuetify.components.Divider(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/EditDialog.rst b/docs/autoapi/ipyvuetify/components/EditDialog.rst new file mode 100644 index 00000000..1239a782 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/EditDialog.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.EditDialog +================================ + +.. py:function:: ipyvuetify.components.EditDialog(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ExpandTransition.rst b/docs/autoapi/ipyvuetify/components/ExpandTransition.rst new file mode 100644 index 00000000..134bc88b --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ExpandTransition.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ExpandTransition +====================================== + +.. py:function:: ipyvuetify.components.ExpandTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ExpandXTransition.rst b/docs/autoapi/ipyvuetify/components/ExpandXTransition.rst new file mode 100644 index 00000000..3c75d877 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ExpandXTransition.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ExpandXTransition +======================================= + +.. py:function:: ipyvuetify.components.ExpandXTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ExpansionPanel.rst b/docs/autoapi/ipyvuetify/components/ExpansionPanel.rst new file mode 100644 index 00000000..04af2e7a --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ExpansionPanel.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ExpansionPanel +==================================== + +.. py:function:: ipyvuetify.components.ExpansionPanel(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ExpansionPanelContent.rst b/docs/autoapi/ipyvuetify/components/ExpansionPanelContent.rst new file mode 100644 index 00000000..c5dc7fdf --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ExpansionPanelContent.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ExpansionPanelContent +=========================================== + +.. py:function:: ipyvuetify.components.ExpansionPanelContent(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ExpansionPanelHeader.rst b/docs/autoapi/ipyvuetify/components/ExpansionPanelHeader.rst new file mode 100644 index 00000000..e7b13511 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ExpansionPanelHeader.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ExpansionPanelHeader +========================================== + +.. py:function:: ipyvuetify.components.ExpansionPanelHeader(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ExpansionPanels.rst b/docs/autoapi/ipyvuetify/components/ExpansionPanels.rst new file mode 100644 index 00000000..52f91fae --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ExpansionPanels.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ExpansionPanels +===================================== + +.. py:function:: ipyvuetify.components.ExpansionPanels(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/FabTransition.rst b/docs/autoapi/ipyvuetify/components/FabTransition.rst new file mode 100644 index 00000000..840149c7 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/FabTransition.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.FabTransition +=================================== + +.. py:function:: ipyvuetify.components.FabTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/FadeTransition.rst b/docs/autoapi/ipyvuetify/components/FadeTransition.rst new file mode 100644 index 00000000..b1504b85 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/FadeTransition.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.FadeTransition +==================================== + +.. py:function:: ipyvuetify.components.FadeTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/FileInput.rst b/docs/autoapi/ipyvuetify/components/FileInput.rst new file mode 100644 index 00000000..bd1612fb --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/FileInput.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.FileInput +=============================== + +.. py:function:: ipyvuetify.components.FileInput(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Flex.rst b/docs/autoapi/ipyvuetify/components/Flex.rst new file mode 100644 index 00000000..800238fc --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Flex.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Flex +========================== + +.. py:function:: ipyvuetify.components.Flex(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Footer.rst b/docs/autoapi/ipyvuetify/components/Footer.rst new file mode 100644 index 00000000..fffe9367 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Footer.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Footer +============================ + +.. py:function:: ipyvuetify.components.Footer(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Form.rst b/docs/autoapi/ipyvuetify/components/Form.rst new file mode 100644 index 00000000..a48224d3 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Form.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Form +========================== + +.. py:function:: ipyvuetify.components.Form(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Hover.rst b/docs/autoapi/ipyvuetify/components/Hover.rst new file mode 100644 index 00000000..5b2e4220 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Hover.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Hover +=========================== + +.. py:function:: ipyvuetify.components.Hover(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Html.rst b/docs/autoapi/ipyvuetify/components/Html.rst new file mode 100644 index 00000000..38346178 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Html.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Html +========================== + +.. py:function:: ipyvuetify.components.Html(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Icon.rst b/docs/autoapi/ipyvuetify/components/Icon.rst new file mode 100644 index 00000000..25cdbc5a --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Icon.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Icon +========================== + +.. py:function:: ipyvuetify.components.Icon(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Img.rst b/docs/autoapi/ipyvuetify/components/Img.rst new file mode 100644 index 00000000..9b8437ec --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Img.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Img +========================= + +.. py:function:: ipyvuetify.components.Img(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Input.rst b/docs/autoapi/ipyvuetify/components/Input.rst new file mode 100644 index 00000000..1ed09276 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Input.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Input +=========================== + +.. py:function:: ipyvuetify.components.Input(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Item.rst b/docs/autoapi/ipyvuetify/components/Item.rst new file mode 100644 index 00000000..9508d5c6 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Item.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Item +========================== + +.. py:function:: ipyvuetify.components.Item(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ItemGroup.rst b/docs/autoapi/ipyvuetify/components/ItemGroup.rst new file mode 100644 index 00000000..6d097b5c --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ItemGroup.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ItemGroup +=============================== + +.. py:function:: ipyvuetify.components.ItemGroup(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Label.rst b/docs/autoapi/ipyvuetify/components/Label.rst new file mode 100644 index 00000000..5fd62d56 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Label.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Label +=========================== + +.. py:function:: ipyvuetify.components.Label(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Layout.rst b/docs/autoapi/ipyvuetify/components/Layout.rst new file mode 100644 index 00000000..78d12ee1 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Layout.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Layout +============================ + +.. py:function:: ipyvuetify.components.Layout(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Lazy.rst b/docs/autoapi/ipyvuetify/components/Lazy.rst new file mode 100644 index 00000000..3b0ef5a1 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Lazy.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Lazy +========================== + +.. py:function:: ipyvuetify.components.Lazy(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/List.rst b/docs/autoapi/ipyvuetify/components/List.rst new file mode 100644 index 00000000..a92f0d83 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/List.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.List +========================== + +.. py:function:: ipyvuetify.components.List(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ListGroup.rst b/docs/autoapi/ipyvuetify/components/ListGroup.rst new file mode 100644 index 00000000..a4c0c934 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ListGroup.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ListGroup +=============================== + +.. py:function:: ipyvuetify.components.ListGroup(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ListItem.rst b/docs/autoapi/ipyvuetify/components/ListItem.rst new file mode 100644 index 00000000..a31d915a --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ListItem.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ListItem +============================== + +.. py:function:: ipyvuetify.components.ListItem(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ListItemAction.rst b/docs/autoapi/ipyvuetify/components/ListItemAction.rst new file mode 100644 index 00000000..e65c4655 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ListItemAction.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ListItemAction +==================================== + +.. py:function:: ipyvuetify.components.ListItemAction(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ListItemActionText.rst b/docs/autoapi/ipyvuetify/components/ListItemActionText.rst new file mode 100644 index 00000000..026874e5 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ListItemActionText.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ListItemActionText +======================================== + +.. py:function:: ipyvuetify.components.ListItemActionText(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ListItemAvatar.rst b/docs/autoapi/ipyvuetify/components/ListItemAvatar.rst new file mode 100644 index 00000000..714c8735 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ListItemAvatar.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ListItemAvatar +==================================== + +.. py:function:: ipyvuetify.components.ListItemAvatar(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ListItemContent.rst b/docs/autoapi/ipyvuetify/components/ListItemContent.rst new file mode 100644 index 00000000..63808710 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ListItemContent.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ListItemContent +===================================== + +.. py:function:: ipyvuetify.components.ListItemContent(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ListItemGroup.rst b/docs/autoapi/ipyvuetify/components/ListItemGroup.rst new file mode 100644 index 00000000..3523aa69 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ListItemGroup.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ListItemGroup +=================================== + +.. py:function:: ipyvuetify.components.ListItemGroup(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ListItemIcon.rst b/docs/autoapi/ipyvuetify/components/ListItemIcon.rst new file mode 100644 index 00000000..ecc540d7 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ListItemIcon.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ListItemIcon +================================== + +.. py:function:: ipyvuetify.components.ListItemIcon(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ListItemSubtitle.rst b/docs/autoapi/ipyvuetify/components/ListItemSubtitle.rst new file mode 100644 index 00000000..7c158611 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ListItemSubtitle.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ListItemSubtitle +====================================== + +.. py:function:: ipyvuetify.components.ListItemSubtitle(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ListItemTitle.rst b/docs/autoapi/ipyvuetify/components/ListItemTitle.rst new file mode 100644 index 00000000..4d76fdfb --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ListItemTitle.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ListItemTitle +=================================== + +.. py:function:: ipyvuetify.components.ListItemTitle(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Menu.rst b/docs/autoapi/ipyvuetify/components/Menu.rst new file mode 100644 index 00000000..01784505 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Menu.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Menu +========================== + +.. py:function:: ipyvuetify.components.Menu(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/MenuTransition.rst b/docs/autoapi/ipyvuetify/components/MenuTransition.rst new file mode 100644 index 00000000..e194e76f --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/MenuTransition.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.MenuTransition +==================================== + +.. py:function:: ipyvuetify.components.MenuTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Messages.rst b/docs/autoapi/ipyvuetify/components/Messages.rst new file mode 100644 index 00000000..b7e9ed2f --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Messages.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Messages +============================== + +.. py:function:: ipyvuetify.components.Messages(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/NavigationDrawer.rst b/docs/autoapi/ipyvuetify/components/NavigationDrawer.rst new file mode 100644 index 00000000..67dc9fb6 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/NavigationDrawer.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.NavigationDrawer +====================================== + +.. py:function:: ipyvuetify.components.NavigationDrawer(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/OverflowBtn.rst b/docs/autoapi/ipyvuetify/components/OverflowBtn.rst new file mode 100644 index 00000000..9e55a746 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/OverflowBtn.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.OverflowBtn +================================= + +.. py:function:: ipyvuetify.components.OverflowBtn(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Overlay.rst b/docs/autoapi/ipyvuetify/components/Overlay.rst new file mode 100644 index 00000000..7595201d --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Overlay.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Overlay +============================= + +.. py:function:: ipyvuetify.components.Overlay(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Pagination.rst b/docs/autoapi/ipyvuetify/components/Pagination.rst new file mode 100644 index 00000000..811dd82c --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Pagination.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Pagination +================================ + +.. py:function:: ipyvuetify.components.Pagination(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Parallax.rst b/docs/autoapi/ipyvuetify/components/Parallax.rst new file mode 100644 index 00000000..001f7952 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Parallax.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Parallax +============================== + +.. py:function:: ipyvuetify.components.Parallax(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Picker.rst b/docs/autoapi/ipyvuetify/components/Picker.rst new file mode 100644 index 00000000..34fa1d24 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Picker.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Picker +============================ + +.. py:function:: ipyvuetify.components.Picker(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ProgressCircular.rst b/docs/autoapi/ipyvuetify/components/ProgressCircular.rst new file mode 100644 index 00000000..9470d83b --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ProgressCircular.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ProgressCircular +====================================== + +.. py:function:: ipyvuetify.components.ProgressCircular(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ProgressLinear.rst b/docs/autoapi/ipyvuetify/components/ProgressLinear.rst new file mode 100644 index 00000000..a88c3cd3 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ProgressLinear.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ProgressLinear +==================================== + +.. py:function:: ipyvuetify.components.ProgressLinear(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Radio.rst b/docs/autoapi/ipyvuetify/components/Radio.rst new file mode 100644 index 00000000..44fc17ae --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Radio.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Radio +=========================== + +.. py:function:: ipyvuetify.components.Radio(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/RadioGroup.rst b/docs/autoapi/ipyvuetify/components/RadioGroup.rst new file mode 100644 index 00000000..0e3dd733 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/RadioGroup.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.RadioGroup +================================ + +.. py:function:: ipyvuetify.components.RadioGroup(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/RangeSlider.rst b/docs/autoapi/ipyvuetify/components/RangeSlider.rst new file mode 100644 index 00000000..41ea935a --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/RangeSlider.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.RangeSlider +================================= + +.. py:function:: ipyvuetify.components.RangeSlider(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Rating.rst b/docs/autoapi/ipyvuetify/components/Rating.rst new file mode 100644 index 00000000..c9d5a648 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Rating.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Rating +============================ + +.. py:function:: ipyvuetify.components.Rating(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Responsive.rst b/docs/autoapi/ipyvuetify/components/Responsive.rst new file mode 100644 index 00000000..f80efeb0 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Responsive.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Responsive +================================ + +.. py:function:: ipyvuetify.components.Responsive(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Row.rst b/docs/autoapi/ipyvuetify/components/Row.rst new file mode 100644 index 00000000..8f1500cc --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Row.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Row +========================= + +.. py:function:: ipyvuetify.components.Row(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ScaleTransition.rst b/docs/autoapi/ipyvuetify/components/ScaleTransition.rst new file mode 100644 index 00000000..a5d30f3a --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ScaleTransition.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ScaleTransition +===================================== + +.. py:function:: ipyvuetify.components.ScaleTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ScrollXReverseTransition.rst b/docs/autoapi/ipyvuetify/components/ScrollXReverseTransition.rst new file mode 100644 index 00000000..24fb2413 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ScrollXReverseTransition.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ScrollXReverseTransition +============================================== + +.. py:function:: ipyvuetify.components.ScrollXReverseTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ScrollXTransition.rst b/docs/autoapi/ipyvuetify/components/ScrollXTransition.rst new file mode 100644 index 00000000..acccb1a4 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ScrollXTransition.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ScrollXTransition +======================================= + +.. py:function:: ipyvuetify.components.ScrollXTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ScrollYReverseTransition.rst b/docs/autoapi/ipyvuetify/components/ScrollYReverseTransition.rst new file mode 100644 index 00000000..cd899319 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ScrollYReverseTransition.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ScrollYReverseTransition +============================================== + +.. py:function:: ipyvuetify.components.ScrollYReverseTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ScrollYTransition.rst b/docs/autoapi/ipyvuetify/components/ScrollYTransition.rst new file mode 100644 index 00000000..3f9a13ab --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ScrollYTransition.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ScrollYTransition +======================================= + +.. py:function:: ipyvuetify.components.ScrollYTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Select.rst b/docs/autoapi/ipyvuetify/components/Select.rst new file mode 100644 index 00000000..c87204c9 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Select.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Select +============================ + +.. py:function:: ipyvuetify.components.Select(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Sheet.rst b/docs/autoapi/ipyvuetify/components/Sheet.rst new file mode 100644 index 00000000..ad59e0b7 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Sheet.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Sheet +=========================== + +.. py:function:: ipyvuetify.components.Sheet(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/SimpleCheckbox.rst b/docs/autoapi/ipyvuetify/components/SimpleCheckbox.rst new file mode 100644 index 00000000..4b1f91fc --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/SimpleCheckbox.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.SimpleCheckbox +==================================== + +.. py:function:: ipyvuetify.components.SimpleCheckbox(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/SimpleTable.rst b/docs/autoapi/ipyvuetify/components/SimpleTable.rst new file mode 100644 index 00000000..1ac9ad16 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/SimpleTable.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.SimpleTable +================================= + +.. py:function:: ipyvuetify.components.SimpleTable(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/SkeletonLoader.rst b/docs/autoapi/ipyvuetify/components/SkeletonLoader.rst new file mode 100644 index 00000000..a9142395 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/SkeletonLoader.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.SkeletonLoader +==================================== + +.. py:function:: ipyvuetify.components.SkeletonLoader(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/SlideGroup.rst b/docs/autoapi/ipyvuetify/components/SlideGroup.rst new file mode 100644 index 00000000..81e0a96a --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/SlideGroup.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.SlideGroup +================================ + +.. py:function:: ipyvuetify.components.SlideGroup(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/SlideItem.rst b/docs/autoapi/ipyvuetify/components/SlideItem.rst new file mode 100644 index 00000000..67041238 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/SlideItem.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.SlideItem +=============================== + +.. py:function:: ipyvuetify.components.SlideItem(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/SlideXReverseTransition.rst b/docs/autoapi/ipyvuetify/components/SlideXReverseTransition.rst new file mode 100644 index 00000000..cdbc2687 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/SlideXReverseTransition.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.SlideXReverseTransition +============================================= + +.. py:function:: ipyvuetify.components.SlideXReverseTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/SlideXTransition.rst b/docs/autoapi/ipyvuetify/components/SlideXTransition.rst new file mode 100644 index 00000000..bb8612d7 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/SlideXTransition.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.SlideXTransition +====================================== + +.. py:function:: ipyvuetify.components.SlideXTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/SlideYReverseTransition.rst b/docs/autoapi/ipyvuetify/components/SlideYReverseTransition.rst new file mode 100644 index 00000000..2c99ec83 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/SlideYReverseTransition.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.SlideYReverseTransition +============================================= + +.. py:function:: ipyvuetify.components.SlideYReverseTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/SlideYTransition.rst b/docs/autoapi/ipyvuetify/components/SlideYTransition.rst new file mode 100644 index 00000000..762086ab --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/SlideYTransition.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.SlideYTransition +====================================== + +.. py:function:: ipyvuetify.components.SlideYTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Slider.rst b/docs/autoapi/ipyvuetify/components/Slider.rst new file mode 100644 index 00000000..5d140c57 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Slider.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Slider +============================ + +.. py:function:: ipyvuetify.components.Slider(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Snackbar.rst b/docs/autoapi/ipyvuetify/components/Snackbar.rst new file mode 100644 index 00000000..b924fd5c --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Snackbar.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Snackbar +============================== + +.. py:function:: ipyvuetify.components.Snackbar(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Spacer.rst b/docs/autoapi/ipyvuetify/components/Spacer.rst new file mode 100644 index 00000000..01d768a2 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Spacer.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Spacer +============================ + +.. py:function:: ipyvuetify.components.Spacer(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Sparkline.rst b/docs/autoapi/ipyvuetify/components/Sparkline.rst new file mode 100644 index 00000000..bb118e74 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Sparkline.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Sparkline +=============================== + +.. py:function:: ipyvuetify.components.Sparkline(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/SpeedDial.rst b/docs/autoapi/ipyvuetify/components/SpeedDial.rst new file mode 100644 index 00000000..39fc5356 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/SpeedDial.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.SpeedDial +=============================== + +.. py:function:: ipyvuetify.components.SpeedDial(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Stepper.rst b/docs/autoapi/ipyvuetify/components/Stepper.rst new file mode 100644 index 00000000..e8b7a820 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Stepper.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Stepper +============================= + +.. py:function:: ipyvuetify.components.Stepper(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/StepperContent.rst b/docs/autoapi/ipyvuetify/components/StepperContent.rst new file mode 100644 index 00000000..f16291eb --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/StepperContent.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.StepperContent +==================================== + +.. py:function:: ipyvuetify.components.StepperContent(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/StepperHeader.rst b/docs/autoapi/ipyvuetify/components/StepperHeader.rst new file mode 100644 index 00000000..eb8fcb2f --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/StepperHeader.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.StepperHeader +=================================== + +.. py:function:: ipyvuetify.components.StepperHeader(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/StepperItems.rst b/docs/autoapi/ipyvuetify/components/StepperItems.rst new file mode 100644 index 00000000..59acf278 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/StepperItems.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.StepperItems +================================== + +.. py:function:: ipyvuetify.components.StepperItems(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/StepperStep.rst b/docs/autoapi/ipyvuetify/components/StepperStep.rst new file mode 100644 index 00000000..cae4534c --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/StepperStep.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.StepperStep +================================= + +.. py:function:: ipyvuetify.components.StepperStep(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Subheader.rst b/docs/autoapi/ipyvuetify/components/Subheader.rst new file mode 100644 index 00000000..f72a375f --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Subheader.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Subheader +=============================== + +.. py:function:: ipyvuetify.components.Subheader(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Switch.rst b/docs/autoapi/ipyvuetify/components/Switch.rst new file mode 100644 index 00000000..fda6cd64 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Switch.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Switch +============================ + +.. py:function:: ipyvuetify.components.Switch(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/SystemBar.rst b/docs/autoapi/ipyvuetify/components/SystemBar.rst new file mode 100644 index 00000000..f5484640 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/SystemBar.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.SystemBar +=============================== + +.. py:function:: ipyvuetify.components.SystemBar(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Tab.rst b/docs/autoapi/ipyvuetify/components/Tab.rst new file mode 100644 index 00000000..33405cf1 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Tab.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Tab +========================= + +.. py:function:: ipyvuetify.components.Tab(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/TabItem.rst b/docs/autoapi/ipyvuetify/components/TabItem.rst new file mode 100644 index 00000000..643e36b7 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/TabItem.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.TabItem +============================= + +.. py:function:: ipyvuetify.components.TabItem(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/TabReverseTransition.rst b/docs/autoapi/ipyvuetify/components/TabReverseTransition.rst new file mode 100644 index 00000000..ce096680 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/TabReverseTransition.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.TabReverseTransition +========================================== + +.. py:function:: ipyvuetify.components.TabReverseTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/TabTransition.rst b/docs/autoapi/ipyvuetify/components/TabTransition.rst new file mode 100644 index 00000000..79d7a429 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/TabTransition.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.TabTransition +=================================== + +.. py:function:: ipyvuetify.components.TabTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/TableOverflow.rst b/docs/autoapi/ipyvuetify/components/TableOverflow.rst new file mode 100644 index 00000000..a5d6b579 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/TableOverflow.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.TableOverflow +=================================== + +.. py:function:: ipyvuetify.components.TableOverflow(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Tabs.rst b/docs/autoapi/ipyvuetify/components/Tabs.rst new file mode 100644 index 00000000..1aa4d404 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Tabs.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Tabs +========================== + +.. py:function:: ipyvuetify.components.Tabs(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/TabsItems.rst b/docs/autoapi/ipyvuetify/components/TabsItems.rst new file mode 100644 index 00000000..22441159 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/TabsItems.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.TabsItems +=============================== + +.. py:function:: ipyvuetify.components.TabsItems(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/TabsSlider.rst b/docs/autoapi/ipyvuetify/components/TabsSlider.rst new file mode 100644 index 00000000..0d017999 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/TabsSlider.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.TabsSlider +================================ + +.. py:function:: ipyvuetify.components.TabsSlider(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Text.rst b/docs/autoapi/ipyvuetify/components/Text.rst new file mode 100644 index 00000000..7495aa10 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Text.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Text +========================== + +.. py:function:: ipyvuetify.components.Text(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/TextField.rst b/docs/autoapi/ipyvuetify/components/TextField.rst new file mode 100644 index 00000000..6d8fcd8c --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/TextField.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.TextField +=============================== + +.. py:function:: ipyvuetify.components.TextField(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Textarea.rst b/docs/autoapi/ipyvuetify/components/Textarea.rst new file mode 100644 index 00000000..5bb48bdd --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Textarea.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Textarea +============================== + +.. py:function:: ipyvuetify.components.Textarea(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ThemeProvider.rst b/docs/autoapi/ipyvuetify/components/ThemeProvider.rst new file mode 100644 index 00000000..537c7ea6 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ThemeProvider.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ThemeProvider +=================================== + +.. py:function:: ipyvuetify.components.ThemeProvider(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/TimePicker.rst b/docs/autoapi/ipyvuetify/components/TimePicker.rst new file mode 100644 index 00000000..ce8e527f --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/TimePicker.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.TimePicker +================================ + +.. py:function:: ipyvuetify.components.TimePicker(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/TimePickerClock.rst b/docs/autoapi/ipyvuetify/components/TimePickerClock.rst new file mode 100644 index 00000000..435ce883 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/TimePickerClock.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.TimePickerClock +===================================== + +.. py:function:: ipyvuetify.components.TimePickerClock(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/TimePickerTitle.rst b/docs/autoapi/ipyvuetify/components/TimePickerTitle.rst new file mode 100644 index 00000000..755db5e8 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/TimePickerTitle.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.TimePickerTitle +===================================== + +.. py:function:: ipyvuetify.components.TimePickerTitle(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Timeline.rst b/docs/autoapi/ipyvuetify/components/Timeline.rst new file mode 100644 index 00000000..4f9aa62a --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Timeline.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Timeline +============================== + +.. py:function:: ipyvuetify.components.Timeline(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/TimelineItem.rst b/docs/autoapi/ipyvuetify/components/TimelineItem.rst new file mode 100644 index 00000000..9fcf1ebc --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/TimelineItem.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.TimelineItem +================================== + +.. py:function:: ipyvuetify.components.TimelineItem(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Toolbar.rst b/docs/autoapi/ipyvuetify/components/Toolbar.rst new file mode 100644 index 00000000..c167451b --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Toolbar.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Toolbar +============================= + +.. py:function:: ipyvuetify.components.Toolbar(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ToolbarItems.rst b/docs/autoapi/ipyvuetify/components/ToolbarItems.rst new file mode 100644 index 00000000..8d5861f0 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ToolbarItems.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ToolbarItems +================================== + +.. py:function:: ipyvuetify.components.ToolbarItems(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ToolbarTitle.rst b/docs/autoapi/ipyvuetify/components/ToolbarTitle.rst new file mode 100644 index 00000000..d453915d --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/ToolbarTitle.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.ToolbarTitle +================================== + +.. py:function:: ipyvuetify.components.ToolbarTitle(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Tooltip.rst b/docs/autoapi/ipyvuetify/components/Tooltip.rst new file mode 100644 index 00000000..e6d212f8 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Tooltip.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Tooltip +============================= + +.. py:function:: ipyvuetify.components.Tooltip(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Treeview.rst b/docs/autoapi/ipyvuetify/components/Treeview.rst new file mode 100644 index 00000000..c9e04a7b --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Treeview.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Treeview +============================== + +.. py:function:: ipyvuetify.components.Treeview(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/TreeviewNode.rst b/docs/autoapi/ipyvuetify/components/TreeviewNode.rst new file mode 100644 index 00000000..29729a10 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/TreeviewNode.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.TreeviewNode +================================== + +.. py:function:: ipyvuetify.components.TreeviewNode(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/VirtualTable.rst b/docs/autoapi/ipyvuetify/components/VirtualTable.rst new file mode 100644 index 00000000..dd9c1535 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/VirtualTable.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.VirtualTable +================================== + +.. py:function:: ipyvuetify.components.VirtualTable(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/VuetifyTemplate.rst b/docs/autoapi/ipyvuetify/components/VuetifyTemplate.rst new file mode 100644 index 00000000..2ec4a55a --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/VuetifyTemplate.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.VuetifyTemplate +===================================== + +.. py:function:: ipyvuetify.components.VuetifyTemplate(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/VuetifyWidget.rst b/docs/autoapi/ipyvuetify/components/VuetifyWidget.rst new file mode 100644 index 00000000..c58af815 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/VuetifyWidget.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.VuetifyWidget +=================================== + +.. py:function:: ipyvuetify.components.VuetifyWidget(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Window.rst b/docs/autoapi/ipyvuetify/components/Window.rst new file mode 100644 index 00000000..3f75e8d3 --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/Window.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.Window +============================ + +.. py:function:: ipyvuetify.components.Window(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/WindowItem.rst b/docs/autoapi/ipyvuetify/components/WindowItem.rst new file mode 100644 index 00000000..330242bc --- /dev/null +++ b/docs/autoapi/ipyvuetify/components/WindowItem.rst @@ -0,0 +1,4 @@ +ipyvuetify.components.WindowItem +================================ + +.. py:function:: ipyvuetify.components.WindowItem(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/index.rst b/docs/autoapi/ipyvuetify/components/index.rst index e6f65cac..6d82c510 100644 --- a/docs/autoapi/ipyvuetify/components/index.rst +++ b/docs/autoapi/ipyvuetify/components/index.rst @@ -20,6 +20,172 @@ Classes Functions --------- +.. toctree:: + :hidden: + + /autoapi/ipyvuetify/components/Alert + /autoapi/ipyvuetify/components/App + /autoapi/ipyvuetify/components/AppBar + /autoapi/ipyvuetify/components/AppBarNavIcon + /autoapi/ipyvuetify/components/Autocomplete + /autoapi/ipyvuetify/components/Avatar + /autoapi/ipyvuetify/components/Badge + /autoapi/ipyvuetify/components/Banner + /autoapi/ipyvuetify/components/BottomNavigation + /autoapi/ipyvuetify/components/BottomSheet + /autoapi/ipyvuetify/components/Breadcrumbs + /autoapi/ipyvuetify/components/BreadcrumbsDivider + /autoapi/ipyvuetify/components/BreadcrumbsItem + /autoapi/ipyvuetify/components/Btn + /autoapi/ipyvuetify/components/BtnToggle + /autoapi/ipyvuetify/components/Calendar + /autoapi/ipyvuetify/components/CalendarDaily + /autoapi/ipyvuetify/components/CalendarMonthly + /autoapi/ipyvuetify/components/CalendarWeekly + /autoapi/ipyvuetify/components/Card + /autoapi/ipyvuetify/components/CardActions + /autoapi/ipyvuetify/components/CardSubtitle + /autoapi/ipyvuetify/components/CardText + /autoapi/ipyvuetify/components/CardTitle + /autoapi/ipyvuetify/components/Carousel + /autoapi/ipyvuetify/components/CarouselItem + /autoapi/ipyvuetify/components/CarouselReverseTransition + /autoapi/ipyvuetify/components/CarouselTransition + /autoapi/ipyvuetify/components/Checkbox + /autoapi/ipyvuetify/components/Chip + /autoapi/ipyvuetify/components/ChipGroup + /autoapi/ipyvuetify/components/Col + /autoapi/ipyvuetify/components/ColorPicker + /autoapi/ipyvuetify/components/ColorPickerCanvas + /autoapi/ipyvuetify/components/ColorPickerSwatches + /autoapi/ipyvuetify/components/Combobox + /autoapi/ipyvuetify/components/Container + /autoapi/ipyvuetify/components/Content + /autoapi/ipyvuetify/components/Counter + /autoapi/ipyvuetify/components/Data + /autoapi/ipyvuetify/components/DataFooter + /autoapi/ipyvuetify/components/DataIterator + /autoapi/ipyvuetify/components/DataTable + /autoapi/ipyvuetify/components/DataTableHeader + /autoapi/ipyvuetify/components/DatePicker + /autoapi/ipyvuetify/components/DatePickerDateTable + /autoapi/ipyvuetify/components/DatePickerHeader + /autoapi/ipyvuetify/components/DatePickerMonthTable + /autoapi/ipyvuetify/components/DatePickerTitle + /autoapi/ipyvuetify/components/DatePickerYears + /autoapi/ipyvuetify/components/Dialog + /autoapi/ipyvuetify/components/DialogBottomTransition + /autoapi/ipyvuetify/components/DialogTransition + /autoapi/ipyvuetify/components/Divider + /autoapi/ipyvuetify/components/EditDialog + /autoapi/ipyvuetify/components/ExpandTransition + /autoapi/ipyvuetify/components/ExpandXTransition + /autoapi/ipyvuetify/components/ExpansionPanel + /autoapi/ipyvuetify/components/ExpansionPanelContent + /autoapi/ipyvuetify/components/ExpansionPanelHeader + /autoapi/ipyvuetify/components/ExpansionPanels + /autoapi/ipyvuetify/components/FabTransition + /autoapi/ipyvuetify/components/FadeTransition + /autoapi/ipyvuetify/components/FileInput + /autoapi/ipyvuetify/components/Flex + /autoapi/ipyvuetify/components/Footer + /autoapi/ipyvuetify/components/Form + /autoapi/ipyvuetify/components/Hover + /autoapi/ipyvuetify/components/Html + /autoapi/ipyvuetify/components/Icon + /autoapi/ipyvuetify/components/Img + /autoapi/ipyvuetify/components/Input + /autoapi/ipyvuetify/components/Item + /autoapi/ipyvuetify/components/ItemGroup + /autoapi/ipyvuetify/components/Label + /autoapi/ipyvuetify/components/Layout + /autoapi/ipyvuetify/components/Lazy + /autoapi/ipyvuetify/components/List + /autoapi/ipyvuetify/components/ListGroup + /autoapi/ipyvuetify/components/ListItem + /autoapi/ipyvuetify/components/ListItemAction + /autoapi/ipyvuetify/components/ListItemActionText + /autoapi/ipyvuetify/components/ListItemAvatar + /autoapi/ipyvuetify/components/ListItemContent + /autoapi/ipyvuetify/components/ListItemGroup + /autoapi/ipyvuetify/components/ListItemIcon + /autoapi/ipyvuetify/components/ListItemSubtitle + /autoapi/ipyvuetify/components/ListItemTitle + /autoapi/ipyvuetify/components/Menu + /autoapi/ipyvuetify/components/MenuTransition + /autoapi/ipyvuetify/components/Messages + /autoapi/ipyvuetify/components/NavigationDrawer + /autoapi/ipyvuetify/components/OverflowBtn + /autoapi/ipyvuetify/components/Overlay + /autoapi/ipyvuetify/components/Pagination + /autoapi/ipyvuetify/components/Parallax + /autoapi/ipyvuetify/components/Picker + /autoapi/ipyvuetify/components/ProgressCircular + /autoapi/ipyvuetify/components/ProgressLinear + /autoapi/ipyvuetify/components/Radio + /autoapi/ipyvuetify/components/RadioGroup + /autoapi/ipyvuetify/components/RangeSlider + /autoapi/ipyvuetify/components/Rating + /autoapi/ipyvuetify/components/Responsive + /autoapi/ipyvuetify/components/Row + /autoapi/ipyvuetify/components/ScaleTransition + /autoapi/ipyvuetify/components/ScrollXReverseTransition + /autoapi/ipyvuetify/components/ScrollXTransition + /autoapi/ipyvuetify/components/ScrollYReverseTransition + /autoapi/ipyvuetify/components/ScrollYTransition + /autoapi/ipyvuetify/components/Select + /autoapi/ipyvuetify/components/Sheet + /autoapi/ipyvuetify/components/SimpleCheckbox + /autoapi/ipyvuetify/components/SimpleTable + /autoapi/ipyvuetify/components/SkeletonLoader + /autoapi/ipyvuetify/components/SlideGroup + /autoapi/ipyvuetify/components/SlideItem + /autoapi/ipyvuetify/components/SlideXReverseTransition + /autoapi/ipyvuetify/components/SlideXTransition + /autoapi/ipyvuetify/components/SlideYReverseTransition + /autoapi/ipyvuetify/components/SlideYTransition + /autoapi/ipyvuetify/components/Slider + /autoapi/ipyvuetify/components/Snackbar + /autoapi/ipyvuetify/components/Spacer + /autoapi/ipyvuetify/components/Sparkline + /autoapi/ipyvuetify/components/SpeedDial + /autoapi/ipyvuetify/components/Stepper + /autoapi/ipyvuetify/components/StepperContent + /autoapi/ipyvuetify/components/StepperHeader + /autoapi/ipyvuetify/components/StepperItems + /autoapi/ipyvuetify/components/StepperStep + /autoapi/ipyvuetify/components/Subheader + /autoapi/ipyvuetify/components/Switch + /autoapi/ipyvuetify/components/SystemBar + /autoapi/ipyvuetify/components/Tab + /autoapi/ipyvuetify/components/TabItem + /autoapi/ipyvuetify/components/TabReverseTransition + /autoapi/ipyvuetify/components/TabTransition + /autoapi/ipyvuetify/components/TableOverflow + /autoapi/ipyvuetify/components/Tabs + /autoapi/ipyvuetify/components/TabsItems + /autoapi/ipyvuetify/components/TabsSlider + /autoapi/ipyvuetify/components/Text + /autoapi/ipyvuetify/components/TextField + /autoapi/ipyvuetify/components/Textarea + /autoapi/ipyvuetify/components/ThemeProvider + /autoapi/ipyvuetify/components/TimePicker + /autoapi/ipyvuetify/components/TimePickerClock + /autoapi/ipyvuetify/components/TimePickerTitle + /autoapi/ipyvuetify/components/Timeline + /autoapi/ipyvuetify/components/TimelineItem + /autoapi/ipyvuetify/components/Toolbar + /autoapi/ipyvuetify/components/ToolbarItems + /autoapi/ipyvuetify/components/ToolbarTitle + /autoapi/ipyvuetify/components/Tooltip + /autoapi/ipyvuetify/components/Treeview + /autoapi/ipyvuetify/components/TreeviewNode + /autoapi/ipyvuetify/components/VirtualTable + /autoapi/ipyvuetify/components/VuetifyTemplate + /autoapi/ipyvuetify/components/VuetifyWidget + /autoapi/ipyvuetify/components/Window + /autoapi/ipyvuetify/components/WindowItem + .. autoapisummary:: ipyvuetify.components.Alert @@ -186,330 +352,3 @@ Functions ipyvuetify.components.WindowItem -Module Contents ---------------- - -.. py:function:: Alert(**kwargs) - -.. py:function:: App(**kwargs) - -.. py:function:: AppBar(**kwargs) - -.. py:function:: AppBarNavIcon(**kwargs) - -.. py:function:: Autocomplete(**kwargs) - -.. py:function:: Avatar(**kwargs) - -.. py:function:: Badge(**kwargs) - -.. py:function:: Banner(**kwargs) - -.. py:function:: BottomNavigation(**kwargs) - -.. py:function:: BottomSheet(**kwargs) - -.. py:function:: Breadcrumbs(**kwargs) - -.. py:function:: BreadcrumbsDivider(**kwargs) - -.. py:function:: BreadcrumbsItem(**kwargs) - -.. py:function:: Btn(**kwargs) - -.. py:function:: BtnToggle(**kwargs) - -.. py:function:: Calendar(**kwargs) - -.. py:function:: CalendarDaily(**kwargs) - -.. py:function:: CalendarMonthly(**kwargs) - -.. py:function:: CalendarWeekly(**kwargs) - -.. py:function:: Card(**kwargs) - -.. py:function:: CardActions(**kwargs) - -.. py:function:: CardSubtitle(**kwargs) - -.. py:function:: CardText(**kwargs) - -.. py:function:: CardTitle(**kwargs) - -.. py:function:: Carousel(**kwargs) - -.. py:function:: CarouselItem(**kwargs) - -.. py:function:: CarouselReverseTransition(**kwargs) - -.. py:function:: CarouselTransition(**kwargs) - -.. py:function:: Checkbox(**kwargs) - -.. py:function:: Chip(**kwargs) - -.. py:function:: ChipGroup(**kwargs) - -.. py:function:: Col(**kwargs) - -.. py:function:: ColorPicker(**kwargs) - -.. py:function:: ColorPickerCanvas(**kwargs) - -.. py:function:: ColorPickerSwatches(**kwargs) - -.. py:function:: Combobox(**kwargs) - -.. py:function:: Container(**kwargs) - -.. py:function:: Content(**kwargs) - -.. py:function:: Counter(**kwargs) - -.. py:function:: Data(**kwargs) - -.. py:function:: DataFooter(**kwargs) - -.. py:function:: DataIterator(**kwargs) - -.. py:function:: DataTable(**kwargs) - -.. py:function:: DataTableHeader(**kwargs) - -.. py:function:: DatePicker(**kwargs) - -.. py:function:: DatePickerDateTable(**kwargs) - -.. py:function:: DatePickerHeader(**kwargs) - -.. py:function:: DatePickerMonthTable(**kwargs) - -.. py:function:: DatePickerTitle(**kwargs) - -.. py:function:: DatePickerYears(**kwargs) - -.. py:function:: Dialog(**kwargs) - -.. py:function:: DialogBottomTransition(**kwargs) - -.. py:function:: DialogTransition(**kwargs) - -.. py:function:: Divider(**kwargs) - -.. py:function:: EditDialog(**kwargs) - -.. py:function:: ExpandTransition(**kwargs) - -.. py:function:: ExpandXTransition(**kwargs) - -.. py:function:: ExpansionPanel(**kwargs) - -.. py:function:: ExpansionPanelContent(**kwargs) - -.. py:function:: ExpansionPanelHeader(**kwargs) - -.. py:function:: ExpansionPanels(**kwargs) - -.. py:function:: FabTransition(**kwargs) - -.. py:function:: FadeTransition(**kwargs) - -.. py:function:: FileInput(**kwargs) - -.. py:function:: Flex(**kwargs) - -.. py:function:: Footer(**kwargs) - -.. py:function:: Form(**kwargs) - -.. py:function:: Hover(**kwargs) - -.. py:function:: Html(**kwargs) - -.. py:function:: Icon(**kwargs) - -.. py:function:: Img(**kwargs) - -.. py:function:: Input(**kwargs) - -.. py:function:: Item(**kwargs) - -.. py:function:: ItemGroup(**kwargs) - -.. py:function:: Label(**kwargs) - -.. py:function:: Layout(**kwargs) - -.. py:function:: Lazy(**kwargs) - -.. py:function:: List(**kwargs) - -.. py:function:: ListGroup(**kwargs) - -.. py:function:: ListItem(**kwargs) - -.. py:function:: ListItemAction(**kwargs) - -.. py:function:: ListItemActionText(**kwargs) - -.. py:function:: ListItemAvatar(**kwargs) - -.. py:function:: ListItemContent(**kwargs) - -.. py:function:: ListItemGroup(**kwargs) - -.. py:function:: ListItemIcon(**kwargs) - -.. py:function:: ListItemSubtitle(**kwargs) - -.. py:function:: ListItemTitle(**kwargs) - -.. py:function:: Menu(**kwargs) - -.. py:function:: MenuTransition(**kwargs) - -.. py:function:: Messages(**kwargs) - -.. py:function:: NavigationDrawer(**kwargs) - -.. py:function:: OverflowBtn(**kwargs) - -.. py:function:: Overlay(**kwargs) - -.. py:function:: Pagination(**kwargs) - -.. py:function:: Parallax(**kwargs) - -.. py:function:: Picker(**kwargs) - -.. py:function:: ProgressCircular(**kwargs) - -.. py:function:: ProgressLinear(**kwargs) - -.. py:function:: Radio(**kwargs) - -.. py:function:: RadioGroup(**kwargs) - -.. py:function:: RangeSlider(**kwargs) - -.. py:function:: Rating(**kwargs) - -.. py:function:: Responsive(**kwargs) - -.. py:function:: Row(**kwargs) - -.. py:function:: ScaleTransition(**kwargs) - -.. py:function:: ScrollXReverseTransition(**kwargs) - -.. py:function:: ScrollXTransition(**kwargs) - -.. py:function:: ScrollYReverseTransition(**kwargs) - -.. py:function:: ScrollYTransition(**kwargs) - -.. py:function:: Select(**kwargs) - -.. py:function:: Sheet(**kwargs) - -.. py:function:: SimpleCheckbox(**kwargs) - -.. py:function:: SimpleTable(**kwargs) - -.. py:function:: SkeletonLoader(**kwargs) - -.. py:function:: SlideGroup(**kwargs) - -.. py:function:: SlideItem(**kwargs) - -.. py:function:: SlideXReverseTransition(**kwargs) - -.. py:function:: SlideXTransition(**kwargs) - -.. py:function:: SlideYReverseTransition(**kwargs) - -.. py:function:: SlideYTransition(**kwargs) - -.. py:function:: Slider(**kwargs) - -.. py:function:: Snackbar(**kwargs) - -.. py:function:: Spacer(**kwargs) - -.. py:function:: Sparkline(**kwargs) - -.. py:function:: SpeedDial(**kwargs) - -.. py:function:: Stepper(**kwargs) - -.. py:function:: StepperContent(**kwargs) - -.. py:function:: StepperHeader(**kwargs) - -.. py:function:: StepperItems(**kwargs) - -.. py:function:: StepperStep(**kwargs) - -.. py:function:: Subheader(**kwargs) - -.. py:function:: Switch(**kwargs) - -.. py:function:: SystemBar(**kwargs) - -.. py:function:: Tab(**kwargs) - -.. py:function:: TabItem(**kwargs) - -.. py:function:: TabReverseTransition(**kwargs) - -.. py:function:: TabTransition(**kwargs) - -.. py:function:: TableOverflow(**kwargs) - -.. py:function:: Tabs(**kwargs) - -.. py:function:: TabsItems(**kwargs) - -.. py:function:: TabsSlider(**kwargs) - -.. py:function:: Text(**kwargs) - -.. py:function:: TextField(**kwargs) - -.. py:function:: Textarea(**kwargs) - -.. py:function:: ThemeProvider(**kwargs) - -.. py:function:: TimePicker(**kwargs) - -.. py:function:: TimePickerClock(**kwargs) - -.. py:function:: TimePickerTitle(**kwargs) - -.. py:function:: Timeline(**kwargs) - -.. py:function:: TimelineItem(**kwargs) - -.. py:function:: Toolbar(**kwargs) - -.. py:function:: ToolbarItems(**kwargs) - -.. py:function:: ToolbarTitle(**kwargs) - -.. py:function:: Tooltip(**kwargs) - -.. py:function:: Treeview(**kwargs) - -.. py:function:: TreeviewNode(**kwargs) - -.. py:function:: VirtualTable(**kwargs) - -.. py:function:: VuetifyTemplate(**kwargs) - -.. py:function:: VuetifyWidget(**kwargs) - -.. py:function:: Window(**kwargs) - -.. py:function:: WindowItem(**kwargs) - diff --git a/docs/autoapi/ipyvuetify/extra/FileInput.clear.rst b/docs/autoapi/ipyvuetify/extra/FileInput.clear.rst new file mode 100644 index 00000000..5d904f28 --- /dev/null +++ b/docs/autoapi/ipyvuetify/extra/FileInput.clear.rst @@ -0,0 +1,4 @@ +ipyvuetify.extra.FileInput.clear +================================ + +.. py:method:: ipyvuetify.extra.FileInput.clear() diff --git a/docs/autoapi/ipyvuetify/extra/FileInput.get_files.rst b/docs/autoapi/ipyvuetify/extra/FileInput.get_files.rst new file mode 100644 index 00000000..e5374afe --- /dev/null +++ b/docs/autoapi/ipyvuetify/extra/FileInput.get_files.rst @@ -0,0 +1,4 @@ +ipyvuetify.extra.FileInput.get_files +==================================== + +.. py:method:: ipyvuetify.extra.FileInput.get_files(timeout=30) diff --git a/docs/autoapi/ipyvuetify/extra/FileInput.reset_stats.rst b/docs/autoapi/ipyvuetify/extra/FileInput.reset_stats.rst new file mode 100644 index 00000000..961bb5ff --- /dev/null +++ b/docs/autoapi/ipyvuetify/extra/FileInput.reset_stats.rst @@ -0,0 +1,4 @@ +ipyvuetify.extra.FileInput.reset_stats +====================================== + +.. py:method:: ipyvuetify.extra.FileInput.reset_stats() diff --git a/docs/autoapi/ipyvuetify/extra/FileInput.rst b/docs/autoapi/ipyvuetify/extra/FileInput.rst index 49e6a3c9..362037fa 100644 --- a/docs/autoapi/ipyvuetify/extra/FileInput.rst +++ b/docs/autoapi/ipyvuetify/extra/FileInput.rst @@ -1,6 +1,15 @@ ipyvuetify.extra.FileInput ========================== +.. toctree:: + :hidden: + + /autoapi/ipyvuetify/extra/FileInput.clear + /autoapi/ipyvuetify/extra/FileInput.get_files + /autoapi/ipyvuetify/extra/FileInput.reset_stats + /autoapi/ipyvuetify/extra/FileInput.update_stats + /autoapi/ipyvuetify/extra/FileInput.vue_upload + .. py:class:: ipyvuetify.extra.FileInput(**kwargs) Bases: :py:obj:`ipyvuetify.VuetifyTemplate` @@ -16,21 +25,6 @@ ipyvuetify.extra.FileInput widget layout - .. py:method:: clear() - - - .. py:method:: get_files(timeout=30) - - - .. py:method:: reset_stats() - - - .. py:method:: update_stats(file_index, bytes_read) - - - .. py:method:: vue_upload(content, buffers) - - .. py:attribute:: accept @@ -81,3 +75,15 @@ ipyvuetify.extra.FileInput .. py:attribute:: version +Methods +------- + +.. autoapisummary:: + + ipyvuetify.extra.FileInput.clear + ipyvuetify.extra.FileInput.get_files + ipyvuetify.extra.FileInput.reset_stats + ipyvuetify.extra.FileInput.update_stats + ipyvuetify.extra.FileInput.vue_upload + + diff --git a/docs/autoapi/ipyvuetify/extra/FileInput.update_stats.rst b/docs/autoapi/ipyvuetify/extra/FileInput.update_stats.rst new file mode 100644 index 00000000..d43a63ea --- /dev/null +++ b/docs/autoapi/ipyvuetify/extra/FileInput.update_stats.rst @@ -0,0 +1,4 @@ +ipyvuetify.extra.FileInput.update_stats +======================================= + +.. py:method:: ipyvuetify.extra.FileInput.update_stats(file_index, bytes_read) diff --git a/docs/autoapi/ipyvuetify/extra/FileInput.vue_upload.rst b/docs/autoapi/ipyvuetify/extra/FileInput.vue_upload.rst new file mode 100644 index 00000000..3a3e1530 --- /dev/null +++ b/docs/autoapi/ipyvuetify/extra/FileInput.vue_upload.rst @@ -0,0 +1,4 @@ +ipyvuetify.extra.FileInput.vue_upload +===================================== + +.. py:method:: ipyvuetify.extra.FileInput.vue_upload(content, buffers) diff --git a/docs/autoapi/ipyvuetify/extra/file_input/FileInput.clear.rst b/docs/autoapi/ipyvuetify/extra/file_input/FileInput.clear.rst new file mode 100644 index 00000000..05f68cac --- /dev/null +++ b/docs/autoapi/ipyvuetify/extra/file_input/FileInput.clear.rst @@ -0,0 +1,4 @@ +ipyvuetify.extra.file_input.FileInput.clear +=========================================== + +.. py:method:: ipyvuetify.extra.file_input.FileInput.clear() diff --git a/docs/autoapi/ipyvuetify/extra/file_input/FileInput.get_files.rst b/docs/autoapi/ipyvuetify/extra/file_input/FileInput.get_files.rst new file mode 100644 index 00000000..ff08a9d0 --- /dev/null +++ b/docs/autoapi/ipyvuetify/extra/file_input/FileInput.get_files.rst @@ -0,0 +1,4 @@ +ipyvuetify.extra.file_input.FileInput.get_files +=============================================== + +.. py:method:: ipyvuetify.extra.file_input.FileInput.get_files(timeout=30) diff --git a/docs/autoapi/ipyvuetify/extra/file_input/FileInput.reset_stats.rst b/docs/autoapi/ipyvuetify/extra/file_input/FileInput.reset_stats.rst new file mode 100644 index 00000000..5a393dc1 --- /dev/null +++ b/docs/autoapi/ipyvuetify/extra/file_input/FileInput.reset_stats.rst @@ -0,0 +1,4 @@ +ipyvuetify.extra.file_input.FileInput.reset_stats +================================================= + +.. py:method:: ipyvuetify.extra.file_input.FileInput.reset_stats() diff --git a/docs/autoapi/ipyvuetify/extra/file_input/FileInput.rst b/docs/autoapi/ipyvuetify/extra/file_input/FileInput.rst index 03e612fd..f1c36d7b 100644 --- a/docs/autoapi/ipyvuetify/extra/file_input/FileInput.rst +++ b/docs/autoapi/ipyvuetify/extra/file_input/FileInput.rst @@ -1,6 +1,15 @@ ipyvuetify.extra.file_input.FileInput ===================================== +.. toctree:: + :hidden: + + /autoapi/ipyvuetify/extra/file_input/FileInput.clear + /autoapi/ipyvuetify/extra/file_input/FileInput.get_files + /autoapi/ipyvuetify/extra/file_input/FileInput.reset_stats + /autoapi/ipyvuetify/extra/file_input/FileInput.update_stats + /autoapi/ipyvuetify/extra/file_input/FileInput.vue_upload + .. py:class:: ipyvuetify.extra.file_input.FileInput(**kwargs) Bases: :py:obj:`ipyvuetify.VuetifyTemplate` @@ -16,21 +25,6 @@ ipyvuetify.extra.file_input.FileInput widget layout - .. py:method:: clear() - - - .. py:method:: get_files(timeout=30) - - - .. py:method:: reset_stats() - - - .. py:method:: update_stats(file_index, bytes_read) - - - .. py:method:: vue_upload(content, buffers) - - .. py:attribute:: accept @@ -81,3 +75,15 @@ ipyvuetify.extra.file_input.FileInput .. py:attribute:: version +Methods +------- + +.. autoapisummary:: + + ipyvuetify.extra.file_input.FileInput.clear + ipyvuetify.extra.file_input.FileInput.get_files + ipyvuetify.extra.file_input.FileInput.reset_stats + ipyvuetify.extra.file_input.FileInput.update_stats + ipyvuetify.extra.file_input.FileInput.vue_upload + + diff --git a/docs/autoapi/ipyvuetify/extra/file_input/FileInput.update_stats.rst b/docs/autoapi/ipyvuetify/extra/file_input/FileInput.update_stats.rst new file mode 100644 index 00000000..41464b26 --- /dev/null +++ b/docs/autoapi/ipyvuetify/extra/file_input/FileInput.update_stats.rst @@ -0,0 +1,4 @@ +ipyvuetify.extra.file_input.FileInput.update_stats +================================================== + +.. py:method:: ipyvuetify.extra.file_input.FileInput.update_stats(file_index, bytes_read) diff --git a/docs/autoapi/ipyvuetify/extra/file_input/FileInput.vue_upload.rst b/docs/autoapi/ipyvuetify/extra/file_input/FileInput.vue_upload.rst new file mode 100644 index 00000000..d30f646e --- /dev/null +++ b/docs/autoapi/ipyvuetify/extra/file_input/FileInput.vue_upload.rst @@ -0,0 +1,4 @@ +ipyvuetify.extra.file_input.FileInput.vue_upload +================================================ + +.. py:method:: ipyvuetify.extra.file_input.FileInput.vue_upload(content, buffers) diff --git a/docs/autoapi/ipyvuetify/index.rst b/docs/autoapi/ipyvuetify/index.rst index 159708d9..26788631 100644 --- a/docs/autoapi/ipyvuetify/index.rst +++ b/docs/autoapi/ipyvuetify/index.rst @@ -29,57 +29,18 @@ Classes .. toctree:: :hidden: - /autoapi/ipyvuetify/Alert /autoapi/ipyvuetify/App - /autoapi/ipyvuetify/AppBar /autoapi/ipyvuetify/AppBarNavIcon - /autoapi/ipyvuetify/Autocomplete - /autoapi/ipyvuetify/Avatar - /autoapi/ipyvuetify/Badge - /autoapi/ipyvuetify/Banner - /autoapi/ipyvuetify/BottomNavigation - /autoapi/ipyvuetify/BottomSheet /autoapi/ipyvuetify/Breadcrumbs /autoapi/ipyvuetify/BreadcrumbsDivider - /autoapi/ipyvuetify/BreadcrumbsItem - /autoapi/ipyvuetify/Btn - /autoapi/ipyvuetify/BtnToggle - /autoapi/ipyvuetify/Calendar - /autoapi/ipyvuetify/CalendarDaily - /autoapi/ipyvuetify/CalendarMonthly - /autoapi/ipyvuetify/CalendarWeekly - /autoapi/ipyvuetify/Card /autoapi/ipyvuetify/CardActions /autoapi/ipyvuetify/CardSubtitle /autoapi/ipyvuetify/CardText /autoapi/ipyvuetify/CardTitle - /autoapi/ipyvuetify/Carousel - /autoapi/ipyvuetify/CarouselItem /autoapi/ipyvuetify/CarouselReverseTransition /autoapi/ipyvuetify/CarouselTransition - /autoapi/ipyvuetify/Checkbox - /autoapi/ipyvuetify/Chip - /autoapi/ipyvuetify/ChipGroup - /autoapi/ipyvuetify/Col - /autoapi/ipyvuetify/ColorPicker - /autoapi/ipyvuetify/ColorPickerCanvas - /autoapi/ipyvuetify/ColorPickerSwatches - /autoapi/ipyvuetify/Combobox - /autoapi/ipyvuetify/Container - /autoapi/ipyvuetify/Content - /autoapi/ipyvuetify/Counter - /autoapi/ipyvuetify/Data /autoapi/ipyvuetify/DataFooter - /autoapi/ipyvuetify/DataIterator - /autoapi/ipyvuetify/DataTable /autoapi/ipyvuetify/DataTableHeader - /autoapi/ipyvuetify/DatePicker - /autoapi/ipyvuetify/DatePickerDateTable - /autoapi/ipyvuetify/DatePickerHeader - /autoapi/ipyvuetify/DatePickerMonthTable - /autoapi/ipyvuetify/DatePickerTitle - /autoapi/ipyvuetify/DatePickerYears - /autoapi/ipyvuetify/Dialog /autoapi/ipyvuetify/DialogBottomTransition /autoapi/ipyvuetify/DialogTransition /autoapi/ipyvuetify/Divider @@ -88,163 +49,67 @@ Classes /autoapi/ipyvuetify/ExpandXTransition /autoapi/ipyvuetify/ExpansionPanel /autoapi/ipyvuetify/ExpansionPanelContent - /autoapi/ipyvuetify/ExpansionPanelHeader - /autoapi/ipyvuetify/ExpansionPanels /autoapi/ipyvuetify/FabTransition /autoapi/ipyvuetify/FadeTransition - /autoapi/ipyvuetify/FileInput - /autoapi/ipyvuetify/Flex - /autoapi/ipyvuetify/Footer /autoapi/ipyvuetify/Form - /autoapi/ipyvuetify/Hover /autoapi/ipyvuetify/Html - /autoapi/ipyvuetify/Icon - /autoapi/ipyvuetify/Img - /autoapi/ipyvuetify/Input /autoapi/ipyvuetify/Item - /autoapi/ipyvuetify/ItemGroup - /autoapi/ipyvuetify/Label - /autoapi/ipyvuetify/Layout - /autoapi/ipyvuetify/Lazy - /autoapi/ipyvuetify/List - /autoapi/ipyvuetify/ListGroup - /autoapi/ipyvuetify/ListItem /autoapi/ipyvuetify/ListItemAction /autoapi/ipyvuetify/ListItemActionText - /autoapi/ipyvuetify/ListItemAvatar /autoapi/ipyvuetify/ListItemContent - /autoapi/ipyvuetify/ListItemGroup /autoapi/ipyvuetify/ListItemIcon /autoapi/ipyvuetify/ListItemSubtitle /autoapi/ipyvuetify/ListItemTitle - /autoapi/ipyvuetify/Menu /autoapi/ipyvuetify/MenuTransition /autoapi/ipyvuetify/Messages - /autoapi/ipyvuetify/NavigationDrawer - /autoapi/ipyvuetify/OverflowBtn - /autoapi/ipyvuetify/Overlay - /autoapi/ipyvuetify/Pagination - /autoapi/ipyvuetify/Parallax - /autoapi/ipyvuetify/Picker - /autoapi/ipyvuetify/ProgressCircular - /autoapi/ipyvuetify/ProgressLinear - /autoapi/ipyvuetify/Radio - /autoapi/ipyvuetify/RadioGroup - /autoapi/ipyvuetify/RangeSlider - /autoapi/ipyvuetify/Rating - /autoapi/ipyvuetify/Responsive /autoapi/ipyvuetify/Row /autoapi/ipyvuetify/ScaleTransition /autoapi/ipyvuetify/ScrollXReverseTransition /autoapi/ipyvuetify/ScrollXTransition /autoapi/ipyvuetify/ScrollYReverseTransition /autoapi/ipyvuetify/ScrollYTransition - /autoapi/ipyvuetify/Select - /autoapi/ipyvuetify/Sheet /autoapi/ipyvuetify/SimpleCheckbox - /autoapi/ipyvuetify/SimpleTable - /autoapi/ipyvuetify/SkeletonLoader - /autoapi/ipyvuetify/SlideGroup /autoapi/ipyvuetify/SlideItem /autoapi/ipyvuetify/SlideXReverseTransition /autoapi/ipyvuetify/SlideXTransition /autoapi/ipyvuetify/SlideYReverseTransition /autoapi/ipyvuetify/SlideYTransition - /autoapi/ipyvuetify/Slider /autoapi/ipyvuetify/Snackbar /autoapi/ipyvuetify/Spacer - /autoapi/ipyvuetify/Sparkline /autoapi/ipyvuetify/SpeedDial /autoapi/ipyvuetify/Stepper - /autoapi/ipyvuetify/StepperContent /autoapi/ipyvuetify/StepperHeader /autoapi/ipyvuetify/StepperItems - /autoapi/ipyvuetify/StepperStep /autoapi/ipyvuetify/Subheader - /autoapi/ipyvuetify/Switch - /autoapi/ipyvuetify/SystemBar - /autoapi/ipyvuetify/Tab - /autoapi/ipyvuetify/TabItem /autoapi/ipyvuetify/TabReverseTransition /autoapi/ipyvuetify/TabTransition /autoapi/ipyvuetify/TableOverflow - /autoapi/ipyvuetify/Tabs - /autoapi/ipyvuetify/TabsItems /autoapi/ipyvuetify/TabsSlider - /autoapi/ipyvuetify/Text - /autoapi/ipyvuetify/TextField - /autoapi/ipyvuetify/Textarea /autoapi/ipyvuetify/ThemeProvider - /autoapi/ipyvuetify/TimePicker /autoapi/ipyvuetify/TimePickerClock /autoapi/ipyvuetify/TimePickerTitle /autoapi/ipyvuetify/Timeline /autoapi/ipyvuetify/TimelineItem - /autoapi/ipyvuetify/Toolbar /autoapi/ipyvuetify/ToolbarItems /autoapi/ipyvuetify/ToolbarTitle - /autoapi/ipyvuetify/Tooltip /autoapi/ipyvuetify/Treeview /autoapi/ipyvuetify/TreeviewNode - /autoapi/ipyvuetify/VirtualTable /autoapi/ipyvuetify/VuetifyTemplate - /autoapi/ipyvuetify/VuetifyWidget - /autoapi/ipyvuetify/Window - /autoapi/ipyvuetify/WindowItem .. autoapisummary:: - ipyvuetify.Alert ipyvuetify.App - ipyvuetify.AppBar ipyvuetify.AppBarNavIcon - ipyvuetify.Autocomplete - ipyvuetify.Avatar - ipyvuetify.Badge - ipyvuetify.Banner - ipyvuetify.BottomNavigation - ipyvuetify.BottomSheet ipyvuetify.Breadcrumbs ipyvuetify.BreadcrumbsDivider - ipyvuetify.BreadcrumbsItem - ipyvuetify.Btn - ipyvuetify.BtnToggle - ipyvuetify.Calendar - ipyvuetify.CalendarDaily - ipyvuetify.CalendarMonthly - ipyvuetify.CalendarWeekly - ipyvuetify.Card ipyvuetify.CardActions ipyvuetify.CardSubtitle ipyvuetify.CardText ipyvuetify.CardTitle - ipyvuetify.Carousel - ipyvuetify.CarouselItem ipyvuetify.CarouselReverseTransition ipyvuetify.CarouselTransition - ipyvuetify.Checkbox - ipyvuetify.Chip - ipyvuetify.ChipGroup - ipyvuetify.Col - ipyvuetify.ColorPicker - ipyvuetify.ColorPickerCanvas - ipyvuetify.ColorPickerSwatches - ipyvuetify.Combobox - ipyvuetify.Container - ipyvuetify.Content - ipyvuetify.Counter - ipyvuetify.Data ipyvuetify.DataFooter - ipyvuetify.DataIterator - ipyvuetify.DataTable ipyvuetify.DataTableHeader - ipyvuetify.DatePicker - ipyvuetify.DatePickerDateTable - ipyvuetify.DatePickerHeader - ipyvuetify.DatePickerMonthTable - ipyvuetify.DatePickerTitle - ipyvuetify.DatePickerYears - ipyvuetify.Dialog ipyvuetify.DialogBottomTransition ipyvuetify.DialogTransition ipyvuetify.Divider @@ -253,109 +118,52 @@ Classes ipyvuetify.ExpandXTransition ipyvuetify.ExpansionPanel ipyvuetify.ExpansionPanelContent - ipyvuetify.ExpansionPanelHeader - ipyvuetify.ExpansionPanels ipyvuetify.FabTransition ipyvuetify.FadeTransition - ipyvuetify.FileInput - ipyvuetify.Flex - ipyvuetify.Footer ipyvuetify.Form - ipyvuetify.Hover ipyvuetify.Html - ipyvuetify.Icon - ipyvuetify.Img - ipyvuetify.Input ipyvuetify.Item - ipyvuetify.ItemGroup - ipyvuetify.Label - ipyvuetify.Layout - ipyvuetify.Lazy - ipyvuetify.List - ipyvuetify.ListGroup - ipyvuetify.ListItem ipyvuetify.ListItemAction ipyvuetify.ListItemActionText - ipyvuetify.ListItemAvatar ipyvuetify.ListItemContent - ipyvuetify.ListItemGroup ipyvuetify.ListItemIcon ipyvuetify.ListItemSubtitle ipyvuetify.ListItemTitle - ipyvuetify.Menu ipyvuetify.MenuTransition ipyvuetify.Messages - ipyvuetify.NavigationDrawer - ipyvuetify.OverflowBtn - ipyvuetify.Overlay - ipyvuetify.Pagination - ipyvuetify.Parallax - ipyvuetify.Picker - ipyvuetify.ProgressCircular - ipyvuetify.ProgressLinear - ipyvuetify.Radio - ipyvuetify.RadioGroup - ipyvuetify.RangeSlider - ipyvuetify.Rating - ipyvuetify.Responsive ipyvuetify.Row ipyvuetify.ScaleTransition ipyvuetify.ScrollXReverseTransition ipyvuetify.ScrollXTransition ipyvuetify.ScrollYReverseTransition ipyvuetify.ScrollYTransition - ipyvuetify.Select - ipyvuetify.Sheet ipyvuetify.SimpleCheckbox - ipyvuetify.SimpleTable - ipyvuetify.SkeletonLoader - ipyvuetify.SlideGroup ipyvuetify.SlideItem ipyvuetify.SlideXReverseTransition ipyvuetify.SlideXTransition ipyvuetify.SlideYReverseTransition ipyvuetify.SlideYTransition - ipyvuetify.Slider ipyvuetify.Snackbar ipyvuetify.Spacer - ipyvuetify.Sparkline ipyvuetify.SpeedDial ipyvuetify.Stepper - ipyvuetify.StepperContent ipyvuetify.StepperHeader ipyvuetify.StepperItems - ipyvuetify.StepperStep ipyvuetify.Subheader - ipyvuetify.Switch - ipyvuetify.SystemBar - ipyvuetify.Tab - ipyvuetify.TabItem ipyvuetify.TabReverseTransition ipyvuetify.TabTransition ipyvuetify.TableOverflow - ipyvuetify.Tabs - ipyvuetify.TabsItems ipyvuetify.TabsSlider - ipyvuetify.Text - ipyvuetify.TextField - ipyvuetify.Textarea ipyvuetify.ThemeProvider - ipyvuetify.TimePicker ipyvuetify.TimePickerClock ipyvuetify.TimePickerTitle ipyvuetify.Timeline ipyvuetify.TimelineItem - ipyvuetify.Toolbar ipyvuetify.ToolbarItems ipyvuetify.ToolbarTitle - ipyvuetify.Tooltip ipyvuetify.Treeview ipyvuetify.TreeviewNode - ipyvuetify.VirtualTable ipyvuetify.VuetifyTemplate - ipyvuetify.VuetifyWidget - ipyvuetify.Window - ipyvuetify.WindowItem Package Contents diff --git a/generate_source/generate_schema.py b/generate_source/generate_schema.py index 5b0cde05..bd408387 100644 --- a/generate_source/generate_schema.py +++ b/generate_source/generate_schema.py @@ -141,6 +141,7 @@ def make_properties(data): schema_type["allowNull"] = True schema_type["default"] = None + schema_type["doc"] = data.get("doc", "The doc could not be extracted from vuetify API") return [(schema_name, schema_type)] @@ -158,10 +159,13 @@ def make_widget(data): if widget_name in ["Container", "Content", "Flex", "Layout"]: properties = chain(properties, spacing_props) - return ( - widget_name, - {"inherits": ["VuetifyWidget"], "properties": dict(properties)}, - ) + widget_data = { + "inherits": ["VuetifyWidget"], + "doc": attributes.get("doc", "The doc could not be extracted from vuetify API"), + "properties": dict(properties), + } + + return (widget_name, widget_data) def generate_schema( diff --git a/generate_source/python.njk b/generate_source/python.njk index 85d87b28..8b92388d 100644 --- a/generate_source/python.njk +++ b/generate_source/python.njk @@ -26,6 +26,7 @@ from ipywidgets.widgets.widget import widget_serialization class {{ widget.name }}({{ widget.inherits | join(", ") }}): + """{{ widget.doc }}""" {% block widgetbody %} _model_name = Unicode('{{ widget.name }}Model').tag(sync=True) @@ -33,6 +34,7 @@ class {{ widget.name }}({{ widget.inherits | join(", ") }}): {% if widget.properties %} {% for propName, prop in widget.properties %} {{ propName }} = {{ prop.traitDef }} + """{{ prop.doc }}""" {% endfor %} {% else %} From 31bba30e68afd9e33ea4b016c0e57bf5e84252c5 Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Thu, 20 Nov 2025 22:31:10 +0000 Subject: [PATCH 018/110] fix: remove autoapi generated files from the distribution --- .gitignore | 1 + docs/autoapi/index.rst | 11 - docs/autoapi/ipyvuetify/App.rst | 28 -- docs/autoapi/ipyvuetify/AppBarNavIcon.rst | 10 - docs/autoapi/ipyvuetify/Breadcrumbs.rst | 40 -- .../autoapi/ipyvuetify/BreadcrumbsDivider.rst | 10 - docs/autoapi/ipyvuetify/CardActions.rst | 10 - docs/autoapi/ipyvuetify/CardSubtitle.rst | 10 - docs/autoapi/ipyvuetify/CardText.rst | 10 - docs/autoapi/ipyvuetify/CardTitle.rst | 10 - .../ipyvuetify/CarouselReverseTransition.rst | 40 -- .../autoapi/ipyvuetify/CarouselTransition.rst | 40 -- docs/autoapi/ipyvuetify/DataFooter.rst | 94 ----- docs/autoapi/ipyvuetify/DataTableHeader.rst | 16 - .../ipyvuetify/DialogBottomTransition.rst | 40 -- docs/autoapi/ipyvuetify/DialogTransition.rst | 40 -- docs/autoapi/ipyvuetify/Divider.rst | 34 -- docs/autoapi/ipyvuetify/EditDialog.rst | 64 ---- docs/autoapi/ipyvuetify/ExpandTransition.rst | 16 - docs/autoapi/ipyvuetify/ExpandXTransition.rst | 16 - docs/autoapi/ipyvuetify/ExpansionPanel.rst | 28 -- .../ipyvuetify/ExpansionPanelContent.rst | 22 -- docs/autoapi/ipyvuetify/FabTransition.rst | 40 -- docs/autoapi/ipyvuetify/FadeTransition.rst | 40 -- docs/autoapi/ipyvuetify/Form.rst | 22 -- docs/autoapi/ipyvuetify/Html.rst | 17 - docs/autoapi/ipyvuetify/Item.rst | 28 -- docs/autoapi/ipyvuetify/ListItemAction.rst | 10 - .../autoapi/ipyvuetify/ListItemActionText.rst | 10 - docs/autoapi/ipyvuetify/ListItemContent.rst | 10 - docs/autoapi/ipyvuetify/ListItemIcon.rst | 10 - docs/autoapi/ipyvuetify/ListItemSubtitle.rst | 10 - docs/autoapi/ipyvuetify/ListItemTitle.rst | 10 - docs/autoapi/ipyvuetify/MenuTransition.rst | 40 -- docs/autoapi/ipyvuetify/Messages.rst | 34 -- docs/autoapi/ipyvuetify/Row.rst | 118 ------ docs/autoapi/ipyvuetify/ScaleTransition.rst | 40 -- .../ipyvuetify/ScrollXReverseTransition.rst | 40 -- docs/autoapi/ipyvuetify/ScrollXTransition.rst | 40 -- .../ipyvuetify/ScrollYReverseTransition.rst | 40 -- docs/autoapi/ipyvuetify/ScrollYTransition.rst | 40 -- docs/autoapi/ipyvuetify/SimpleCheckbox.rst | 70 ---- docs/autoapi/ipyvuetify/SlideItem.rst | 28 -- .../ipyvuetify/SlideXReverseTransition.rst | 40 -- docs/autoapi/ipyvuetify/SlideXTransition.rst | 40 -- .../ipyvuetify/SlideYReverseTransition.rst | 40 -- docs/autoapi/ipyvuetify/SlideYTransition.rst | 40 -- docs/autoapi/ipyvuetify/Snackbar.rst | 70 ---- docs/autoapi/ipyvuetify/Spacer.rst | 10 - docs/autoapi/ipyvuetify/SpeedDial.rst | 82 ---- docs/autoapi/ipyvuetify/Stepper.rst | 46 --- docs/autoapi/ipyvuetify/StepperHeader.rst | 10 - docs/autoapi/ipyvuetify/StepperItems.rst | 10 - docs/autoapi/ipyvuetify/Subheader.rst | 28 -- .../ipyvuetify/TabReverseTransition.rst | 40 -- docs/autoapi/ipyvuetify/TabTransition.rst | 40 -- docs/autoapi/ipyvuetify/TableOverflow.rst | 10 - docs/autoapi/ipyvuetify/TabsSlider.rst | 16 - docs/autoapi/ipyvuetify/ThemeProvider.rst | 28 -- docs/autoapi/ipyvuetify/Themes/index.rst | 19 - docs/autoapi/ipyvuetify/TimePickerClock.rst | 88 ----- docs/autoapi/ipyvuetify/TimePickerTitle.rst | 76 ---- docs/autoapi/ipyvuetify/Timeline.rst | 40 -- docs/autoapi/ipyvuetify/TimelineItem.rst | 76 ---- docs/autoapi/ipyvuetify/ToolbarItems.rst | 10 - docs/autoapi/ipyvuetify/ToolbarTitle.rst | 10 - docs/autoapi/ipyvuetify/Treeview.rst | 196 ---------- docs/autoapi/ipyvuetify/TreeviewNode.rst | 130 ------- docs/autoapi/ipyvuetify/VuetifyTemplate.rst | 17 - docs/autoapi/ipyvuetify/components/Alert.rst | 4 - docs/autoapi/ipyvuetify/components/App.rst | 4 - docs/autoapi/ipyvuetify/components/AppBar.rst | 4 - .../ipyvuetify/components/AppBarNavIcon.rst | 4 - .../ipyvuetify/components/Autocomplete.rst | 4 - docs/autoapi/ipyvuetify/components/Avatar.rst | 4 - docs/autoapi/ipyvuetify/components/Badge.rst | 4 - docs/autoapi/ipyvuetify/components/Banner.rst | 4 - .../components/BottomNavigation.rst | 4 - .../ipyvuetify/components/BottomSheet.rst | 4 - .../ipyvuetify/components/Breadcrumbs.rst | 4 - .../components/BreadcrumbsDivider.rst | 4 - .../ipyvuetify/components/BreadcrumbsItem.rst | 4 - docs/autoapi/ipyvuetify/components/Btn.rst | 4 - .../ipyvuetify/components/BtnToggle.rst | 4 - .../ipyvuetify/components/Calendar.rst | 4 - .../ipyvuetify/components/CalendarDaily.rst | 4 - .../ipyvuetify/components/CalendarMonthly.rst | 4 - .../ipyvuetify/components/CalendarWeekly.rst | 4 - docs/autoapi/ipyvuetify/components/Card.rst | 4 - .../ipyvuetify/components/CardActions.rst | 4 - .../ipyvuetify/components/CardSubtitle.rst | 4 - .../ipyvuetify/components/CardText.rst | 4 - .../ipyvuetify/components/CardTitle.rst | 4 - .../ipyvuetify/components/Carousel.rst | 4 - .../ipyvuetify/components/CarouselItem.rst | 4 - .../components/CarouselReverseTransition.rst | 4 - .../components/CarouselTransition.rst | 4 - .../ipyvuetify/components/Checkbox.rst | 4 - docs/autoapi/ipyvuetify/components/Chip.rst | 4 - .../ipyvuetify/components/ChipGroup.rst | 4 - .../components/CodeGen.has_callback.rst | 4 - .../autoapi/ipyvuetify/components/CodeGen.rst | 20 - docs/autoapi/ipyvuetify/components/Col.rst | 4 - .../ipyvuetify/components/ColorPicker.rst | 4 - .../components/ColorPickerCanvas.rst | 4 - .../components/ColorPickerSwatches.rst | 4 - .../ipyvuetify/components/Combobox.rst | 4 - .../ipyvuetify/components/Container.rst | 4 - .../autoapi/ipyvuetify/components/Content.rst | 4 - .../autoapi/ipyvuetify/components/Counter.rst | 4 - docs/autoapi/ipyvuetify/components/Data.rst | 4 - .../ipyvuetify/components/DataFooter.rst | 4 - .../ipyvuetify/components/DataIterator.rst | 4 - .../ipyvuetify/components/DataTable.rst | 4 - .../ipyvuetify/components/DataTableHeader.rst | 4 - .../ipyvuetify/components/DatePicker.rst | 4 - .../components/DatePickerDateTable.rst | 4 - .../components/DatePickerHeader.rst | 4 - .../components/DatePickerMonthTable.rst | 4 - .../ipyvuetify/components/DatePickerTitle.rst | 4 - .../ipyvuetify/components/DatePickerYears.rst | 4 - docs/autoapi/ipyvuetify/components/Dialog.rst | 4 - .../components/DialogBottomTransition.rst | 4 - .../components/DialogTransition.rst | 4 - .../autoapi/ipyvuetify/components/Divider.rst | 4 - .../ipyvuetify/components/EditDialog.rst | 4 - .../components/ExpandTransition.rst | 4 - .../components/ExpandXTransition.rst | 4 - .../ipyvuetify/components/ExpansionPanel.rst | 4 - .../components/ExpansionPanelContent.rst | 4 - .../components/ExpansionPanelHeader.rst | 4 - .../ipyvuetify/components/ExpansionPanels.rst | 4 - .../ipyvuetify/components/FabTransition.rst | 4 - .../ipyvuetify/components/FadeTransition.rst | 4 - .../ipyvuetify/components/FileInput.rst | 4 - docs/autoapi/ipyvuetify/components/Flex.rst | 4 - docs/autoapi/ipyvuetify/components/Footer.rst | 4 - docs/autoapi/ipyvuetify/components/Form.rst | 4 - docs/autoapi/ipyvuetify/components/Hover.rst | 4 - docs/autoapi/ipyvuetify/components/Html.rst | 4 - docs/autoapi/ipyvuetify/components/Icon.rst | 4 - docs/autoapi/ipyvuetify/components/Img.rst | 4 - docs/autoapi/ipyvuetify/components/Input.rst | 4 - docs/autoapi/ipyvuetify/components/Item.rst | 4 - .../ipyvuetify/components/ItemGroup.rst | 4 - docs/autoapi/ipyvuetify/components/Label.rst | 4 - docs/autoapi/ipyvuetify/components/Layout.rst | 4 - docs/autoapi/ipyvuetify/components/Lazy.rst | 4 - docs/autoapi/ipyvuetify/components/List.rst | 4 - .../ipyvuetify/components/ListGroup.rst | 4 - .../ipyvuetify/components/ListItem.rst | 4 - .../ipyvuetify/components/ListItemAction.rst | 4 - .../components/ListItemActionText.rst | 4 - .../ipyvuetify/components/ListItemAvatar.rst | 4 - .../ipyvuetify/components/ListItemContent.rst | 4 - .../ipyvuetify/components/ListItemGroup.rst | 4 - .../ipyvuetify/components/ListItemIcon.rst | 4 - .../components/ListItemSubtitle.rst | 4 - .../ipyvuetify/components/ListItemTitle.rst | 4 - docs/autoapi/ipyvuetify/components/Menu.rst | 4 - .../ipyvuetify/components/MenuTransition.rst | 4 - .../ipyvuetify/components/Messages.rst | 4 - .../components/NavigationDrawer.rst | 4 - .../ipyvuetify/components/OverflowBtn.rst | 4 - .../autoapi/ipyvuetify/components/Overlay.rst | 4 - .../ipyvuetify/components/Pagination.rst | 4 - .../ipyvuetify/components/Parallax.rst | 4 - docs/autoapi/ipyvuetify/components/Picker.rst | 4 - .../components/ProgressCircular.rst | 4 - .../ipyvuetify/components/ProgressLinear.rst | 4 - docs/autoapi/ipyvuetify/components/Radio.rst | 4 - .../ipyvuetify/components/RadioGroup.rst | 4 - .../ipyvuetify/components/RangeSlider.rst | 4 - docs/autoapi/ipyvuetify/components/Rating.rst | 4 - .../ipyvuetify/components/Responsive.rst | 4 - docs/autoapi/ipyvuetify/components/Row.rst | 4 - .../ipyvuetify/components/ScaleTransition.rst | 4 - .../components/ScrollXReverseTransition.rst | 4 - .../components/ScrollXTransition.rst | 4 - .../components/ScrollYReverseTransition.rst | 4 - .../components/ScrollYTransition.rst | 4 - docs/autoapi/ipyvuetify/components/Select.rst | 4 - docs/autoapi/ipyvuetify/components/Sheet.rst | 4 - .../ipyvuetify/components/SimpleCheckbox.rst | 4 - .../ipyvuetify/components/SimpleTable.rst | 4 - .../ipyvuetify/components/SkeletonLoader.rst | 4 - .../ipyvuetify/components/SlideGroup.rst | 4 - .../ipyvuetify/components/SlideItem.rst | 4 - .../components/SlideXReverseTransition.rst | 4 - .../components/SlideXTransition.rst | 4 - .../components/SlideYReverseTransition.rst | 4 - .../components/SlideYTransition.rst | 4 - docs/autoapi/ipyvuetify/components/Slider.rst | 4 - .../ipyvuetify/components/Snackbar.rst | 4 - docs/autoapi/ipyvuetify/components/Spacer.rst | 4 - .../ipyvuetify/components/Sparkline.rst | 4 - .../ipyvuetify/components/SpeedDial.rst | 4 - .../autoapi/ipyvuetify/components/Stepper.rst | 4 - .../ipyvuetify/components/StepperContent.rst | 4 - .../ipyvuetify/components/StepperHeader.rst | 4 - .../ipyvuetify/components/StepperItems.rst | 4 - .../ipyvuetify/components/StepperStep.rst | 4 - .../ipyvuetify/components/Subheader.rst | 4 - docs/autoapi/ipyvuetify/components/Switch.rst | 4 - .../ipyvuetify/components/SystemBar.rst | 4 - docs/autoapi/ipyvuetify/components/Tab.rst | 4 - .../autoapi/ipyvuetify/components/TabItem.rst | 4 - .../components/TabReverseTransition.rst | 4 - .../ipyvuetify/components/TabTransition.rst | 4 - .../ipyvuetify/components/TableOverflow.rst | 4 - docs/autoapi/ipyvuetify/components/Tabs.rst | 4 - .../ipyvuetify/components/TabsItems.rst | 4 - .../ipyvuetify/components/TabsSlider.rst | 4 - docs/autoapi/ipyvuetify/components/Text.rst | 4 - .../ipyvuetify/components/TextField.rst | 4 - .../ipyvuetify/components/Textarea.rst | 4 - .../ipyvuetify/components/ThemeProvider.rst | 4 - .../ipyvuetify/components/TimePicker.rst | 4 - .../ipyvuetify/components/TimePickerClock.rst | 4 - .../ipyvuetify/components/TimePickerTitle.rst | 4 - .../ipyvuetify/components/Timeline.rst | 4 - .../ipyvuetify/components/TimelineItem.rst | 4 - .../autoapi/ipyvuetify/components/Toolbar.rst | 4 - .../ipyvuetify/components/ToolbarItems.rst | 4 - .../ipyvuetify/components/ToolbarTitle.rst | 4 - .../autoapi/ipyvuetify/components/Tooltip.rst | 4 - .../ipyvuetify/components/Treeview.rst | 4 - .../ipyvuetify/components/TreeviewNode.rst | 4 - .../ipyvuetify/components/VirtualTable.rst | 4 - .../ipyvuetify/components/VuetifyTemplate.rst | 4 - .../ipyvuetify/components/VuetifyWidget.rst | 4 - docs/autoapi/ipyvuetify/components/Window.rst | 4 - .../ipyvuetify/components/WindowItem.rst | 4 - docs/autoapi/ipyvuetify/components/index.rst | 354 ------------------ .../ipyvuetify/extra/FileInput.clear.rst | 4 - .../ipyvuetify/extra/FileInput.get_files.rst | 4 - .../extra/FileInput.reset_stats.rst | 4 - docs/autoapi/ipyvuetify/extra/FileInput.rst | 89 ----- .../extra/FileInput.update_stats.rst | 4 - .../ipyvuetify/extra/FileInput.vue_upload.rst | 4 - .../extra/file_input/FileInput.clear.rst | 4 - .../extra/file_input/FileInput.get_files.rst | 4 - .../file_input/FileInput.reset_stats.rst | 4 - .../ipyvuetify/extra/file_input/FileInput.rst | 89 ----- .../file_input/FileInput.update_stats.rst | 4 - .../extra/file_input/FileInput.vue_upload.rst | 4 - .../ipyvuetify/extra/file_input/index.rst | 19 - docs/autoapi/ipyvuetify/extra/index.rst | 28 -- docs/autoapi/ipyvuetify/index.rst | 173 --------- 249 files changed, 1 insertion(+), 3962 deletions(-) delete mode 100644 docs/autoapi/index.rst delete mode 100644 docs/autoapi/ipyvuetify/App.rst delete mode 100644 docs/autoapi/ipyvuetify/AppBarNavIcon.rst delete mode 100644 docs/autoapi/ipyvuetify/Breadcrumbs.rst delete mode 100644 docs/autoapi/ipyvuetify/BreadcrumbsDivider.rst delete mode 100644 docs/autoapi/ipyvuetify/CardActions.rst delete mode 100644 docs/autoapi/ipyvuetify/CardSubtitle.rst delete mode 100644 docs/autoapi/ipyvuetify/CardText.rst delete mode 100644 docs/autoapi/ipyvuetify/CardTitle.rst delete mode 100644 docs/autoapi/ipyvuetify/CarouselReverseTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/CarouselTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/DataFooter.rst delete mode 100644 docs/autoapi/ipyvuetify/DataTableHeader.rst delete mode 100644 docs/autoapi/ipyvuetify/DialogBottomTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/DialogTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/Divider.rst delete mode 100644 docs/autoapi/ipyvuetify/EditDialog.rst delete mode 100644 docs/autoapi/ipyvuetify/ExpandTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/ExpandXTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/ExpansionPanel.rst delete mode 100644 docs/autoapi/ipyvuetify/ExpansionPanelContent.rst delete mode 100644 docs/autoapi/ipyvuetify/FabTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/FadeTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/Form.rst delete mode 100644 docs/autoapi/ipyvuetify/Html.rst delete mode 100644 docs/autoapi/ipyvuetify/Item.rst delete mode 100644 docs/autoapi/ipyvuetify/ListItemAction.rst delete mode 100644 docs/autoapi/ipyvuetify/ListItemActionText.rst delete mode 100644 docs/autoapi/ipyvuetify/ListItemContent.rst delete mode 100644 docs/autoapi/ipyvuetify/ListItemIcon.rst delete mode 100644 docs/autoapi/ipyvuetify/ListItemSubtitle.rst delete mode 100644 docs/autoapi/ipyvuetify/ListItemTitle.rst delete mode 100644 docs/autoapi/ipyvuetify/MenuTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/Messages.rst delete mode 100644 docs/autoapi/ipyvuetify/Row.rst delete mode 100644 docs/autoapi/ipyvuetify/ScaleTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/ScrollXReverseTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/ScrollXTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/ScrollYReverseTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/ScrollYTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/SimpleCheckbox.rst delete mode 100644 docs/autoapi/ipyvuetify/SlideItem.rst delete mode 100644 docs/autoapi/ipyvuetify/SlideXReverseTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/SlideXTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/SlideYReverseTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/SlideYTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/Snackbar.rst delete mode 100644 docs/autoapi/ipyvuetify/Spacer.rst delete mode 100644 docs/autoapi/ipyvuetify/SpeedDial.rst delete mode 100644 docs/autoapi/ipyvuetify/Stepper.rst delete mode 100644 docs/autoapi/ipyvuetify/StepperHeader.rst delete mode 100644 docs/autoapi/ipyvuetify/StepperItems.rst delete mode 100644 docs/autoapi/ipyvuetify/Subheader.rst delete mode 100644 docs/autoapi/ipyvuetify/TabReverseTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/TabTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/TableOverflow.rst delete mode 100644 docs/autoapi/ipyvuetify/TabsSlider.rst delete mode 100644 docs/autoapi/ipyvuetify/ThemeProvider.rst delete mode 100644 docs/autoapi/ipyvuetify/Themes/index.rst delete mode 100644 docs/autoapi/ipyvuetify/TimePickerClock.rst delete mode 100644 docs/autoapi/ipyvuetify/TimePickerTitle.rst delete mode 100644 docs/autoapi/ipyvuetify/Timeline.rst delete mode 100644 docs/autoapi/ipyvuetify/TimelineItem.rst delete mode 100644 docs/autoapi/ipyvuetify/ToolbarItems.rst delete mode 100644 docs/autoapi/ipyvuetify/ToolbarTitle.rst delete mode 100644 docs/autoapi/ipyvuetify/Treeview.rst delete mode 100644 docs/autoapi/ipyvuetify/TreeviewNode.rst delete mode 100644 docs/autoapi/ipyvuetify/VuetifyTemplate.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Alert.rst delete mode 100644 docs/autoapi/ipyvuetify/components/App.rst delete mode 100644 docs/autoapi/ipyvuetify/components/AppBar.rst delete mode 100644 docs/autoapi/ipyvuetify/components/AppBarNavIcon.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Autocomplete.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Avatar.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Badge.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Banner.rst delete mode 100644 docs/autoapi/ipyvuetify/components/BottomNavigation.rst delete mode 100644 docs/autoapi/ipyvuetify/components/BottomSheet.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Breadcrumbs.rst delete mode 100644 docs/autoapi/ipyvuetify/components/BreadcrumbsDivider.rst delete mode 100644 docs/autoapi/ipyvuetify/components/BreadcrumbsItem.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Btn.rst delete mode 100644 docs/autoapi/ipyvuetify/components/BtnToggle.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Calendar.rst delete mode 100644 docs/autoapi/ipyvuetify/components/CalendarDaily.rst delete mode 100644 docs/autoapi/ipyvuetify/components/CalendarMonthly.rst delete mode 100644 docs/autoapi/ipyvuetify/components/CalendarWeekly.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Card.rst delete mode 100644 docs/autoapi/ipyvuetify/components/CardActions.rst delete mode 100644 docs/autoapi/ipyvuetify/components/CardSubtitle.rst delete mode 100644 docs/autoapi/ipyvuetify/components/CardText.rst delete mode 100644 docs/autoapi/ipyvuetify/components/CardTitle.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Carousel.rst delete mode 100644 docs/autoapi/ipyvuetify/components/CarouselItem.rst delete mode 100644 docs/autoapi/ipyvuetify/components/CarouselReverseTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/components/CarouselTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Checkbox.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Chip.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ChipGroup.rst delete mode 100644 docs/autoapi/ipyvuetify/components/CodeGen.has_callback.rst delete mode 100644 docs/autoapi/ipyvuetify/components/CodeGen.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Col.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ColorPicker.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ColorPickerCanvas.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ColorPickerSwatches.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Combobox.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Container.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Content.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Counter.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Data.rst delete mode 100644 docs/autoapi/ipyvuetify/components/DataFooter.rst delete mode 100644 docs/autoapi/ipyvuetify/components/DataIterator.rst delete mode 100644 docs/autoapi/ipyvuetify/components/DataTable.rst delete mode 100644 docs/autoapi/ipyvuetify/components/DataTableHeader.rst delete mode 100644 docs/autoapi/ipyvuetify/components/DatePicker.rst delete mode 100644 docs/autoapi/ipyvuetify/components/DatePickerDateTable.rst delete mode 100644 docs/autoapi/ipyvuetify/components/DatePickerHeader.rst delete mode 100644 docs/autoapi/ipyvuetify/components/DatePickerMonthTable.rst delete mode 100644 docs/autoapi/ipyvuetify/components/DatePickerTitle.rst delete mode 100644 docs/autoapi/ipyvuetify/components/DatePickerYears.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Dialog.rst delete mode 100644 docs/autoapi/ipyvuetify/components/DialogBottomTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/components/DialogTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Divider.rst delete mode 100644 docs/autoapi/ipyvuetify/components/EditDialog.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ExpandTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ExpandXTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ExpansionPanel.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ExpansionPanelContent.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ExpansionPanelHeader.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ExpansionPanels.rst delete mode 100644 docs/autoapi/ipyvuetify/components/FabTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/components/FadeTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/components/FileInput.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Flex.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Footer.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Form.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Hover.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Html.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Icon.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Img.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Input.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Item.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ItemGroup.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Label.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Layout.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Lazy.rst delete mode 100644 docs/autoapi/ipyvuetify/components/List.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ListGroup.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ListItem.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ListItemAction.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ListItemActionText.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ListItemAvatar.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ListItemContent.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ListItemGroup.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ListItemIcon.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ListItemSubtitle.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ListItemTitle.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Menu.rst delete mode 100644 docs/autoapi/ipyvuetify/components/MenuTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Messages.rst delete mode 100644 docs/autoapi/ipyvuetify/components/NavigationDrawer.rst delete mode 100644 docs/autoapi/ipyvuetify/components/OverflowBtn.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Overlay.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Pagination.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Parallax.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Picker.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ProgressCircular.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ProgressLinear.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Radio.rst delete mode 100644 docs/autoapi/ipyvuetify/components/RadioGroup.rst delete mode 100644 docs/autoapi/ipyvuetify/components/RangeSlider.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Rating.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Responsive.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Row.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ScaleTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ScrollXReverseTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ScrollXTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ScrollYReverseTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ScrollYTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Select.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Sheet.rst delete mode 100644 docs/autoapi/ipyvuetify/components/SimpleCheckbox.rst delete mode 100644 docs/autoapi/ipyvuetify/components/SimpleTable.rst delete mode 100644 docs/autoapi/ipyvuetify/components/SkeletonLoader.rst delete mode 100644 docs/autoapi/ipyvuetify/components/SlideGroup.rst delete mode 100644 docs/autoapi/ipyvuetify/components/SlideItem.rst delete mode 100644 docs/autoapi/ipyvuetify/components/SlideXReverseTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/components/SlideXTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/components/SlideYReverseTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/components/SlideYTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Slider.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Snackbar.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Spacer.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Sparkline.rst delete mode 100644 docs/autoapi/ipyvuetify/components/SpeedDial.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Stepper.rst delete mode 100644 docs/autoapi/ipyvuetify/components/StepperContent.rst delete mode 100644 docs/autoapi/ipyvuetify/components/StepperHeader.rst delete mode 100644 docs/autoapi/ipyvuetify/components/StepperItems.rst delete mode 100644 docs/autoapi/ipyvuetify/components/StepperStep.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Subheader.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Switch.rst delete mode 100644 docs/autoapi/ipyvuetify/components/SystemBar.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Tab.rst delete mode 100644 docs/autoapi/ipyvuetify/components/TabItem.rst delete mode 100644 docs/autoapi/ipyvuetify/components/TabReverseTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/components/TabTransition.rst delete mode 100644 docs/autoapi/ipyvuetify/components/TableOverflow.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Tabs.rst delete mode 100644 docs/autoapi/ipyvuetify/components/TabsItems.rst delete mode 100644 docs/autoapi/ipyvuetify/components/TabsSlider.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Text.rst delete mode 100644 docs/autoapi/ipyvuetify/components/TextField.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Textarea.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ThemeProvider.rst delete mode 100644 docs/autoapi/ipyvuetify/components/TimePicker.rst delete mode 100644 docs/autoapi/ipyvuetify/components/TimePickerClock.rst delete mode 100644 docs/autoapi/ipyvuetify/components/TimePickerTitle.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Timeline.rst delete mode 100644 docs/autoapi/ipyvuetify/components/TimelineItem.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Toolbar.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ToolbarItems.rst delete mode 100644 docs/autoapi/ipyvuetify/components/ToolbarTitle.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Tooltip.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Treeview.rst delete mode 100644 docs/autoapi/ipyvuetify/components/TreeviewNode.rst delete mode 100644 docs/autoapi/ipyvuetify/components/VirtualTable.rst delete mode 100644 docs/autoapi/ipyvuetify/components/VuetifyTemplate.rst delete mode 100644 docs/autoapi/ipyvuetify/components/VuetifyWidget.rst delete mode 100644 docs/autoapi/ipyvuetify/components/Window.rst delete mode 100644 docs/autoapi/ipyvuetify/components/WindowItem.rst delete mode 100644 docs/autoapi/ipyvuetify/components/index.rst delete mode 100644 docs/autoapi/ipyvuetify/extra/FileInput.clear.rst delete mode 100644 docs/autoapi/ipyvuetify/extra/FileInput.get_files.rst delete mode 100644 docs/autoapi/ipyvuetify/extra/FileInput.reset_stats.rst delete mode 100644 docs/autoapi/ipyvuetify/extra/FileInput.rst delete mode 100644 docs/autoapi/ipyvuetify/extra/FileInput.update_stats.rst delete mode 100644 docs/autoapi/ipyvuetify/extra/FileInput.vue_upload.rst delete mode 100644 docs/autoapi/ipyvuetify/extra/file_input/FileInput.clear.rst delete mode 100644 docs/autoapi/ipyvuetify/extra/file_input/FileInput.get_files.rst delete mode 100644 docs/autoapi/ipyvuetify/extra/file_input/FileInput.reset_stats.rst delete mode 100644 docs/autoapi/ipyvuetify/extra/file_input/FileInput.rst delete mode 100644 docs/autoapi/ipyvuetify/extra/file_input/FileInput.update_stats.rst delete mode 100644 docs/autoapi/ipyvuetify/extra/file_input/FileInput.vue_upload.rst delete mode 100644 docs/autoapi/ipyvuetify/extra/file_input/index.rst delete mode 100644 docs/autoapi/ipyvuetify/extra/index.rst delete mode 100644 docs/autoapi/ipyvuetify/index.rst diff --git a/.gitignore b/.gitignore index 1722c7d6..d0d8d593 100755 --- a/.gitignore +++ b/.gitignore @@ -24,6 +24,7 @@ js/lib # Sphinx documentation docs/_build/ +docs/autoapi/ # Jupyter Notebook .ipynb_checkpoints diff --git a/docs/autoapi/index.rst b/docs/autoapi/index.rst deleted file mode 100644 index 353a3273..00000000 --- a/docs/autoapi/index.rst +++ /dev/null @@ -1,11 +0,0 @@ -API Reference -============= - -This page contains auto-generated API reference documentation [#f1]_. - -.. toctree:: - :titlesonly: - - /autoapi/ipyvuetify/index - -.. [#f1] Created with `sphinx-autoapi `_ \ No newline at end of file diff --git a/docs/autoapi/ipyvuetify/App.rst b/docs/autoapi/ipyvuetify/App.rst deleted file mode 100644 index ddaaf822..00000000 --- a/docs/autoapi/ipyvuetify/App.rst +++ /dev/null @@ -1,28 +0,0 @@ -ipyvuetify.App -============== - -.. py:class:: ipyvuetify.App - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - The v-app component is REQUIRED for all Vuetify applications. This is the mount point for many of Vuetify's components and functionality and ensures proper cross-browser support for custom properties. - - - .. py:attribute:: dark - - Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). - - - - .. py:attribute:: id - - Sets the DOM id on the component - - - - .. py:attribute:: light - - Applies the light theme variant to the component. - - diff --git a/docs/autoapi/ipyvuetify/AppBarNavIcon.rst b/docs/autoapi/ipyvuetify/AppBarNavIcon.rst deleted file mode 100644 index 3bd32d8d..00000000 --- a/docs/autoapi/ipyvuetify/AppBarNavIcon.rst +++ /dev/null @@ -1,10 +0,0 @@ -ipyvuetify.AppBarNavIcon -======================== - -.. py:class:: ipyvuetify.AppBarNavIcon - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A stylized icon button component used in app-bars to toggle navigation drawers. It displays the standard hamburger menu icon. - diff --git a/docs/autoapi/ipyvuetify/Breadcrumbs.rst b/docs/autoapi/ipyvuetify/Breadcrumbs.rst deleted file mode 100644 index a3cacea9..00000000 --- a/docs/autoapi/ipyvuetify/Breadcrumbs.rst +++ /dev/null @@ -1,40 +0,0 @@ -ipyvuetify.Breadcrumbs -====================== - -.. py:class:: ipyvuetify.Breadcrumbs - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - The v-breadcrumbs component is a navigational helper for pages that shows hierarchical navigation structure. It allows users to understand their location within a site. - - - .. py:attribute:: dark - - Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). - - - - .. py:attribute:: divider - - Specifies the dividing character between items. - - - - .. py:attribute:: items - - An array of objects for each breadcrumb. - - - - .. py:attribute:: large - - Increase the font-size of the breadcrumb item text to 16px (14px default). - - - - .. py:attribute:: light - - Applies the light theme variant to the component. - - diff --git a/docs/autoapi/ipyvuetify/BreadcrumbsDivider.rst b/docs/autoapi/ipyvuetify/BreadcrumbsDivider.rst deleted file mode 100644 index a829a954..00000000 --- a/docs/autoapi/ipyvuetify/BreadcrumbsDivider.rst +++ /dev/null @@ -1,10 +0,0 @@ -ipyvuetify.BreadcrumbsDivider -============================= - -.. py:class:: ipyvuetify.BreadcrumbsDivider - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A divider element between breadcrumb items, typically showing '/' or '>' character. - diff --git a/docs/autoapi/ipyvuetify/CardActions.rst b/docs/autoapi/ipyvuetify/CardActions.rst deleted file mode 100644 index 73013bfe..00000000 --- a/docs/autoapi/ipyvuetify/CardActions.rst +++ /dev/null @@ -1,10 +0,0 @@ -ipyvuetify.CardActions -====================== - -.. py:class:: ipyvuetify.CardActions - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - The v-card-actions component is used to contain action buttons within a v-card. It's typically placed at the bottom of the card. - diff --git a/docs/autoapi/ipyvuetify/CardSubtitle.rst b/docs/autoapi/ipyvuetify/CardSubtitle.rst deleted file mode 100644 index 64a789e0..00000000 --- a/docs/autoapi/ipyvuetify/CardSubtitle.rst +++ /dev/null @@ -1,10 +0,0 @@ -ipyvuetify.CardSubtitle -======================= - -.. py:class:: ipyvuetify.CardSubtitle - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A subtitle element within a v-card, typically displayed below the card title. - diff --git a/docs/autoapi/ipyvuetify/CardText.rst b/docs/autoapi/ipyvuetify/CardText.rst deleted file mode 100644 index 54585e17..00000000 --- a/docs/autoapi/ipyvuetify/CardText.rst +++ /dev/null @@ -1,10 +0,0 @@ -ipyvuetify.CardText -=================== - -.. py:class:: ipyvuetify.CardText - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - The main content area of a v-card component. - diff --git a/docs/autoapi/ipyvuetify/CardTitle.rst b/docs/autoapi/ipyvuetify/CardTitle.rst deleted file mode 100644 index f005ef7c..00000000 --- a/docs/autoapi/ipyvuetify/CardTitle.rst +++ /dev/null @@ -1,10 +0,0 @@ -ipyvuetify.CardTitle -==================== - -.. py:class:: ipyvuetify.CardTitle - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - The title element of a v-card component, typically displayed at the top. - diff --git a/docs/autoapi/ipyvuetify/CarouselReverseTransition.rst b/docs/autoapi/ipyvuetify/CarouselReverseTransition.rst deleted file mode 100644 index 358416ed..00000000 --- a/docs/autoapi/ipyvuetify/CarouselReverseTransition.rst +++ /dev/null @@ -1,40 +0,0 @@ -ipyvuetify.CarouselReverseTransition -==================================== - -.. py:class:: ipyvuetify.CarouselReverseTransition - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A transition component that provides reverse carousel-style animation effects. - - - .. py:attribute:: group - - Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) - - - - .. py:attribute:: hide_on_leave - - Hides the leaving element (no exit animation) - - - - .. py:attribute:: leave_absolute - - Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) - - - - .. py:attribute:: mode - - Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). - - - - .. py:attribute:: origin - - Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). - - diff --git a/docs/autoapi/ipyvuetify/CarouselTransition.rst b/docs/autoapi/ipyvuetify/CarouselTransition.rst deleted file mode 100644 index 4b2a1d83..00000000 --- a/docs/autoapi/ipyvuetify/CarouselTransition.rst +++ /dev/null @@ -1,40 +0,0 @@ -ipyvuetify.CarouselTransition -============================= - -.. py:class:: ipyvuetify.CarouselTransition - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A transition component that provides carousel-style animation effects. - - - .. py:attribute:: group - - Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) - - - - .. py:attribute:: hide_on_leave - - Hides the leaving element (no exit animation) - - - - .. py:attribute:: leave_absolute - - Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) - - - - .. py:attribute:: mode - - Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). - - - - .. py:attribute:: origin - - Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). - - diff --git a/docs/autoapi/ipyvuetify/DataFooter.rst b/docs/autoapi/ipyvuetify/DataFooter.rst deleted file mode 100644 index 64d0f6f0..00000000 --- a/docs/autoapi/ipyvuetify/DataFooter.rst +++ /dev/null @@ -1,94 +0,0 @@ -ipyvuetify.DataFooter -===================== - -.. py:class:: ipyvuetify.DataFooter - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - The footer component for data tables, typically containing pagination controls. - - - .. py:attribute:: disable_items_per_page - - Disables items-per-page dropdown - - - - .. py:attribute:: disable_pagination - - Disables pagination buttons - - - - .. py:attribute:: first_icon - - First icon - - - - .. py:attribute:: items_per_page_all_text - - Text for 'All' option in items-per-page dropdown - - - - .. py:attribute:: items_per_page_options - - Array of options to show in the items-per-page dropdown - - - - .. py:attribute:: items_per_page_text - - Text for items-per-page dropdown - - - - .. py:attribute:: last_icon - - Last icon - - - - .. py:attribute:: next_icon - - Next icon - - - - .. py:attribute:: options - - DataOptions - - - - .. py:attribute:: page_text - - The doc could not be extracted from vuetify API - - - - .. py:attribute:: pagination - - DataPagination - - - - .. py:attribute:: prev_icon - - Previous icon - - - - .. py:attribute:: show_current_page - - Show current page number between prev/next icons - - - - .. py:attribute:: show_first_last_page - - Show first/last icons - - diff --git a/docs/autoapi/ipyvuetify/DataTableHeader.rst b/docs/autoapi/ipyvuetify/DataTableHeader.rst deleted file mode 100644 index b13b5c9c..00000000 --- a/docs/autoapi/ipyvuetify/DataTableHeader.rst +++ /dev/null @@ -1,16 +0,0 @@ -ipyvuetify.DataTableHeader -========================== - -.. py:class:: ipyvuetify.DataTableHeader - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - The header component for data tables containing column headers. - - - .. py:attribute:: mobile - - Renders mobile view of headers - - diff --git a/docs/autoapi/ipyvuetify/DialogBottomTransition.rst b/docs/autoapi/ipyvuetify/DialogBottomTransition.rst deleted file mode 100644 index 7750ad8d..00000000 --- a/docs/autoapi/ipyvuetify/DialogBottomTransition.rst +++ /dev/null @@ -1,40 +0,0 @@ -ipyvuetify.DialogBottomTransition -================================= - -.. py:class:: ipyvuetify.DialogBottomTransition - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A transition component for dialogs that slide from the bottom. - - - .. py:attribute:: group - - Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) - - - - .. py:attribute:: hide_on_leave - - Hides the leaving element (no exit animation) - - - - .. py:attribute:: leave_absolute - - Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) - - - - .. py:attribute:: mode - - Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). - - - - .. py:attribute:: origin - - Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). - - diff --git a/docs/autoapi/ipyvuetify/DialogTransition.rst b/docs/autoapi/ipyvuetify/DialogTransition.rst deleted file mode 100644 index 0ed61e96..00000000 --- a/docs/autoapi/ipyvuetify/DialogTransition.rst +++ /dev/null @@ -1,40 +0,0 @@ -ipyvuetify.DialogTransition -=========================== - -.. py:class:: ipyvuetify.DialogTransition - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A transition component that provides dialog animation effects. - - - .. py:attribute:: group - - Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) - - - - .. py:attribute:: hide_on_leave - - Hides the leaving element (no exit animation) - - - - .. py:attribute:: leave_absolute - - Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) - - - - .. py:attribute:: mode - - Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). - - - - .. py:attribute:: origin - - Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). - - diff --git a/docs/autoapi/ipyvuetify/Divider.rst b/docs/autoapi/ipyvuetify/Divider.rst deleted file mode 100644 index 41346bfb..00000000 --- a/docs/autoapi/ipyvuetify/Divider.rst +++ /dev/null @@ -1,34 +0,0 @@ -ipyvuetify.Divider -================== - -.. py:class:: ipyvuetify.Divider - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - The v-divider component is used to separate sections of lists or layouts with a thin line. - - - .. py:attribute:: dark - - Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). - - - - .. py:attribute:: inset - - Adds indentation (72px) for **normal** dividers, reduces max height for **vertical**. - - - - .. py:attribute:: light - - Applies the light theme variant to the component. - - - - .. py:attribute:: vertical - - Displays dividers vertically - - diff --git a/docs/autoapi/ipyvuetify/EditDialog.rst b/docs/autoapi/ipyvuetify/EditDialog.rst deleted file mode 100644 index a6f8f3f5..00000000 --- a/docs/autoapi/ipyvuetify/EditDialog.rst +++ /dev/null @@ -1,64 +0,0 @@ -ipyvuetify.EditDialog -===================== - -.. py:class:: ipyvuetify.EditDialog - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A dialog component specifically designed for inline editing within data tables. - - - .. py:attribute:: cancel_text - - Sets the default text for the cancel button when using the **large** prop - - - - .. py:attribute:: dark - - Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). - - - - .. py:attribute:: eager - - Will force the components content to render on mounted. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO. - - - - .. py:attribute:: large - - Attaches a submit and cancel button to the dialog - - - - .. py:attribute:: light - - Applies the light theme variant to the component. - - - - .. py:attribute:: persistent - - Clicking outside or pressing **esc** key will not dismiss the dialog - - - - .. py:attribute:: return_value - - The doc could not be extracted from vuetify API - - - - .. py:attribute:: save_text - - Sets the default text for the save button when using the **large** prop - - - - .. py:attribute:: transition - - Sets the component transition. Can be one of the [built in transitions](/styles/transitions) or one your own. - - diff --git a/docs/autoapi/ipyvuetify/ExpandTransition.rst b/docs/autoapi/ipyvuetify/ExpandTransition.rst deleted file mode 100644 index 626ba415..00000000 --- a/docs/autoapi/ipyvuetify/ExpandTransition.rst +++ /dev/null @@ -1,16 +0,0 @@ -ipyvuetify.ExpandTransition -=========================== - -.. py:class:: ipyvuetify.ExpandTransition - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A transition component that provides expand/collapse animation effects. - - - .. py:attribute:: mode - - Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). - - diff --git a/docs/autoapi/ipyvuetify/ExpandXTransition.rst b/docs/autoapi/ipyvuetify/ExpandXTransition.rst deleted file mode 100644 index 83a5fead..00000000 --- a/docs/autoapi/ipyvuetify/ExpandXTransition.rst +++ /dev/null @@ -1,16 +0,0 @@ -ipyvuetify.ExpandXTransition -============================ - -.. py:class:: ipyvuetify.ExpandXTransition - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A transition component that provides horizontal expand/collapse animation effects. - - - .. py:attribute:: mode - - Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). - - diff --git a/docs/autoapi/ipyvuetify/ExpansionPanel.rst b/docs/autoapi/ipyvuetify/ExpansionPanel.rst deleted file mode 100644 index 3b161f8d..00000000 --- a/docs/autoapi/ipyvuetify/ExpansionPanel.rst +++ /dev/null @@ -1,28 +0,0 @@ -ipyvuetify.ExpansionPanel -========================= - -.. py:class:: ipyvuetify.ExpansionPanel - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A single expandable panel within v-expansion-panels that can show or hide content. - - - .. py:attribute:: active_class - - Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation. - - - - .. py:attribute:: disabled - - Disables the expansion-panel content - - - - .. py:attribute:: readonly - - Makes the expansion-panel content read only. - - diff --git a/docs/autoapi/ipyvuetify/ExpansionPanelContent.rst b/docs/autoapi/ipyvuetify/ExpansionPanelContent.rst deleted file mode 100644 index 4b4b72d1..00000000 --- a/docs/autoapi/ipyvuetify/ExpansionPanelContent.rst +++ /dev/null @@ -1,22 +0,0 @@ -ipyvuetify.ExpansionPanelContent -================================ - -.. py:class:: ipyvuetify.ExpansionPanelContent - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - The content area of an expansion panel that is shown when expanded. - - - .. py:attribute:: color - - Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors). - - - - .. py:attribute:: eager - - Will force the components content to render on mounted. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO. - - diff --git a/docs/autoapi/ipyvuetify/FabTransition.rst b/docs/autoapi/ipyvuetify/FabTransition.rst deleted file mode 100644 index 2b43eab4..00000000 --- a/docs/autoapi/ipyvuetify/FabTransition.rst +++ /dev/null @@ -1,40 +0,0 @@ -ipyvuetify.FabTransition -======================== - -.. py:class:: ipyvuetify.FabTransition - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A transition component that provides floating action button animation effects. - - - .. py:attribute:: group - - Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) - - - - .. py:attribute:: hide_on_leave - - Hides the leaving element (no exit animation) - - - - .. py:attribute:: leave_absolute - - Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) - - - - .. py:attribute:: mode - - Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). - - - - .. py:attribute:: origin - - Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). - - diff --git a/docs/autoapi/ipyvuetify/FadeTransition.rst b/docs/autoapi/ipyvuetify/FadeTransition.rst deleted file mode 100644 index e272e861..00000000 --- a/docs/autoapi/ipyvuetify/FadeTransition.rst +++ /dev/null @@ -1,40 +0,0 @@ -ipyvuetify.FadeTransition -========================= - -.. py:class:: ipyvuetify.FadeTransition - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A transition component that provides fade in/out animation effects. - - - .. py:attribute:: group - - Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) - - - - .. py:attribute:: hide_on_leave - - Hides the leaving element (no exit animation) - - - - .. py:attribute:: leave_absolute - - Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) - - - - .. py:attribute:: mode - - Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). - - - - .. py:attribute:: origin - - Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). - - diff --git a/docs/autoapi/ipyvuetify/Form.rst b/docs/autoapi/ipyvuetify/Form.rst deleted file mode 100644 index 1e518738..00000000 --- a/docs/autoapi/ipyvuetify/Form.rst +++ /dev/null @@ -1,22 +0,0 @@ -ipyvuetify.Form -=============== - -.. py:class:: ipyvuetify.Form - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - The v-form component is used to wrap input components and provide validation capabilities for the entire form. - - - .. py:attribute:: lazy_validation - - If enabled, **value** will always be _true_ unless there are visible validation errors. You can still call `validate()` to manually trigger validation - - - - .. py:attribute:: value - - A boolean value representing the validity of the form. - - diff --git a/docs/autoapi/ipyvuetify/Html.rst b/docs/autoapi/ipyvuetify/Html.rst deleted file mode 100644 index b030f515..00000000 --- a/docs/autoapi/ipyvuetify/Html.rst +++ /dev/null @@ -1,17 +0,0 @@ -ipyvuetify.Html -=============== - -.. py:class:: ipyvuetify.Html(**kwargs) - - Bases: :py:obj:`ipyvue.Html` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - diff --git a/docs/autoapi/ipyvuetify/Item.rst b/docs/autoapi/ipyvuetify/Item.rst deleted file mode 100644 index 43b104fb..00000000 --- a/docs/autoapi/ipyvuetify/Item.rst +++ /dev/null @@ -1,28 +0,0 @@ -ipyvuetify.Item -=============== - -.. py:class:: ipyvuetify.Item - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A component used within v-item-group for creating selectable items in a group. - - - .. py:attribute:: active_class - - Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation. - - - - .. py:attribute:: disabled - - Removes the ability to click or target the component. - - - - .. py:attribute:: value - - The value used when the component is selected in a group. If not provided, the index will be used. - - diff --git a/docs/autoapi/ipyvuetify/ListItemAction.rst b/docs/autoapi/ipyvuetify/ListItemAction.rst deleted file mode 100644 index 0dd27dc9..00000000 --- a/docs/autoapi/ipyvuetify/ListItemAction.rst +++ /dev/null @@ -1,10 +0,0 @@ -ipyvuetify.ListItemAction -========================= - -.. py:class:: ipyvuetify.ListItemAction - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - The action area of a list item, typically containing buttons or checkboxes. - diff --git a/docs/autoapi/ipyvuetify/ListItemActionText.rst b/docs/autoapi/ipyvuetify/ListItemActionText.rst deleted file mode 100644 index 7b7c7640..00000000 --- a/docs/autoapi/ipyvuetify/ListItemActionText.rst +++ /dev/null @@ -1,10 +0,0 @@ -ipyvuetify.ListItemActionText -============================= - -.. py:class:: ipyvuetify.ListItemActionText - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - Text content for list item actions. - diff --git a/docs/autoapi/ipyvuetify/ListItemContent.rst b/docs/autoapi/ipyvuetify/ListItemContent.rst deleted file mode 100644 index 329babd2..00000000 --- a/docs/autoapi/ipyvuetify/ListItemContent.rst +++ /dev/null @@ -1,10 +0,0 @@ -ipyvuetify.ListItemContent -========================== - -.. py:class:: ipyvuetify.ListItemContent - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - The main content area of a list item. - diff --git a/docs/autoapi/ipyvuetify/ListItemIcon.rst b/docs/autoapi/ipyvuetify/ListItemIcon.rst deleted file mode 100644 index 4c8a6be9..00000000 --- a/docs/autoapi/ipyvuetify/ListItemIcon.rst +++ /dev/null @@ -1,10 +0,0 @@ -ipyvuetify.ListItemIcon -======================= - -.. py:class:: ipyvuetify.ListItemIcon - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - An icon element within a list item. - diff --git a/docs/autoapi/ipyvuetify/ListItemSubtitle.rst b/docs/autoapi/ipyvuetify/ListItemSubtitle.rst deleted file mode 100644 index a6646a3a..00000000 --- a/docs/autoapi/ipyvuetify/ListItemSubtitle.rst +++ /dev/null @@ -1,10 +0,0 @@ -ipyvuetify.ListItemSubtitle -=========================== - -.. py:class:: ipyvuetify.ListItemSubtitle - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - The subtitle element within a list item. - diff --git a/docs/autoapi/ipyvuetify/ListItemTitle.rst b/docs/autoapi/ipyvuetify/ListItemTitle.rst deleted file mode 100644 index 94c555ed..00000000 --- a/docs/autoapi/ipyvuetify/ListItemTitle.rst +++ /dev/null @@ -1,10 +0,0 @@ -ipyvuetify.ListItemTitle -======================== - -.. py:class:: ipyvuetify.ListItemTitle - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - The title element within a list item. - diff --git a/docs/autoapi/ipyvuetify/MenuTransition.rst b/docs/autoapi/ipyvuetify/MenuTransition.rst deleted file mode 100644 index e84d7985..00000000 --- a/docs/autoapi/ipyvuetify/MenuTransition.rst +++ /dev/null @@ -1,40 +0,0 @@ -ipyvuetify.MenuTransition -========================= - -.. py:class:: ipyvuetify.MenuTransition - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A transition component that provides menu-style animation effects. - - - .. py:attribute:: group - - Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) - - - - .. py:attribute:: hide_on_leave - - Hides the leaving element (no exit animation) - - - - .. py:attribute:: leave_absolute - - Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) - - - - .. py:attribute:: mode - - Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). - - - - .. py:attribute:: origin - - Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). - - diff --git a/docs/autoapi/ipyvuetify/Messages.rst b/docs/autoapi/ipyvuetify/Messages.rst deleted file mode 100644 index 5111fe84..00000000 --- a/docs/autoapi/ipyvuetify/Messages.rst +++ /dev/null @@ -1,34 +0,0 @@ -ipyvuetify.Messages -=================== - -.. py:class:: ipyvuetify.Messages - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A component for displaying multiple messages, typically used for validation feedback. - - - .. py:attribute:: color - - Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors). - - - - .. py:attribute:: dark - - Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). - - - - .. py:attribute:: light - - Applies the light theme variant to the component. - - - - .. py:attribute:: value - - Controls whether the component is visible or hidden. - - diff --git a/docs/autoapi/ipyvuetify/Row.rst b/docs/autoapi/ipyvuetify/Row.rst deleted file mode 100644 index c0a3f6e3..00000000 --- a/docs/autoapi/ipyvuetify/Row.rst +++ /dev/null @@ -1,118 +0,0 @@ -ipyvuetify.Row -============== - -.. py:class:: ipyvuetify.Row - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A row component that contains v-col components for creating responsive grid layouts. - - - .. py:attribute:: align - - Applies the [align-items](https://developer.mozilla.org/en-US/docs/Web/CSS/align-items) css property. Available options are **start**, **center**, **end**, **baseline** and **stretch**. - - - - .. py:attribute:: align_content - - Applies the [align-content](https://developer.mozilla.org/en-US/docs/Web/CSS/align-content) css property. Available options are **start**, **center**, **end**, **space-between**, **space-around** and **stretch**. - - - - .. py:attribute:: align_content_lg - - Changes the **align-content** property on large and greater breakpoints. - - - - .. py:attribute:: align_content_md - - Changes the **align-content** property on medium and greater breakpoints. - - - - .. py:attribute:: align_content_sm - - Changes the **align-content** property on small and greater breakpoints. - - - - .. py:attribute:: align_content_xl - - Changes the **align-content** property on extra large and greater breakpoints. - - - - .. py:attribute:: align_lg - - Changes the **align-items** property on large and greater breakpoints. - - - - .. py:attribute:: align_md - - Changes the **align-items** property on medium and greater breakpoints. - - - - .. py:attribute:: align_sm - - Changes the **align-items** property on small and greater breakpoints. - - - - .. py:attribute:: align_xl - - Changes the **align-items** property on extra large and greater breakpoints. - - - - .. py:attribute:: dense - - Reduces the gutter between `v-col`s. - - - - .. py:attribute:: justify - - Applies the [justify-content](https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content) css property. Available options are **start**, **center**, **end**, **space-between** and **space-around**. - - - - .. py:attribute:: justify_lg - - Changes the **justify-content** property on large and greater breakpoints. - - - - .. py:attribute:: justify_md - - Changes the **justify-content** property on medium and greater breakpoints. - - - - .. py:attribute:: justify_sm - - Changes the **justify-content** property on small and greater breakpoints. - - - - .. py:attribute:: justify_xl - - Changes the **justify-content** property on extra large and greater breakpoints. - - - - .. py:attribute:: no_gutters - - Removes the gutter between `v-col`s. - - - - .. py:attribute:: tag - - Specify a custom tag used on the root element. - - diff --git a/docs/autoapi/ipyvuetify/ScaleTransition.rst b/docs/autoapi/ipyvuetify/ScaleTransition.rst deleted file mode 100644 index 4ef8ecc0..00000000 --- a/docs/autoapi/ipyvuetify/ScaleTransition.rst +++ /dev/null @@ -1,40 +0,0 @@ -ipyvuetify.ScaleTransition -========================== - -.. py:class:: ipyvuetify.ScaleTransition - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A transition component that provides scale animation effects. - - - .. py:attribute:: group - - Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) - - - - .. py:attribute:: hide_on_leave - - Hides the leaving element (no exit animation) - - - - .. py:attribute:: leave_absolute - - Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) - - - - .. py:attribute:: mode - - Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). - - - - .. py:attribute:: origin - - Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). - - diff --git a/docs/autoapi/ipyvuetify/ScrollXReverseTransition.rst b/docs/autoapi/ipyvuetify/ScrollXReverseTransition.rst deleted file mode 100644 index 97bf6a48..00000000 --- a/docs/autoapi/ipyvuetify/ScrollXReverseTransition.rst +++ /dev/null @@ -1,40 +0,0 @@ -ipyvuetify.ScrollXReverseTransition -=================================== - -.. py:class:: ipyvuetify.ScrollXReverseTransition - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A transition component that provides reverse horizontal scroll animation effects. - - - .. py:attribute:: group - - Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) - - - - .. py:attribute:: hide_on_leave - - Hides the leaving element (no exit animation) - - - - .. py:attribute:: leave_absolute - - Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) - - - - .. py:attribute:: mode - - Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). - - - - .. py:attribute:: origin - - Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). - - diff --git a/docs/autoapi/ipyvuetify/ScrollXTransition.rst b/docs/autoapi/ipyvuetify/ScrollXTransition.rst deleted file mode 100644 index d0b83c84..00000000 --- a/docs/autoapi/ipyvuetify/ScrollXTransition.rst +++ /dev/null @@ -1,40 +0,0 @@ -ipyvuetify.ScrollXTransition -============================ - -.. py:class:: ipyvuetify.ScrollXTransition - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A transition component that provides horizontal scroll animation effects. - - - .. py:attribute:: group - - Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) - - - - .. py:attribute:: hide_on_leave - - Hides the leaving element (no exit animation) - - - - .. py:attribute:: leave_absolute - - Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) - - - - .. py:attribute:: mode - - Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). - - - - .. py:attribute:: origin - - Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). - - diff --git a/docs/autoapi/ipyvuetify/ScrollYReverseTransition.rst b/docs/autoapi/ipyvuetify/ScrollYReverseTransition.rst deleted file mode 100644 index 4a73b88b..00000000 --- a/docs/autoapi/ipyvuetify/ScrollYReverseTransition.rst +++ /dev/null @@ -1,40 +0,0 @@ -ipyvuetify.ScrollYReverseTransition -=================================== - -.. py:class:: ipyvuetify.ScrollYReverseTransition - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A transition component that provides reverse vertical scroll animation effects. - - - .. py:attribute:: group - - Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) - - - - .. py:attribute:: hide_on_leave - - Hides the leaving element (no exit animation) - - - - .. py:attribute:: leave_absolute - - Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) - - - - .. py:attribute:: mode - - Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). - - - - .. py:attribute:: origin - - Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). - - diff --git a/docs/autoapi/ipyvuetify/ScrollYTransition.rst b/docs/autoapi/ipyvuetify/ScrollYTransition.rst deleted file mode 100644 index 27b1c459..00000000 --- a/docs/autoapi/ipyvuetify/ScrollYTransition.rst +++ /dev/null @@ -1,40 +0,0 @@ -ipyvuetify.ScrollYTransition -============================ - -.. py:class:: ipyvuetify.ScrollYTransition - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A transition component that provides vertical scroll animation effects. - - - .. py:attribute:: group - - Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) - - - - .. py:attribute:: hide_on_leave - - Hides the leaving element (no exit animation) - - - - .. py:attribute:: leave_absolute - - Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) - - - - .. py:attribute:: mode - - Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). - - - - .. py:attribute:: origin - - Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). - - diff --git a/docs/autoapi/ipyvuetify/SimpleCheckbox.rst b/docs/autoapi/ipyvuetify/SimpleCheckbox.rst deleted file mode 100644 index d20b5b9b..00000000 --- a/docs/autoapi/ipyvuetify/SimpleCheckbox.rst +++ /dev/null @@ -1,70 +0,0 @@ -ipyvuetify.SimpleCheckbox -========================= - -.. py:class:: ipyvuetify.SimpleCheckbox - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A simplified version of v-checkbox with minimal styling, often used in data tables. - - - .. py:attribute:: color - - Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors). - - - - .. py:attribute:: dark - - Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). - - - - .. py:attribute:: disabled - - Disables simple checkbox. - - - - .. py:attribute:: indeterminate - - Sets an indeterminate state for the simple checkbox. - - - - .. py:attribute:: indeterminate_icon - - The icon used when in an indeterminate state. - - - - .. py:attribute:: light - - Applies the light theme variant to the component. - - - - .. py:attribute:: off_icon - - The icon used when inactive. - - - - .. py:attribute:: on_icon - - The icon used when active. - - - - .. py:attribute:: ripple - - Applies the [v-ripple](/directives/ripple) directive. - - - - .. py:attribute:: value - - A boolean value that represents whether the simple checkbox is checked. - - diff --git a/docs/autoapi/ipyvuetify/SlideItem.rst b/docs/autoapi/ipyvuetify/SlideItem.rst deleted file mode 100644 index 52679f77..00000000 --- a/docs/autoapi/ipyvuetify/SlideItem.rst +++ /dev/null @@ -1,28 +0,0 @@ -ipyvuetify.SlideItem -==================== - -.. py:class:: ipyvuetify.SlideItem - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A single item within a v-slide-group component. - - - .. py:attribute:: active_class - - Configure the active CSS class applied when the link is active. You can find more information about the [**active-class** prop](https://router.vuejs.org/api/#active-class) on the vue-router documentation. - - - - .. py:attribute:: disabled - - Removes the ability to click or target the component. - - - - .. py:attribute:: value - - Controls whether the component is visible or hidden. - - diff --git a/docs/autoapi/ipyvuetify/SlideXReverseTransition.rst b/docs/autoapi/ipyvuetify/SlideXReverseTransition.rst deleted file mode 100644 index a3100696..00000000 --- a/docs/autoapi/ipyvuetify/SlideXReverseTransition.rst +++ /dev/null @@ -1,40 +0,0 @@ -ipyvuetify.SlideXReverseTransition -================================== - -.. py:class:: ipyvuetify.SlideXReverseTransition - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A transition component that provides reverse horizontal slide animation effects. - - - .. py:attribute:: group - - Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) - - - - .. py:attribute:: hide_on_leave - - Hides the leaving element (no exit animation) - - - - .. py:attribute:: leave_absolute - - Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) - - - - .. py:attribute:: mode - - Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). - - - - .. py:attribute:: origin - - Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). - - diff --git a/docs/autoapi/ipyvuetify/SlideXTransition.rst b/docs/autoapi/ipyvuetify/SlideXTransition.rst deleted file mode 100644 index 329b5586..00000000 --- a/docs/autoapi/ipyvuetify/SlideXTransition.rst +++ /dev/null @@ -1,40 +0,0 @@ -ipyvuetify.SlideXTransition -=========================== - -.. py:class:: ipyvuetify.SlideXTransition - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A transition component that provides horizontal slide animation effects. - - - .. py:attribute:: group - - Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) - - - - .. py:attribute:: hide_on_leave - - Hides the leaving element (no exit animation) - - - - .. py:attribute:: leave_absolute - - Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) - - - - .. py:attribute:: mode - - Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). - - - - .. py:attribute:: origin - - Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). - - diff --git a/docs/autoapi/ipyvuetify/SlideYReverseTransition.rst b/docs/autoapi/ipyvuetify/SlideYReverseTransition.rst deleted file mode 100644 index 51fdafbc..00000000 --- a/docs/autoapi/ipyvuetify/SlideYReverseTransition.rst +++ /dev/null @@ -1,40 +0,0 @@ -ipyvuetify.SlideYReverseTransition -================================== - -.. py:class:: ipyvuetify.SlideYReverseTransition - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A transition component that provides reverse vertical slide animation effects. - - - .. py:attribute:: group - - Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) - - - - .. py:attribute:: hide_on_leave - - Hides the leaving element (no exit animation) - - - - .. py:attribute:: leave_absolute - - Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) - - - - .. py:attribute:: mode - - Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). - - - - .. py:attribute:: origin - - Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). - - diff --git a/docs/autoapi/ipyvuetify/SlideYTransition.rst b/docs/autoapi/ipyvuetify/SlideYTransition.rst deleted file mode 100644 index f4e375b7..00000000 --- a/docs/autoapi/ipyvuetify/SlideYTransition.rst +++ /dev/null @@ -1,40 +0,0 @@ -ipyvuetify.SlideYTransition -=========================== - -.. py:class:: ipyvuetify.SlideYTransition - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A transition component that provides vertical slide animation effects. - - - .. py:attribute:: group - - Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) - - - - .. py:attribute:: hide_on_leave - - Hides the leaving element (no exit animation) - - - - .. py:attribute:: leave_absolute - - Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) - - - - .. py:attribute:: mode - - Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). - - - - .. py:attribute:: origin - - Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). - - diff --git a/docs/autoapi/ipyvuetify/Snackbar.rst b/docs/autoapi/ipyvuetify/Snackbar.rst deleted file mode 100644 index 1dedf4e3..00000000 --- a/docs/autoapi/ipyvuetify/Snackbar.rst +++ /dev/null @@ -1,70 +0,0 @@ -ipyvuetify.Snackbar -=================== - -.. py:class:: ipyvuetify.Snackbar - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - The v-snackbar component displays brief messages at the bottom of the screen, typically for user notifications. - - - .. py:attribute:: absolute - - Applies **position: absolute** to the component. - - - - .. py:attribute:: bottom - - Aligns the component towards the bottom. - - - - .. py:attribute:: color - - Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors). - - - - .. py:attribute:: left - - Aligns the component towards the left. - - - - .. py:attribute:: multi_line - - Gives the snackbar a larger minimum height. - - - - .. py:attribute:: right - - Aligns the component towards the right. - - - - .. py:attribute:: timeout - - Time (in milliseconds) to wait until snackbar is automatically hidden. Use `-1` to keep open indefinitely (`0` in version < 2.3 ). It is recommended for this number to be between `4000` and `10000`. Changes to this property will reset the timeout. - - - - .. py:attribute:: top - - Aligns the content towards the top. - - - - .. py:attribute:: value - - Controls whether the component is visible or hidden. - - - - .. py:attribute:: vertical - - Stacks snackbar content on top of the actions (button). - - diff --git a/docs/autoapi/ipyvuetify/Spacer.rst b/docs/autoapi/ipyvuetify/Spacer.rst deleted file mode 100644 index 2bcc11b8..00000000 --- a/docs/autoapi/ipyvuetify/Spacer.rst +++ /dev/null @@ -1,10 +0,0 @@ -ipyvuetify.Spacer -================= - -.. py:class:: ipyvuetify.Spacer - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A flex spacer component that fills available space between other elements. - diff --git a/docs/autoapi/ipyvuetify/SpeedDial.rst b/docs/autoapi/ipyvuetify/SpeedDial.rst deleted file mode 100644 index 921954a6..00000000 --- a/docs/autoapi/ipyvuetify/SpeedDial.rst +++ /dev/null @@ -1,82 +0,0 @@ -ipyvuetify.SpeedDial -==================== - -.. py:class:: ipyvuetify.SpeedDial - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - The v-speed-dial component displays a floating action button that reveals related actions when activated. - - - .. py:attribute:: absolute - - Applies **position: absolute** to the component. - - - - .. py:attribute:: bottom - - Aligns the component towards the bottom. - - - - .. py:attribute:: direction - - Direction in which speed-dial content will show. Possible values are `top`, `bottom`, `left`, `right`. - - - - .. py:attribute:: fixed - - Applies **position: fixed** to the component. - - - - .. py:attribute:: left - - Aligns the component towards the left. - - - - .. py:attribute:: mode - - Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). - - - - .. py:attribute:: open_on_hover - - Opens speed-dial on hover - - - - .. py:attribute:: origin - - Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). - - - - .. py:attribute:: right - - Aligns the component towards the right. - - - - .. py:attribute:: top - - Aligns the content towards the top. - - - - .. py:attribute:: transition - - Sets the component transition. Can be one of the [built in transitions](/styles/transitions) or one your own. - - - - .. py:attribute:: value - - Controls whether the component is visible or hidden. - - diff --git a/docs/autoapi/ipyvuetify/Stepper.rst b/docs/autoapi/ipyvuetify/Stepper.rst deleted file mode 100644 index 33f1d0c3..00000000 --- a/docs/autoapi/ipyvuetify/Stepper.rst +++ /dev/null @@ -1,46 +0,0 @@ -ipyvuetify.Stepper -================== - -.. py:class:: ipyvuetify.Stepper - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - The v-stepper component displays progress through numbered steps, commonly used for multi-step processes. - - - .. py:attribute:: alt_labels - - Places the labels beneath the step - - - - .. py:attribute:: dark - - Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). - - - - .. py:attribute:: light - - Applies the light theme variant to the component. - - - - .. py:attribute:: non_linear - - Allow user to jump to any step - - - - .. py:attribute:: value - - Controls whether the component is visible or hidden. - - - - .. py:attribute:: vertical - - Display steps vertically - - diff --git a/docs/autoapi/ipyvuetify/StepperHeader.rst b/docs/autoapi/ipyvuetify/StepperHeader.rst deleted file mode 100644 index 6cc452a0..00000000 --- a/docs/autoapi/ipyvuetify/StepperHeader.rst +++ /dev/null @@ -1,10 +0,0 @@ -ipyvuetify.StepperHeader -======================== - -.. py:class:: ipyvuetify.StepperHeader - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - The header area of a stepper containing all step indicators. - diff --git a/docs/autoapi/ipyvuetify/StepperItems.rst b/docs/autoapi/ipyvuetify/StepperItems.rst deleted file mode 100644 index 4c614c6f..00000000 --- a/docs/autoapi/ipyvuetify/StepperItems.rst +++ /dev/null @@ -1,10 +0,0 @@ -ipyvuetify.StepperItems -======================= - -.. py:class:: ipyvuetify.StepperItems - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A container for stepper content areas. - diff --git a/docs/autoapi/ipyvuetify/Subheader.rst b/docs/autoapi/ipyvuetify/Subheader.rst deleted file mode 100644 index 801a85e4..00000000 --- a/docs/autoapi/ipyvuetify/Subheader.rst +++ /dev/null @@ -1,28 +0,0 @@ -ipyvuetify.Subheader -==================== - -.. py:class:: ipyvuetify.Subheader - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - The v-subheader component is used to separate sections of lists or content with text headings. - - - .. py:attribute:: dark - - Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). - - - - .. py:attribute:: inset - - Adds indentation (72px) - - - - .. py:attribute:: light - - Applies the light theme variant to the component. - - diff --git a/docs/autoapi/ipyvuetify/TabReverseTransition.rst b/docs/autoapi/ipyvuetify/TabReverseTransition.rst deleted file mode 100644 index d9aaf17b..00000000 --- a/docs/autoapi/ipyvuetify/TabReverseTransition.rst +++ /dev/null @@ -1,40 +0,0 @@ -ipyvuetify.TabReverseTransition -=============================== - -.. py:class:: ipyvuetify.TabReverseTransition - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A transition component that provides reverse tab-style animation effects. - - - .. py:attribute:: group - - Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) - - - - .. py:attribute:: hide_on_leave - - Hides the leaving element (no exit animation) - - - - .. py:attribute:: leave_absolute - - Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) - - - - .. py:attribute:: mode - - Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). - - - - .. py:attribute:: origin - - Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). - - diff --git a/docs/autoapi/ipyvuetify/TabTransition.rst b/docs/autoapi/ipyvuetify/TabTransition.rst deleted file mode 100644 index cf0e351f..00000000 --- a/docs/autoapi/ipyvuetify/TabTransition.rst +++ /dev/null @@ -1,40 +0,0 @@ -ipyvuetify.TabTransition -======================== - -.. py:class:: ipyvuetify.TabTransition - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A transition component that provides tab-style animation effects. - - - .. py:attribute:: group - - Creates a `transition-group` component. [vue docs](https://vuejs.org/v2/api/#transition-group) - - - - .. py:attribute:: hide_on_leave - - Hides the leaving element (no exit animation) - - - - .. py:attribute:: leave_absolute - - Absolutely positions the leaving element (useful for [FLIP](https://aerotwist.com/blog/flip-your-animations/)) - - - - .. py:attribute:: mode - - Sets the transition mode (does not apply to transition-group). You can find more information on the Vue documentation [for transition modes](https://vuejs.org/v2/api/#transition). - - - - .. py:attribute:: origin - - Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin). - - diff --git a/docs/autoapi/ipyvuetify/TableOverflow.rst b/docs/autoapi/ipyvuetify/TableOverflow.rst deleted file mode 100644 index 58adc59e..00000000 --- a/docs/autoapi/ipyvuetify/TableOverflow.rst +++ /dev/null @@ -1,10 +0,0 @@ -ipyvuetify.TableOverflow -======================== - -.. py:class:: ipyvuetify.TableOverflow - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A component that handles overflow behavior in tables. - diff --git a/docs/autoapi/ipyvuetify/TabsSlider.rst b/docs/autoapi/ipyvuetify/TabsSlider.rst deleted file mode 100644 index 4f9423d6..00000000 --- a/docs/autoapi/ipyvuetify/TabsSlider.rst +++ /dev/null @@ -1,16 +0,0 @@ -ipyvuetify.TabsSlider -===================== - -.. py:class:: ipyvuetify.TabsSlider - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A sliding indicator that shows which tab is currently active. - - - .. py:attribute:: color - - Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors). - - diff --git a/docs/autoapi/ipyvuetify/ThemeProvider.rst b/docs/autoapi/ipyvuetify/ThemeProvider.rst deleted file mode 100644 index 889fbc86..00000000 --- a/docs/autoapi/ipyvuetify/ThemeProvider.rst +++ /dev/null @@ -1,28 +0,0 @@ -ipyvuetify.ThemeProvider -======================== - -.. py:class:: ipyvuetify.ThemeProvider - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - The v-theme-provider component allows you to dynamically change theme (light/dark) for its children. - - - .. py:attribute:: dark - - Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). - - - - .. py:attribute:: light - - Applies the light theme variant to the component. - - - - .. py:attribute:: root - - Use the current value of `$vuetify.theme.dark` as opposed to the provided one. - - diff --git a/docs/autoapi/ipyvuetify/Themes/index.rst b/docs/autoapi/ipyvuetify/Themes/index.rst deleted file mode 100644 index aaf807b0..00000000 --- a/docs/autoapi/ipyvuetify/Themes/index.rst +++ /dev/null @@ -1,19 +0,0 @@ -ipyvuetify.Themes -================= - -.. py:module:: ipyvuetify.Themes - - -Attributes ----------- - -.. autoapisummary:: - - ipyvuetify.Themes.theme - - -Module Contents ---------------- - -.. py:data:: theme - diff --git a/docs/autoapi/ipyvuetify/TimePickerClock.rst b/docs/autoapi/ipyvuetify/TimePickerClock.rst deleted file mode 100644 index 86906712..00000000 --- a/docs/autoapi/ipyvuetify/TimePickerClock.rst +++ /dev/null @@ -1,88 +0,0 @@ -ipyvuetify.TimePickerClock -========================== - -.. py:class:: ipyvuetify.TimePickerClock - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - The clock face interface of the time picker. - - - .. py:attribute:: ampm - - The doc could not be extracted from vuetify API - - - - .. py:attribute:: color - - Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors). - - - - .. py:attribute:: dark - - Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). - - - - .. py:attribute:: disabled - - Removes the ability to click or target the component. - - - - .. py:attribute:: double - - The doc could not be extracted from vuetify API - - - - .. py:attribute:: light - - Applies the light theme variant to the component. - - - - .. py:attribute:: max - - Sets a maximum number of selections that can be made. - - - - .. py:attribute:: min - - The doc could not be extracted from vuetify API - - - - .. py:attribute:: readonly - - Puts input in readonly state - - - - .. py:attribute:: rotate - - The doc could not be extracted from vuetify API - - - - .. py:attribute:: scrollable - - Allows the use of the mouse wheel in the picker - - - - .. py:attribute:: step - - The doc could not be extracted from vuetify API - - - - .. py:attribute:: value - - Controls whether the component is visible or hidden. - - diff --git a/docs/autoapi/ipyvuetify/TimePickerTitle.rst b/docs/autoapi/ipyvuetify/TimePickerTitle.rst deleted file mode 100644 index 7e3ba379..00000000 --- a/docs/autoapi/ipyvuetify/TimePickerTitle.rst +++ /dev/null @@ -1,76 +0,0 @@ -ipyvuetify.TimePickerTitle -========================== - -.. py:class:: ipyvuetify.TimePickerTitle - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - The title/display area of the time picker showing the selected time. - - - .. py:attribute:: ampm - - The doc could not be extracted from vuetify API - - - - .. py:attribute:: ampm_readonly - - The doc could not be extracted from vuetify API - - - - .. py:attribute:: color - - Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors). - - - - .. py:attribute:: disabled - - Removes the ability to click or target the component. - - - - .. py:attribute:: hour - - The doc could not be extracted from vuetify API - - - - .. py:attribute:: minute - - The doc could not be extracted from vuetify API - - - - .. py:attribute:: period - - The doc could not be extracted from vuetify API - - - - .. py:attribute:: readonly - - Puts input in readonly state - - - - .. py:attribute:: second - - The doc could not be extracted from vuetify API - - - - .. py:attribute:: selecting - - The doc could not be extracted from vuetify API - - - - .. py:attribute:: use_seconds - - The doc could not be extracted from vuetify API - - diff --git a/docs/autoapi/ipyvuetify/Timeline.rst b/docs/autoapi/ipyvuetify/Timeline.rst deleted file mode 100644 index 574e95c7..00000000 --- a/docs/autoapi/ipyvuetify/Timeline.rst +++ /dev/null @@ -1,40 +0,0 @@ -ipyvuetify.Timeline -=================== - -.. py:class:: ipyvuetify.Timeline - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - The v-timeline component displays a list of events in chronological order along a vertical line. - - - .. py:attribute:: align_top - - Align caret and dot of timeline items to the top - - - - .. py:attribute:: dark - - Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). - - - - .. py:attribute:: dense - - Hide opposite slot content, and position all items to one side of timeline - - - - .. py:attribute:: light - - Applies the light theme variant to the component. - - - - .. py:attribute:: reverse - - Reverse direction of timeline items - - diff --git a/docs/autoapi/ipyvuetify/TimelineItem.rst b/docs/autoapi/ipyvuetify/TimelineItem.rst deleted file mode 100644 index 3bd20e40..00000000 --- a/docs/autoapi/ipyvuetify/TimelineItem.rst +++ /dev/null @@ -1,76 +0,0 @@ -ipyvuetify.TimelineItem -======================= - -.. py:class:: ipyvuetify.TimelineItem - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A single event item within a v-timeline component. - - - .. py:attribute:: color - - Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors). - - - - .. py:attribute:: dark - - Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). - - - - .. py:attribute:: fill_dot - - Remove padding from dot container - - - - .. py:attribute:: hide_dot - - Hide display of timeline dot - - - - .. py:attribute:: icon - - Specify icon for dot container - - - - .. py:attribute:: icon_color - - Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors). - - - - .. py:attribute:: large - - Large size dot - - - - .. py:attribute:: left - - Explicitly set the item to a left orientation - - - - .. py:attribute:: light - - Applies the light theme variant to the component. - - - - .. py:attribute:: right - - Explicitly set the item to a right orientation - - - - .. py:attribute:: small - - Small size dot - - diff --git a/docs/autoapi/ipyvuetify/ToolbarItems.rst b/docs/autoapi/ipyvuetify/ToolbarItems.rst deleted file mode 100644 index 5be60cc1..00000000 --- a/docs/autoapi/ipyvuetify/ToolbarItems.rst +++ /dev/null @@ -1,10 +0,0 @@ -ipyvuetify.ToolbarItems -======================= - -.. py:class:: ipyvuetify.ToolbarItems - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A container for toolbar items that provides proper spacing. - diff --git a/docs/autoapi/ipyvuetify/ToolbarTitle.rst b/docs/autoapi/ipyvuetify/ToolbarTitle.rst deleted file mode 100644 index ab433274..00000000 --- a/docs/autoapi/ipyvuetify/ToolbarTitle.rst +++ /dev/null @@ -1,10 +0,0 @@ -ipyvuetify.ToolbarTitle -======================= - -.. py:class:: ipyvuetify.ToolbarTitle - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - The title element of a toolbar. - diff --git a/docs/autoapi/ipyvuetify/Treeview.rst b/docs/autoapi/ipyvuetify/Treeview.rst deleted file mode 100644 index f8509f9f..00000000 --- a/docs/autoapi/ipyvuetify/Treeview.rst +++ /dev/null @@ -1,196 +0,0 @@ -ipyvuetify.Treeview -=================== - -.. py:class:: ipyvuetify.Treeview - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - The v-treeview component displays hierarchical data in a tree structure with expand/collapse functionality. - - - .. py:attribute:: activatable - - Allows user to mark a node as active by clicking on it - - - - .. py:attribute:: active - - Syncable prop that allows one to control which nodes are active. The array consists of the `item-key` of each active item. - - - - .. py:attribute:: active_class - - The class applied to the node when active - - - - .. py:attribute:: color - - Sets the color of the active node - - - - .. py:attribute:: dark - - Applies the dark theme variant to the component. You can find more information on the Material Design documentation for [dark themes](https://material.io/design/color/dark-theme.html). - - - - .. py:attribute:: dense - - Decreases the height of the items - - - - .. py:attribute:: expand_icon - - Icon used to indicate that a node can be expanded - - - - .. py:attribute:: hoverable - - Applies a hover class when mousing over nodes - - - - .. py:attribute:: indeterminate_icon - - Icon used when node is in an indeterminate state. Only visible when `selectable` is `true`. - - - - .. py:attribute:: item_children - - Property on supplied `items` that contains its children - - - - .. py:attribute:: item_disabled - - Property on supplied `items` that contains the disabled state of the item - - - - .. py:attribute:: item_key - - Property on supplied `items` used to keep track of node state. The value of this property has to be unique among all items. - - - - .. py:attribute:: item_text - - Property on supplied `items` that contains its label text - - - - .. py:attribute:: items - - An array of items used to build the treeview - - - - .. py:attribute:: light - - Applies the light theme variant to the component. - - - - .. py:attribute:: loading_icon - - Icon used when node is in a loading state - - - - .. py:attribute:: multiple_active - - When `true`, allows user to have multiple active nodes at the same time - - - - .. py:attribute:: off_icon - - Icon used when node is not selected. Only visible when `selectable` is `true`. - - - - .. py:attribute:: on_icon - - Icon used when leaf node is selected or when a branch node is fully selected. Only visible when `selectable` is `true`. - - - - .. py:attribute:: open_ - - Syncable prop that allows one to control which nodes are open. The array consists of the `item-key` of each open item. - - - - .. py:attribute:: open_all - - When `true` will cause all branch nodes to be opened when component is mounted - - - - .. py:attribute:: open_on_click - - When `true` will cause nodes to be opened by clicking anywhere on it, instead of only opening by clicking on expand icon. When using this prop with `activatable` you will be unable to mark nodes with children as active. - - - - .. py:attribute:: return_object - - When `true` will make `v-model`, `active.sync` and `open.sync` return the complete object instead of just the key - - - - .. py:attribute:: rounded - - Provides an alternative active style for `v-treeview` node. Only visible when `activatable` is `true` and should not be used in conjunction with the `shaped` prop. - - - - .. py:attribute:: search - - The search model for filtering results - - - - .. py:attribute:: selectable - - Will render a checkbox next to each node allowing them to be selected - - - - .. py:attribute:: selected_color - - The color of the selection checkbox - - - - .. py:attribute:: selection_type - - Controls how the treeview selects nodes. There are two modes available: 'leaf' and 'independent' - - - - .. py:attribute:: shaped - - Provides an alternative active style for `v-treeview` node. Only visible when `activatable` is `true` and should not be used in conjunction with the `rounded` prop. - - - - .. py:attribute:: transition - - Applies a transition when nodes are opened and closed - - - - .. py:attribute:: value - - Allows one to control which nodes are selected. The array consists of the `item-key` of each selected item. Is used with `@input` event to allow for `v-model` binding. - - diff --git a/docs/autoapi/ipyvuetify/TreeviewNode.rst b/docs/autoapi/ipyvuetify/TreeviewNode.rst deleted file mode 100644 index 11367338..00000000 --- a/docs/autoapi/ipyvuetify/TreeviewNode.rst +++ /dev/null @@ -1,130 +0,0 @@ -ipyvuetify.TreeviewNode -======================= - -.. py:class:: ipyvuetify.TreeviewNode - - Bases: :py:obj:`ipyvuetify.generated.VuetifyWidget.VuetifyWidget` - - - A single node within a v-treeview component. - - - .. py:attribute:: activatable - - Allows user to mark a node as active by clicking on it - - - - .. py:attribute:: active_class - - The class applied to the node when active - - - - .. py:attribute:: color - - Applies specified color to the control - it can be the name of material color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). You can find a list of built-in classes on the [colors page](/styles/colors#material-colors). - - - - .. py:attribute:: expand_icon - - Icon used to indicate that a node can be expanded - - - - .. py:attribute:: indeterminate_icon - - Icon used when node is in an indeterminate state. Only visible when `selectable` is `true`. - - - - .. py:attribute:: item - - Item object used to build the node - - - - .. py:attribute:: item_children - - Property on supplied `items` that contains its children - - - - .. py:attribute:: item_disabled - - Property on supplied `items` that contains the disabled state of the item - - - - .. py:attribute:: item_key - - Property on supplied `items` used to keep track of node state. The value of this property has to be unique among all items. - - - - .. py:attribute:: item_text - - Property on supplied `items` that contains its label text - - - - .. py:attribute:: level - - Property designating how deep the node is from the root of the treeview - - - - .. py:attribute:: loading_icon - - Icon used when node is in a loading state - - - - .. py:attribute:: off_icon - - Icon used when node is not selected. Only visible when `selectable` is `true`. - - - - .. py:attribute:: on_icon - - Icon used when leaf node is selected or when a branch node is fully selected. Only visible when `selectable` is `true`. - - - - .. py:attribute:: open_on_click - - When `true` will cause nodes to be opened by clicking anywhere on it, instead of only opening by clicking on expand icon. When using this prop with `activatable` you will be unable to mark nodes with children as active. - - - - .. py:attribute:: rounded - - Provides an alternative active style for `v-treeview` node. Only visible when `activatable` is `true` and should not be used in conjunction with the `shaped` prop. - - - - .. py:attribute:: selectable - - Will render a checkbox next to each node allowing them to be selected - - - - .. py:attribute:: selected_color - - The color of the selection checkbox - - - - .. py:attribute:: shaped - - Provides an alternative active style for `v-treeview` node. Only visible when `activatable` is `true` and should not be used in conjunction with the `rounded` prop. - - - - .. py:attribute:: transition - - Applies a transition when nodes are opened and closed - - diff --git a/docs/autoapi/ipyvuetify/VuetifyTemplate.rst b/docs/autoapi/ipyvuetify/VuetifyTemplate.rst deleted file mode 100644 index 3ed4b284..00000000 --- a/docs/autoapi/ipyvuetify/VuetifyTemplate.rst +++ /dev/null @@ -1,17 +0,0 @@ -ipyvuetify.VuetifyTemplate -========================== - -.. py:class:: ipyvuetify.VuetifyTemplate(*args, **kwargs) - - Bases: :py:obj:`ipyvue.VueTemplate` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - diff --git a/docs/autoapi/ipyvuetify/components/Alert.rst b/docs/autoapi/ipyvuetify/components/Alert.rst deleted file mode 100644 index 7e6177f2..00000000 --- a/docs/autoapi/ipyvuetify/components/Alert.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Alert -=========================== - -.. py:function:: ipyvuetify.components.Alert(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/App.rst b/docs/autoapi/ipyvuetify/components/App.rst deleted file mode 100644 index 4612a38e..00000000 --- a/docs/autoapi/ipyvuetify/components/App.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.App -========================= - -.. py:function:: ipyvuetify.components.App(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/AppBar.rst b/docs/autoapi/ipyvuetify/components/AppBar.rst deleted file mode 100644 index bae1c559..00000000 --- a/docs/autoapi/ipyvuetify/components/AppBar.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.AppBar -============================ - -.. py:function:: ipyvuetify.components.AppBar(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/AppBarNavIcon.rst b/docs/autoapi/ipyvuetify/components/AppBarNavIcon.rst deleted file mode 100644 index aa8612a1..00000000 --- a/docs/autoapi/ipyvuetify/components/AppBarNavIcon.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.AppBarNavIcon -=================================== - -.. py:function:: ipyvuetify.components.AppBarNavIcon(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Autocomplete.rst b/docs/autoapi/ipyvuetify/components/Autocomplete.rst deleted file mode 100644 index f2aae94c..00000000 --- a/docs/autoapi/ipyvuetify/components/Autocomplete.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Autocomplete -================================== - -.. py:function:: ipyvuetify.components.Autocomplete(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Avatar.rst b/docs/autoapi/ipyvuetify/components/Avatar.rst deleted file mode 100644 index 58f892ae..00000000 --- a/docs/autoapi/ipyvuetify/components/Avatar.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Avatar -============================ - -.. py:function:: ipyvuetify.components.Avatar(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Badge.rst b/docs/autoapi/ipyvuetify/components/Badge.rst deleted file mode 100644 index 60c77491..00000000 --- a/docs/autoapi/ipyvuetify/components/Badge.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Badge -=========================== - -.. py:function:: ipyvuetify.components.Badge(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Banner.rst b/docs/autoapi/ipyvuetify/components/Banner.rst deleted file mode 100644 index a25b0bd3..00000000 --- a/docs/autoapi/ipyvuetify/components/Banner.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Banner -============================ - -.. py:function:: ipyvuetify.components.Banner(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/BottomNavigation.rst b/docs/autoapi/ipyvuetify/components/BottomNavigation.rst deleted file mode 100644 index dac4776f..00000000 --- a/docs/autoapi/ipyvuetify/components/BottomNavigation.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.BottomNavigation -====================================== - -.. py:function:: ipyvuetify.components.BottomNavigation(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/BottomSheet.rst b/docs/autoapi/ipyvuetify/components/BottomSheet.rst deleted file mode 100644 index 91e9c02f..00000000 --- a/docs/autoapi/ipyvuetify/components/BottomSheet.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.BottomSheet -================================= - -.. py:function:: ipyvuetify.components.BottomSheet(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Breadcrumbs.rst b/docs/autoapi/ipyvuetify/components/Breadcrumbs.rst deleted file mode 100644 index 751e222a..00000000 --- a/docs/autoapi/ipyvuetify/components/Breadcrumbs.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Breadcrumbs -================================= - -.. py:function:: ipyvuetify.components.Breadcrumbs(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/BreadcrumbsDivider.rst b/docs/autoapi/ipyvuetify/components/BreadcrumbsDivider.rst deleted file mode 100644 index b0536502..00000000 --- a/docs/autoapi/ipyvuetify/components/BreadcrumbsDivider.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.BreadcrumbsDivider -======================================== - -.. py:function:: ipyvuetify.components.BreadcrumbsDivider(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/BreadcrumbsItem.rst b/docs/autoapi/ipyvuetify/components/BreadcrumbsItem.rst deleted file mode 100644 index 0d0717c2..00000000 --- a/docs/autoapi/ipyvuetify/components/BreadcrumbsItem.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.BreadcrumbsItem -===================================== - -.. py:function:: ipyvuetify.components.BreadcrumbsItem(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Btn.rst b/docs/autoapi/ipyvuetify/components/Btn.rst deleted file mode 100644 index b8a31666..00000000 --- a/docs/autoapi/ipyvuetify/components/Btn.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Btn -========================= - -.. py:function:: ipyvuetify.components.Btn(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/BtnToggle.rst b/docs/autoapi/ipyvuetify/components/BtnToggle.rst deleted file mode 100644 index cfe94d54..00000000 --- a/docs/autoapi/ipyvuetify/components/BtnToggle.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.BtnToggle -=============================== - -.. py:function:: ipyvuetify.components.BtnToggle(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Calendar.rst b/docs/autoapi/ipyvuetify/components/Calendar.rst deleted file mode 100644 index a076811b..00000000 --- a/docs/autoapi/ipyvuetify/components/Calendar.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Calendar -============================== - -.. py:function:: ipyvuetify.components.Calendar(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/CalendarDaily.rst b/docs/autoapi/ipyvuetify/components/CalendarDaily.rst deleted file mode 100644 index 23876fff..00000000 --- a/docs/autoapi/ipyvuetify/components/CalendarDaily.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.CalendarDaily -=================================== - -.. py:function:: ipyvuetify.components.CalendarDaily(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/CalendarMonthly.rst b/docs/autoapi/ipyvuetify/components/CalendarMonthly.rst deleted file mode 100644 index 5518391f..00000000 --- a/docs/autoapi/ipyvuetify/components/CalendarMonthly.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.CalendarMonthly -===================================== - -.. py:function:: ipyvuetify.components.CalendarMonthly(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/CalendarWeekly.rst b/docs/autoapi/ipyvuetify/components/CalendarWeekly.rst deleted file mode 100644 index 4f4b6d03..00000000 --- a/docs/autoapi/ipyvuetify/components/CalendarWeekly.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.CalendarWeekly -==================================== - -.. py:function:: ipyvuetify.components.CalendarWeekly(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Card.rst b/docs/autoapi/ipyvuetify/components/Card.rst deleted file mode 100644 index 688c601d..00000000 --- a/docs/autoapi/ipyvuetify/components/Card.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Card -========================== - -.. py:function:: ipyvuetify.components.Card(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/CardActions.rst b/docs/autoapi/ipyvuetify/components/CardActions.rst deleted file mode 100644 index 6ff9726a..00000000 --- a/docs/autoapi/ipyvuetify/components/CardActions.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.CardActions -================================= - -.. py:function:: ipyvuetify.components.CardActions(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/CardSubtitle.rst b/docs/autoapi/ipyvuetify/components/CardSubtitle.rst deleted file mode 100644 index a6f3cd81..00000000 --- a/docs/autoapi/ipyvuetify/components/CardSubtitle.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.CardSubtitle -================================== - -.. py:function:: ipyvuetify.components.CardSubtitle(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/CardText.rst b/docs/autoapi/ipyvuetify/components/CardText.rst deleted file mode 100644 index dde1b023..00000000 --- a/docs/autoapi/ipyvuetify/components/CardText.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.CardText -============================== - -.. py:function:: ipyvuetify.components.CardText(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/CardTitle.rst b/docs/autoapi/ipyvuetify/components/CardTitle.rst deleted file mode 100644 index c22e04df..00000000 --- a/docs/autoapi/ipyvuetify/components/CardTitle.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.CardTitle -=============================== - -.. py:function:: ipyvuetify.components.CardTitle(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Carousel.rst b/docs/autoapi/ipyvuetify/components/Carousel.rst deleted file mode 100644 index b972a217..00000000 --- a/docs/autoapi/ipyvuetify/components/Carousel.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Carousel -============================== - -.. py:function:: ipyvuetify.components.Carousel(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/CarouselItem.rst b/docs/autoapi/ipyvuetify/components/CarouselItem.rst deleted file mode 100644 index 039509dd..00000000 --- a/docs/autoapi/ipyvuetify/components/CarouselItem.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.CarouselItem -================================== - -.. py:function:: ipyvuetify.components.CarouselItem(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/CarouselReverseTransition.rst b/docs/autoapi/ipyvuetify/components/CarouselReverseTransition.rst deleted file mode 100644 index cfcc3312..00000000 --- a/docs/autoapi/ipyvuetify/components/CarouselReverseTransition.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.CarouselReverseTransition -=============================================== - -.. py:function:: ipyvuetify.components.CarouselReverseTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/CarouselTransition.rst b/docs/autoapi/ipyvuetify/components/CarouselTransition.rst deleted file mode 100644 index 6c778efd..00000000 --- a/docs/autoapi/ipyvuetify/components/CarouselTransition.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.CarouselTransition -======================================== - -.. py:function:: ipyvuetify.components.CarouselTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Checkbox.rst b/docs/autoapi/ipyvuetify/components/Checkbox.rst deleted file mode 100644 index 4dc9f315..00000000 --- a/docs/autoapi/ipyvuetify/components/Checkbox.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Checkbox -============================== - -.. py:function:: ipyvuetify.components.Checkbox(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Chip.rst b/docs/autoapi/ipyvuetify/components/Chip.rst deleted file mode 100644 index 159390df..00000000 --- a/docs/autoapi/ipyvuetify/components/Chip.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Chip -========================== - -.. py:function:: ipyvuetify.components.Chip(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ChipGroup.rst b/docs/autoapi/ipyvuetify/components/ChipGroup.rst deleted file mode 100644 index 940fd879..00000000 --- a/docs/autoapi/ipyvuetify/components/ChipGroup.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ChipGroup -=============================== - -.. py:function:: ipyvuetify.components.ChipGroup(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/CodeGen.has_callback.rst b/docs/autoapi/ipyvuetify/components/CodeGen.has_callback.rst deleted file mode 100644 index e1432b3d..00000000 --- a/docs/autoapi/ipyvuetify/components/CodeGen.has_callback.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.CodeGen.has_callback -========================================== - -.. py:method:: ipyvuetify.components.CodeGen.has_callback(cls, name) diff --git a/docs/autoapi/ipyvuetify/components/CodeGen.rst b/docs/autoapi/ipyvuetify/components/CodeGen.rst deleted file mode 100644 index 2f99f923..00000000 --- a/docs/autoapi/ipyvuetify/components/CodeGen.rst +++ /dev/null @@ -1,20 +0,0 @@ -ipyvuetify.components.CodeGen -============================= - -.. toctree:: - :hidden: - - /autoapi/ipyvuetify/components/CodeGen.has_callback - -.. py:class:: ipyvuetify.components.CodeGen - - Bases: :py:obj:`reacton.generate.CodeGen` - -Methods -------- - -.. autoapisummary:: - - ipyvuetify.components.CodeGen.has_callback - - diff --git a/docs/autoapi/ipyvuetify/components/Col.rst b/docs/autoapi/ipyvuetify/components/Col.rst deleted file mode 100644 index a62da73f..00000000 --- a/docs/autoapi/ipyvuetify/components/Col.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Col -========================= - -.. py:function:: ipyvuetify.components.Col(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ColorPicker.rst b/docs/autoapi/ipyvuetify/components/ColorPicker.rst deleted file mode 100644 index 88ccb5e7..00000000 --- a/docs/autoapi/ipyvuetify/components/ColorPicker.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ColorPicker -================================= - -.. py:function:: ipyvuetify.components.ColorPicker(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ColorPickerCanvas.rst b/docs/autoapi/ipyvuetify/components/ColorPickerCanvas.rst deleted file mode 100644 index 396489f3..00000000 --- a/docs/autoapi/ipyvuetify/components/ColorPickerCanvas.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ColorPickerCanvas -======================================= - -.. py:function:: ipyvuetify.components.ColorPickerCanvas(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ColorPickerSwatches.rst b/docs/autoapi/ipyvuetify/components/ColorPickerSwatches.rst deleted file mode 100644 index 3e25b1e8..00000000 --- a/docs/autoapi/ipyvuetify/components/ColorPickerSwatches.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ColorPickerSwatches -========================================= - -.. py:function:: ipyvuetify.components.ColorPickerSwatches(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Combobox.rst b/docs/autoapi/ipyvuetify/components/Combobox.rst deleted file mode 100644 index 8c2b643a..00000000 --- a/docs/autoapi/ipyvuetify/components/Combobox.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Combobox -============================== - -.. py:function:: ipyvuetify.components.Combobox(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Container.rst b/docs/autoapi/ipyvuetify/components/Container.rst deleted file mode 100644 index 06173b11..00000000 --- a/docs/autoapi/ipyvuetify/components/Container.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Container -=============================== - -.. py:function:: ipyvuetify.components.Container(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Content.rst b/docs/autoapi/ipyvuetify/components/Content.rst deleted file mode 100644 index b0577594..00000000 --- a/docs/autoapi/ipyvuetify/components/Content.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Content -============================= - -.. py:function:: ipyvuetify.components.Content(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Counter.rst b/docs/autoapi/ipyvuetify/components/Counter.rst deleted file mode 100644 index f32117fd..00000000 --- a/docs/autoapi/ipyvuetify/components/Counter.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Counter -============================= - -.. py:function:: ipyvuetify.components.Counter(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Data.rst b/docs/autoapi/ipyvuetify/components/Data.rst deleted file mode 100644 index c73c8103..00000000 --- a/docs/autoapi/ipyvuetify/components/Data.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Data -========================== - -.. py:function:: ipyvuetify.components.Data(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/DataFooter.rst b/docs/autoapi/ipyvuetify/components/DataFooter.rst deleted file mode 100644 index c326edd9..00000000 --- a/docs/autoapi/ipyvuetify/components/DataFooter.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.DataFooter -================================ - -.. py:function:: ipyvuetify.components.DataFooter(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/DataIterator.rst b/docs/autoapi/ipyvuetify/components/DataIterator.rst deleted file mode 100644 index 56f6368c..00000000 --- a/docs/autoapi/ipyvuetify/components/DataIterator.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.DataIterator -================================== - -.. py:function:: ipyvuetify.components.DataIterator(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/DataTable.rst b/docs/autoapi/ipyvuetify/components/DataTable.rst deleted file mode 100644 index b6c1976f..00000000 --- a/docs/autoapi/ipyvuetify/components/DataTable.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.DataTable -=============================== - -.. py:function:: ipyvuetify.components.DataTable(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/DataTableHeader.rst b/docs/autoapi/ipyvuetify/components/DataTableHeader.rst deleted file mode 100644 index 68e29f48..00000000 --- a/docs/autoapi/ipyvuetify/components/DataTableHeader.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.DataTableHeader -===================================== - -.. py:function:: ipyvuetify.components.DataTableHeader(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/DatePicker.rst b/docs/autoapi/ipyvuetify/components/DatePicker.rst deleted file mode 100644 index ccfaa9d9..00000000 --- a/docs/autoapi/ipyvuetify/components/DatePicker.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.DatePicker -================================ - -.. py:function:: ipyvuetify.components.DatePicker(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/DatePickerDateTable.rst b/docs/autoapi/ipyvuetify/components/DatePickerDateTable.rst deleted file mode 100644 index 8090e921..00000000 --- a/docs/autoapi/ipyvuetify/components/DatePickerDateTable.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.DatePickerDateTable -========================================= - -.. py:function:: ipyvuetify.components.DatePickerDateTable(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/DatePickerHeader.rst b/docs/autoapi/ipyvuetify/components/DatePickerHeader.rst deleted file mode 100644 index 9a638f44..00000000 --- a/docs/autoapi/ipyvuetify/components/DatePickerHeader.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.DatePickerHeader -====================================== - -.. py:function:: ipyvuetify.components.DatePickerHeader(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/DatePickerMonthTable.rst b/docs/autoapi/ipyvuetify/components/DatePickerMonthTable.rst deleted file mode 100644 index 2113664d..00000000 --- a/docs/autoapi/ipyvuetify/components/DatePickerMonthTable.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.DatePickerMonthTable -========================================== - -.. py:function:: ipyvuetify.components.DatePickerMonthTable(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/DatePickerTitle.rst b/docs/autoapi/ipyvuetify/components/DatePickerTitle.rst deleted file mode 100644 index cac82e52..00000000 --- a/docs/autoapi/ipyvuetify/components/DatePickerTitle.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.DatePickerTitle -===================================== - -.. py:function:: ipyvuetify.components.DatePickerTitle(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/DatePickerYears.rst b/docs/autoapi/ipyvuetify/components/DatePickerYears.rst deleted file mode 100644 index e9dda0d1..00000000 --- a/docs/autoapi/ipyvuetify/components/DatePickerYears.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.DatePickerYears -===================================== - -.. py:function:: ipyvuetify.components.DatePickerYears(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Dialog.rst b/docs/autoapi/ipyvuetify/components/Dialog.rst deleted file mode 100644 index d9736ea2..00000000 --- a/docs/autoapi/ipyvuetify/components/Dialog.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Dialog -============================ - -.. py:function:: ipyvuetify.components.Dialog(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/DialogBottomTransition.rst b/docs/autoapi/ipyvuetify/components/DialogBottomTransition.rst deleted file mode 100644 index fd64573b..00000000 --- a/docs/autoapi/ipyvuetify/components/DialogBottomTransition.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.DialogBottomTransition -============================================ - -.. py:function:: ipyvuetify.components.DialogBottomTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/DialogTransition.rst b/docs/autoapi/ipyvuetify/components/DialogTransition.rst deleted file mode 100644 index 56773ad5..00000000 --- a/docs/autoapi/ipyvuetify/components/DialogTransition.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.DialogTransition -====================================== - -.. py:function:: ipyvuetify.components.DialogTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Divider.rst b/docs/autoapi/ipyvuetify/components/Divider.rst deleted file mode 100644 index ed541716..00000000 --- a/docs/autoapi/ipyvuetify/components/Divider.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Divider -============================= - -.. py:function:: ipyvuetify.components.Divider(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/EditDialog.rst b/docs/autoapi/ipyvuetify/components/EditDialog.rst deleted file mode 100644 index 1239a782..00000000 --- a/docs/autoapi/ipyvuetify/components/EditDialog.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.EditDialog -================================ - -.. py:function:: ipyvuetify.components.EditDialog(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ExpandTransition.rst b/docs/autoapi/ipyvuetify/components/ExpandTransition.rst deleted file mode 100644 index 134bc88b..00000000 --- a/docs/autoapi/ipyvuetify/components/ExpandTransition.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ExpandTransition -====================================== - -.. py:function:: ipyvuetify.components.ExpandTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ExpandXTransition.rst b/docs/autoapi/ipyvuetify/components/ExpandXTransition.rst deleted file mode 100644 index 3c75d877..00000000 --- a/docs/autoapi/ipyvuetify/components/ExpandXTransition.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ExpandXTransition -======================================= - -.. py:function:: ipyvuetify.components.ExpandXTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ExpansionPanel.rst b/docs/autoapi/ipyvuetify/components/ExpansionPanel.rst deleted file mode 100644 index 04af2e7a..00000000 --- a/docs/autoapi/ipyvuetify/components/ExpansionPanel.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ExpansionPanel -==================================== - -.. py:function:: ipyvuetify.components.ExpansionPanel(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ExpansionPanelContent.rst b/docs/autoapi/ipyvuetify/components/ExpansionPanelContent.rst deleted file mode 100644 index c5dc7fdf..00000000 --- a/docs/autoapi/ipyvuetify/components/ExpansionPanelContent.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ExpansionPanelContent -=========================================== - -.. py:function:: ipyvuetify.components.ExpansionPanelContent(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ExpansionPanelHeader.rst b/docs/autoapi/ipyvuetify/components/ExpansionPanelHeader.rst deleted file mode 100644 index e7b13511..00000000 --- a/docs/autoapi/ipyvuetify/components/ExpansionPanelHeader.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ExpansionPanelHeader -========================================== - -.. py:function:: ipyvuetify.components.ExpansionPanelHeader(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ExpansionPanels.rst b/docs/autoapi/ipyvuetify/components/ExpansionPanels.rst deleted file mode 100644 index 52f91fae..00000000 --- a/docs/autoapi/ipyvuetify/components/ExpansionPanels.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ExpansionPanels -===================================== - -.. py:function:: ipyvuetify.components.ExpansionPanels(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/FabTransition.rst b/docs/autoapi/ipyvuetify/components/FabTransition.rst deleted file mode 100644 index 840149c7..00000000 --- a/docs/autoapi/ipyvuetify/components/FabTransition.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.FabTransition -=================================== - -.. py:function:: ipyvuetify.components.FabTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/FadeTransition.rst b/docs/autoapi/ipyvuetify/components/FadeTransition.rst deleted file mode 100644 index b1504b85..00000000 --- a/docs/autoapi/ipyvuetify/components/FadeTransition.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.FadeTransition -==================================== - -.. py:function:: ipyvuetify.components.FadeTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/FileInput.rst b/docs/autoapi/ipyvuetify/components/FileInput.rst deleted file mode 100644 index bd1612fb..00000000 --- a/docs/autoapi/ipyvuetify/components/FileInput.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.FileInput -=============================== - -.. py:function:: ipyvuetify.components.FileInput(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Flex.rst b/docs/autoapi/ipyvuetify/components/Flex.rst deleted file mode 100644 index 800238fc..00000000 --- a/docs/autoapi/ipyvuetify/components/Flex.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Flex -========================== - -.. py:function:: ipyvuetify.components.Flex(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Footer.rst b/docs/autoapi/ipyvuetify/components/Footer.rst deleted file mode 100644 index fffe9367..00000000 --- a/docs/autoapi/ipyvuetify/components/Footer.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Footer -============================ - -.. py:function:: ipyvuetify.components.Footer(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Form.rst b/docs/autoapi/ipyvuetify/components/Form.rst deleted file mode 100644 index a48224d3..00000000 --- a/docs/autoapi/ipyvuetify/components/Form.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Form -========================== - -.. py:function:: ipyvuetify.components.Form(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Hover.rst b/docs/autoapi/ipyvuetify/components/Hover.rst deleted file mode 100644 index 5b2e4220..00000000 --- a/docs/autoapi/ipyvuetify/components/Hover.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Hover -=========================== - -.. py:function:: ipyvuetify.components.Hover(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Html.rst b/docs/autoapi/ipyvuetify/components/Html.rst deleted file mode 100644 index 38346178..00000000 --- a/docs/autoapi/ipyvuetify/components/Html.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Html -========================== - -.. py:function:: ipyvuetify.components.Html(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Icon.rst b/docs/autoapi/ipyvuetify/components/Icon.rst deleted file mode 100644 index 25cdbc5a..00000000 --- a/docs/autoapi/ipyvuetify/components/Icon.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Icon -========================== - -.. py:function:: ipyvuetify.components.Icon(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Img.rst b/docs/autoapi/ipyvuetify/components/Img.rst deleted file mode 100644 index 9b8437ec..00000000 --- a/docs/autoapi/ipyvuetify/components/Img.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Img -========================= - -.. py:function:: ipyvuetify.components.Img(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Input.rst b/docs/autoapi/ipyvuetify/components/Input.rst deleted file mode 100644 index 1ed09276..00000000 --- a/docs/autoapi/ipyvuetify/components/Input.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Input -=========================== - -.. py:function:: ipyvuetify.components.Input(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Item.rst b/docs/autoapi/ipyvuetify/components/Item.rst deleted file mode 100644 index 9508d5c6..00000000 --- a/docs/autoapi/ipyvuetify/components/Item.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Item -========================== - -.. py:function:: ipyvuetify.components.Item(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ItemGroup.rst b/docs/autoapi/ipyvuetify/components/ItemGroup.rst deleted file mode 100644 index 6d097b5c..00000000 --- a/docs/autoapi/ipyvuetify/components/ItemGroup.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ItemGroup -=============================== - -.. py:function:: ipyvuetify.components.ItemGroup(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Label.rst b/docs/autoapi/ipyvuetify/components/Label.rst deleted file mode 100644 index 5fd62d56..00000000 --- a/docs/autoapi/ipyvuetify/components/Label.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Label -=========================== - -.. py:function:: ipyvuetify.components.Label(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Layout.rst b/docs/autoapi/ipyvuetify/components/Layout.rst deleted file mode 100644 index 78d12ee1..00000000 --- a/docs/autoapi/ipyvuetify/components/Layout.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Layout -============================ - -.. py:function:: ipyvuetify.components.Layout(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Lazy.rst b/docs/autoapi/ipyvuetify/components/Lazy.rst deleted file mode 100644 index 3b0ef5a1..00000000 --- a/docs/autoapi/ipyvuetify/components/Lazy.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Lazy -========================== - -.. py:function:: ipyvuetify.components.Lazy(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/List.rst b/docs/autoapi/ipyvuetify/components/List.rst deleted file mode 100644 index a92f0d83..00000000 --- a/docs/autoapi/ipyvuetify/components/List.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.List -========================== - -.. py:function:: ipyvuetify.components.List(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ListGroup.rst b/docs/autoapi/ipyvuetify/components/ListGroup.rst deleted file mode 100644 index a4c0c934..00000000 --- a/docs/autoapi/ipyvuetify/components/ListGroup.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ListGroup -=============================== - -.. py:function:: ipyvuetify.components.ListGroup(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ListItem.rst b/docs/autoapi/ipyvuetify/components/ListItem.rst deleted file mode 100644 index a31d915a..00000000 --- a/docs/autoapi/ipyvuetify/components/ListItem.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ListItem -============================== - -.. py:function:: ipyvuetify.components.ListItem(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ListItemAction.rst b/docs/autoapi/ipyvuetify/components/ListItemAction.rst deleted file mode 100644 index e65c4655..00000000 --- a/docs/autoapi/ipyvuetify/components/ListItemAction.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ListItemAction -==================================== - -.. py:function:: ipyvuetify.components.ListItemAction(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ListItemActionText.rst b/docs/autoapi/ipyvuetify/components/ListItemActionText.rst deleted file mode 100644 index 026874e5..00000000 --- a/docs/autoapi/ipyvuetify/components/ListItemActionText.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ListItemActionText -======================================== - -.. py:function:: ipyvuetify.components.ListItemActionText(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ListItemAvatar.rst b/docs/autoapi/ipyvuetify/components/ListItemAvatar.rst deleted file mode 100644 index 714c8735..00000000 --- a/docs/autoapi/ipyvuetify/components/ListItemAvatar.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ListItemAvatar -==================================== - -.. py:function:: ipyvuetify.components.ListItemAvatar(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ListItemContent.rst b/docs/autoapi/ipyvuetify/components/ListItemContent.rst deleted file mode 100644 index 63808710..00000000 --- a/docs/autoapi/ipyvuetify/components/ListItemContent.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ListItemContent -===================================== - -.. py:function:: ipyvuetify.components.ListItemContent(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ListItemGroup.rst b/docs/autoapi/ipyvuetify/components/ListItemGroup.rst deleted file mode 100644 index 3523aa69..00000000 --- a/docs/autoapi/ipyvuetify/components/ListItemGroup.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ListItemGroup -=================================== - -.. py:function:: ipyvuetify.components.ListItemGroup(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ListItemIcon.rst b/docs/autoapi/ipyvuetify/components/ListItemIcon.rst deleted file mode 100644 index ecc540d7..00000000 --- a/docs/autoapi/ipyvuetify/components/ListItemIcon.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ListItemIcon -================================== - -.. py:function:: ipyvuetify.components.ListItemIcon(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ListItemSubtitle.rst b/docs/autoapi/ipyvuetify/components/ListItemSubtitle.rst deleted file mode 100644 index 7c158611..00000000 --- a/docs/autoapi/ipyvuetify/components/ListItemSubtitle.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ListItemSubtitle -====================================== - -.. py:function:: ipyvuetify.components.ListItemSubtitle(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ListItemTitle.rst b/docs/autoapi/ipyvuetify/components/ListItemTitle.rst deleted file mode 100644 index 4d76fdfb..00000000 --- a/docs/autoapi/ipyvuetify/components/ListItemTitle.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ListItemTitle -=================================== - -.. py:function:: ipyvuetify.components.ListItemTitle(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Menu.rst b/docs/autoapi/ipyvuetify/components/Menu.rst deleted file mode 100644 index 01784505..00000000 --- a/docs/autoapi/ipyvuetify/components/Menu.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Menu -========================== - -.. py:function:: ipyvuetify.components.Menu(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/MenuTransition.rst b/docs/autoapi/ipyvuetify/components/MenuTransition.rst deleted file mode 100644 index e194e76f..00000000 --- a/docs/autoapi/ipyvuetify/components/MenuTransition.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.MenuTransition -==================================== - -.. py:function:: ipyvuetify.components.MenuTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Messages.rst b/docs/autoapi/ipyvuetify/components/Messages.rst deleted file mode 100644 index b7e9ed2f..00000000 --- a/docs/autoapi/ipyvuetify/components/Messages.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Messages -============================== - -.. py:function:: ipyvuetify.components.Messages(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/NavigationDrawer.rst b/docs/autoapi/ipyvuetify/components/NavigationDrawer.rst deleted file mode 100644 index 67dc9fb6..00000000 --- a/docs/autoapi/ipyvuetify/components/NavigationDrawer.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.NavigationDrawer -====================================== - -.. py:function:: ipyvuetify.components.NavigationDrawer(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/OverflowBtn.rst b/docs/autoapi/ipyvuetify/components/OverflowBtn.rst deleted file mode 100644 index 9e55a746..00000000 --- a/docs/autoapi/ipyvuetify/components/OverflowBtn.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.OverflowBtn -================================= - -.. py:function:: ipyvuetify.components.OverflowBtn(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Overlay.rst b/docs/autoapi/ipyvuetify/components/Overlay.rst deleted file mode 100644 index 7595201d..00000000 --- a/docs/autoapi/ipyvuetify/components/Overlay.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Overlay -============================= - -.. py:function:: ipyvuetify.components.Overlay(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Pagination.rst b/docs/autoapi/ipyvuetify/components/Pagination.rst deleted file mode 100644 index 811dd82c..00000000 --- a/docs/autoapi/ipyvuetify/components/Pagination.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Pagination -================================ - -.. py:function:: ipyvuetify.components.Pagination(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Parallax.rst b/docs/autoapi/ipyvuetify/components/Parallax.rst deleted file mode 100644 index 001f7952..00000000 --- a/docs/autoapi/ipyvuetify/components/Parallax.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Parallax -============================== - -.. py:function:: ipyvuetify.components.Parallax(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Picker.rst b/docs/autoapi/ipyvuetify/components/Picker.rst deleted file mode 100644 index 34fa1d24..00000000 --- a/docs/autoapi/ipyvuetify/components/Picker.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Picker -============================ - -.. py:function:: ipyvuetify.components.Picker(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ProgressCircular.rst b/docs/autoapi/ipyvuetify/components/ProgressCircular.rst deleted file mode 100644 index 9470d83b..00000000 --- a/docs/autoapi/ipyvuetify/components/ProgressCircular.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ProgressCircular -====================================== - -.. py:function:: ipyvuetify.components.ProgressCircular(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ProgressLinear.rst b/docs/autoapi/ipyvuetify/components/ProgressLinear.rst deleted file mode 100644 index a88c3cd3..00000000 --- a/docs/autoapi/ipyvuetify/components/ProgressLinear.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ProgressLinear -==================================== - -.. py:function:: ipyvuetify.components.ProgressLinear(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Radio.rst b/docs/autoapi/ipyvuetify/components/Radio.rst deleted file mode 100644 index 44fc17ae..00000000 --- a/docs/autoapi/ipyvuetify/components/Radio.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Radio -=========================== - -.. py:function:: ipyvuetify.components.Radio(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/RadioGroup.rst b/docs/autoapi/ipyvuetify/components/RadioGroup.rst deleted file mode 100644 index 0e3dd733..00000000 --- a/docs/autoapi/ipyvuetify/components/RadioGroup.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.RadioGroup -================================ - -.. py:function:: ipyvuetify.components.RadioGroup(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/RangeSlider.rst b/docs/autoapi/ipyvuetify/components/RangeSlider.rst deleted file mode 100644 index 41ea935a..00000000 --- a/docs/autoapi/ipyvuetify/components/RangeSlider.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.RangeSlider -================================= - -.. py:function:: ipyvuetify.components.RangeSlider(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Rating.rst b/docs/autoapi/ipyvuetify/components/Rating.rst deleted file mode 100644 index c9d5a648..00000000 --- a/docs/autoapi/ipyvuetify/components/Rating.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Rating -============================ - -.. py:function:: ipyvuetify.components.Rating(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Responsive.rst b/docs/autoapi/ipyvuetify/components/Responsive.rst deleted file mode 100644 index f80efeb0..00000000 --- a/docs/autoapi/ipyvuetify/components/Responsive.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Responsive -================================ - -.. py:function:: ipyvuetify.components.Responsive(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Row.rst b/docs/autoapi/ipyvuetify/components/Row.rst deleted file mode 100644 index 8f1500cc..00000000 --- a/docs/autoapi/ipyvuetify/components/Row.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Row -========================= - -.. py:function:: ipyvuetify.components.Row(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ScaleTransition.rst b/docs/autoapi/ipyvuetify/components/ScaleTransition.rst deleted file mode 100644 index a5d30f3a..00000000 --- a/docs/autoapi/ipyvuetify/components/ScaleTransition.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ScaleTransition -===================================== - -.. py:function:: ipyvuetify.components.ScaleTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ScrollXReverseTransition.rst b/docs/autoapi/ipyvuetify/components/ScrollXReverseTransition.rst deleted file mode 100644 index 24fb2413..00000000 --- a/docs/autoapi/ipyvuetify/components/ScrollXReverseTransition.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ScrollXReverseTransition -============================================== - -.. py:function:: ipyvuetify.components.ScrollXReverseTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ScrollXTransition.rst b/docs/autoapi/ipyvuetify/components/ScrollXTransition.rst deleted file mode 100644 index acccb1a4..00000000 --- a/docs/autoapi/ipyvuetify/components/ScrollXTransition.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ScrollXTransition -======================================= - -.. py:function:: ipyvuetify.components.ScrollXTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ScrollYReverseTransition.rst b/docs/autoapi/ipyvuetify/components/ScrollYReverseTransition.rst deleted file mode 100644 index cd899319..00000000 --- a/docs/autoapi/ipyvuetify/components/ScrollYReverseTransition.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ScrollYReverseTransition -============================================== - -.. py:function:: ipyvuetify.components.ScrollYReverseTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ScrollYTransition.rst b/docs/autoapi/ipyvuetify/components/ScrollYTransition.rst deleted file mode 100644 index 3f9a13ab..00000000 --- a/docs/autoapi/ipyvuetify/components/ScrollYTransition.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ScrollYTransition -======================================= - -.. py:function:: ipyvuetify.components.ScrollYTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Select.rst b/docs/autoapi/ipyvuetify/components/Select.rst deleted file mode 100644 index c87204c9..00000000 --- a/docs/autoapi/ipyvuetify/components/Select.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Select -============================ - -.. py:function:: ipyvuetify.components.Select(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Sheet.rst b/docs/autoapi/ipyvuetify/components/Sheet.rst deleted file mode 100644 index ad59e0b7..00000000 --- a/docs/autoapi/ipyvuetify/components/Sheet.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Sheet -=========================== - -.. py:function:: ipyvuetify.components.Sheet(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/SimpleCheckbox.rst b/docs/autoapi/ipyvuetify/components/SimpleCheckbox.rst deleted file mode 100644 index 4b1f91fc..00000000 --- a/docs/autoapi/ipyvuetify/components/SimpleCheckbox.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.SimpleCheckbox -==================================== - -.. py:function:: ipyvuetify.components.SimpleCheckbox(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/SimpleTable.rst b/docs/autoapi/ipyvuetify/components/SimpleTable.rst deleted file mode 100644 index 1ac9ad16..00000000 --- a/docs/autoapi/ipyvuetify/components/SimpleTable.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.SimpleTable -================================= - -.. py:function:: ipyvuetify.components.SimpleTable(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/SkeletonLoader.rst b/docs/autoapi/ipyvuetify/components/SkeletonLoader.rst deleted file mode 100644 index a9142395..00000000 --- a/docs/autoapi/ipyvuetify/components/SkeletonLoader.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.SkeletonLoader -==================================== - -.. py:function:: ipyvuetify.components.SkeletonLoader(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/SlideGroup.rst b/docs/autoapi/ipyvuetify/components/SlideGroup.rst deleted file mode 100644 index 81e0a96a..00000000 --- a/docs/autoapi/ipyvuetify/components/SlideGroup.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.SlideGroup -================================ - -.. py:function:: ipyvuetify.components.SlideGroup(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/SlideItem.rst b/docs/autoapi/ipyvuetify/components/SlideItem.rst deleted file mode 100644 index 67041238..00000000 --- a/docs/autoapi/ipyvuetify/components/SlideItem.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.SlideItem -=============================== - -.. py:function:: ipyvuetify.components.SlideItem(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/SlideXReverseTransition.rst b/docs/autoapi/ipyvuetify/components/SlideXReverseTransition.rst deleted file mode 100644 index cdbc2687..00000000 --- a/docs/autoapi/ipyvuetify/components/SlideXReverseTransition.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.SlideXReverseTransition -============================================= - -.. py:function:: ipyvuetify.components.SlideXReverseTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/SlideXTransition.rst b/docs/autoapi/ipyvuetify/components/SlideXTransition.rst deleted file mode 100644 index bb8612d7..00000000 --- a/docs/autoapi/ipyvuetify/components/SlideXTransition.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.SlideXTransition -====================================== - -.. py:function:: ipyvuetify.components.SlideXTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/SlideYReverseTransition.rst b/docs/autoapi/ipyvuetify/components/SlideYReverseTransition.rst deleted file mode 100644 index 2c99ec83..00000000 --- a/docs/autoapi/ipyvuetify/components/SlideYReverseTransition.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.SlideYReverseTransition -============================================= - -.. py:function:: ipyvuetify.components.SlideYReverseTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/SlideYTransition.rst b/docs/autoapi/ipyvuetify/components/SlideYTransition.rst deleted file mode 100644 index 762086ab..00000000 --- a/docs/autoapi/ipyvuetify/components/SlideYTransition.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.SlideYTransition -====================================== - -.. py:function:: ipyvuetify.components.SlideYTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Slider.rst b/docs/autoapi/ipyvuetify/components/Slider.rst deleted file mode 100644 index 5d140c57..00000000 --- a/docs/autoapi/ipyvuetify/components/Slider.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Slider -============================ - -.. py:function:: ipyvuetify.components.Slider(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Snackbar.rst b/docs/autoapi/ipyvuetify/components/Snackbar.rst deleted file mode 100644 index b924fd5c..00000000 --- a/docs/autoapi/ipyvuetify/components/Snackbar.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Snackbar -============================== - -.. py:function:: ipyvuetify.components.Snackbar(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Spacer.rst b/docs/autoapi/ipyvuetify/components/Spacer.rst deleted file mode 100644 index 01d768a2..00000000 --- a/docs/autoapi/ipyvuetify/components/Spacer.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Spacer -============================ - -.. py:function:: ipyvuetify.components.Spacer(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Sparkline.rst b/docs/autoapi/ipyvuetify/components/Sparkline.rst deleted file mode 100644 index bb118e74..00000000 --- a/docs/autoapi/ipyvuetify/components/Sparkline.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Sparkline -=============================== - -.. py:function:: ipyvuetify.components.Sparkline(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/SpeedDial.rst b/docs/autoapi/ipyvuetify/components/SpeedDial.rst deleted file mode 100644 index 39fc5356..00000000 --- a/docs/autoapi/ipyvuetify/components/SpeedDial.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.SpeedDial -=============================== - -.. py:function:: ipyvuetify.components.SpeedDial(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Stepper.rst b/docs/autoapi/ipyvuetify/components/Stepper.rst deleted file mode 100644 index e8b7a820..00000000 --- a/docs/autoapi/ipyvuetify/components/Stepper.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Stepper -============================= - -.. py:function:: ipyvuetify.components.Stepper(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/StepperContent.rst b/docs/autoapi/ipyvuetify/components/StepperContent.rst deleted file mode 100644 index f16291eb..00000000 --- a/docs/autoapi/ipyvuetify/components/StepperContent.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.StepperContent -==================================== - -.. py:function:: ipyvuetify.components.StepperContent(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/StepperHeader.rst b/docs/autoapi/ipyvuetify/components/StepperHeader.rst deleted file mode 100644 index eb8fcb2f..00000000 --- a/docs/autoapi/ipyvuetify/components/StepperHeader.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.StepperHeader -=================================== - -.. py:function:: ipyvuetify.components.StepperHeader(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/StepperItems.rst b/docs/autoapi/ipyvuetify/components/StepperItems.rst deleted file mode 100644 index 59acf278..00000000 --- a/docs/autoapi/ipyvuetify/components/StepperItems.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.StepperItems -================================== - -.. py:function:: ipyvuetify.components.StepperItems(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/StepperStep.rst b/docs/autoapi/ipyvuetify/components/StepperStep.rst deleted file mode 100644 index cae4534c..00000000 --- a/docs/autoapi/ipyvuetify/components/StepperStep.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.StepperStep -================================= - -.. py:function:: ipyvuetify.components.StepperStep(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Subheader.rst b/docs/autoapi/ipyvuetify/components/Subheader.rst deleted file mode 100644 index f72a375f..00000000 --- a/docs/autoapi/ipyvuetify/components/Subheader.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Subheader -=============================== - -.. py:function:: ipyvuetify.components.Subheader(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Switch.rst b/docs/autoapi/ipyvuetify/components/Switch.rst deleted file mode 100644 index fda6cd64..00000000 --- a/docs/autoapi/ipyvuetify/components/Switch.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Switch -============================ - -.. py:function:: ipyvuetify.components.Switch(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/SystemBar.rst b/docs/autoapi/ipyvuetify/components/SystemBar.rst deleted file mode 100644 index f5484640..00000000 --- a/docs/autoapi/ipyvuetify/components/SystemBar.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.SystemBar -=============================== - -.. py:function:: ipyvuetify.components.SystemBar(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Tab.rst b/docs/autoapi/ipyvuetify/components/Tab.rst deleted file mode 100644 index 33405cf1..00000000 --- a/docs/autoapi/ipyvuetify/components/Tab.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Tab -========================= - -.. py:function:: ipyvuetify.components.Tab(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/TabItem.rst b/docs/autoapi/ipyvuetify/components/TabItem.rst deleted file mode 100644 index 643e36b7..00000000 --- a/docs/autoapi/ipyvuetify/components/TabItem.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.TabItem -============================= - -.. py:function:: ipyvuetify.components.TabItem(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/TabReverseTransition.rst b/docs/autoapi/ipyvuetify/components/TabReverseTransition.rst deleted file mode 100644 index ce096680..00000000 --- a/docs/autoapi/ipyvuetify/components/TabReverseTransition.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.TabReverseTransition -========================================== - -.. py:function:: ipyvuetify.components.TabReverseTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/TabTransition.rst b/docs/autoapi/ipyvuetify/components/TabTransition.rst deleted file mode 100644 index 79d7a429..00000000 --- a/docs/autoapi/ipyvuetify/components/TabTransition.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.TabTransition -=================================== - -.. py:function:: ipyvuetify.components.TabTransition(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/TableOverflow.rst b/docs/autoapi/ipyvuetify/components/TableOverflow.rst deleted file mode 100644 index a5d6b579..00000000 --- a/docs/autoapi/ipyvuetify/components/TableOverflow.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.TableOverflow -=================================== - -.. py:function:: ipyvuetify.components.TableOverflow(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Tabs.rst b/docs/autoapi/ipyvuetify/components/Tabs.rst deleted file mode 100644 index 1aa4d404..00000000 --- a/docs/autoapi/ipyvuetify/components/Tabs.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Tabs -========================== - -.. py:function:: ipyvuetify.components.Tabs(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/TabsItems.rst b/docs/autoapi/ipyvuetify/components/TabsItems.rst deleted file mode 100644 index 22441159..00000000 --- a/docs/autoapi/ipyvuetify/components/TabsItems.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.TabsItems -=============================== - -.. py:function:: ipyvuetify.components.TabsItems(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/TabsSlider.rst b/docs/autoapi/ipyvuetify/components/TabsSlider.rst deleted file mode 100644 index 0d017999..00000000 --- a/docs/autoapi/ipyvuetify/components/TabsSlider.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.TabsSlider -================================ - -.. py:function:: ipyvuetify.components.TabsSlider(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Text.rst b/docs/autoapi/ipyvuetify/components/Text.rst deleted file mode 100644 index 7495aa10..00000000 --- a/docs/autoapi/ipyvuetify/components/Text.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Text -========================== - -.. py:function:: ipyvuetify.components.Text(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/TextField.rst b/docs/autoapi/ipyvuetify/components/TextField.rst deleted file mode 100644 index 6d8fcd8c..00000000 --- a/docs/autoapi/ipyvuetify/components/TextField.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.TextField -=============================== - -.. py:function:: ipyvuetify.components.TextField(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Textarea.rst b/docs/autoapi/ipyvuetify/components/Textarea.rst deleted file mode 100644 index 5bb48bdd..00000000 --- a/docs/autoapi/ipyvuetify/components/Textarea.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Textarea -============================== - -.. py:function:: ipyvuetify.components.Textarea(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ThemeProvider.rst b/docs/autoapi/ipyvuetify/components/ThemeProvider.rst deleted file mode 100644 index 537c7ea6..00000000 --- a/docs/autoapi/ipyvuetify/components/ThemeProvider.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ThemeProvider -=================================== - -.. py:function:: ipyvuetify.components.ThemeProvider(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/TimePicker.rst b/docs/autoapi/ipyvuetify/components/TimePicker.rst deleted file mode 100644 index ce8e527f..00000000 --- a/docs/autoapi/ipyvuetify/components/TimePicker.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.TimePicker -================================ - -.. py:function:: ipyvuetify.components.TimePicker(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/TimePickerClock.rst b/docs/autoapi/ipyvuetify/components/TimePickerClock.rst deleted file mode 100644 index 435ce883..00000000 --- a/docs/autoapi/ipyvuetify/components/TimePickerClock.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.TimePickerClock -===================================== - -.. py:function:: ipyvuetify.components.TimePickerClock(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/TimePickerTitle.rst b/docs/autoapi/ipyvuetify/components/TimePickerTitle.rst deleted file mode 100644 index 755db5e8..00000000 --- a/docs/autoapi/ipyvuetify/components/TimePickerTitle.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.TimePickerTitle -===================================== - -.. py:function:: ipyvuetify.components.TimePickerTitle(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Timeline.rst b/docs/autoapi/ipyvuetify/components/Timeline.rst deleted file mode 100644 index 4f9aa62a..00000000 --- a/docs/autoapi/ipyvuetify/components/Timeline.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Timeline -============================== - -.. py:function:: ipyvuetify.components.Timeline(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/TimelineItem.rst b/docs/autoapi/ipyvuetify/components/TimelineItem.rst deleted file mode 100644 index 9fcf1ebc..00000000 --- a/docs/autoapi/ipyvuetify/components/TimelineItem.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.TimelineItem -================================== - -.. py:function:: ipyvuetify.components.TimelineItem(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Toolbar.rst b/docs/autoapi/ipyvuetify/components/Toolbar.rst deleted file mode 100644 index c167451b..00000000 --- a/docs/autoapi/ipyvuetify/components/Toolbar.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Toolbar -============================= - -.. py:function:: ipyvuetify.components.Toolbar(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ToolbarItems.rst b/docs/autoapi/ipyvuetify/components/ToolbarItems.rst deleted file mode 100644 index 8d5861f0..00000000 --- a/docs/autoapi/ipyvuetify/components/ToolbarItems.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ToolbarItems -================================== - -.. py:function:: ipyvuetify.components.ToolbarItems(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/ToolbarTitle.rst b/docs/autoapi/ipyvuetify/components/ToolbarTitle.rst deleted file mode 100644 index d453915d..00000000 --- a/docs/autoapi/ipyvuetify/components/ToolbarTitle.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.ToolbarTitle -================================== - -.. py:function:: ipyvuetify.components.ToolbarTitle(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Tooltip.rst b/docs/autoapi/ipyvuetify/components/Tooltip.rst deleted file mode 100644 index e6d212f8..00000000 --- a/docs/autoapi/ipyvuetify/components/Tooltip.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Tooltip -============================= - -.. py:function:: ipyvuetify.components.Tooltip(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Treeview.rst b/docs/autoapi/ipyvuetify/components/Treeview.rst deleted file mode 100644 index c9e04a7b..00000000 --- a/docs/autoapi/ipyvuetify/components/Treeview.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Treeview -============================== - -.. py:function:: ipyvuetify.components.Treeview(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/TreeviewNode.rst b/docs/autoapi/ipyvuetify/components/TreeviewNode.rst deleted file mode 100644 index 29729a10..00000000 --- a/docs/autoapi/ipyvuetify/components/TreeviewNode.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.TreeviewNode -================================== - -.. py:function:: ipyvuetify.components.TreeviewNode(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/VirtualTable.rst b/docs/autoapi/ipyvuetify/components/VirtualTable.rst deleted file mode 100644 index dd9c1535..00000000 --- a/docs/autoapi/ipyvuetify/components/VirtualTable.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.VirtualTable -================================== - -.. py:function:: ipyvuetify.components.VirtualTable(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/VuetifyTemplate.rst b/docs/autoapi/ipyvuetify/components/VuetifyTemplate.rst deleted file mode 100644 index 2ec4a55a..00000000 --- a/docs/autoapi/ipyvuetify/components/VuetifyTemplate.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.VuetifyTemplate -===================================== - -.. py:function:: ipyvuetify.components.VuetifyTemplate(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/VuetifyWidget.rst b/docs/autoapi/ipyvuetify/components/VuetifyWidget.rst deleted file mode 100644 index c58af815..00000000 --- a/docs/autoapi/ipyvuetify/components/VuetifyWidget.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.VuetifyWidget -=================================== - -.. py:function:: ipyvuetify.components.VuetifyWidget(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/Window.rst b/docs/autoapi/ipyvuetify/components/Window.rst deleted file mode 100644 index 3f75e8d3..00000000 --- a/docs/autoapi/ipyvuetify/components/Window.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.Window -============================ - -.. py:function:: ipyvuetify.components.Window(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/WindowItem.rst b/docs/autoapi/ipyvuetify/components/WindowItem.rst deleted file mode 100644 index 330242bc..00000000 --- a/docs/autoapi/ipyvuetify/components/WindowItem.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.components.WindowItem -================================ - -.. py:function:: ipyvuetify.components.WindowItem(**kwargs) diff --git a/docs/autoapi/ipyvuetify/components/index.rst b/docs/autoapi/ipyvuetify/components/index.rst deleted file mode 100644 index 6d82c510..00000000 --- a/docs/autoapi/ipyvuetify/components/index.rst +++ /dev/null @@ -1,354 +0,0 @@ -ipyvuetify.components -===================== - -.. py:module:: ipyvuetify.components - - -Classes -------- - -.. toctree:: - :hidden: - - /autoapi/ipyvuetify/components/CodeGen - -.. autoapisummary:: - - ipyvuetify.components.CodeGen - - -Functions ---------- - -.. toctree:: - :hidden: - - /autoapi/ipyvuetify/components/Alert - /autoapi/ipyvuetify/components/App - /autoapi/ipyvuetify/components/AppBar - /autoapi/ipyvuetify/components/AppBarNavIcon - /autoapi/ipyvuetify/components/Autocomplete - /autoapi/ipyvuetify/components/Avatar - /autoapi/ipyvuetify/components/Badge - /autoapi/ipyvuetify/components/Banner - /autoapi/ipyvuetify/components/BottomNavigation - /autoapi/ipyvuetify/components/BottomSheet - /autoapi/ipyvuetify/components/Breadcrumbs - /autoapi/ipyvuetify/components/BreadcrumbsDivider - /autoapi/ipyvuetify/components/BreadcrumbsItem - /autoapi/ipyvuetify/components/Btn - /autoapi/ipyvuetify/components/BtnToggle - /autoapi/ipyvuetify/components/Calendar - /autoapi/ipyvuetify/components/CalendarDaily - /autoapi/ipyvuetify/components/CalendarMonthly - /autoapi/ipyvuetify/components/CalendarWeekly - /autoapi/ipyvuetify/components/Card - /autoapi/ipyvuetify/components/CardActions - /autoapi/ipyvuetify/components/CardSubtitle - /autoapi/ipyvuetify/components/CardText - /autoapi/ipyvuetify/components/CardTitle - /autoapi/ipyvuetify/components/Carousel - /autoapi/ipyvuetify/components/CarouselItem - /autoapi/ipyvuetify/components/CarouselReverseTransition - /autoapi/ipyvuetify/components/CarouselTransition - /autoapi/ipyvuetify/components/Checkbox - /autoapi/ipyvuetify/components/Chip - /autoapi/ipyvuetify/components/ChipGroup - /autoapi/ipyvuetify/components/Col - /autoapi/ipyvuetify/components/ColorPicker - /autoapi/ipyvuetify/components/ColorPickerCanvas - /autoapi/ipyvuetify/components/ColorPickerSwatches - /autoapi/ipyvuetify/components/Combobox - /autoapi/ipyvuetify/components/Container - /autoapi/ipyvuetify/components/Content - /autoapi/ipyvuetify/components/Counter - /autoapi/ipyvuetify/components/Data - /autoapi/ipyvuetify/components/DataFooter - /autoapi/ipyvuetify/components/DataIterator - /autoapi/ipyvuetify/components/DataTable - /autoapi/ipyvuetify/components/DataTableHeader - /autoapi/ipyvuetify/components/DatePicker - /autoapi/ipyvuetify/components/DatePickerDateTable - /autoapi/ipyvuetify/components/DatePickerHeader - /autoapi/ipyvuetify/components/DatePickerMonthTable - /autoapi/ipyvuetify/components/DatePickerTitle - /autoapi/ipyvuetify/components/DatePickerYears - /autoapi/ipyvuetify/components/Dialog - /autoapi/ipyvuetify/components/DialogBottomTransition - /autoapi/ipyvuetify/components/DialogTransition - /autoapi/ipyvuetify/components/Divider - /autoapi/ipyvuetify/components/EditDialog - /autoapi/ipyvuetify/components/ExpandTransition - /autoapi/ipyvuetify/components/ExpandXTransition - /autoapi/ipyvuetify/components/ExpansionPanel - /autoapi/ipyvuetify/components/ExpansionPanelContent - /autoapi/ipyvuetify/components/ExpansionPanelHeader - /autoapi/ipyvuetify/components/ExpansionPanels - /autoapi/ipyvuetify/components/FabTransition - /autoapi/ipyvuetify/components/FadeTransition - /autoapi/ipyvuetify/components/FileInput - /autoapi/ipyvuetify/components/Flex - /autoapi/ipyvuetify/components/Footer - /autoapi/ipyvuetify/components/Form - /autoapi/ipyvuetify/components/Hover - /autoapi/ipyvuetify/components/Html - /autoapi/ipyvuetify/components/Icon - /autoapi/ipyvuetify/components/Img - /autoapi/ipyvuetify/components/Input - /autoapi/ipyvuetify/components/Item - /autoapi/ipyvuetify/components/ItemGroup - /autoapi/ipyvuetify/components/Label - /autoapi/ipyvuetify/components/Layout - /autoapi/ipyvuetify/components/Lazy - /autoapi/ipyvuetify/components/List - /autoapi/ipyvuetify/components/ListGroup - /autoapi/ipyvuetify/components/ListItem - /autoapi/ipyvuetify/components/ListItemAction - /autoapi/ipyvuetify/components/ListItemActionText - /autoapi/ipyvuetify/components/ListItemAvatar - /autoapi/ipyvuetify/components/ListItemContent - /autoapi/ipyvuetify/components/ListItemGroup - /autoapi/ipyvuetify/components/ListItemIcon - /autoapi/ipyvuetify/components/ListItemSubtitle - /autoapi/ipyvuetify/components/ListItemTitle - /autoapi/ipyvuetify/components/Menu - /autoapi/ipyvuetify/components/MenuTransition - /autoapi/ipyvuetify/components/Messages - /autoapi/ipyvuetify/components/NavigationDrawer - /autoapi/ipyvuetify/components/OverflowBtn - /autoapi/ipyvuetify/components/Overlay - /autoapi/ipyvuetify/components/Pagination - /autoapi/ipyvuetify/components/Parallax - /autoapi/ipyvuetify/components/Picker - /autoapi/ipyvuetify/components/ProgressCircular - /autoapi/ipyvuetify/components/ProgressLinear - /autoapi/ipyvuetify/components/Radio - /autoapi/ipyvuetify/components/RadioGroup - /autoapi/ipyvuetify/components/RangeSlider - /autoapi/ipyvuetify/components/Rating - /autoapi/ipyvuetify/components/Responsive - /autoapi/ipyvuetify/components/Row - /autoapi/ipyvuetify/components/ScaleTransition - /autoapi/ipyvuetify/components/ScrollXReverseTransition - /autoapi/ipyvuetify/components/ScrollXTransition - /autoapi/ipyvuetify/components/ScrollYReverseTransition - /autoapi/ipyvuetify/components/ScrollYTransition - /autoapi/ipyvuetify/components/Select - /autoapi/ipyvuetify/components/Sheet - /autoapi/ipyvuetify/components/SimpleCheckbox - /autoapi/ipyvuetify/components/SimpleTable - /autoapi/ipyvuetify/components/SkeletonLoader - /autoapi/ipyvuetify/components/SlideGroup - /autoapi/ipyvuetify/components/SlideItem - /autoapi/ipyvuetify/components/SlideXReverseTransition - /autoapi/ipyvuetify/components/SlideXTransition - /autoapi/ipyvuetify/components/SlideYReverseTransition - /autoapi/ipyvuetify/components/SlideYTransition - /autoapi/ipyvuetify/components/Slider - /autoapi/ipyvuetify/components/Snackbar - /autoapi/ipyvuetify/components/Spacer - /autoapi/ipyvuetify/components/Sparkline - /autoapi/ipyvuetify/components/SpeedDial - /autoapi/ipyvuetify/components/Stepper - /autoapi/ipyvuetify/components/StepperContent - /autoapi/ipyvuetify/components/StepperHeader - /autoapi/ipyvuetify/components/StepperItems - /autoapi/ipyvuetify/components/StepperStep - /autoapi/ipyvuetify/components/Subheader - /autoapi/ipyvuetify/components/Switch - /autoapi/ipyvuetify/components/SystemBar - /autoapi/ipyvuetify/components/Tab - /autoapi/ipyvuetify/components/TabItem - /autoapi/ipyvuetify/components/TabReverseTransition - /autoapi/ipyvuetify/components/TabTransition - /autoapi/ipyvuetify/components/TableOverflow - /autoapi/ipyvuetify/components/Tabs - /autoapi/ipyvuetify/components/TabsItems - /autoapi/ipyvuetify/components/TabsSlider - /autoapi/ipyvuetify/components/Text - /autoapi/ipyvuetify/components/TextField - /autoapi/ipyvuetify/components/Textarea - /autoapi/ipyvuetify/components/ThemeProvider - /autoapi/ipyvuetify/components/TimePicker - /autoapi/ipyvuetify/components/TimePickerClock - /autoapi/ipyvuetify/components/TimePickerTitle - /autoapi/ipyvuetify/components/Timeline - /autoapi/ipyvuetify/components/TimelineItem - /autoapi/ipyvuetify/components/Toolbar - /autoapi/ipyvuetify/components/ToolbarItems - /autoapi/ipyvuetify/components/ToolbarTitle - /autoapi/ipyvuetify/components/Tooltip - /autoapi/ipyvuetify/components/Treeview - /autoapi/ipyvuetify/components/TreeviewNode - /autoapi/ipyvuetify/components/VirtualTable - /autoapi/ipyvuetify/components/VuetifyTemplate - /autoapi/ipyvuetify/components/VuetifyWidget - /autoapi/ipyvuetify/components/Window - /autoapi/ipyvuetify/components/WindowItem - -.. autoapisummary:: - - ipyvuetify.components.Alert - ipyvuetify.components.App - ipyvuetify.components.AppBar - ipyvuetify.components.AppBarNavIcon - ipyvuetify.components.Autocomplete - ipyvuetify.components.Avatar - ipyvuetify.components.Badge - ipyvuetify.components.Banner - ipyvuetify.components.BottomNavigation - ipyvuetify.components.BottomSheet - ipyvuetify.components.Breadcrumbs - ipyvuetify.components.BreadcrumbsDivider - ipyvuetify.components.BreadcrumbsItem - ipyvuetify.components.Btn - ipyvuetify.components.BtnToggle - ipyvuetify.components.Calendar - ipyvuetify.components.CalendarDaily - ipyvuetify.components.CalendarMonthly - ipyvuetify.components.CalendarWeekly - ipyvuetify.components.Card - ipyvuetify.components.CardActions - ipyvuetify.components.CardSubtitle - ipyvuetify.components.CardText - ipyvuetify.components.CardTitle - ipyvuetify.components.Carousel - ipyvuetify.components.CarouselItem - ipyvuetify.components.CarouselReverseTransition - ipyvuetify.components.CarouselTransition - ipyvuetify.components.Checkbox - ipyvuetify.components.Chip - ipyvuetify.components.ChipGroup - ipyvuetify.components.Col - ipyvuetify.components.ColorPicker - ipyvuetify.components.ColorPickerCanvas - ipyvuetify.components.ColorPickerSwatches - ipyvuetify.components.Combobox - ipyvuetify.components.Container - ipyvuetify.components.Content - ipyvuetify.components.Counter - ipyvuetify.components.Data - ipyvuetify.components.DataFooter - ipyvuetify.components.DataIterator - ipyvuetify.components.DataTable - ipyvuetify.components.DataTableHeader - ipyvuetify.components.DatePicker - ipyvuetify.components.DatePickerDateTable - ipyvuetify.components.DatePickerHeader - ipyvuetify.components.DatePickerMonthTable - ipyvuetify.components.DatePickerTitle - ipyvuetify.components.DatePickerYears - ipyvuetify.components.Dialog - ipyvuetify.components.DialogBottomTransition - ipyvuetify.components.DialogTransition - ipyvuetify.components.Divider - ipyvuetify.components.EditDialog - ipyvuetify.components.ExpandTransition - ipyvuetify.components.ExpandXTransition - ipyvuetify.components.ExpansionPanel - ipyvuetify.components.ExpansionPanelContent - ipyvuetify.components.ExpansionPanelHeader - ipyvuetify.components.ExpansionPanels - ipyvuetify.components.FabTransition - ipyvuetify.components.FadeTransition - ipyvuetify.components.FileInput - ipyvuetify.components.Flex - ipyvuetify.components.Footer - ipyvuetify.components.Form - ipyvuetify.components.Hover - ipyvuetify.components.Html - ipyvuetify.components.Icon - ipyvuetify.components.Img - ipyvuetify.components.Input - ipyvuetify.components.Item - ipyvuetify.components.ItemGroup - ipyvuetify.components.Label - ipyvuetify.components.Layout - ipyvuetify.components.Lazy - ipyvuetify.components.List - ipyvuetify.components.ListGroup - ipyvuetify.components.ListItem - ipyvuetify.components.ListItemAction - ipyvuetify.components.ListItemActionText - ipyvuetify.components.ListItemAvatar - ipyvuetify.components.ListItemContent - ipyvuetify.components.ListItemGroup - ipyvuetify.components.ListItemIcon - ipyvuetify.components.ListItemSubtitle - ipyvuetify.components.ListItemTitle - ipyvuetify.components.Menu - ipyvuetify.components.MenuTransition - ipyvuetify.components.Messages - ipyvuetify.components.NavigationDrawer - ipyvuetify.components.OverflowBtn - ipyvuetify.components.Overlay - ipyvuetify.components.Pagination - ipyvuetify.components.Parallax - ipyvuetify.components.Picker - ipyvuetify.components.ProgressCircular - ipyvuetify.components.ProgressLinear - ipyvuetify.components.Radio - ipyvuetify.components.RadioGroup - ipyvuetify.components.RangeSlider - ipyvuetify.components.Rating - ipyvuetify.components.Responsive - ipyvuetify.components.Row - ipyvuetify.components.ScaleTransition - ipyvuetify.components.ScrollXReverseTransition - ipyvuetify.components.ScrollXTransition - ipyvuetify.components.ScrollYReverseTransition - ipyvuetify.components.ScrollYTransition - ipyvuetify.components.Select - ipyvuetify.components.Sheet - ipyvuetify.components.SimpleCheckbox - ipyvuetify.components.SimpleTable - ipyvuetify.components.SkeletonLoader - ipyvuetify.components.SlideGroup - ipyvuetify.components.SlideItem - ipyvuetify.components.SlideXReverseTransition - ipyvuetify.components.SlideXTransition - ipyvuetify.components.SlideYReverseTransition - ipyvuetify.components.SlideYTransition - ipyvuetify.components.Slider - ipyvuetify.components.Snackbar - ipyvuetify.components.Spacer - ipyvuetify.components.Sparkline - ipyvuetify.components.SpeedDial - ipyvuetify.components.Stepper - ipyvuetify.components.StepperContent - ipyvuetify.components.StepperHeader - ipyvuetify.components.StepperItems - ipyvuetify.components.StepperStep - ipyvuetify.components.Subheader - ipyvuetify.components.Switch - ipyvuetify.components.SystemBar - ipyvuetify.components.Tab - ipyvuetify.components.TabItem - ipyvuetify.components.TabReverseTransition - ipyvuetify.components.TabTransition - ipyvuetify.components.TableOverflow - ipyvuetify.components.Tabs - ipyvuetify.components.TabsItems - ipyvuetify.components.TabsSlider - ipyvuetify.components.Text - ipyvuetify.components.TextField - ipyvuetify.components.Textarea - ipyvuetify.components.ThemeProvider - ipyvuetify.components.TimePicker - ipyvuetify.components.TimePickerClock - ipyvuetify.components.TimePickerTitle - ipyvuetify.components.Timeline - ipyvuetify.components.TimelineItem - ipyvuetify.components.Toolbar - ipyvuetify.components.ToolbarItems - ipyvuetify.components.ToolbarTitle - ipyvuetify.components.Tooltip - ipyvuetify.components.Treeview - ipyvuetify.components.TreeviewNode - ipyvuetify.components.VirtualTable - ipyvuetify.components.VuetifyTemplate - ipyvuetify.components.VuetifyWidget - ipyvuetify.components.Window - ipyvuetify.components.WindowItem - - diff --git a/docs/autoapi/ipyvuetify/extra/FileInput.clear.rst b/docs/autoapi/ipyvuetify/extra/FileInput.clear.rst deleted file mode 100644 index 5d904f28..00000000 --- a/docs/autoapi/ipyvuetify/extra/FileInput.clear.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.extra.FileInput.clear -================================ - -.. py:method:: ipyvuetify.extra.FileInput.clear() diff --git a/docs/autoapi/ipyvuetify/extra/FileInput.get_files.rst b/docs/autoapi/ipyvuetify/extra/FileInput.get_files.rst deleted file mode 100644 index e5374afe..00000000 --- a/docs/autoapi/ipyvuetify/extra/FileInput.get_files.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.extra.FileInput.get_files -==================================== - -.. py:method:: ipyvuetify.extra.FileInput.get_files(timeout=30) diff --git a/docs/autoapi/ipyvuetify/extra/FileInput.reset_stats.rst b/docs/autoapi/ipyvuetify/extra/FileInput.reset_stats.rst deleted file mode 100644 index 961bb5ff..00000000 --- a/docs/autoapi/ipyvuetify/extra/FileInput.reset_stats.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.extra.FileInput.reset_stats -====================================== - -.. py:method:: ipyvuetify.extra.FileInput.reset_stats() diff --git a/docs/autoapi/ipyvuetify/extra/FileInput.rst b/docs/autoapi/ipyvuetify/extra/FileInput.rst deleted file mode 100644 index 362037fa..00000000 --- a/docs/autoapi/ipyvuetify/extra/FileInput.rst +++ /dev/null @@ -1,89 +0,0 @@ -ipyvuetify.extra.FileInput -========================== - -.. toctree:: - :hidden: - - /autoapi/ipyvuetify/extra/FileInput.clear - /autoapi/ipyvuetify/extra/FileInput.get_files - /autoapi/ipyvuetify/extra/FileInput.reset_stats - /autoapi/ipyvuetify/extra/FileInput.update_stats - /autoapi/ipyvuetify/extra/FileInput.vue_upload - -.. py:class:: ipyvuetify.extra.FileInput(**kwargs) - - Bases: :py:obj:`ipyvuetify.VuetifyTemplate` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: accept - - - .. py:attribute:: chunk_listeners - - - .. py:attribute:: data - - - .. py:attribute:: directory - - - .. py:attribute:: disabled - - - .. py:attribute:: file_info - - - .. py:attribute:: multiple - - - .. py:attribute:: progress_indeterminate - - - .. py:attribute:: show_progress - - - .. py:attribute:: stats - :value: [] - - - - .. py:attribute:: template - - - .. py:attribute:: total_progress - - - .. py:attribute:: total_progress_inner - :value: 0 - - - - .. py:attribute:: total_size_inner - :value: 0 - - - - .. py:attribute:: version - -Methods -------- - -.. autoapisummary:: - - ipyvuetify.extra.FileInput.clear - ipyvuetify.extra.FileInput.get_files - ipyvuetify.extra.FileInput.reset_stats - ipyvuetify.extra.FileInput.update_stats - ipyvuetify.extra.FileInput.vue_upload - - diff --git a/docs/autoapi/ipyvuetify/extra/FileInput.update_stats.rst b/docs/autoapi/ipyvuetify/extra/FileInput.update_stats.rst deleted file mode 100644 index d43a63ea..00000000 --- a/docs/autoapi/ipyvuetify/extra/FileInput.update_stats.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.extra.FileInput.update_stats -======================================= - -.. py:method:: ipyvuetify.extra.FileInput.update_stats(file_index, bytes_read) diff --git a/docs/autoapi/ipyvuetify/extra/FileInput.vue_upload.rst b/docs/autoapi/ipyvuetify/extra/FileInput.vue_upload.rst deleted file mode 100644 index 3a3e1530..00000000 --- a/docs/autoapi/ipyvuetify/extra/FileInput.vue_upload.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.extra.FileInput.vue_upload -===================================== - -.. py:method:: ipyvuetify.extra.FileInput.vue_upload(content, buffers) diff --git a/docs/autoapi/ipyvuetify/extra/file_input/FileInput.clear.rst b/docs/autoapi/ipyvuetify/extra/file_input/FileInput.clear.rst deleted file mode 100644 index 05f68cac..00000000 --- a/docs/autoapi/ipyvuetify/extra/file_input/FileInput.clear.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.extra.file_input.FileInput.clear -=========================================== - -.. py:method:: ipyvuetify.extra.file_input.FileInput.clear() diff --git a/docs/autoapi/ipyvuetify/extra/file_input/FileInput.get_files.rst b/docs/autoapi/ipyvuetify/extra/file_input/FileInput.get_files.rst deleted file mode 100644 index ff08a9d0..00000000 --- a/docs/autoapi/ipyvuetify/extra/file_input/FileInput.get_files.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.extra.file_input.FileInput.get_files -=============================================== - -.. py:method:: ipyvuetify.extra.file_input.FileInput.get_files(timeout=30) diff --git a/docs/autoapi/ipyvuetify/extra/file_input/FileInput.reset_stats.rst b/docs/autoapi/ipyvuetify/extra/file_input/FileInput.reset_stats.rst deleted file mode 100644 index 5a393dc1..00000000 --- a/docs/autoapi/ipyvuetify/extra/file_input/FileInput.reset_stats.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.extra.file_input.FileInput.reset_stats -================================================= - -.. py:method:: ipyvuetify.extra.file_input.FileInput.reset_stats() diff --git a/docs/autoapi/ipyvuetify/extra/file_input/FileInput.rst b/docs/autoapi/ipyvuetify/extra/file_input/FileInput.rst deleted file mode 100644 index f1c36d7b..00000000 --- a/docs/autoapi/ipyvuetify/extra/file_input/FileInput.rst +++ /dev/null @@ -1,89 +0,0 @@ -ipyvuetify.extra.file_input.FileInput -===================================== - -.. toctree:: - :hidden: - - /autoapi/ipyvuetify/extra/file_input/FileInput.clear - /autoapi/ipyvuetify/extra/file_input/FileInput.get_files - /autoapi/ipyvuetify/extra/file_input/FileInput.reset_stats - /autoapi/ipyvuetify/extra/file_input/FileInput.update_stats - /autoapi/ipyvuetify/extra/file_input/FileInput.vue_upload - -.. py:class:: ipyvuetify.extra.file_input.FileInput(**kwargs) - - Bases: :py:obj:`ipyvuetify.VuetifyTemplate` - - - Widget that can be inserted into the DOM - - Parameters - ---------- - tooltip: str - tooltip caption - layout: InstanceDict(Layout) - widget layout - - - .. py:attribute:: accept - - - .. py:attribute:: chunk_listeners - - - .. py:attribute:: data - - - .. py:attribute:: directory - - - .. py:attribute:: disabled - - - .. py:attribute:: file_info - - - .. py:attribute:: multiple - - - .. py:attribute:: progress_indeterminate - - - .. py:attribute:: show_progress - - - .. py:attribute:: stats - :value: [] - - - - .. py:attribute:: template - - - .. py:attribute:: total_progress - - - .. py:attribute:: total_progress_inner - :value: 0 - - - - .. py:attribute:: total_size_inner - :value: 0 - - - - .. py:attribute:: version - -Methods -------- - -.. autoapisummary:: - - ipyvuetify.extra.file_input.FileInput.clear - ipyvuetify.extra.file_input.FileInput.get_files - ipyvuetify.extra.file_input.FileInput.reset_stats - ipyvuetify.extra.file_input.FileInput.update_stats - ipyvuetify.extra.file_input.FileInput.vue_upload - - diff --git a/docs/autoapi/ipyvuetify/extra/file_input/FileInput.update_stats.rst b/docs/autoapi/ipyvuetify/extra/file_input/FileInput.update_stats.rst deleted file mode 100644 index 41464b26..00000000 --- a/docs/autoapi/ipyvuetify/extra/file_input/FileInput.update_stats.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.extra.file_input.FileInput.update_stats -================================================== - -.. py:method:: ipyvuetify.extra.file_input.FileInput.update_stats(file_index, bytes_read) diff --git a/docs/autoapi/ipyvuetify/extra/file_input/FileInput.vue_upload.rst b/docs/autoapi/ipyvuetify/extra/file_input/FileInput.vue_upload.rst deleted file mode 100644 index d30f646e..00000000 --- a/docs/autoapi/ipyvuetify/extra/file_input/FileInput.vue_upload.rst +++ /dev/null @@ -1,4 +0,0 @@ -ipyvuetify.extra.file_input.FileInput.vue_upload -================================================ - -.. py:method:: ipyvuetify.extra.file_input.FileInput.vue_upload(content, buffers) diff --git a/docs/autoapi/ipyvuetify/extra/file_input/index.rst b/docs/autoapi/ipyvuetify/extra/file_input/index.rst deleted file mode 100644 index aeba785b..00000000 --- a/docs/autoapi/ipyvuetify/extra/file_input/index.rst +++ /dev/null @@ -1,19 +0,0 @@ -ipyvuetify.extra.file_input -=========================== - -.. py:module:: ipyvuetify.extra.file_input - - -Classes -------- - -.. toctree:: - :hidden: - - /autoapi/ipyvuetify/extra/file_input/FileInput - -.. autoapisummary:: - - ipyvuetify.extra.file_input.FileInput - - diff --git a/docs/autoapi/ipyvuetify/extra/index.rst b/docs/autoapi/ipyvuetify/extra/index.rst deleted file mode 100644 index 29bff9df..00000000 --- a/docs/autoapi/ipyvuetify/extra/index.rst +++ /dev/null @@ -1,28 +0,0 @@ -ipyvuetify.extra -================ - -.. py:module:: ipyvuetify.extra - - -Submodules ----------- - -.. toctree:: - :maxdepth: 1 - - /autoapi/ipyvuetify/extra/file_input/index - - -Classes -------- - -.. toctree:: - :hidden: - - /autoapi/ipyvuetify/extra/FileInput - -.. autoapisummary:: - - ipyvuetify.extra.FileInput - - diff --git a/docs/autoapi/ipyvuetify/index.rst b/docs/autoapi/ipyvuetify/index.rst deleted file mode 100644 index 26788631..00000000 --- a/docs/autoapi/ipyvuetify/index.rst +++ /dev/null @@ -1,173 +0,0 @@ -ipyvuetify -========== - -.. py:module:: ipyvuetify - - -Submodules ----------- - -.. toctree:: - :maxdepth: 1 - - /autoapi/ipyvuetify/Themes/index - /autoapi/ipyvuetify/components/index - /autoapi/ipyvuetify/extra/index - - -Attributes ----------- - -.. autoapisummary:: - - ipyvuetify.theme - - -Classes -------- - -.. toctree:: - :hidden: - - /autoapi/ipyvuetify/App - /autoapi/ipyvuetify/AppBarNavIcon - /autoapi/ipyvuetify/Breadcrumbs - /autoapi/ipyvuetify/BreadcrumbsDivider - /autoapi/ipyvuetify/CardActions - /autoapi/ipyvuetify/CardSubtitle - /autoapi/ipyvuetify/CardText - /autoapi/ipyvuetify/CardTitle - /autoapi/ipyvuetify/CarouselReverseTransition - /autoapi/ipyvuetify/CarouselTransition - /autoapi/ipyvuetify/DataFooter - /autoapi/ipyvuetify/DataTableHeader - /autoapi/ipyvuetify/DialogBottomTransition - /autoapi/ipyvuetify/DialogTransition - /autoapi/ipyvuetify/Divider - /autoapi/ipyvuetify/EditDialog - /autoapi/ipyvuetify/ExpandTransition - /autoapi/ipyvuetify/ExpandXTransition - /autoapi/ipyvuetify/ExpansionPanel - /autoapi/ipyvuetify/ExpansionPanelContent - /autoapi/ipyvuetify/FabTransition - /autoapi/ipyvuetify/FadeTransition - /autoapi/ipyvuetify/Form - /autoapi/ipyvuetify/Html - /autoapi/ipyvuetify/Item - /autoapi/ipyvuetify/ListItemAction - /autoapi/ipyvuetify/ListItemActionText - /autoapi/ipyvuetify/ListItemContent - /autoapi/ipyvuetify/ListItemIcon - /autoapi/ipyvuetify/ListItemSubtitle - /autoapi/ipyvuetify/ListItemTitle - /autoapi/ipyvuetify/MenuTransition - /autoapi/ipyvuetify/Messages - /autoapi/ipyvuetify/Row - /autoapi/ipyvuetify/ScaleTransition - /autoapi/ipyvuetify/ScrollXReverseTransition - /autoapi/ipyvuetify/ScrollXTransition - /autoapi/ipyvuetify/ScrollYReverseTransition - /autoapi/ipyvuetify/ScrollYTransition - /autoapi/ipyvuetify/SimpleCheckbox - /autoapi/ipyvuetify/SlideItem - /autoapi/ipyvuetify/SlideXReverseTransition - /autoapi/ipyvuetify/SlideXTransition - /autoapi/ipyvuetify/SlideYReverseTransition - /autoapi/ipyvuetify/SlideYTransition - /autoapi/ipyvuetify/Snackbar - /autoapi/ipyvuetify/Spacer - /autoapi/ipyvuetify/SpeedDial - /autoapi/ipyvuetify/Stepper - /autoapi/ipyvuetify/StepperHeader - /autoapi/ipyvuetify/StepperItems - /autoapi/ipyvuetify/Subheader - /autoapi/ipyvuetify/TabReverseTransition - /autoapi/ipyvuetify/TabTransition - /autoapi/ipyvuetify/TableOverflow - /autoapi/ipyvuetify/TabsSlider - /autoapi/ipyvuetify/ThemeProvider - /autoapi/ipyvuetify/TimePickerClock - /autoapi/ipyvuetify/TimePickerTitle - /autoapi/ipyvuetify/Timeline - /autoapi/ipyvuetify/TimelineItem - /autoapi/ipyvuetify/ToolbarItems - /autoapi/ipyvuetify/ToolbarTitle - /autoapi/ipyvuetify/Treeview - /autoapi/ipyvuetify/TreeviewNode - /autoapi/ipyvuetify/VuetifyTemplate - -.. autoapisummary:: - - ipyvuetify.App - ipyvuetify.AppBarNavIcon - ipyvuetify.Breadcrumbs - ipyvuetify.BreadcrumbsDivider - ipyvuetify.CardActions - ipyvuetify.CardSubtitle - ipyvuetify.CardText - ipyvuetify.CardTitle - ipyvuetify.CarouselReverseTransition - ipyvuetify.CarouselTransition - ipyvuetify.DataFooter - ipyvuetify.DataTableHeader - ipyvuetify.DialogBottomTransition - ipyvuetify.DialogTransition - ipyvuetify.Divider - ipyvuetify.EditDialog - ipyvuetify.ExpandTransition - ipyvuetify.ExpandXTransition - ipyvuetify.ExpansionPanel - ipyvuetify.ExpansionPanelContent - ipyvuetify.FabTransition - ipyvuetify.FadeTransition - ipyvuetify.Form - ipyvuetify.Html - ipyvuetify.Item - ipyvuetify.ListItemAction - ipyvuetify.ListItemActionText - ipyvuetify.ListItemContent - ipyvuetify.ListItemIcon - ipyvuetify.ListItemSubtitle - ipyvuetify.ListItemTitle - ipyvuetify.MenuTransition - ipyvuetify.Messages - ipyvuetify.Row - ipyvuetify.ScaleTransition - ipyvuetify.ScrollXReverseTransition - ipyvuetify.ScrollXTransition - ipyvuetify.ScrollYReverseTransition - ipyvuetify.ScrollYTransition - ipyvuetify.SimpleCheckbox - ipyvuetify.SlideItem - ipyvuetify.SlideXReverseTransition - ipyvuetify.SlideXTransition - ipyvuetify.SlideYReverseTransition - ipyvuetify.SlideYTransition - ipyvuetify.Snackbar - ipyvuetify.Spacer - ipyvuetify.SpeedDial - ipyvuetify.Stepper - ipyvuetify.StepperHeader - ipyvuetify.StepperItems - ipyvuetify.Subheader - ipyvuetify.TabReverseTransition - ipyvuetify.TabTransition - ipyvuetify.TableOverflow - ipyvuetify.TabsSlider - ipyvuetify.ThemeProvider - ipyvuetify.TimePickerClock - ipyvuetify.TimePickerTitle - ipyvuetify.Timeline - ipyvuetify.TimelineItem - ipyvuetify.ToolbarItems - ipyvuetify.ToolbarTitle - ipyvuetify.Treeview - ipyvuetify.TreeviewNode - ipyvuetify.VuetifyTemplate - - -Package Contents ----------------- - -.. py:data:: theme - From ddaa2b3d8c89e8a1006e6e8c39f904cb9fb9a33b Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Thu, 20 Nov 2025 23:02:50 +0000 Subject: [PATCH 019/110] fix: make sure non documented components are build as well --- generate_source/python.njk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/generate_source/python.njk b/generate_source/python.njk index 8b92388d..6e9030ed 100644 --- a/generate_source/python.njk +++ b/generate_source/python.njk @@ -26,7 +26,9 @@ from ipywidgets.widgets.widget import widget_serialization class {{ widget.name }}({{ widget.inherits | join(", ") }}): +{% if widget.doc %} """{{ widget.doc }}""" +{% endif %} {% block widgetbody %} _model_name = Unicode('{{ widget.name }}Model').tag(sync=True) @@ -34,7 +36,9 @@ class {{ widget.name }}({{ widget.inherits | join(", ") }}): {% if widget.properties %} {% for propName, prop in widget.properties %} {{ propName }} = {{ prop.traitDef }} + {% if prop.doc %} """{{ prop.doc }}""" + {% endif %} {% endfor %} {% else %} From bc576dc00b0b2017a78b92c6f3f4463338afc1ca Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Fri, 21 Nov 2025 08:15:59 +0000 Subject: [PATCH 020/110] docs: use the correct highlighter for vue file --- docs/template_usage.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/template_usage.rst b/docs/template_usage.rst index 6f30d912..bb56ef8c 100644 --- a/docs/template_usage.rst +++ b/docs/template_usage.rst @@ -68,9 +68,9 @@ available using the normal wrapped Vuetify widgets: .fruit-selector td { border: 1px solid black; } - + - + ''' fruits = FruitSelector(fruits=['Banana', 'Pear', 'Apple']) fruits @@ -95,7 +95,7 @@ our VuetifyTemplate to it. Vuetify template ``fruit-selector.vue``: .. literalinclude:: fruit-selector.vue - :language: html + :language: vue Python: From ce9c490bd0c16519c342ac0faf8fcb27117f2cb1 Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Fri, 21 Nov 2025 09:13:46 +0000 Subject: [PATCH 021/110] docs: move documentation in getting started --- docs/index.rst | 6 +-- docs/{ => start}/advanced_usage.rst | 0 docs/{ => start}/fruit-selector.vue | 0 docs/{introduction.rst => start/index.rst} | 15 +++++-- docs/{ => start}/installation.rst | 0 docs/{ => start}/showcase.py | 0 docs/{ => start}/template_usage.rst | 0 docs/{ => start}/usage.rst | 48 +++++++++++----------- 8 files changed, 37 insertions(+), 32 deletions(-) rename docs/{ => start}/advanced_usage.rst (100%) rename docs/{ => start}/fruit-selector.vue (100%) rename docs/{introduction.rst => start/index.rst} (91%) rename docs/{ => start}/installation.rst (100%) rename docs/{ => start}/showcase.py (100%) rename docs/{ => start}/template_usage.rst (100%) rename docs/{ => start}/usage.rst (98%) diff --git a/docs/index.rst b/docs/index.rst index fba7c6a9..913bf6de 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -64,8 +64,4 @@ Jupyter widgets based on Vuetify UI components .. toctree:: :hidden: - introduction - installation - usage - advanced_usage - template_usage + start/index diff --git a/docs/advanced_usage.rst b/docs/start/advanced_usage.rst similarity index 100% rename from docs/advanced_usage.rst rename to docs/start/advanced_usage.rst diff --git a/docs/fruit-selector.vue b/docs/start/fruit-selector.vue similarity index 100% rename from docs/fruit-selector.vue rename to docs/start/fruit-selector.vue diff --git a/docs/introduction.rst b/docs/start/index.rst similarity index 91% rename from docs/introduction.rst rename to docs/start/index.rst index 76702d20..17b14b51 100644 --- a/docs/introduction.rst +++ b/docs/start/index.rst @@ -1,5 +1,14 @@ -Introduction -============ +Getting Started +=============== + +.. toctree:: + :maxdepth: 1 + :hidden: + + installation + usage + advanced_usage + template_usage Ipyvuetify is a widget library for making modern looking GUI's in Jupyter notebooks (classic and lab) and dashboards (`Voilà `_). It's based on the `Google material design philosophy @@ -30,4 +39,4 @@ In :doc:`usage` all concepts and how they differ from ipywidgets will be explain To explore which widgets are available and how to use them we defer to the `Vuetify documentation `_. You can browse examples on the left-hand side and see the source code by clicking on '< >' on the top right-hand side of the example. By reading :doc:`usage` you -will be able to translate the examples to ipyvuetify. +will be able to translate the examples to ipyvuetify. \ No newline at end of file diff --git a/docs/installation.rst b/docs/start/installation.rst similarity index 100% rename from docs/installation.rst rename to docs/start/installation.rst diff --git a/docs/showcase.py b/docs/start/showcase.py similarity index 100% rename from docs/showcase.py rename to docs/start/showcase.py diff --git a/docs/template_usage.rst b/docs/start/template_usage.rst similarity index 100% rename from docs/template_usage.rst rename to docs/start/template_usage.rst diff --git a/docs/usage.rst b/docs/start/usage.rst similarity index 98% rename from docs/usage.rst rename to docs/start/usage.rst index 793c0bc9..399793c2 100644 --- a/docs/usage.rst +++ b/docs/start/usage.rst @@ -103,26 +103,26 @@ This can be the same in ipyvuetify. for non-vuetify related attributes, the ones from the HTML tag, can be accessed through the :code:`attributes` trait. -Vuetify: +Vuetify: -.. code-block:: html +.. code-block:: html Download PDF - + ipyvuetify: .. jupyter-execute:: v.Btn( - class_="ma-2", - outlined=True, - href="file.pdf", - attributes={"download": True}, + class_="ma-2", + outlined=True, + href="file.pdf", + attributes={"download": True}, children=["Download PDF"] ) - + Reading the value ----------------- @@ -262,7 +262,7 @@ of attributes you will find a tab for the events. In Vuetify events are defined as attributes with an :code:`@` prefix. The equivalent Vuetify syntax of the example above is: -.. code-block:: html +.. code-block:: vue @@ -292,7 +292,7 @@ ipyvuetify v.Container(children=[ v.Html( - tag='h1', + tag='h1', attributes={'title': 'a title'}, children=['My heading'] ) @@ -337,56 +337,56 @@ And colors: v.Container(children=[ v.Btn(class_=f'mx-2 indigo lighten-{i+1}', children=[f'Button {i}']) for i in range(3) ]) - + ClassList attribute ^^^^^^^^^^^^^^^^^^^ The :code:`class` attribute of a Vuetify DOM elements give access to the built-in styles of the lib. See the `vuetify site `__ to know more about available styling class. As mentioned in the previous section this can be set using the :code:`class_` member of the widget. In addition, ipyvuetify provides a :code:`class_list` member that works the same way as the `MDN classList property `__. It embeds the following methods: - :code:`add(*args)`: add class elements to the class\_ trait of the widget - + .. jupyter-execute:: - + w = v.Btn(children=["click"]) w.class_list.add("red", "white--text") w - :code:`remove(*args)`: remove class elements from the class\_ trait of the widget - + .. jupyter-execute:: - + w = v.Btn(children=["click"], class_="red white--text") w.class_list.remove("white--text") w - + - :code:`replace(src, dst)`: replace class elements in the class\_ trait of the widget - + .. jupyter-execute:: - + w = v.Btn(children=["click"], class_="red white--text") w.class_list.replace("red", "orange") w - + - :code:`toggle(arg)`: toggle class elements from the class\_ trait of the widget - + .. jupyter-execute:: - + w = v.Btn(children=["click"], class_="red white--text") w.class_list.toggle("blue", "red") w - + Visibility ^^^^^^^^^^ ipyvuetify widgets visibility can be changed using the built-in methods :code:`hide()` and :code:`show()`. -Using :code:`hide` will add the :code:`d-none` class to the widget and :code:`show` will remove it, hiding and showing the widget to the end user without removing it from the notebook. +Using :code:`hide` will add the :code:`d-none` class to the widget and :code:`show` will remove it, hiding and showing the widget to the end user without removing it from the notebook. .. jupyter-execute:: w = v.Icon(children=['mdi-eye-off']) w.hide() w - + .. jupyter-execute:: w = v.Icon(children=['mdi-eye'], class_="d-none") From f9837745c2901d1d6ddf6a841c23fd6144fadb6c Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Fri, 21 Nov 2025 09:25:46 +0000 Subject: [PATCH 022/110] docs: place the images in the right spot --- docs/start/advanced_usage.rst | 4 ++-- docs/start/template_usage.rst | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/start/advanced_usage.rst b/docs/start/advanced_usage.rst index 890fcfa2..02e2f488 100644 --- a/docs/start/advanced_usage.rst +++ b/docs/start/advanced_usage.rst @@ -117,12 +117,12 @@ the full width: Which displays on a laptop as: -.. image:: images/responsive-laptop.png +.. image:: ../images/responsive-laptop.png :width: 680 On a phone as: -.. image:: images/responsive-mobile.png +.. image:: ../images/responsive-mobile.png :width: 263 In the `display section `_ you will find CSS helper classes to do more diff --git a/docs/start/template_usage.rst b/docs/start/template_usage.rst index bb56ef8c..944d08cf 100644 --- a/docs/start/template_usage.rst +++ b/docs/start/template_usage.rst @@ -145,7 +145,7 @@ Now that your Vue templates are in a file, we can add a file watch to support ho A demonstration in a screen capture: -.. image:: images/template-hot-reload.gif +.. image:: ../images/template-hot-reload.gif :width: 1000 From 484402712cd6c29301707c6276ee038a4cfe5685 Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Fri, 21 Nov 2025 09:46:19 +0000 Subject: [PATCH 023/110] build(docs): prevent reload upon autoapi changes --- noxfile.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 594f0329..e7102e41 100644 --- a/noxfile.py +++ b/noxfile.py @@ -30,4 +30,5 @@ def docs_live(session): session.install(".[doc]") session.install("sphinx-autobuild") dst = "docs/_build/html" - session.run("sphinx-autobuild", "-v", "-b", build, "docs", dst) \ No newline at end of file + ignore = "docs/autoapi/.*" + session.run("sphinx-autobuild", "-v", "--re-ignore", ignore, "-b", build, "docs", dst) From 780e7f46b1c19a4c269897f1b1746e41c3a3592d Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Fri, 21 Nov 2025 09:57:50 +0000 Subject: [PATCH 024/110] docs: add an empty page for each component --- docs/component/Alert.rst | 5 +++++ docs/component/App.rst | 5 +++++ docs/component/AppBar.rst | 5 +++++ docs/component/AppBarNavIcon.rst | 5 +++++ docs/component/Autocomplete.rst | 5 +++++ docs/component/Avatar.rst | 5 +++++ docs/component/Badge.rst | 5 +++++ docs/component/Banner.rst | 5 +++++ docs/component/BottomNavigation.rst | 5 +++++ docs/component/BottomSheet.rst | 5 +++++ docs/component/Breadcrumbs.rst | 5 +++++ docs/component/BreadcrumbsDivider.rst | 5 +++++ docs/component/BreadcrumbsItem.rst | 5 +++++ docs/component/Btn.rst | 5 +++++ docs/component/BtnToggle.rst | 5 +++++ docs/component/Calendar.rst | 5 +++++ docs/component/CalendarDaily.rst | 5 +++++ docs/component/CalendarMonthly.rst | 5 +++++ docs/component/CalendarWeekly.rst | 5 +++++ docs/component/Card.rst | 5 +++++ docs/component/CardActions.rst | 5 +++++ docs/component/CardSubtitle.rst | 5 +++++ docs/component/CardText.rst | 5 +++++ docs/component/CardTitle.rst | 5 +++++ docs/component/Carousel.rst | 5 +++++ docs/component/CarouselItem.rst | 5 +++++ docs/component/CarouselReverseTransition.rst | 5 +++++ docs/component/CarouselTransition.rst | 5 +++++ docs/component/Checkbox.rst | 5 +++++ docs/component/Chip.rst | 5 +++++ docs/component/ChipGroup.rst | 5 +++++ docs/component/Col.rst | 5 +++++ docs/component/ColorPicker.rst | 5 +++++ docs/component/ColorPickerCanvas.rst | 5 +++++ docs/component/ColorPickerSwatches.rst | 5 +++++ docs/component/Combobox.rst | 5 +++++ docs/component/Container.rst | 5 +++++ docs/component/Content.rst | 5 +++++ docs/component/Counter.rst | 5 +++++ docs/component/Data.rst | 5 +++++ docs/component/DataFooter.rst | 5 +++++ docs/component/DataIterator.rst | 5 +++++ docs/component/DataTable.rst | 5 +++++ docs/component/DataTableHeader.rst | 5 +++++ docs/component/DatePicker.rst | 5 +++++ docs/component/DatePickerDateTable.rst | 5 +++++ docs/component/DatePickerHeader.rst | 5 +++++ docs/component/DatePickerMonthTable.rst | 5 +++++ docs/component/DatePickerTitle.rst | 5 +++++ docs/component/DatePickerYears.rst | 5 +++++ docs/component/Dialog.rst | 5 +++++ docs/component/DialogBottomTransition.rst | 5 +++++ docs/component/DialogTransition.rst | 5 +++++ docs/component/Divider.rst | 5 +++++ docs/component/EditDialog.rst | 5 +++++ docs/component/ExpandTransition.rst | 5 +++++ docs/component/ExpandXTransition.rst | 5 +++++ docs/component/ExpansionPanel.rst | 5 +++++ docs/component/ExpansionPanelContent.rst | 5 +++++ docs/component/ExpansionPanelHeader.rst | 5 +++++ docs/component/ExpansionPanels.rst | 5 +++++ docs/component/FabTransition.rst | 5 +++++ docs/component/FadeTransition.rst | 5 +++++ docs/component/FileInput.rst | 5 +++++ docs/component/Flex.rst | 5 +++++ docs/component/Footer.rst | 5 +++++ docs/component/Form.rst | 5 +++++ docs/component/Hover.rst | 5 +++++ docs/component/Icon.rst | 5 +++++ docs/component/Img.rst | 5 +++++ docs/component/Input.rst | 5 +++++ docs/component/Intersect.rst | 5 +++++ docs/component/Item.rst | 5 +++++ docs/component/ItemGroup.rst | 5 +++++ docs/component/Label.rst | 5 +++++ docs/component/Layout.rst | 5 +++++ docs/component/Lazy.rst | 5 +++++ docs/component/List.rst | 5 +++++ docs/component/ListGroup.rst | 5 +++++ docs/component/ListItem.rst | 5 +++++ docs/component/ListItemAction.rst | 5 +++++ docs/component/ListItemActionText.rst | 5 +++++ docs/component/ListItemAvatar.rst | 5 +++++ docs/component/ListItemContent.rst | 5 +++++ docs/component/ListItemGroup.rst | 5 +++++ docs/component/ListItemIcon.rst | 5 +++++ docs/component/ListItemSubtitle.rst | 5 +++++ docs/component/ListItemTitle.rst | 5 +++++ docs/component/Menu.rst | 5 +++++ docs/component/MenuTransition.rst | 5 +++++ docs/component/Messages.rst | 5 +++++ docs/component/Mutate.rst | 5 +++++ docs/component/NavigationDrawer.rst | 5 +++++ docs/component/OverflowBtn.rst | 5 +++++ docs/component/Overlay.rst | 5 +++++ docs/component/Pagination.rst | 5 +++++ docs/component/Parallax.rst | 5 +++++ docs/component/Picker.rst | 5 +++++ docs/component/ProgressCircular.rst | 5 +++++ docs/component/ProgressLinear.rst | 5 +++++ docs/component/Radio.rst | 5 +++++ docs/component/RadioGroup.rst | 5 +++++ docs/component/RangeSlider.rst | 5 +++++ docs/component/Rating.rst | 5 +++++ docs/component/Resize.rst | 5 +++++ docs/component/Responsive.rst | 5 +++++ docs/component/Ripple.rst | 5 +++++ docs/component/Row.rst | 5 +++++ docs/component/ScaleTransition.rst | 5 +++++ docs/component/Scroll.rst | 5 +++++ docs/component/ScrollXReverseTransition.rst | 5 +++++ docs/component/ScrollXTransition.rst | 5 +++++ docs/component/ScrollYReverseTransition.rst | 5 +++++ docs/component/ScrollYTransition.rst | 5 +++++ docs/component/Select.rst | 5 +++++ docs/component/Sheet.rst | 5 +++++ docs/component/SimpleCheckbox.rst | 5 +++++ docs/component/SimpleTable.rst | 5 +++++ docs/component/SkeletonLoader.rst | 5 +++++ docs/component/SlideGroup.rst | 5 +++++ docs/component/SlideItem.rst | 5 +++++ docs/component/SlideXReverseTransition.rst | 5 +++++ docs/component/SlideXTransition.rst | 5 +++++ docs/component/SlideYReverseTransition.rst | 5 +++++ docs/component/SlideYTransition.rst | 5 +++++ docs/component/Slider.rst | 5 +++++ docs/component/Snackbar.rst | 5 +++++ docs/component/Spacer.rst | 5 +++++ docs/component/Sparkline.rst | 5 +++++ docs/component/SpeedDial.rst | 5 +++++ docs/component/Stepper.rst | 5 +++++ docs/component/StepperContent.rst | 5 +++++ docs/component/StepperHeader.rst | 5 +++++ docs/component/StepperItems.rst | 5 +++++ docs/component/StepperStep.rst | 5 +++++ docs/component/Subheader.rst | 5 +++++ docs/component/Switch.rst | 5 +++++ docs/component/SystemBar.rst | 5 +++++ docs/component/Tab.rst | 5 +++++ docs/component/TabItem.rst | 5 +++++ docs/component/TabReverseTransition.rst | 5 +++++ docs/component/TabTransition.rst | 5 +++++ docs/component/TableOverflow.rst | 5 +++++ docs/component/Tabs.rst | 5 +++++ docs/component/TabsItems.rst | 5 +++++ docs/component/TabsSlider.rst | 5 +++++ docs/component/TextField.rst | 5 +++++ docs/component/Textarea.rst | 5 +++++ docs/component/ThemeProvider.rst | 5 +++++ docs/component/TimePicker.rst | 5 +++++ docs/component/TimePickerClock.rst | 5 +++++ docs/component/TimePickerTitle.rst | 5 +++++ docs/component/Timeline.rst | 5 +++++ docs/component/TimelineItem.rst | 5 +++++ docs/component/Toolbar.rst | 5 +++++ docs/component/ToolbarItems.rst | 5 +++++ docs/component/ToolbarTitle.rst | 5 +++++ docs/component/Tooltip.rst | 5 +++++ docs/component/Touch.rst | 5 +++++ docs/component/Treeview.rst | 5 +++++ docs/component/TreeviewNode.rst | 5 +++++ docs/component/VirtualTable.rst | 5 +++++ docs/component/Window.rst | 5 +++++ docs/component/WindowItem.rst | 5 +++++ docs/component/index.rst | 8 ++++++++ docs/index.rst | 1 + 166 files changed, 829 insertions(+) create mode 100644 docs/component/Alert.rst create mode 100644 docs/component/App.rst create mode 100644 docs/component/AppBar.rst create mode 100644 docs/component/AppBarNavIcon.rst create mode 100644 docs/component/Autocomplete.rst create mode 100644 docs/component/Avatar.rst create mode 100644 docs/component/Badge.rst create mode 100644 docs/component/Banner.rst create mode 100644 docs/component/BottomNavigation.rst create mode 100644 docs/component/BottomSheet.rst create mode 100644 docs/component/Breadcrumbs.rst create mode 100644 docs/component/BreadcrumbsDivider.rst create mode 100644 docs/component/BreadcrumbsItem.rst create mode 100644 docs/component/Btn.rst create mode 100644 docs/component/BtnToggle.rst create mode 100644 docs/component/Calendar.rst create mode 100644 docs/component/CalendarDaily.rst create mode 100644 docs/component/CalendarMonthly.rst create mode 100644 docs/component/CalendarWeekly.rst create mode 100644 docs/component/Card.rst create mode 100644 docs/component/CardActions.rst create mode 100644 docs/component/CardSubtitle.rst create mode 100644 docs/component/CardText.rst create mode 100644 docs/component/CardTitle.rst create mode 100644 docs/component/Carousel.rst create mode 100644 docs/component/CarouselItem.rst create mode 100644 docs/component/CarouselReverseTransition.rst create mode 100644 docs/component/CarouselTransition.rst create mode 100644 docs/component/Checkbox.rst create mode 100644 docs/component/Chip.rst create mode 100644 docs/component/ChipGroup.rst create mode 100644 docs/component/Col.rst create mode 100644 docs/component/ColorPicker.rst create mode 100644 docs/component/ColorPickerCanvas.rst create mode 100644 docs/component/ColorPickerSwatches.rst create mode 100644 docs/component/Combobox.rst create mode 100644 docs/component/Container.rst create mode 100644 docs/component/Content.rst create mode 100644 docs/component/Counter.rst create mode 100644 docs/component/Data.rst create mode 100644 docs/component/DataFooter.rst create mode 100644 docs/component/DataIterator.rst create mode 100644 docs/component/DataTable.rst create mode 100644 docs/component/DataTableHeader.rst create mode 100644 docs/component/DatePicker.rst create mode 100644 docs/component/DatePickerDateTable.rst create mode 100644 docs/component/DatePickerHeader.rst create mode 100644 docs/component/DatePickerMonthTable.rst create mode 100644 docs/component/DatePickerTitle.rst create mode 100644 docs/component/DatePickerYears.rst create mode 100644 docs/component/Dialog.rst create mode 100644 docs/component/DialogBottomTransition.rst create mode 100644 docs/component/DialogTransition.rst create mode 100644 docs/component/Divider.rst create mode 100644 docs/component/EditDialog.rst create mode 100644 docs/component/ExpandTransition.rst create mode 100644 docs/component/ExpandXTransition.rst create mode 100644 docs/component/ExpansionPanel.rst create mode 100644 docs/component/ExpansionPanelContent.rst create mode 100644 docs/component/ExpansionPanelHeader.rst create mode 100644 docs/component/ExpansionPanels.rst create mode 100644 docs/component/FabTransition.rst create mode 100644 docs/component/FadeTransition.rst create mode 100644 docs/component/FileInput.rst create mode 100644 docs/component/Flex.rst create mode 100644 docs/component/Footer.rst create mode 100644 docs/component/Form.rst create mode 100644 docs/component/Hover.rst create mode 100644 docs/component/Icon.rst create mode 100644 docs/component/Img.rst create mode 100644 docs/component/Input.rst create mode 100644 docs/component/Intersect.rst create mode 100644 docs/component/Item.rst create mode 100644 docs/component/ItemGroup.rst create mode 100644 docs/component/Label.rst create mode 100644 docs/component/Layout.rst create mode 100644 docs/component/Lazy.rst create mode 100644 docs/component/List.rst create mode 100644 docs/component/ListGroup.rst create mode 100644 docs/component/ListItem.rst create mode 100644 docs/component/ListItemAction.rst create mode 100644 docs/component/ListItemActionText.rst create mode 100644 docs/component/ListItemAvatar.rst create mode 100644 docs/component/ListItemContent.rst create mode 100644 docs/component/ListItemGroup.rst create mode 100644 docs/component/ListItemIcon.rst create mode 100644 docs/component/ListItemSubtitle.rst create mode 100644 docs/component/ListItemTitle.rst create mode 100644 docs/component/Menu.rst create mode 100644 docs/component/MenuTransition.rst create mode 100644 docs/component/Messages.rst create mode 100644 docs/component/Mutate.rst create mode 100644 docs/component/NavigationDrawer.rst create mode 100644 docs/component/OverflowBtn.rst create mode 100644 docs/component/Overlay.rst create mode 100644 docs/component/Pagination.rst create mode 100644 docs/component/Parallax.rst create mode 100644 docs/component/Picker.rst create mode 100644 docs/component/ProgressCircular.rst create mode 100644 docs/component/ProgressLinear.rst create mode 100644 docs/component/Radio.rst create mode 100644 docs/component/RadioGroup.rst create mode 100644 docs/component/RangeSlider.rst create mode 100644 docs/component/Rating.rst create mode 100644 docs/component/Resize.rst create mode 100644 docs/component/Responsive.rst create mode 100644 docs/component/Ripple.rst create mode 100644 docs/component/Row.rst create mode 100644 docs/component/ScaleTransition.rst create mode 100644 docs/component/Scroll.rst create mode 100644 docs/component/ScrollXReverseTransition.rst create mode 100644 docs/component/ScrollXTransition.rst create mode 100644 docs/component/ScrollYReverseTransition.rst create mode 100644 docs/component/ScrollYTransition.rst create mode 100644 docs/component/Select.rst create mode 100644 docs/component/Sheet.rst create mode 100644 docs/component/SimpleCheckbox.rst create mode 100644 docs/component/SimpleTable.rst create mode 100644 docs/component/SkeletonLoader.rst create mode 100644 docs/component/SlideGroup.rst create mode 100644 docs/component/SlideItem.rst create mode 100644 docs/component/SlideXReverseTransition.rst create mode 100644 docs/component/SlideXTransition.rst create mode 100644 docs/component/SlideYReverseTransition.rst create mode 100644 docs/component/SlideYTransition.rst create mode 100644 docs/component/Slider.rst create mode 100644 docs/component/Snackbar.rst create mode 100644 docs/component/Spacer.rst create mode 100644 docs/component/Sparkline.rst create mode 100644 docs/component/SpeedDial.rst create mode 100644 docs/component/Stepper.rst create mode 100644 docs/component/StepperContent.rst create mode 100644 docs/component/StepperHeader.rst create mode 100644 docs/component/StepperItems.rst create mode 100644 docs/component/StepperStep.rst create mode 100644 docs/component/Subheader.rst create mode 100644 docs/component/Switch.rst create mode 100644 docs/component/SystemBar.rst create mode 100644 docs/component/Tab.rst create mode 100644 docs/component/TabItem.rst create mode 100644 docs/component/TabReverseTransition.rst create mode 100644 docs/component/TabTransition.rst create mode 100644 docs/component/TableOverflow.rst create mode 100644 docs/component/Tabs.rst create mode 100644 docs/component/TabsItems.rst create mode 100644 docs/component/TabsSlider.rst create mode 100644 docs/component/TextField.rst create mode 100644 docs/component/Textarea.rst create mode 100644 docs/component/ThemeProvider.rst create mode 100644 docs/component/TimePicker.rst create mode 100644 docs/component/TimePickerClock.rst create mode 100644 docs/component/TimePickerTitle.rst create mode 100644 docs/component/Timeline.rst create mode 100644 docs/component/TimelineItem.rst create mode 100644 docs/component/Toolbar.rst create mode 100644 docs/component/ToolbarItems.rst create mode 100644 docs/component/ToolbarTitle.rst create mode 100644 docs/component/Tooltip.rst create mode 100644 docs/component/Touch.rst create mode 100644 docs/component/Treeview.rst create mode 100644 docs/component/TreeviewNode.rst create mode 100644 docs/component/VirtualTable.rst create mode 100644 docs/component/Window.rst create mode 100644 docs/component/WindowItem.rst create mode 100644 docs/component/index.rst diff --git a/docs/component/Alert.rst b/docs/component/Alert.rst new file mode 100644 index 00000000..1862a435 --- /dev/null +++ b/docs/component/Alert.rst @@ -0,0 +1,5 @@ +Alert +===== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/App.rst b/docs/component/App.rst new file mode 100644 index 00000000..68b6472a --- /dev/null +++ b/docs/component/App.rst @@ -0,0 +1,5 @@ +App +=== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/AppBar.rst b/docs/component/AppBar.rst new file mode 100644 index 00000000..c39a80d4 --- /dev/null +++ b/docs/component/AppBar.rst @@ -0,0 +1,5 @@ +AppBar +====== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/AppBarNavIcon.rst b/docs/component/AppBarNavIcon.rst new file mode 100644 index 00000000..35583706 --- /dev/null +++ b/docs/component/AppBarNavIcon.rst @@ -0,0 +1,5 @@ +AppBarNavIcon +============= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Autocomplete.rst b/docs/component/Autocomplete.rst new file mode 100644 index 00000000..4af76058 --- /dev/null +++ b/docs/component/Autocomplete.rst @@ -0,0 +1,5 @@ +Autocomplete +============ + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Avatar.rst b/docs/component/Avatar.rst new file mode 100644 index 00000000..8c32861f --- /dev/null +++ b/docs/component/Avatar.rst @@ -0,0 +1,5 @@ +Avatar +====== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Badge.rst b/docs/component/Badge.rst new file mode 100644 index 00000000..94e7380d --- /dev/null +++ b/docs/component/Badge.rst @@ -0,0 +1,5 @@ +Badge +===== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Banner.rst b/docs/component/Banner.rst new file mode 100644 index 00000000..011097c5 --- /dev/null +++ b/docs/component/Banner.rst @@ -0,0 +1,5 @@ +Banner +====== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/BottomNavigation.rst b/docs/component/BottomNavigation.rst new file mode 100644 index 00000000..75c14485 --- /dev/null +++ b/docs/component/BottomNavigation.rst @@ -0,0 +1,5 @@ +BottomNavigation +================ + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/BottomSheet.rst b/docs/component/BottomSheet.rst new file mode 100644 index 00000000..0b25b061 --- /dev/null +++ b/docs/component/BottomSheet.rst @@ -0,0 +1,5 @@ +BottomSheet +=========== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Breadcrumbs.rst b/docs/component/Breadcrumbs.rst new file mode 100644 index 00000000..515dbafc --- /dev/null +++ b/docs/component/Breadcrumbs.rst @@ -0,0 +1,5 @@ +Breadcrumbs +=========== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/BreadcrumbsDivider.rst b/docs/component/BreadcrumbsDivider.rst new file mode 100644 index 00000000..54b25719 --- /dev/null +++ b/docs/component/BreadcrumbsDivider.rst @@ -0,0 +1,5 @@ +BreadcrumbsDivider +================== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/BreadcrumbsItem.rst b/docs/component/BreadcrumbsItem.rst new file mode 100644 index 00000000..6e35eabe --- /dev/null +++ b/docs/component/BreadcrumbsItem.rst @@ -0,0 +1,5 @@ +BreadcrumbsItem +=============== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Btn.rst b/docs/component/Btn.rst new file mode 100644 index 00000000..c704c2a8 --- /dev/null +++ b/docs/component/Btn.rst @@ -0,0 +1,5 @@ +Btn +=== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/BtnToggle.rst b/docs/component/BtnToggle.rst new file mode 100644 index 00000000..ebc85366 --- /dev/null +++ b/docs/component/BtnToggle.rst @@ -0,0 +1,5 @@ +BtnToggle +========= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Calendar.rst b/docs/component/Calendar.rst new file mode 100644 index 00000000..07698b3d --- /dev/null +++ b/docs/component/Calendar.rst @@ -0,0 +1,5 @@ +Calendar +======== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/CalendarDaily.rst b/docs/component/CalendarDaily.rst new file mode 100644 index 00000000..7816ed12 --- /dev/null +++ b/docs/component/CalendarDaily.rst @@ -0,0 +1,5 @@ +CalendarDaily +============= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/CalendarMonthly.rst b/docs/component/CalendarMonthly.rst new file mode 100644 index 00000000..887e7dd8 --- /dev/null +++ b/docs/component/CalendarMonthly.rst @@ -0,0 +1,5 @@ +CalendarMonthly +=============== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/CalendarWeekly.rst b/docs/component/CalendarWeekly.rst new file mode 100644 index 00000000..a0ea3528 --- /dev/null +++ b/docs/component/CalendarWeekly.rst @@ -0,0 +1,5 @@ +CalendarWeekly +============== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Card.rst b/docs/component/Card.rst new file mode 100644 index 00000000..f9b3c384 --- /dev/null +++ b/docs/component/Card.rst @@ -0,0 +1,5 @@ +Card +==== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/CardActions.rst b/docs/component/CardActions.rst new file mode 100644 index 00000000..2c5be5d7 --- /dev/null +++ b/docs/component/CardActions.rst @@ -0,0 +1,5 @@ +CardActions +=========== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/CardSubtitle.rst b/docs/component/CardSubtitle.rst new file mode 100644 index 00000000..bb9732d8 --- /dev/null +++ b/docs/component/CardSubtitle.rst @@ -0,0 +1,5 @@ +CardSubtitle +============ + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/CardText.rst b/docs/component/CardText.rst new file mode 100644 index 00000000..130e50d4 --- /dev/null +++ b/docs/component/CardText.rst @@ -0,0 +1,5 @@ +CardText +======== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/CardTitle.rst b/docs/component/CardTitle.rst new file mode 100644 index 00000000..09da0073 --- /dev/null +++ b/docs/component/CardTitle.rst @@ -0,0 +1,5 @@ +CardTitle +========= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Carousel.rst b/docs/component/Carousel.rst new file mode 100644 index 00000000..a5f18f12 --- /dev/null +++ b/docs/component/Carousel.rst @@ -0,0 +1,5 @@ +Carousel +======== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/CarouselItem.rst b/docs/component/CarouselItem.rst new file mode 100644 index 00000000..cd472b0c --- /dev/null +++ b/docs/component/CarouselItem.rst @@ -0,0 +1,5 @@ +CarouselItem +============ + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/CarouselReverseTransition.rst b/docs/component/CarouselReverseTransition.rst new file mode 100644 index 00000000..d8b8da8d --- /dev/null +++ b/docs/component/CarouselReverseTransition.rst @@ -0,0 +1,5 @@ +CarouselReverseTransition +========================= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/CarouselTransition.rst b/docs/component/CarouselTransition.rst new file mode 100644 index 00000000..ca688101 --- /dev/null +++ b/docs/component/CarouselTransition.rst @@ -0,0 +1,5 @@ +CarouselTransition +================== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Checkbox.rst b/docs/component/Checkbox.rst new file mode 100644 index 00000000..517cf02d --- /dev/null +++ b/docs/component/Checkbox.rst @@ -0,0 +1,5 @@ +Checkbox +======== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Chip.rst b/docs/component/Chip.rst new file mode 100644 index 00000000..434f40f8 --- /dev/null +++ b/docs/component/Chip.rst @@ -0,0 +1,5 @@ +Chip +==== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ChipGroup.rst b/docs/component/ChipGroup.rst new file mode 100644 index 00000000..44fe6f86 --- /dev/null +++ b/docs/component/ChipGroup.rst @@ -0,0 +1,5 @@ +ChipGroup +========= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Col.rst b/docs/component/Col.rst new file mode 100644 index 00000000..a316ebc4 --- /dev/null +++ b/docs/component/Col.rst @@ -0,0 +1,5 @@ +Col +=== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ColorPicker.rst b/docs/component/ColorPicker.rst new file mode 100644 index 00000000..9b1fb188 --- /dev/null +++ b/docs/component/ColorPicker.rst @@ -0,0 +1,5 @@ +ColorPicker +=========== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ColorPickerCanvas.rst b/docs/component/ColorPickerCanvas.rst new file mode 100644 index 00000000..8eafbccb --- /dev/null +++ b/docs/component/ColorPickerCanvas.rst @@ -0,0 +1,5 @@ +ColorPickerCanvas +================= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ColorPickerSwatches.rst b/docs/component/ColorPickerSwatches.rst new file mode 100644 index 00000000..61aaf324 --- /dev/null +++ b/docs/component/ColorPickerSwatches.rst @@ -0,0 +1,5 @@ +ColorPickerSwatches +=================== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Combobox.rst b/docs/component/Combobox.rst new file mode 100644 index 00000000..50733fd7 --- /dev/null +++ b/docs/component/Combobox.rst @@ -0,0 +1,5 @@ +Combobox +======== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Container.rst b/docs/component/Container.rst new file mode 100644 index 00000000..484762a7 --- /dev/null +++ b/docs/component/Container.rst @@ -0,0 +1,5 @@ +Container +========= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Content.rst b/docs/component/Content.rst new file mode 100644 index 00000000..c09afaae --- /dev/null +++ b/docs/component/Content.rst @@ -0,0 +1,5 @@ +Content +======= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Counter.rst b/docs/component/Counter.rst new file mode 100644 index 00000000..b73e9c20 --- /dev/null +++ b/docs/component/Counter.rst @@ -0,0 +1,5 @@ +Counter +======= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Data.rst b/docs/component/Data.rst new file mode 100644 index 00000000..64b61969 --- /dev/null +++ b/docs/component/Data.rst @@ -0,0 +1,5 @@ +Data +==== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/DataFooter.rst b/docs/component/DataFooter.rst new file mode 100644 index 00000000..80bd5cbc --- /dev/null +++ b/docs/component/DataFooter.rst @@ -0,0 +1,5 @@ +DataFooter +========== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/DataIterator.rst b/docs/component/DataIterator.rst new file mode 100644 index 00000000..b6f15905 --- /dev/null +++ b/docs/component/DataIterator.rst @@ -0,0 +1,5 @@ +DataIterator +============ + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/DataTable.rst b/docs/component/DataTable.rst new file mode 100644 index 00000000..36a21edf --- /dev/null +++ b/docs/component/DataTable.rst @@ -0,0 +1,5 @@ +DataTable +========= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/DataTableHeader.rst b/docs/component/DataTableHeader.rst new file mode 100644 index 00000000..e22afc6a --- /dev/null +++ b/docs/component/DataTableHeader.rst @@ -0,0 +1,5 @@ +DataTableHeader +=============== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/DatePicker.rst b/docs/component/DatePicker.rst new file mode 100644 index 00000000..a10483c6 --- /dev/null +++ b/docs/component/DatePicker.rst @@ -0,0 +1,5 @@ +DatePicker +========== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/DatePickerDateTable.rst b/docs/component/DatePickerDateTable.rst new file mode 100644 index 00000000..0df8a7a8 --- /dev/null +++ b/docs/component/DatePickerDateTable.rst @@ -0,0 +1,5 @@ +DatePickerDateTable +=================== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/DatePickerHeader.rst b/docs/component/DatePickerHeader.rst new file mode 100644 index 00000000..161f01f6 --- /dev/null +++ b/docs/component/DatePickerHeader.rst @@ -0,0 +1,5 @@ +DatePickerHeader +================ + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/DatePickerMonthTable.rst b/docs/component/DatePickerMonthTable.rst new file mode 100644 index 00000000..b543c3ba --- /dev/null +++ b/docs/component/DatePickerMonthTable.rst @@ -0,0 +1,5 @@ +DatePickerMonthTable +==================== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/DatePickerTitle.rst b/docs/component/DatePickerTitle.rst new file mode 100644 index 00000000..f91496f5 --- /dev/null +++ b/docs/component/DatePickerTitle.rst @@ -0,0 +1,5 @@ +DatePickerTitle +=============== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/DatePickerYears.rst b/docs/component/DatePickerYears.rst new file mode 100644 index 00000000..cf72089f --- /dev/null +++ b/docs/component/DatePickerYears.rst @@ -0,0 +1,5 @@ +DatePickerYears +=============== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Dialog.rst b/docs/component/Dialog.rst new file mode 100644 index 00000000..9fd27717 --- /dev/null +++ b/docs/component/Dialog.rst @@ -0,0 +1,5 @@ +Dialog +====== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/DialogBottomTransition.rst b/docs/component/DialogBottomTransition.rst new file mode 100644 index 00000000..8c38332a --- /dev/null +++ b/docs/component/DialogBottomTransition.rst @@ -0,0 +1,5 @@ +DialogBottomTransition +====================== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/DialogTransition.rst b/docs/component/DialogTransition.rst new file mode 100644 index 00000000..7d3de383 --- /dev/null +++ b/docs/component/DialogTransition.rst @@ -0,0 +1,5 @@ +DialogTransition +================ + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Divider.rst b/docs/component/Divider.rst new file mode 100644 index 00000000..530855f1 --- /dev/null +++ b/docs/component/Divider.rst @@ -0,0 +1,5 @@ +Divider +======= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/EditDialog.rst b/docs/component/EditDialog.rst new file mode 100644 index 00000000..7fd0fc1b --- /dev/null +++ b/docs/component/EditDialog.rst @@ -0,0 +1,5 @@ +EditDialog +========== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ExpandTransition.rst b/docs/component/ExpandTransition.rst new file mode 100644 index 00000000..12bb889d --- /dev/null +++ b/docs/component/ExpandTransition.rst @@ -0,0 +1,5 @@ +ExpandTransition +================ + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ExpandXTransition.rst b/docs/component/ExpandXTransition.rst new file mode 100644 index 00000000..5f7b8275 --- /dev/null +++ b/docs/component/ExpandXTransition.rst @@ -0,0 +1,5 @@ +ExpandXTransition +================= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ExpansionPanel.rst b/docs/component/ExpansionPanel.rst new file mode 100644 index 00000000..d3804951 --- /dev/null +++ b/docs/component/ExpansionPanel.rst @@ -0,0 +1,5 @@ +ExpansionPanel +============== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ExpansionPanelContent.rst b/docs/component/ExpansionPanelContent.rst new file mode 100644 index 00000000..e5b3aa0f --- /dev/null +++ b/docs/component/ExpansionPanelContent.rst @@ -0,0 +1,5 @@ +ExpansionPanelContent +===================== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ExpansionPanelHeader.rst b/docs/component/ExpansionPanelHeader.rst new file mode 100644 index 00000000..2dfb9d2a --- /dev/null +++ b/docs/component/ExpansionPanelHeader.rst @@ -0,0 +1,5 @@ +ExpansionPanelHeader +==================== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ExpansionPanels.rst b/docs/component/ExpansionPanels.rst new file mode 100644 index 00000000..8ed8ef6a --- /dev/null +++ b/docs/component/ExpansionPanels.rst @@ -0,0 +1,5 @@ +ExpansionPanels +=============== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/FabTransition.rst b/docs/component/FabTransition.rst new file mode 100644 index 00000000..1cb3495b --- /dev/null +++ b/docs/component/FabTransition.rst @@ -0,0 +1,5 @@ +FabTransition +============= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/FadeTransition.rst b/docs/component/FadeTransition.rst new file mode 100644 index 00000000..f9a4f389 --- /dev/null +++ b/docs/component/FadeTransition.rst @@ -0,0 +1,5 @@ +FadeTransition +============== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/FileInput.rst b/docs/component/FileInput.rst new file mode 100644 index 00000000..0f78c861 --- /dev/null +++ b/docs/component/FileInput.rst @@ -0,0 +1,5 @@ +FileInput +========= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Flex.rst b/docs/component/Flex.rst new file mode 100644 index 00000000..d644d568 --- /dev/null +++ b/docs/component/Flex.rst @@ -0,0 +1,5 @@ +Flex +==== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Footer.rst b/docs/component/Footer.rst new file mode 100644 index 00000000..8a71987b --- /dev/null +++ b/docs/component/Footer.rst @@ -0,0 +1,5 @@ +Footer +====== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Form.rst b/docs/component/Form.rst new file mode 100644 index 00000000..c61e7045 --- /dev/null +++ b/docs/component/Form.rst @@ -0,0 +1,5 @@ +Form +==== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Hover.rst b/docs/component/Hover.rst new file mode 100644 index 00000000..4bbd6885 --- /dev/null +++ b/docs/component/Hover.rst @@ -0,0 +1,5 @@ +Hover +===== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Icon.rst b/docs/component/Icon.rst new file mode 100644 index 00000000..0b286a72 --- /dev/null +++ b/docs/component/Icon.rst @@ -0,0 +1,5 @@ +Icon +==== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Img.rst b/docs/component/Img.rst new file mode 100644 index 00000000..b57f0cdc --- /dev/null +++ b/docs/component/Img.rst @@ -0,0 +1,5 @@ +Img +=== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Input.rst b/docs/component/Input.rst new file mode 100644 index 00000000..cf20124e --- /dev/null +++ b/docs/component/Input.rst @@ -0,0 +1,5 @@ +Input +===== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Intersect.rst b/docs/component/Intersect.rst new file mode 100644 index 00000000..8280d8b5 --- /dev/null +++ b/docs/component/Intersect.rst @@ -0,0 +1,5 @@ +Intersect +========= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Item.rst b/docs/component/Item.rst new file mode 100644 index 00000000..3ba5f46f --- /dev/null +++ b/docs/component/Item.rst @@ -0,0 +1,5 @@ +Item +==== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ItemGroup.rst b/docs/component/ItemGroup.rst new file mode 100644 index 00000000..b3053be5 --- /dev/null +++ b/docs/component/ItemGroup.rst @@ -0,0 +1,5 @@ +ItemGroup +========= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Label.rst b/docs/component/Label.rst new file mode 100644 index 00000000..48558e5b --- /dev/null +++ b/docs/component/Label.rst @@ -0,0 +1,5 @@ +Label +===== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Layout.rst b/docs/component/Layout.rst new file mode 100644 index 00000000..a6da0884 --- /dev/null +++ b/docs/component/Layout.rst @@ -0,0 +1,5 @@ +Layout +====== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Lazy.rst b/docs/component/Lazy.rst new file mode 100644 index 00000000..5d22f658 --- /dev/null +++ b/docs/component/Lazy.rst @@ -0,0 +1,5 @@ +Lazy +==== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/List.rst b/docs/component/List.rst new file mode 100644 index 00000000..4d0e2e24 --- /dev/null +++ b/docs/component/List.rst @@ -0,0 +1,5 @@ +List +==== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ListGroup.rst b/docs/component/ListGroup.rst new file mode 100644 index 00000000..d851f3e8 --- /dev/null +++ b/docs/component/ListGroup.rst @@ -0,0 +1,5 @@ +ListGroup +========= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ListItem.rst b/docs/component/ListItem.rst new file mode 100644 index 00000000..f59425ec --- /dev/null +++ b/docs/component/ListItem.rst @@ -0,0 +1,5 @@ +ListItem +======== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ListItemAction.rst b/docs/component/ListItemAction.rst new file mode 100644 index 00000000..3db4d37f --- /dev/null +++ b/docs/component/ListItemAction.rst @@ -0,0 +1,5 @@ +ListItemAction +============== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ListItemActionText.rst b/docs/component/ListItemActionText.rst new file mode 100644 index 00000000..8ab3bd5f --- /dev/null +++ b/docs/component/ListItemActionText.rst @@ -0,0 +1,5 @@ +ListItemActionText +================== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ListItemAvatar.rst b/docs/component/ListItemAvatar.rst new file mode 100644 index 00000000..65ad23a7 --- /dev/null +++ b/docs/component/ListItemAvatar.rst @@ -0,0 +1,5 @@ +ListItemAvatar +============== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ListItemContent.rst b/docs/component/ListItemContent.rst new file mode 100644 index 00000000..321b582e --- /dev/null +++ b/docs/component/ListItemContent.rst @@ -0,0 +1,5 @@ +ListItemContent +=============== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ListItemGroup.rst b/docs/component/ListItemGroup.rst new file mode 100644 index 00000000..57df0c4c --- /dev/null +++ b/docs/component/ListItemGroup.rst @@ -0,0 +1,5 @@ +ListItemGroup +============= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ListItemIcon.rst b/docs/component/ListItemIcon.rst new file mode 100644 index 00000000..cb7a65e0 --- /dev/null +++ b/docs/component/ListItemIcon.rst @@ -0,0 +1,5 @@ +ListItemIcon +============ + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ListItemSubtitle.rst b/docs/component/ListItemSubtitle.rst new file mode 100644 index 00000000..0b6c76da --- /dev/null +++ b/docs/component/ListItemSubtitle.rst @@ -0,0 +1,5 @@ +ListItemSubtitle +================ + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ListItemTitle.rst b/docs/component/ListItemTitle.rst new file mode 100644 index 00000000..8b97e25f --- /dev/null +++ b/docs/component/ListItemTitle.rst @@ -0,0 +1,5 @@ +ListItemTitle +============= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Menu.rst b/docs/component/Menu.rst new file mode 100644 index 00000000..a26e80b9 --- /dev/null +++ b/docs/component/Menu.rst @@ -0,0 +1,5 @@ +Menu +==== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/MenuTransition.rst b/docs/component/MenuTransition.rst new file mode 100644 index 00000000..7e90ef09 --- /dev/null +++ b/docs/component/MenuTransition.rst @@ -0,0 +1,5 @@ +MenuTransition +============== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Messages.rst b/docs/component/Messages.rst new file mode 100644 index 00000000..4da13c15 --- /dev/null +++ b/docs/component/Messages.rst @@ -0,0 +1,5 @@ +Messages +======== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Mutate.rst b/docs/component/Mutate.rst new file mode 100644 index 00000000..0d725701 --- /dev/null +++ b/docs/component/Mutate.rst @@ -0,0 +1,5 @@ +Mutate +====== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/NavigationDrawer.rst b/docs/component/NavigationDrawer.rst new file mode 100644 index 00000000..25c4644a --- /dev/null +++ b/docs/component/NavigationDrawer.rst @@ -0,0 +1,5 @@ +NavigationDrawer +================ + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/OverflowBtn.rst b/docs/component/OverflowBtn.rst new file mode 100644 index 00000000..ecf9137c --- /dev/null +++ b/docs/component/OverflowBtn.rst @@ -0,0 +1,5 @@ +OverflowBtn +=========== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Overlay.rst b/docs/component/Overlay.rst new file mode 100644 index 00000000..8e1892b0 --- /dev/null +++ b/docs/component/Overlay.rst @@ -0,0 +1,5 @@ +Overlay +======= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Pagination.rst b/docs/component/Pagination.rst new file mode 100644 index 00000000..1091ea18 --- /dev/null +++ b/docs/component/Pagination.rst @@ -0,0 +1,5 @@ +Pagination +========== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Parallax.rst b/docs/component/Parallax.rst new file mode 100644 index 00000000..429bde81 --- /dev/null +++ b/docs/component/Parallax.rst @@ -0,0 +1,5 @@ +Parallax +======== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Picker.rst b/docs/component/Picker.rst new file mode 100644 index 00000000..9c20d6b1 --- /dev/null +++ b/docs/component/Picker.rst @@ -0,0 +1,5 @@ +Picker +====== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ProgressCircular.rst b/docs/component/ProgressCircular.rst new file mode 100644 index 00000000..5cb1e86f --- /dev/null +++ b/docs/component/ProgressCircular.rst @@ -0,0 +1,5 @@ +ProgressCircular +================ + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ProgressLinear.rst b/docs/component/ProgressLinear.rst new file mode 100644 index 00000000..b68f2f7f --- /dev/null +++ b/docs/component/ProgressLinear.rst @@ -0,0 +1,5 @@ +ProgressLinear +============== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Radio.rst b/docs/component/Radio.rst new file mode 100644 index 00000000..52167ea4 --- /dev/null +++ b/docs/component/Radio.rst @@ -0,0 +1,5 @@ +Radio +===== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/RadioGroup.rst b/docs/component/RadioGroup.rst new file mode 100644 index 00000000..f582e9d1 --- /dev/null +++ b/docs/component/RadioGroup.rst @@ -0,0 +1,5 @@ +RadioGroup +========== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/RangeSlider.rst b/docs/component/RangeSlider.rst new file mode 100644 index 00000000..5a96dbb9 --- /dev/null +++ b/docs/component/RangeSlider.rst @@ -0,0 +1,5 @@ +RangeSlider +=========== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Rating.rst b/docs/component/Rating.rst new file mode 100644 index 00000000..d1c4efb9 --- /dev/null +++ b/docs/component/Rating.rst @@ -0,0 +1,5 @@ +Rating +====== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Resize.rst b/docs/component/Resize.rst new file mode 100644 index 00000000..16abe7bc --- /dev/null +++ b/docs/component/Resize.rst @@ -0,0 +1,5 @@ +Resize +====== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Responsive.rst b/docs/component/Responsive.rst new file mode 100644 index 00000000..209219a1 --- /dev/null +++ b/docs/component/Responsive.rst @@ -0,0 +1,5 @@ +Responsive +========== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Ripple.rst b/docs/component/Ripple.rst new file mode 100644 index 00000000..3e34392b --- /dev/null +++ b/docs/component/Ripple.rst @@ -0,0 +1,5 @@ +Ripple +====== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Row.rst b/docs/component/Row.rst new file mode 100644 index 00000000..d9686a09 --- /dev/null +++ b/docs/component/Row.rst @@ -0,0 +1,5 @@ +Row +=== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ScaleTransition.rst b/docs/component/ScaleTransition.rst new file mode 100644 index 00000000..551bc139 --- /dev/null +++ b/docs/component/ScaleTransition.rst @@ -0,0 +1,5 @@ +ScaleTransition +=============== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Scroll.rst b/docs/component/Scroll.rst new file mode 100644 index 00000000..b9402295 --- /dev/null +++ b/docs/component/Scroll.rst @@ -0,0 +1,5 @@ +Scroll +====== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ScrollXReverseTransition.rst b/docs/component/ScrollXReverseTransition.rst new file mode 100644 index 00000000..8a14b889 --- /dev/null +++ b/docs/component/ScrollXReverseTransition.rst @@ -0,0 +1,5 @@ +ScrollXReverseTransition +======================== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ScrollXTransition.rst b/docs/component/ScrollXTransition.rst new file mode 100644 index 00000000..a7769828 --- /dev/null +++ b/docs/component/ScrollXTransition.rst @@ -0,0 +1,5 @@ +ScrollXTransition +================= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ScrollYReverseTransition.rst b/docs/component/ScrollYReverseTransition.rst new file mode 100644 index 00000000..55a8f645 --- /dev/null +++ b/docs/component/ScrollYReverseTransition.rst @@ -0,0 +1,5 @@ +ScrollYReverseTransition +======================== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ScrollYTransition.rst b/docs/component/ScrollYTransition.rst new file mode 100644 index 00000000..5c6e9f55 --- /dev/null +++ b/docs/component/ScrollYTransition.rst @@ -0,0 +1,5 @@ +ScrollYTransition +================= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Select.rst b/docs/component/Select.rst new file mode 100644 index 00000000..597e183e --- /dev/null +++ b/docs/component/Select.rst @@ -0,0 +1,5 @@ +Select +====== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Sheet.rst b/docs/component/Sheet.rst new file mode 100644 index 00000000..35f56bb3 --- /dev/null +++ b/docs/component/Sheet.rst @@ -0,0 +1,5 @@ +Sheet +===== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/SimpleCheckbox.rst b/docs/component/SimpleCheckbox.rst new file mode 100644 index 00000000..fd138971 --- /dev/null +++ b/docs/component/SimpleCheckbox.rst @@ -0,0 +1,5 @@ +SimpleCheckbox +============== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/SimpleTable.rst b/docs/component/SimpleTable.rst new file mode 100644 index 00000000..632602d3 --- /dev/null +++ b/docs/component/SimpleTable.rst @@ -0,0 +1,5 @@ +SimpleTable +=========== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/SkeletonLoader.rst b/docs/component/SkeletonLoader.rst new file mode 100644 index 00000000..7313824b --- /dev/null +++ b/docs/component/SkeletonLoader.rst @@ -0,0 +1,5 @@ +SkeletonLoader +============== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/SlideGroup.rst b/docs/component/SlideGroup.rst new file mode 100644 index 00000000..6aab2be6 --- /dev/null +++ b/docs/component/SlideGroup.rst @@ -0,0 +1,5 @@ +SlideGroup +========== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/SlideItem.rst b/docs/component/SlideItem.rst new file mode 100644 index 00000000..eec364fb --- /dev/null +++ b/docs/component/SlideItem.rst @@ -0,0 +1,5 @@ +SlideItem +========= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/SlideXReverseTransition.rst b/docs/component/SlideXReverseTransition.rst new file mode 100644 index 00000000..ea0cb5be --- /dev/null +++ b/docs/component/SlideXReverseTransition.rst @@ -0,0 +1,5 @@ +SlideXReverseTransition +======================= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/SlideXTransition.rst b/docs/component/SlideXTransition.rst new file mode 100644 index 00000000..bfef30e5 --- /dev/null +++ b/docs/component/SlideXTransition.rst @@ -0,0 +1,5 @@ +SlideXTransition +================ + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/SlideYReverseTransition.rst b/docs/component/SlideYReverseTransition.rst new file mode 100644 index 00000000..a46535c2 --- /dev/null +++ b/docs/component/SlideYReverseTransition.rst @@ -0,0 +1,5 @@ +SlideYReverseTransition +======================= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/SlideYTransition.rst b/docs/component/SlideYTransition.rst new file mode 100644 index 00000000..c80da9b3 --- /dev/null +++ b/docs/component/SlideYTransition.rst @@ -0,0 +1,5 @@ +SlideYTransition +================ + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Slider.rst b/docs/component/Slider.rst new file mode 100644 index 00000000..16d96354 --- /dev/null +++ b/docs/component/Slider.rst @@ -0,0 +1,5 @@ +Slider +====== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Snackbar.rst b/docs/component/Snackbar.rst new file mode 100644 index 00000000..53714977 --- /dev/null +++ b/docs/component/Snackbar.rst @@ -0,0 +1,5 @@ +Snackbar +======== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Spacer.rst b/docs/component/Spacer.rst new file mode 100644 index 00000000..0b61e27c --- /dev/null +++ b/docs/component/Spacer.rst @@ -0,0 +1,5 @@ +Spacer +====== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Sparkline.rst b/docs/component/Sparkline.rst new file mode 100644 index 00000000..389345d8 --- /dev/null +++ b/docs/component/Sparkline.rst @@ -0,0 +1,5 @@ +Sparkline +========= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/SpeedDial.rst b/docs/component/SpeedDial.rst new file mode 100644 index 00000000..a0cef9bb --- /dev/null +++ b/docs/component/SpeedDial.rst @@ -0,0 +1,5 @@ +SpeedDial +========= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Stepper.rst b/docs/component/Stepper.rst new file mode 100644 index 00000000..029e9168 --- /dev/null +++ b/docs/component/Stepper.rst @@ -0,0 +1,5 @@ +Stepper +======= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/StepperContent.rst b/docs/component/StepperContent.rst new file mode 100644 index 00000000..24c8fac9 --- /dev/null +++ b/docs/component/StepperContent.rst @@ -0,0 +1,5 @@ +StepperContent +============== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/StepperHeader.rst b/docs/component/StepperHeader.rst new file mode 100644 index 00000000..77a0a242 --- /dev/null +++ b/docs/component/StepperHeader.rst @@ -0,0 +1,5 @@ +StepperHeader +============= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/StepperItems.rst b/docs/component/StepperItems.rst new file mode 100644 index 00000000..d9e6b585 --- /dev/null +++ b/docs/component/StepperItems.rst @@ -0,0 +1,5 @@ +StepperItems +============ + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/StepperStep.rst b/docs/component/StepperStep.rst new file mode 100644 index 00000000..3ac12134 --- /dev/null +++ b/docs/component/StepperStep.rst @@ -0,0 +1,5 @@ +StepperStep +=========== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Subheader.rst b/docs/component/Subheader.rst new file mode 100644 index 00000000..c557336c --- /dev/null +++ b/docs/component/Subheader.rst @@ -0,0 +1,5 @@ +Subheader +========= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Switch.rst b/docs/component/Switch.rst new file mode 100644 index 00000000..2abc93d6 --- /dev/null +++ b/docs/component/Switch.rst @@ -0,0 +1,5 @@ +Switch +====== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/SystemBar.rst b/docs/component/SystemBar.rst new file mode 100644 index 00000000..412fbc49 --- /dev/null +++ b/docs/component/SystemBar.rst @@ -0,0 +1,5 @@ +SystemBar +========= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Tab.rst b/docs/component/Tab.rst new file mode 100644 index 00000000..7a312079 --- /dev/null +++ b/docs/component/Tab.rst @@ -0,0 +1,5 @@ +Tab +=== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/TabItem.rst b/docs/component/TabItem.rst new file mode 100644 index 00000000..5bb7ff0f --- /dev/null +++ b/docs/component/TabItem.rst @@ -0,0 +1,5 @@ +TabItem +======= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/TabReverseTransition.rst b/docs/component/TabReverseTransition.rst new file mode 100644 index 00000000..8f60563b --- /dev/null +++ b/docs/component/TabReverseTransition.rst @@ -0,0 +1,5 @@ +TabReverseTransition +==================== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/TabTransition.rst b/docs/component/TabTransition.rst new file mode 100644 index 00000000..61946723 --- /dev/null +++ b/docs/component/TabTransition.rst @@ -0,0 +1,5 @@ +TabTransition +============= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/TableOverflow.rst b/docs/component/TableOverflow.rst new file mode 100644 index 00000000..7fb13f53 --- /dev/null +++ b/docs/component/TableOverflow.rst @@ -0,0 +1,5 @@ +TableOverflow +============= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Tabs.rst b/docs/component/Tabs.rst new file mode 100644 index 00000000..06e0aa4d --- /dev/null +++ b/docs/component/Tabs.rst @@ -0,0 +1,5 @@ +Tabs +==== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/TabsItems.rst b/docs/component/TabsItems.rst new file mode 100644 index 00000000..fe986e02 --- /dev/null +++ b/docs/component/TabsItems.rst @@ -0,0 +1,5 @@ +TabsItems +========= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/TabsSlider.rst b/docs/component/TabsSlider.rst new file mode 100644 index 00000000..eea3fccc --- /dev/null +++ b/docs/component/TabsSlider.rst @@ -0,0 +1,5 @@ +TabsSlider +========== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/TextField.rst b/docs/component/TextField.rst new file mode 100644 index 00000000..7631d288 --- /dev/null +++ b/docs/component/TextField.rst @@ -0,0 +1,5 @@ +TextField +========= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Textarea.rst b/docs/component/Textarea.rst new file mode 100644 index 00000000..afc3ee5c --- /dev/null +++ b/docs/component/Textarea.rst @@ -0,0 +1,5 @@ +Textarea +======== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ThemeProvider.rst b/docs/component/ThemeProvider.rst new file mode 100644 index 00000000..6fad4eb3 --- /dev/null +++ b/docs/component/ThemeProvider.rst @@ -0,0 +1,5 @@ +ThemeProvider +============= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/TimePicker.rst b/docs/component/TimePicker.rst new file mode 100644 index 00000000..3e52dd57 --- /dev/null +++ b/docs/component/TimePicker.rst @@ -0,0 +1,5 @@ +TimePicker +========== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/TimePickerClock.rst b/docs/component/TimePickerClock.rst new file mode 100644 index 00000000..03f81a22 --- /dev/null +++ b/docs/component/TimePickerClock.rst @@ -0,0 +1,5 @@ +TimePickerClock +=============== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/TimePickerTitle.rst b/docs/component/TimePickerTitle.rst new file mode 100644 index 00000000..49639383 --- /dev/null +++ b/docs/component/TimePickerTitle.rst @@ -0,0 +1,5 @@ +TimePickerTitle +=============== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Timeline.rst b/docs/component/Timeline.rst new file mode 100644 index 00000000..3214b030 --- /dev/null +++ b/docs/component/Timeline.rst @@ -0,0 +1,5 @@ +Timeline +======== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/TimelineItem.rst b/docs/component/TimelineItem.rst new file mode 100644 index 00000000..c524b799 --- /dev/null +++ b/docs/component/TimelineItem.rst @@ -0,0 +1,5 @@ +TimelineItem +============ + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Toolbar.rst b/docs/component/Toolbar.rst new file mode 100644 index 00000000..779d5633 --- /dev/null +++ b/docs/component/Toolbar.rst @@ -0,0 +1,5 @@ +Toolbar +======= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ToolbarItems.rst b/docs/component/ToolbarItems.rst new file mode 100644 index 00000000..8d7d03c1 --- /dev/null +++ b/docs/component/ToolbarItems.rst @@ -0,0 +1,5 @@ +ToolbarItems +============ + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/ToolbarTitle.rst b/docs/component/ToolbarTitle.rst new file mode 100644 index 00000000..823327db --- /dev/null +++ b/docs/component/ToolbarTitle.rst @@ -0,0 +1,5 @@ +ToolbarTitle +============ + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Tooltip.rst b/docs/component/Tooltip.rst new file mode 100644 index 00000000..3973de59 --- /dev/null +++ b/docs/component/Tooltip.rst @@ -0,0 +1,5 @@ +Tooltip +======= + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Touch.rst b/docs/component/Touch.rst new file mode 100644 index 00000000..a5eaba5d --- /dev/null +++ b/docs/component/Touch.rst @@ -0,0 +1,5 @@ +Touch +===== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Treeview.rst b/docs/component/Treeview.rst new file mode 100644 index 00000000..d0cb6b2a --- /dev/null +++ b/docs/component/Treeview.rst @@ -0,0 +1,5 @@ +Treeview +======== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/TreeviewNode.rst b/docs/component/TreeviewNode.rst new file mode 100644 index 00000000..f03a2403 --- /dev/null +++ b/docs/component/TreeviewNode.rst @@ -0,0 +1,5 @@ +TreeviewNode +============ + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/VirtualTable.rst b/docs/component/VirtualTable.rst new file mode 100644 index 00000000..5f287ea6 --- /dev/null +++ b/docs/component/VirtualTable.rst @@ -0,0 +1,5 @@ +VirtualTable +============ + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/Window.rst b/docs/component/Window.rst new file mode 100644 index 00000000..f7ae0856 --- /dev/null +++ b/docs/component/Window.rst @@ -0,0 +1,5 @@ +Window +====== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/WindowItem.rst b/docs/component/WindowItem.rst new file mode 100644 index 00000000..9d3e5af0 --- /dev/null +++ b/docs/component/WindowItem.rst @@ -0,0 +1,5 @@ +WindowItem +========== + +.. note:: + Documentation for this component has not been written yet. diff --git a/docs/component/index.rst b/docs/component/index.rst new file mode 100644 index 00000000..b3e6a837 --- /dev/null +++ b/docs/component/index.rst @@ -0,0 +1,8 @@ +Component +========= + +.. toctree:: + :hidden: + :glob: + + * \ No newline at end of file diff --git a/docs/index.rst b/docs/index.rst index 913bf6de..d0e70e2d 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -65,3 +65,4 @@ Jupyter widgets based on Vuetify UI components :hidden: start/index + component/index From 8cc8ada44f524b46bae7fd681e1e6c622a185e90 Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Fri, 21 Nov 2025 10:28:19 +0000 Subject: [PATCH 025/110] docs: create a draft of a Alert --- docs/component/Alert.rst | 197 ++++++++++++++++++++++++++++++++++++++- docs/conf.py | 5 +- 2 files changed, 199 insertions(+), 3 deletions(-) diff --git a/docs/component/Alert.rst b/docs/component/Alert.rst index 1862a435..a8d818e7 100644 --- a/docs/component/Alert.rst +++ b/docs/component/Alert.rst @@ -1,5 +1,198 @@ Alert ===== -.. note:: - Documentation for this component has not been written yet. +The :py:class:`Alert ` component is used to convey important information to the user through the use of contextual types, icons, and colors. These default types come in 4 variations: success, info, warning, and error. Default icons are assigned which help represent different actions each type portrays. Many parts of an alert such as ``border``, ``icon``, and ``color`` can also be customized to fit almost any situation. + +Usage +----- + +Alerts in their simplest form are flat sheets of paper that display a message. + +.. jupyter-execute:: + + import ipyvuetify as v + + alert = v.Alert( + children=["I'm an Alert Usage Example"], + type="success", + ) + + v.Container(children=[alert]) + +Border +------ + +The ``border`` prop adds a simple border to one of the 4 sides of the alert. This can be combined with props like ``color``, ``dark``, and ``type`` to provide unique accents to the alert. + +.. tab-set:: + + .. tab-item:: :fas:`eye` Rendered + + .. jupyter-execute:: + :hide-code: + + import ipyvuetify as v + + v.Container(children=[ + v.Alert( + border="top", + color="red lighten-2", + dark=True, + children=["I'm an alert with a top border and red color"] + ), + v.Alert( + border="right", + color="blue-grey", + dark=True, + children=["I'm an alert with a right border and blue-grey color"] + ), + v.Alert( + border="bottom", + color="pink darken-1", + dark=True, + children=["I'm an alert with a bottom border and pink color"] + ), + v.Alert( + border="left", + color="indigo", + dark=True, + children=["I'm an alert with a border left type info"] + ), + ]) + + .. tab-item:: :fas:`code` Code + + .. code-block:: python + + import ipyvuetify as v + + v.Container(children=[ + v.Alert( + border="top", + color="red lighten-2", + dark=True, + children=["I'm an alert with a top border and red color"] + ), + v.Alert( + border="right", + color="blue-grey", + dark=True, + children=["I'm an alert with a right border and blue-grey color"] + ), + v.Alert( + border="bottom", + color="pink darken-1", + dark=True, + children=["I'm an alert with a bottom border and pink color"] + ), + v.Alert( + border="left", + color="indigo", + dark=True, + children=["I'm an alert with a border left type info"] + ), + ]) + +Colored Border +-------------- + +The ``colored-border`` prop removes the alert background in order to accent the ``border`` prop. If a ``type`` is set, it will use the type's default color. If no color or type is set, the color will default to the inverted color of the applied theme (black for light and white/gray for dark). + +.. code-block:: python + + # Example code will be adapted here + +Dense +----- + +The ``dense`` prop decreases the height of the alert to create a simple and compact style. When combined with the ``border`` prop, the border thickness will be decreased to stay consistent with the style. + +.. code-block:: python + + # Example code will be adapted here + +Dismissible +----------- + +The ``dismissible`` prop adds a close button to the end of the alert component. Clicking this button will set its value to false and effectively hide the alert. You can restore the alert by binding ``v-model`` and setting it to true. The close icon automatically has an ``aria-label`` applied that can be changed by modifying the ``close-label`` prop or changing close value in your locale. + +.. code-block:: python + + # Example code will be adapted here + +Icon +---- + +The ``icon`` prop allows you to add an icon to the beginning of the alert component. If a ``type`` is provided, this will override the default type icon. Additionally, setting the ``icon`` prop to false will remove the icon altogether. + +.. code-block:: python + + # Example code will be adapted here + +Outlined +-------- + +The ``outlined`` prop inverts the style of an alert, inheriting the currently applied color, applying it to the text and border, and making its background transparent. + +.. code-block:: python + + # Example code will be adapted here + +Prominent +--------- + +The ``prominent`` prop provides a more pronounced alert by increasing the height and applying a halo to the icon. When applying both ``prominent`` and ``dense`` together, the alert will take on the appearance of a normal alert but with the prominent icon effects. + +.. code-block:: python + + # Example code will be adapted here + +Text +---- + +The ``text`` prop is a simple alert variant that applies a reduced opacity background of the provided color. Similar to other styled props, ``text`` can be combined with other props like ``dense``, ``prominent``, ``outlined``, and ``shaped`` to create a unique and customized component. + +.. code-block:: python + + # Example code will be adapted here + +Shaped +------ + +The ``shaped`` prop will add border-radius at the top-left and bottom-right of the alert. Similar to other styled props, ``shaped`` can be combined with other props like ``dense``, ``prominent``, ``outlined`` and ``text`` to create a unique and customized component. + +.. code-block:: python + + # Example code will be adapted here + +Transition +---------- + +The ``transition`` prop allows you to apply a transition to the alert which is viewable when the component hides and shows. + +.. code-block:: python + + # Example code will be adapted here + +Type +---- + +The ``type`` prop provides 4 default ``v-alert`` styles: success, info, warning, and error. Each of these styles provides a default icon and color. The default colors can be configured globally by customizing Vuetify's theme. + +.. code-block:: python + + # Example code will be adapted here + +Twitter Example +--------------- + +By combining ``color``, ``dismissible``, ``border``, ``elevation``, ``icon``, and ``colored-border`` props, you can create stylish custom alerts such as this Twitter notification. + +.. code-block:: python + + # Example code will be adapted here + +Accessibility +------------- + +By default, ``v-alert`` components are assigned the WAI-ARIA role of alert which denotes that the alert "is a live region with important and usually time-sensitive information." When using the ``dismissible`` prop, the close icon will receive a corresponding ``aria-label``. This value can be modified by changing either the ``close-label`` prop or globally through customizing the Internationalization's default value for the close property. diff --git a/docs/conf.py b/docs/conf.py index bcc330aa..a2858f26 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,10 @@ html_theme = "pydata_sphinx_theme" html_static_path = ["_static"] -html_css_files = ["custom.css"] +html_css_files = [ + "custom.css", + "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css", +] # -- Theme configuration ----------------------------------------------------- From 076f846de874a3a6a15751f6c6d862b440e5536d Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Fri, 21 Nov 2025 13:39:03 +0000 Subject: [PATCH 026/110] docs: document one component --- docs/_extension/aknowledgement.py | 103 ++++ docs/_extension/api_admonition.py | 73 +++ docs/_static/custom.css | 7 + docs/component/Alert.rst | 878 +++++++++++++++++++++++++++++- docs/conf.py | 13 +- 5 files changed, 1047 insertions(+), 27 deletions(-) create mode 100644 docs/_extension/aknowledgement.py create mode 100644 docs/_extension/api_admonition.py diff --git a/docs/_extension/aknowledgement.py b/docs/_extension/aknowledgement.py new file mode 100644 index 00000000..162f89bf --- /dev/null +++ b/docs/_extension/aknowledgement.py @@ -0,0 +1,103 @@ +"""A directive to generate an alert admonition.""" +from __future__ import annotations + +from typing import ClassVar + +from docutils import nodes +from docutils.nodes import Node +from sphinx import addnodes +from sphinx.application import Sphinx +from sphinx.util import logging +from sphinx.util.docutils import SphinxDirective +from sphinx.util.typing import OptionSpec +from sphinx.writers.html5 import HTML5Translator + +logger = logging.getLogger(__name__) + + +class alert_node(nodes.Admonition, nodes.Element): + pass + + +def visit_aknowledgement_node(self: HTML5Translator, node: alert_node) -> None: + self.visit_admonition(node) + + +def depart_aknowledgement_node(self: HTML5Translator, node: alert_node) -> None: + self.depart_admonition(node) + + +class AknowledgementDirective(SphinxDirective): + """Directive to reference the original source of the documentation.""" + + has_content = True + required_arguments = 0 + optional_arguments = 0 + final_argument_whitespace = True + option_spec: ClassVar[OptionSpec] = {} + + def run(self) -> list[Node]: + node = addnodes.versionmodified() + node.document = self.state.document + self.set_source_info(node) + node["type"] = "versionchanged" + node["version"] = "" + text = "Aknowledgement" + messages = [] + if self.content: + node += self.parse_content_to_nodes() + classes = ["versionmodified", "changed"] + if len(node) > 0 and isinstance(node[0], nodes.paragraph): + # the contents start with a paragraph + if node[0].rawsource: + # make the first paragraph translatable + content = nodes.inline(node[0].rawsource, translatable=True) + content.source = node[0].source + content.line = node[0].line + content += node[0].children + node[0].replace_self(nodes.paragraph("", "", content, translatable=False)) + para = node[0] + para.insert(0, nodes.inline("", "%s: " % text, classes=classes)) + elif len(node) > 0: + # the contents do not starts with a paragraph + para = nodes.paragraph( + "", + "", + nodes.inline("", "%s: " % text, classes=classes), + translatable=False, + ) + node.insert(0, para) + else: + # the contents are empty + para = nodes.paragraph( + "", + "", + nodes.inline("", "%s." % text, classes=classes), + translatable=False, + ) + node.append(para) + + domain = self.env.domains.changeset_domain + domain.note_changeset(node) + + ret: list[Node] = [node] + ret += messages + return ret + + +def setup(app: Sphinx) -> dict[str, object]: + """Add custom configuration to sphinx app. + + Args: + app: the Sphinx application + + Returns: + the 2 parallel parameters set to ``True``. + """ + app.add_directive("aknowledgement", AknowledgementDirective) + app.add_node(alert_node, html=(visit_aknowledgement_node, depart_aknowledgement_node)) + + return { + "parallel_read_safe": True, + "parallel_write_safe": True, + } diff --git a/docs/_extension/api_admonition.py b/docs/_extension/api_admonition.py new file mode 100644 index 00000000..7e096053 --- /dev/null +++ b/docs/_extension/api_admonition.py @@ -0,0 +1,73 @@ +"""A directive to generate an API admonition.""" +from __future__ import annotations + +from docutils import nodes +from docutils.parsers.rst import directives +from docutils.parsers.rst.directives.admonitions import BaseAdmonition +from sphinx.application import Sphinx +from sphinx.util import logging +from sphinx.util.docutils import SphinxDirective +from sphinx.writers.html5 import HTML5Translator + +logger = logging.getLogger(__name__) + + +class api_node(nodes.Admonition, nodes.Element): + pass + + +def visit_api_node(self: HTML5Translator, node: api_node) -> None: + self.visit_admonition(node) + + +def depart_api_node(self: HTML5Translator, node: api_node) -> None: + self.depart_admonition(node) + + +class APIAdmonitionDirective(BaseAdmonition, SphinxDirective): + """An API entry, displayed (if configured) in the form of an admonition.""" + + node_class = api_node + has_content = True + required_arguments = 0 + optional_arguments = 0 + final_argument_whitespace = False + option_spec = { + "class": directives.class_option, + "name": directives.unchanged, + } + + def run(self) -> list[nodes.Node]: + if not self.options.get("class"): + self.options["class"] = ["admonition-api"] + + (api,) = super().run() + if isinstance(api, nodes.system_message): + return [api] + elif isinstance(api, api_node): + api.insert(0, nodes.title(text="See API")) + api["docname"] = self.env.docname + self.add_name(api) + self.set_source_info(api) + self.state.document.note_explicit_target(api) + return [api] + else: + raise RuntimeError # never reached here + + +def setup(app: Sphinx) -> dict[str, object]: + """Add custom configuration to sphinx app. + + Args: + app: the Sphinx application + + Returns: + the 2 parallel parameters set to ``True``. + """ + app.add_directive("api", APIAdmonitionDirective) + app.add_node(api_node, html=(visit_api_node, depart_api_node)) + + return { + "parallel_read_safe": True, + "parallel_write_safe": True, + } diff --git a/docs/_static/custom.css b/docs/_static/custom.css index 8744437f..92c87817 100644 --- a/docs/_static/custom.css +++ b/docs/_static/custom.css @@ -38,3 +38,10 @@ html[data-theme="light"] { html[data-theme="dark"] { --pst-color-primary: #1697f6; } + +/******************************************************************************* +* Create a custom api admonition +*/ +div.admonition.admonition-api > .admonition-title::after { + content: "\f121"; /* the fa-code icon */ +} diff --git a/docs/component/Alert.rst b/docs/component/Alert.rst index a8d818e7..92bee1ee 100644 --- a/docs/component/Alert.rst +++ b/docs/component/Alert.rst @@ -1,8 +1,15 @@ Alert ===== +.. aknowledgement:: + This page is a Python adaptation of the `official Vuetify documentation `_. All examples have been converted to ipyvuetify syntax. + The :py:class:`Alert ` component is used to convey important information to the user through the use of contextual types, icons, and colors. These default types come in 4 variations: success, info, warning, and error. Default icons are assigned which help represent different actions each type portrays. Many parts of an alert such as ``border``, ``icon``, and ``color`` can also be customized to fit almost any situation. +.. api:: + + :py:class:`ipyvuetify.Alert` + Usage ----- @@ -60,7 +67,7 @@ The ``border`` prop adds a simple border to one of the 4 sides of the alert. Thi ), ]) - .. tab-item:: :fas:`code` Code + .. tab-item:: :fab:`python` Python .. code-block:: python @@ -93,106 +100,925 @@ The ``border`` prop adds a simple border to one of the 4 sides of the alert. Thi ), ]) + .. tab-item:: :fab:`vuejs` Vue template + + .. code-block:: vue + + + Colored Border -------------- The ``colored-border`` prop removes the alert background in order to accent the ``border`` prop. If a ``type`` is set, it will use the type's default color. If no color or type is set, the color will default to the inverted color of the applied theme (black for light and white/gray for dark). -.. code-block:: python +.. tab-set:: + + .. tab-item:: :fas:`eye` Rendered + + .. jupyter-execute:: + :hide-code: + + import ipyvuetify as v + + v.Container(children=[ + v.Alert( + border="left", + colored_border=True, + color="deep-purple accent-4", + elevation=2, + children=["Aliquam eu nunc. Fusce commodo aliquam arcu. In consectetuer turpis ut velit. Nulla facilisi. Morbi mollis tellus ac sapien."] + ), + v.Alert( + border="top", + colored_border=True, + type="info", + elevation=2, + children=["Vestibulum ullamcorper mauris at ligula. Nam pretium turpis et arcu. Ut varius tincidunt libero."] + ), + v.Alert( + border="bottom", + colored_border=True, + type="warning", + elevation=2, + children=["Sed in libero ut nibh placerat accumsan. Phasellus leo dolor, tempus non, auctor et, hendrerit quis, nisi."] + ), + v.Alert( + border="right", + colored_border=True, + type="error", + elevation=2, + children=["Fusce commodo aliquam arcu. Pellentesque posuere. Phasellus tempus."] + ), + ]) + + .. tab-item:: :fab:`python` Python - # Example code will be adapted here + .. code-block:: python + + import ipyvuetify as v + + v.Container(children=[ + v.Alert( + border="left", + colored_border=True, + color="deep-purple accent-4", + elevation=2, + children=["Aliquam eu nunc. Fusce commodo aliquam arcu. In consectetuer turpis ut velit. Nulla facilisi. Morbi mollis tellus ac sapien."] + ), + v.Alert( + border="top", + colored_border=True, + type="info", + elevation=2, + children=["Vestibulum ullamcorper mauris at ligula. Nam pretium turpis et arcu. Ut varius tincidunt libero."] + ), + v.Alert( + border="bottom", + colored_border=True, + type="warning", + elevation=2, + children=["Sed in libero ut nibh placerat accumsan. Phasellus leo dolor, tempus non, auctor et, hendrerit quis, nisi."] + ), + v.Alert( + border="right", + colored_border=True, + type="error", + elevation=2, + children=["Fusce commodo aliquam arcu. Pellentesque posuere. Phasellus tempus."] + ), + ]) + + .. tab-item:: :fab:`vuejs` Vue template + + .. code-block:: vue + + Dense ----- The ``dense`` prop decreases the height of the alert to create a simple and compact style. When combined with the ``border`` prop, the border thickness will be decreased to stay consistent with the style. -.. code-block:: python +.. tab-set:: + + .. tab-item:: :fas:`eye` Rendered + + .. jupyter-execute:: + :hide-code: + + import ipyvuetify as v - # Example code will be adapted here + v.Container(children=[ + v.Alert( + dense=True, + type="info", + children=["I'm a dense alert with a type of info"] + ), + v.Alert( + dense=True, + text=True, + type="success", + children=["I'm a dense alert with the text prop and a type of success"] + ), + v.Alert( + dense=True, + border="left", + type="warning", + children=["I'm a dense alert with the border prop and a type of warning"] + ), + v.Alert( + dense=True, + outlined=True, + type="error", + children=["I'm a dense alert with the outlined prop and a type of error"] + ), + ]) + + .. tab-item:: :fab:`python` Python + + .. code-block:: python + + import ipyvuetify as v + + v.Container(children=[ + v.Alert( + dense=True, + type="info", + children=["I'm a dense alert with a type of info"] + ), + v.Alert( + dense=True, + text=True, + type="success", + children=["I'm a dense alert with the text prop and a type of success"] + ), + v.Alert( + dense=True, + border="left", + type="warning", + children=["I'm a dense alert with the border prop and a type of warning"] + ), + v.Alert( + dense=True, + outlined=True, + type="error", + children=["I'm a dense alert with the outlined prop and a type of error"] + ), + ]) + + .. tab-item:: :fab:`vuejs` Vue template + + .. code-block:: vue + + Dismissible ----------- -The ``dismissible`` prop adds a close button to the end of the alert component. Clicking this button will set its value to false and effectively hide the alert. You can restore the alert by binding ``v-model`` and setting it to true. The close icon automatically has an ``aria-label`` applied that can be changed by modifying the ``close-label`` prop or changing close value in your locale. +The ``dismissible`` prop adds a close button to the end of the alert component. Clicking this button will set its value to false and effectively hide the alert. You can restore the alert by binding ``v_model`` and setting it to true. The close icon automatically has an ``aria-label`` applied that can be changed by modifying the ``close_label`` prop or changing close value in your locale. -.. code-block:: python +.. tab-set:: - # Example code will be adapted here + .. tab-item:: :fas:`eye` Rendered + + .. jupyter-execute:: + :hide-code: + + import ipyvuetify as v + + alert = v.Alert( + v_model=True, + border="left", + close_text="Close Alert", + color="deep-purple accent-4", + dark=True, + dismissible=True, + children=["Aenean imperdiet. Quisque id odio. Cras dapibus. Pellentesque ut neque. Vivamus consectetuer hendrerit lacus. Sed mollis, eros et ultrices tempus, mauris ipsum aliquam libero."] + ) + + v.Container(children=[alert]) + + .. tab-item:: :fab:`python` Python + + .. code-block:: python + + import ipyvuetify as v + + alert = v.Alert( + v_model=True, + border="left", + close_text="Close Alert", + color="deep-purple accent-4", + dark=True, + dismissible=True, + children=["Aenean imperdiet. Quisque id odio. Cras dapibus..."] + ) + + v.Container(children=[alert]) + + .. tab-item:: :fab:`vuejs` Vue template + + .. code-block:: vue + + Icon ---- The ``icon`` prop allows you to add an icon to the beginning of the alert component. If a ``type`` is provided, this will override the default type icon. Additionally, setting the ``icon`` prop to false will remove the icon altogether. -.. code-block:: python +.. tab-set:: + + .. tab-item:: :fas:`eye` Rendered + + .. jupyter-execute:: + :hide-code: + + import ipyvuetify as v + + v.Container(children=[ + v.Alert( + color="#2A3B4D", + dark=True, + icon="mdi-firework", + dense=True, + children=["Suspendisse enim turpis, dictum sed, iaculis a, condimentum nec, nisi."] + ), + v.Alert( + color="#C51162", + dark=True, + icon="mdi-material-design", + border="right", + children=["Phasellus blandit leo ut odio. Morbi mattis ullamcorper velit."] + ), + v.Alert( + color="primary", + dark=True, + icon="mdi-vuetify", + border="left", + prominent=True, + children=["Praesent congue erat at massa. Nullam vel sem."] + ), + ]) + + .. tab-item:: :fab:`python` Python + + .. code-block:: python + + import ipyvuetify as v + + v.Container(children=[ + v.Alert( + color="#2A3B4D", + dark=True, + icon="mdi-firework", + dense=True, + children=["Suspendisse enim turpis, dictum sed..."] + ), + v.Alert( + color="#C51162", + dark=True, + icon="mdi-material-design", + border="right", + children=["Phasellus blandit leo ut odio..."] + ), + v.Alert( + color="primary", + dark=True, + icon="mdi-vuetify", + border="left", + prominent=True, + children=["Praesent congue erat at massa..."] + ), + ]) - # Example code will be adapted here + .. tab-item:: :fab:`vuejs` Vue template + + .. code-block:: vue + + Outlined -------- The ``outlined`` prop inverts the style of an alert, inheriting the currently applied color, applying it to the text and border, and making its background transparent. -.. code-block:: python +.. tab-set:: + + .. tab-item:: :fas:`eye` Rendered + + .. jupyter-execute:: + :hide-code: + + import ipyvuetify as v + + v.Container(children=[ + v.Alert( + outlined=True, + color="purple", + children=[v.Html(tag="div", class_="text-h6", children=["Lorem Ipsum"]), "Maecenas ullamcorper, dui et placerat feugiat, eros pede varius nisi."] + ), + v.Alert( + outlined=True, + type="success", + text=True, + children=["Praesent venenatis metus at tortor pulvinar varius."] + ), + v.Alert( + outlined=True, + type="warning", + prominent=True, + border="left", + children=["Duis arcu tortor, suscipit eget, imperdiet nec, imperdiet iaculis, ipsum."] + ), + ]) + + .. tab-item:: :fab:`python` Python + + .. code-block:: python + + import ipyvuetify as v + + v.Container(children=[ + v.Alert( + outlined=True, + color="purple", + children=[v.Html(tag="div", class_="text-h6", children=["Lorem Ipsum"]), "Maecenas ullamcorper..."] + ), + v.Alert( + outlined=True, + type="success", + text=True, + children=["Praesent venenatis metus..."] + ), + v.Alert( + outlined=True, + type="warning", + prominent=True, + border="left", + children=["Duis arcu tortor..."] + ), + ]) - # Example code will be adapted here + .. tab-item:: :fab:`vuejs` Vue template + + .. code-block:: vue + + Prominent --------- The ``prominent`` prop provides a more pronounced alert by increasing the height and applying a halo to the icon. When applying both ``prominent`` and ``dense`` together, the alert will take on the appearance of a normal alert but with the prominent icon effects. -.. code-block:: python +.. tab-set:: + + .. tab-item:: :fas:`eye` Rendered + + .. jupyter-execute:: + :hide-code: + + import ipyvuetify as v + + v.Container(children=[ + v.Alert( + prominent=True, + type="error", + children=[v.Row(align="center", children=[ + v.Col(class_="grow", children=["Nunc nonummy metus. Nunc interdum lacus sit amet orci."]), + v.Col(class_="shrink", children=[v.Btn(children=["Take action"])]) + ])] + ), + v.Alert( + color="blue-grey", + dark=True, + dense=True, + icon="mdi-school", + prominent=True, + children=["Sed augue ipsum, egestas nec, vestibulum et, malesuada adipiscing, dui."] + ), + v.Alert( + icon="mdi-shield-lock-outline", + prominent=True, + text=True, + type="info", + children=["Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem."] + ), + ]) - # Example code will be adapted here + .. tab-item:: :fab:`python` Python + + .. code-block:: python + + import ipyvuetify as v + + v.Container(children=[ + v.Alert( + prominent=True, + type="error", + children=[v.Row(align="center", children=[ + v.Col(class_="grow", children=["Nunc nonummy metus..."]), + v.Col(class_="shrink", children=[v.Btn(children=["Take action"])]) + ])] + ), + v.Alert( + color="blue-grey", + dark=True, + dense=True, + icon="mdi-school", + prominent=True, + children=["Sed augue ipsum..."] + ), + ]) + + .. tab-item:: :fab:`vuejs` Vue template + + .. code-block:: vue + + Text ---- The ``text`` prop is a simple alert variant that applies a reduced opacity background of the provided color. Similar to other styled props, ``text`` can be combined with other props like ``dense``, ``prominent``, ``outlined``, and ``shaped`` to create a unique and customized component. -.. code-block:: python +.. tab-set:: + + .. tab-item:: :fas:`eye` Rendered + + .. jupyter-execute:: + :hide-code: + + import ipyvuetify as v + + v.Container(children=[ + v.Alert( + text=True, + outlined=True, + color="deep-orange", + icon="mdi-fire", + children=["Nullam tincidunt adipiscing enim. In consectetuer turpis ut velit."] + ), + v.Alert( + text=True, + dense=True, + color="teal", + icon="mdi-clock-fast", + border="left", + children=["Vestibulum ullamcorper mauris at ligula. Nulla porta dolor."] + ), + v.Alert( + text=True, + prominent=True, + type="error", + icon="mdi-cloud-alert", + children=["Praesent blandit laoreet nibh. Praesent nonummy mi in odio."] + ), + ]) + + .. tab-item:: :fab:`python` Python - # Example code will be adapted here + .. code-block:: python + + import ipyvuetify as v + + v.Container(children=[ + v.Alert( + text=True, + outlined=True, + color="deep-orange", + icon="mdi-fire", + children=["Nullam tincidunt adipiscing enim..."] + ), + v.Alert( + text=True, + dense=True, + color="teal", + icon="mdi-clock-fast", + border="left", + children=["Vestibulum ullamcorper mauris..."] + ), + ]) + + .. tab-item:: :fab:`vuejs` Vue template + + .. code-block:: vue + + Shaped ------ The ``shaped`` prop will add border-radius at the top-left and bottom-right of the alert. Similar to other styled props, ``shaped`` can be combined with other props like ``dense``, ``prominent``, ``outlined`` and ``text`` to create a unique and customized component. -.. code-block:: python +.. tab-set:: + + .. tab-item:: :fas:`eye` Rendered + + .. jupyter-execute:: + :hide-code: + + import ipyvuetify as v + + v.Container(children=[ + v.Alert( + shaped=True, + dark=True, + color="info", + children=["I'm a shaped alert with a border-radius at top-left, bottom-right"] + ), + v.Alert( + shaped=True, + outlined=True, + type="success", + children=["I'm a shaped alert with a outline option"] + ), + v.Alert( + shaped=True, + dense=True, + dark=True, + type="warning", + children=["I'm a shaped alert with a dense option"] + ), + v.Alert( + shaped=True, + prominent=True, + type="error", + children=["I'm a shaped alert with a prominent option"] + ), + ]) + + .. tab-item:: :fab:`python` Python + + .. code-block:: python + + import ipyvuetify as v + + v.Container(children=[ + v.Alert( + shaped=True, + dark=True, + color="info", + children=["I'm a shaped alert with a border-radius at top-left, bottom-right"] + ), + v.Alert( + shaped=True, + outlined=True, + type="success", + children=["I'm a shaped alert with a outline option"] + ), + ]) + + .. tab-item:: :fab:`vuejs` Vue template - # Example code will be adapted here + .. code-block:: vue + + Transition ---------- The ``transition`` prop allows you to apply a transition to the alert which is viewable when the component hides and shows. -.. code-block:: python +.. tab-set:: - # Example code will be adapted here + .. tab-item:: :fas:`eye` Rendered + + .. jupyter-execute:: + :hide-code: + + import ipyvuetify as v + + alert = v.Alert( + value=True, + color="pink", + dark=True, + border="top", + icon="mdi-home", + transition="scale-transition", + children=["Phasellus tempus. Fusce ac felis sit amet ligula pharetra condimentum."] + ) + + btn = v.Btn( + color="primary", + children=["Toggle"] + ) + + def toggle_alert(widget, event, data): + alert.value = not alert.value + + btn.on_event("click", toggle_alert) + + v.Container(children=[ + v.Html(tag="div", class_="text-center mb-4", children=[btn]), + alert + ]) + + .. tab-item:: :fab:`python` Python + + .. code-block:: python + + import ipyvuetify as v + + alert = v.Alert( + value=True, + color="pink", + dark=True, + border="top", + icon="mdi-home", + transition="scale-transition", + children=["Phasellus tempus. Fusce ac felis..."] + ) + + btn = v.Btn(color="primary", children=["Toggle"]) + btn.on_event("click", lambda w, e, d: setattr(alert, 'value', not alert.value)) + + v.Container(children=[btn, alert]) + + .. tab-item:: :fab:`vuejs` Vue template + + .. code-block:: vue + + Type ---- The ``type`` prop provides 4 default ``v-alert`` styles: success, info, warning, and error. Each of these styles provides a default icon and color. The default colors can be configured globally by customizing Vuetify's theme. -.. code-block:: python +.. tab-set:: + + .. tab-item:: :fas:`eye` Rendered + + .. jupyter-execute:: + :hide-code: + + import ipyvuetify as v + + v.Container(children=[ + v.Alert(type="success", children=["I'm a success alert."]), + v.Alert(type="info", children=["I'm an info alert."]), + v.Alert(type="warning", children=["I'm a warning alert."]), + v.Alert(type="error", children=["I'm an error alert."]), + ]) + + .. tab-item:: :fab:`python` Python + + .. code-block:: python + + import ipyvuetify as v + + v.Container(children=[ + v.Alert(type="success", children=["I'm a success alert."]), + v.Alert(type="info", children=["I'm an info alert."]), + v.Alert(type="warning", children=["I'm a warning alert."]), + v.Alert(type="error", children=["I'm an error alert."]), + ]) + + .. tab-item:: :fab:`vuejs` Vue template + + .. code-block:: vue - # Example code will be adapted here + Twitter Example --------------- -By combining ``color``, ``dismissible``, ``border``, ``elevation``, ``icon``, and ``colored-border`` props, you can create stylish custom alerts such as this Twitter notification. +By combining ``color``, ``dismissible``, ``border``, ``elevation``, ``icon``, and ``colored_border`` props, you can create stylish custom alerts such as this Twitter notification. + +.. tab-set:: + + .. tab-item:: :fas:`eye` Rendered + + .. jupyter-execute:: + :hide-code: + + import ipyvuetify as v + + v.Container(children=[ + v.Alert( + color="#26c6da", + border="left", + elevation=2, + colored_border=True, + icon="mdi-twitter", + children=["You've got 5 new updates on your timeline!"] + ), + ]) + + .. tab-item:: :fab:`python` Python + + .. code-block:: python + + import ipyvuetify as v + + v.Container(children=[ + v.Alert( + color="#26c6da", + border="left", + elevation=2, + colored_border=True, + icon="mdi-twitter", + children=["You've got 5 new updates on your timeline!"] + ), + ]) + + .. tab-item:: :fab:`vuejs` Vue template -.. code-block:: python + .. code-block:: vue - # Example code will be adapted here + Accessibility ------------- -By default, ``v-alert`` components are assigned the WAI-ARIA role of alert which denotes that the alert "is a live region with important and usually time-sensitive information." When using the ``dismissible`` prop, the close icon will receive a corresponding ``aria-label``. This value can be modified by changing either the ``close-label`` prop or globally through customizing the Internationalization's default value for the close property. +By default, :py:class:`Alert ` components are assigned the WAI-ARIA role of alert which denotes that the alert "is a live region with important and usually time-sensitive information." When using the ``dismissible`` prop, the close icon will receive a corresponding ``aria-label``. This value can be modified by changing either the ``close-label`` prop or globally through customizing the Internationalization's default value for the close property. diff --git a/docs/conf.py b/docs/conf.py index a2858f26..a91727c1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -4,7 +4,12 @@ list see the documentation: https://www.sphinx-doc.org/en/master/usage/configuration.html """ +import sys from datetime import datetime +from pathlib import Path + +# add . to sys to import local extensions +sys.path.append(str(Path(".").resolve())) # -- Project information ----------------------------------------------------- @@ -15,7 +20,13 @@ # -- General configuration --------------------------------------------------- -extensions = ["jupyter_sphinx", "sphinx_design", "autoapi.extension"] +extensions = [ + "jupyter_sphinx", + "sphinx_design", + "autoapi.extension", + "_extension.api_admonition", + "_extension.aknowledgement", +] templates_path = ["_templates"] exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] From 9eaf78b579a0f95fc5baca5d673c6838434b1866 Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Fri, 21 Nov 2025 13:41:33 +0000 Subject: [PATCH 027/110] fix: add a IA generated disclaimer --- docs/component/App.rst | 4 ++++ docs/component/AppBar.rst | 4 ++++ docs/component/AppBarNavIcon.rst | 4 ++++ docs/component/Autocomplete.rst | 4 ++++ docs/component/Avatar.rst | 4 ++++ docs/component/Badge.rst | 4 ++++ docs/component/Banner.rst | 4 ++++ docs/component/BottomNavigation.rst | 4 ++++ docs/component/BottomSheet.rst | 4 ++++ docs/component/Breadcrumbs.rst | 4 ++++ docs/component/BreadcrumbsDivider.rst | 4 ++++ docs/component/BreadcrumbsItem.rst | 4 ++++ docs/component/Btn.rst | 4 ++++ docs/component/BtnToggle.rst | 4 ++++ docs/component/Calendar.rst | 4 ++++ docs/component/CalendarDaily.rst | 4 ++++ docs/component/CalendarMonthly.rst | 4 ++++ docs/component/CalendarWeekly.rst | 4 ++++ docs/component/Card.rst | 4 ++++ docs/component/CardActions.rst | 4 ++++ docs/component/CardSubtitle.rst | 4 ++++ docs/component/CardText.rst | 4 ++++ docs/component/CardTitle.rst | 4 ++++ docs/component/Carousel.rst | 4 ++++ docs/component/CarouselItem.rst | 4 ++++ docs/component/CarouselReverseTransition.rst | 4 ++++ docs/component/CarouselTransition.rst | 4 ++++ docs/component/Checkbox.rst | 4 ++++ docs/component/Chip.rst | 4 ++++ docs/component/ChipGroup.rst | 4 ++++ docs/component/Col.rst | 4 ++++ docs/component/ColorPicker.rst | 4 ++++ docs/component/ColorPickerCanvas.rst | 4 ++++ docs/component/ColorPickerSwatches.rst | 4 ++++ docs/component/Combobox.rst | 4 ++++ docs/component/Container.rst | 4 ++++ docs/component/Content.rst | 4 ++++ docs/component/Counter.rst | 4 ++++ docs/component/Data.rst | 4 ++++ docs/component/DataFooter.rst | 4 ++++ docs/component/DataIterator.rst | 4 ++++ docs/component/DataTable.rst | 4 ++++ docs/component/DataTableHeader.rst | 4 ++++ docs/component/DatePicker.rst | 4 ++++ docs/component/DatePickerDateTable.rst | 4 ++++ docs/component/DatePickerHeader.rst | 4 ++++ docs/component/DatePickerMonthTable.rst | 4 ++++ docs/component/DatePickerTitle.rst | 4 ++++ docs/component/DatePickerYears.rst | 4 ++++ docs/component/Dialog.rst | 4 ++++ docs/component/DialogBottomTransition.rst | 4 ++++ docs/component/DialogTransition.rst | 4 ++++ docs/component/Divider.rst | 4 ++++ docs/component/EditDialog.rst | 4 ++++ docs/component/ExpandTransition.rst | 4 ++++ docs/component/ExpandXTransition.rst | 4 ++++ docs/component/ExpansionPanel.rst | 4 ++++ docs/component/ExpansionPanelContent.rst | 4 ++++ docs/component/ExpansionPanelHeader.rst | 4 ++++ docs/component/ExpansionPanels.rst | 4 ++++ docs/component/FabTransition.rst | 4 ++++ docs/component/FadeTransition.rst | 4 ++++ docs/component/FileInput.rst | 4 ++++ docs/component/Flex.rst | 4 ++++ docs/component/Footer.rst | 4 ++++ docs/component/Form.rst | 4 ++++ docs/component/Hover.rst | 4 ++++ docs/component/Icon.rst | 4 ++++ docs/component/Img.rst | 4 ++++ docs/component/Input.rst | 4 ++++ docs/component/Intersect.rst | 4 ++++ docs/component/Item.rst | 4 ++++ docs/component/ItemGroup.rst | 4 ++++ docs/component/Label.rst | 4 ++++ docs/component/Layout.rst | 4 ++++ docs/component/Lazy.rst | 4 ++++ docs/component/List.rst | 4 ++++ docs/component/ListGroup.rst | 4 ++++ docs/component/ListItem.rst | 4 ++++ docs/component/ListItemAction.rst | 4 ++++ docs/component/ListItemActionText.rst | 4 ++++ docs/component/ListItemAvatar.rst | 4 ++++ docs/component/ListItemContent.rst | 4 ++++ docs/component/ListItemGroup.rst | 4 ++++ docs/component/ListItemIcon.rst | 4 ++++ docs/component/ListItemSubtitle.rst | 4 ++++ docs/component/ListItemTitle.rst | 4 ++++ docs/component/Menu.rst | 4 ++++ docs/component/MenuTransition.rst | 4 ++++ docs/component/Messages.rst | 4 ++++ docs/component/Mutate.rst | 4 ++++ docs/component/NavigationDrawer.rst | 4 ++++ docs/component/OverflowBtn.rst | 4 ++++ docs/component/Overlay.rst | 4 ++++ docs/component/Pagination.rst | 4 ++++ docs/component/Parallax.rst | 4 ++++ docs/component/Picker.rst | 4 ++++ docs/component/ProgressCircular.rst | 4 ++++ docs/component/ProgressLinear.rst | 4 ++++ docs/component/Radio.rst | 4 ++++ docs/component/RadioGroup.rst | 4 ++++ docs/component/RangeSlider.rst | 4 ++++ docs/component/Rating.rst | 4 ++++ docs/component/Resize.rst | 4 ++++ docs/component/Responsive.rst | 4 ++++ docs/component/Ripple.rst | 4 ++++ docs/component/Row.rst | 4 ++++ docs/component/ScaleTransition.rst | 4 ++++ docs/component/Scroll.rst | 4 ++++ docs/component/ScrollXReverseTransition.rst | 4 ++++ docs/component/ScrollXTransition.rst | 4 ++++ docs/component/ScrollYReverseTransition.rst | 4 ++++ docs/component/ScrollYTransition.rst | 4 ++++ docs/component/Select.rst | 4 ++++ docs/component/Sheet.rst | 4 ++++ docs/component/SimpleCheckbox.rst | 4 ++++ docs/component/SimpleTable.rst | 4 ++++ docs/component/SkeletonLoader.rst | 4 ++++ docs/component/SlideGroup.rst | 4 ++++ docs/component/SlideItem.rst | 4 ++++ docs/component/SlideXReverseTransition.rst | 4 ++++ docs/component/SlideXTransition.rst | 4 ++++ docs/component/SlideYReverseTransition.rst | 4 ++++ docs/component/SlideYTransition.rst | 4 ++++ docs/component/Slider.rst | 4 ++++ docs/component/Snackbar.rst | 4 ++++ docs/component/Spacer.rst | 4 ++++ docs/component/Sparkline.rst | 4 ++++ docs/component/SpeedDial.rst | 4 ++++ docs/component/Stepper.rst | 4 ++++ docs/component/StepperContent.rst | 4 ++++ docs/component/StepperHeader.rst | 4 ++++ docs/component/StepperItems.rst | 4 ++++ docs/component/StepperStep.rst | 4 ++++ docs/component/Subheader.rst | 4 ++++ docs/component/Switch.rst | 4 ++++ docs/component/SystemBar.rst | 4 ++++ docs/component/Tab.rst | 4 ++++ docs/component/TabItem.rst | 4 ++++ docs/component/TabReverseTransition.rst | 4 ++++ docs/component/TabTransition.rst | 4 ++++ docs/component/TableOverflow.rst | 4 ++++ docs/component/Tabs.rst | 4 ++++ docs/component/TabsItems.rst | 4 ++++ docs/component/TabsSlider.rst | 4 ++++ docs/component/TextField.rst | 4 ++++ docs/component/Textarea.rst | 4 ++++ docs/component/ThemeProvider.rst | 4 ++++ docs/component/TimePicker.rst | 4 ++++ docs/component/TimePickerClock.rst | 4 ++++ docs/component/TimePickerTitle.rst | 4 ++++ docs/component/Timeline.rst | 4 ++++ docs/component/TimelineItem.rst | 4 ++++ docs/component/Toolbar.rst | 4 ++++ docs/component/ToolbarItems.rst | 4 ++++ docs/component/ToolbarTitle.rst | 4 ++++ docs/component/Tooltip.rst | 4 ++++ docs/component/Touch.rst | 4 ++++ docs/component/Treeview.rst | 4 ++++ docs/component/TreeviewNode.rst | 4 ++++ docs/component/VirtualTable.rst | 4 ++++ docs/component/Window.rst | 4 ++++ docs/component/WindowItem.rst | 4 ++++ 163 files changed, 652 insertions(+) diff --git a/docs/component/App.rst b/docs/component/App.rst index 68b6472a..8d0f4211 100644 --- a/docs/component/App.rst +++ b/docs/component/App.rst @@ -1,5 +1,9 @@ App === +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/AppBar.rst b/docs/component/AppBar.rst index c39a80d4..bcce9183 100644 --- a/docs/component/AppBar.rst +++ b/docs/component/AppBar.rst @@ -1,5 +1,9 @@ AppBar ====== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/AppBarNavIcon.rst b/docs/component/AppBarNavIcon.rst index 35583706..745be1bd 100644 --- a/docs/component/AppBarNavIcon.rst +++ b/docs/component/AppBarNavIcon.rst @@ -1,5 +1,9 @@ AppBarNavIcon ============= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Autocomplete.rst b/docs/component/Autocomplete.rst index 4af76058..ad72dd81 100644 --- a/docs/component/Autocomplete.rst +++ b/docs/component/Autocomplete.rst @@ -1,5 +1,9 @@ Autocomplete ============ +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Avatar.rst b/docs/component/Avatar.rst index 8c32861f..984ebc60 100644 --- a/docs/component/Avatar.rst +++ b/docs/component/Avatar.rst @@ -1,5 +1,9 @@ Avatar ====== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Badge.rst b/docs/component/Badge.rst index 94e7380d..8c756ea7 100644 --- a/docs/component/Badge.rst +++ b/docs/component/Badge.rst @@ -1,5 +1,9 @@ Badge ===== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Banner.rst b/docs/component/Banner.rst index 011097c5..12d6aa29 100644 --- a/docs/component/Banner.rst +++ b/docs/component/Banner.rst @@ -1,5 +1,9 @@ Banner ====== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/BottomNavigation.rst b/docs/component/BottomNavigation.rst index 75c14485..9ad560e8 100644 --- a/docs/component/BottomNavigation.rst +++ b/docs/component/BottomNavigation.rst @@ -1,5 +1,9 @@ BottomNavigation ================ +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/BottomSheet.rst b/docs/component/BottomSheet.rst index 0b25b061..9f862bc1 100644 --- a/docs/component/BottomSheet.rst +++ b/docs/component/BottomSheet.rst @@ -1,5 +1,9 @@ BottomSheet =========== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Breadcrumbs.rst b/docs/component/Breadcrumbs.rst index 515dbafc..de83135c 100644 --- a/docs/component/Breadcrumbs.rst +++ b/docs/component/Breadcrumbs.rst @@ -1,5 +1,9 @@ Breadcrumbs =========== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/BreadcrumbsDivider.rst b/docs/component/BreadcrumbsDivider.rst index 54b25719..2c66b852 100644 --- a/docs/component/BreadcrumbsDivider.rst +++ b/docs/component/BreadcrumbsDivider.rst @@ -1,5 +1,9 @@ BreadcrumbsDivider ================== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/BreadcrumbsItem.rst b/docs/component/BreadcrumbsItem.rst index 6e35eabe..7a6c5198 100644 --- a/docs/component/BreadcrumbsItem.rst +++ b/docs/component/BreadcrumbsItem.rst @@ -1,5 +1,9 @@ BreadcrumbsItem =============== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Btn.rst b/docs/component/Btn.rst index c704c2a8..253821da 100644 --- a/docs/component/Btn.rst +++ b/docs/component/Btn.rst @@ -1,5 +1,9 @@ Btn === +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/BtnToggle.rst b/docs/component/BtnToggle.rst index ebc85366..f7b22e86 100644 --- a/docs/component/BtnToggle.rst +++ b/docs/component/BtnToggle.rst @@ -1,5 +1,9 @@ BtnToggle ========= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Calendar.rst b/docs/component/Calendar.rst index 07698b3d..de1eccf3 100644 --- a/docs/component/Calendar.rst +++ b/docs/component/Calendar.rst @@ -1,5 +1,9 @@ Calendar ======== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/CalendarDaily.rst b/docs/component/CalendarDaily.rst index 7816ed12..57f2b223 100644 --- a/docs/component/CalendarDaily.rst +++ b/docs/component/CalendarDaily.rst @@ -1,5 +1,9 @@ CalendarDaily ============= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/CalendarMonthly.rst b/docs/component/CalendarMonthly.rst index 887e7dd8..d520f465 100644 --- a/docs/component/CalendarMonthly.rst +++ b/docs/component/CalendarMonthly.rst @@ -1,5 +1,9 @@ CalendarMonthly =============== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/CalendarWeekly.rst b/docs/component/CalendarWeekly.rst index a0ea3528..c0dcb428 100644 --- a/docs/component/CalendarWeekly.rst +++ b/docs/component/CalendarWeekly.rst @@ -1,5 +1,9 @@ CalendarWeekly ============== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Card.rst b/docs/component/Card.rst index f9b3c384..80b42188 100644 --- a/docs/component/Card.rst +++ b/docs/component/Card.rst @@ -1,5 +1,9 @@ Card ==== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/CardActions.rst b/docs/component/CardActions.rst index 2c5be5d7..75167587 100644 --- a/docs/component/CardActions.rst +++ b/docs/component/CardActions.rst @@ -1,5 +1,9 @@ CardActions =========== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/CardSubtitle.rst b/docs/component/CardSubtitle.rst index bb9732d8..20118d45 100644 --- a/docs/component/CardSubtitle.rst +++ b/docs/component/CardSubtitle.rst @@ -1,5 +1,9 @@ CardSubtitle ============ +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/CardText.rst b/docs/component/CardText.rst index 130e50d4..ddf8f632 100644 --- a/docs/component/CardText.rst +++ b/docs/component/CardText.rst @@ -1,5 +1,9 @@ CardText ======== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/CardTitle.rst b/docs/component/CardTitle.rst index 09da0073..8c9d1285 100644 --- a/docs/component/CardTitle.rst +++ b/docs/component/CardTitle.rst @@ -1,5 +1,9 @@ CardTitle ========= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Carousel.rst b/docs/component/Carousel.rst index a5f18f12..10ef0df0 100644 --- a/docs/component/Carousel.rst +++ b/docs/component/Carousel.rst @@ -1,5 +1,9 @@ Carousel ======== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/CarouselItem.rst b/docs/component/CarouselItem.rst index cd472b0c..1fc68ecc 100644 --- a/docs/component/CarouselItem.rst +++ b/docs/component/CarouselItem.rst @@ -1,5 +1,9 @@ CarouselItem ============ +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/CarouselReverseTransition.rst b/docs/component/CarouselReverseTransition.rst index d8b8da8d..c17f19de 100644 --- a/docs/component/CarouselReverseTransition.rst +++ b/docs/component/CarouselReverseTransition.rst @@ -1,5 +1,9 @@ CarouselReverseTransition ========================= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/CarouselTransition.rst b/docs/component/CarouselTransition.rst index ca688101..f770c920 100644 --- a/docs/component/CarouselTransition.rst +++ b/docs/component/CarouselTransition.rst @@ -1,5 +1,9 @@ CarouselTransition ================== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Checkbox.rst b/docs/component/Checkbox.rst index 517cf02d..2ee9fa59 100644 --- a/docs/component/Checkbox.rst +++ b/docs/component/Checkbox.rst @@ -1,5 +1,9 @@ Checkbox ======== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Chip.rst b/docs/component/Chip.rst index 434f40f8..119dfea4 100644 --- a/docs/component/Chip.rst +++ b/docs/component/Chip.rst @@ -1,5 +1,9 @@ Chip ==== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ChipGroup.rst b/docs/component/ChipGroup.rst index 44fe6f86..4639e88b 100644 --- a/docs/component/ChipGroup.rst +++ b/docs/component/ChipGroup.rst @@ -1,5 +1,9 @@ ChipGroup ========= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Col.rst b/docs/component/Col.rst index a316ebc4..c1f2916b 100644 --- a/docs/component/Col.rst +++ b/docs/component/Col.rst @@ -1,5 +1,9 @@ Col === +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ColorPicker.rst b/docs/component/ColorPicker.rst index 9b1fb188..fd94e8d1 100644 --- a/docs/component/ColorPicker.rst +++ b/docs/component/ColorPicker.rst @@ -1,5 +1,9 @@ ColorPicker =========== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ColorPickerCanvas.rst b/docs/component/ColorPickerCanvas.rst index 8eafbccb..b0d20cfd 100644 --- a/docs/component/ColorPickerCanvas.rst +++ b/docs/component/ColorPickerCanvas.rst @@ -1,5 +1,9 @@ ColorPickerCanvas ================= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ColorPickerSwatches.rst b/docs/component/ColorPickerSwatches.rst index 61aaf324..83886d5e 100644 --- a/docs/component/ColorPickerSwatches.rst +++ b/docs/component/ColorPickerSwatches.rst @@ -1,5 +1,9 @@ ColorPickerSwatches =================== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Combobox.rst b/docs/component/Combobox.rst index 50733fd7..60143c19 100644 --- a/docs/component/Combobox.rst +++ b/docs/component/Combobox.rst @@ -1,5 +1,9 @@ Combobox ======== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Container.rst b/docs/component/Container.rst index 484762a7..cef877e3 100644 --- a/docs/component/Container.rst +++ b/docs/component/Container.rst @@ -1,5 +1,9 @@ Container ========= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Content.rst b/docs/component/Content.rst index c09afaae..74d704f3 100644 --- a/docs/component/Content.rst +++ b/docs/component/Content.rst @@ -1,5 +1,9 @@ Content ======= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Counter.rst b/docs/component/Counter.rst index b73e9c20..749db591 100644 --- a/docs/component/Counter.rst +++ b/docs/component/Counter.rst @@ -1,5 +1,9 @@ Counter ======= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Data.rst b/docs/component/Data.rst index 64b61969..6ccf49f9 100644 --- a/docs/component/Data.rst +++ b/docs/component/Data.rst @@ -1,5 +1,9 @@ Data ==== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/DataFooter.rst b/docs/component/DataFooter.rst index 80bd5cbc..03d9dab6 100644 --- a/docs/component/DataFooter.rst +++ b/docs/component/DataFooter.rst @@ -1,5 +1,9 @@ DataFooter ========== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/DataIterator.rst b/docs/component/DataIterator.rst index b6f15905..761d2cbd 100644 --- a/docs/component/DataIterator.rst +++ b/docs/component/DataIterator.rst @@ -1,5 +1,9 @@ DataIterator ============ +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/DataTable.rst b/docs/component/DataTable.rst index 36a21edf..11afd1c4 100644 --- a/docs/component/DataTable.rst +++ b/docs/component/DataTable.rst @@ -1,5 +1,9 @@ DataTable ========= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/DataTableHeader.rst b/docs/component/DataTableHeader.rst index e22afc6a..4fe86776 100644 --- a/docs/component/DataTableHeader.rst +++ b/docs/component/DataTableHeader.rst @@ -1,5 +1,9 @@ DataTableHeader =============== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/DatePicker.rst b/docs/component/DatePicker.rst index a10483c6..e0fe0fd8 100644 --- a/docs/component/DatePicker.rst +++ b/docs/component/DatePicker.rst @@ -1,5 +1,9 @@ DatePicker ========== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/DatePickerDateTable.rst b/docs/component/DatePickerDateTable.rst index 0df8a7a8..a1902c2a 100644 --- a/docs/component/DatePickerDateTable.rst +++ b/docs/component/DatePickerDateTable.rst @@ -1,5 +1,9 @@ DatePickerDateTable =================== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/DatePickerHeader.rst b/docs/component/DatePickerHeader.rst index 161f01f6..5ba9c3c5 100644 --- a/docs/component/DatePickerHeader.rst +++ b/docs/component/DatePickerHeader.rst @@ -1,5 +1,9 @@ DatePickerHeader ================ +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/DatePickerMonthTable.rst b/docs/component/DatePickerMonthTable.rst index b543c3ba..343e934a 100644 --- a/docs/component/DatePickerMonthTable.rst +++ b/docs/component/DatePickerMonthTable.rst @@ -1,5 +1,9 @@ DatePickerMonthTable ==================== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/DatePickerTitle.rst b/docs/component/DatePickerTitle.rst index f91496f5..caf6c7c7 100644 --- a/docs/component/DatePickerTitle.rst +++ b/docs/component/DatePickerTitle.rst @@ -1,5 +1,9 @@ DatePickerTitle =============== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/DatePickerYears.rst b/docs/component/DatePickerYears.rst index cf72089f..0ea5afd8 100644 --- a/docs/component/DatePickerYears.rst +++ b/docs/component/DatePickerYears.rst @@ -1,5 +1,9 @@ DatePickerYears =============== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Dialog.rst b/docs/component/Dialog.rst index 9fd27717..3f369987 100644 --- a/docs/component/Dialog.rst +++ b/docs/component/Dialog.rst @@ -1,5 +1,9 @@ Dialog ====== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/DialogBottomTransition.rst b/docs/component/DialogBottomTransition.rst index 8c38332a..3206576b 100644 --- a/docs/component/DialogBottomTransition.rst +++ b/docs/component/DialogBottomTransition.rst @@ -1,5 +1,9 @@ DialogBottomTransition ====================== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/DialogTransition.rst b/docs/component/DialogTransition.rst index 7d3de383..4afff562 100644 --- a/docs/component/DialogTransition.rst +++ b/docs/component/DialogTransition.rst @@ -1,5 +1,9 @@ DialogTransition ================ +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Divider.rst b/docs/component/Divider.rst index 530855f1..01320e75 100644 --- a/docs/component/Divider.rst +++ b/docs/component/Divider.rst @@ -1,5 +1,9 @@ Divider ======= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/EditDialog.rst b/docs/component/EditDialog.rst index 7fd0fc1b..0cf83a63 100644 --- a/docs/component/EditDialog.rst +++ b/docs/component/EditDialog.rst @@ -1,5 +1,9 @@ EditDialog ========== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ExpandTransition.rst b/docs/component/ExpandTransition.rst index 12bb889d..172eec50 100644 --- a/docs/component/ExpandTransition.rst +++ b/docs/component/ExpandTransition.rst @@ -1,5 +1,9 @@ ExpandTransition ================ +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ExpandXTransition.rst b/docs/component/ExpandXTransition.rst index 5f7b8275..a584af91 100644 --- a/docs/component/ExpandXTransition.rst +++ b/docs/component/ExpandXTransition.rst @@ -1,5 +1,9 @@ ExpandXTransition ================= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ExpansionPanel.rst b/docs/component/ExpansionPanel.rst index d3804951..2ec7787d 100644 --- a/docs/component/ExpansionPanel.rst +++ b/docs/component/ExpansionPanel.rst @@ -1,5 +1,9 @@ ExpansionPanel ============== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ExpansionPanelContent.rst b/docs/component/ExpansionPanelContent.rst index e5b3aa0f..e49400d2 100644 --- a/docs/component/ExpansionPanelContent.rst +++ b/docs/component/ExpansionPanelContent.rst @@ -1,5 +1,9 @@ ExpansionPanelContent ===================== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ExpansionPanelHeader.rst b/docs/component/ExpansionPanelHeader.rst index 2dfb9d2a..7f8ed02c 100644 --- a/docs/component/ExpansionPanelHeader.rst +++ b/docs/component/ExpansionPanelHeader.rst @@ -1,5 +1,9 @@ ExpansionPanelHeader ==================== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ExpansionPanels.rst b/docs/component/ExpansionPanels.rst index 8ed8ef6a..96b4bb84 100644 --- a/docs/component/ExpansionPanels.rst +++ b/docs/component/ExpansionPanels.rst @@ -1,5 +1,9 @@ ExpansionPanels =============== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/FabTransition.rst b/docs/component/FabTransition.rst index 1cb3495b..95fd12f2 100644 --- a/docs/component/FabTransition.rst +++ b/docs/component/FabTransition.rst @@ -1,5 +1,9 @@ FabTransition ============= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/FadeTransition.rst b/docs/component/FadeTransition.rst index f9a4f389..6fed89da 100644 --- a/docs/component/FadeTransition.rst +++ b/docs/component/FadeTransition.rst @@ -1,5 +1,9 @@ FadeTransition ============== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/FileInput.rst b/docs/component/FileInput.rst index 0f78c861..3ecef216 100644 --- a/docs/component/FileInput.rst +++ b/docs/component/FileInput.rst @@ -1,5 +1,9 @@ FileInput ========= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Flex.rst b/docs/component/Flex.rst index d644d568..db7280a9 100644 --- a/docs/component/Flex.rst +++ b/docs/component/Flex.rst @@ -1,5 +1,9 @@ Flex ==== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Footer.rst b/docs/component/Footer.rst index 8a71987b..74f06ffa 100644 --- a/docs/component/Footer.rst +++ b/docs/component/Footer.rst @@ -1,5 +1,9 @@ Footer ====== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Form.rst b/docs/component/Form.rst index c61e7045..9d481705 100644 --- a/docs/component/Form.rst +++ b/docs/component/Form.rst @@ -1,5 +1,9 @@ Form ==== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Hover.rst b/docs/component/Hover.rst index 4bbd6885..a5e9239a 100644 --- a/docs/component/Hover.rst +++ b/docs/component/Hover.rst @@ -1,5 +1,9 @@ Hover ===== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Icon.rst b/docs/component/Icon.rst index 0b286a72..8ed300af 100644 --- a/docs/component/Icon.rst +++ b/docs/component/Icon.rst @@ -1,5 +1,9 @@ Icon ==== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Img.rst b/docs/component/Img.rst index b57f0cdc..c7c2bde3 100644 --- a/docs/component/Img.rst +++ b/docs/component/Img.rst @@ -1,5 +1,9 @@ Img === +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Input.rst b/docs/component/Input.rst index cf20124e..801ec89f 100644 --- a/docs/component/Input.rst +++ b/docs/component/Input.rst @@ -1,5 +1,9 @@ Input ===== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Intersect.rst b/docs/component/Intersect.rst index 8280d8b5..92908705 100644 --- a/docs/component/Intersect.rst +++ b/docs/component/Intersect.rst @@ -1,5 +1,9 @@ Intersect ========= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Item.rst b/docs/component/Item.rst index 3ba5f46f..c6d001e2 100644 --- a/docs/component/Item.rst +++ b/docs/component/Item.rst @@ -1,5 +1,9 @@ Item ==== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ItemGroup.rst b/docs/component/ItemGroup.rst index b3053be5..fc9a430e 100644 --- a/docs/component/ItemGroup.rst +++ b/docs/component/ItemGroup.rst @@ -1,5 +1,9 @@ ItemGroup ========= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Label.rst b/docs/component/Label.rst index 48558e5b..5bb75965 100644 --- a/docs/component/Label.rst +++ b/docs/component/Label.rst @@ -1,5 +1,9 @@ Label ===== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Layout.rst b/docs/component/Layout.rst index a6da0884..e8b6eb2c 100644 --- a/docs/component/Layout.rst +++ b/docs/component/Layout.rst @@ -1,5 +1,9 @@ Layout ====== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Lazy.rst b/docs/component/Lazy.rst index 5d22f658..fb0ce3fc 100644 --- a/docs/component/Lazy.rst +++ b/docs/component/Lazy.rst @@ -1,5 +1,9 @@ Lazy ==== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/List.rst b/docs/component/List.rst index 4d0e2e24..fe1e2f78 100644 --- a/docs/component/List.rst +++ b/docs/component/List.rst @@ -1,5 +1,9 @@ List ==== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ListGroup.rst b/docs/component/ListGroup.rst index d851f3e8..0be818d5 100644 --- a/docs/component/ListGroup.rst +++ b/docs/component/ListGroup.rst @@ -1,5 +1,9 @@ ListGroup ========= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ListItem.rst b/docs/component/ListItem.rst index f59425ec..6d4ff489 100644 --- a/docs/component/ListItem.rst +++ b/docs/component/ListItem.rst @@ -1,5 +1,9 @@ ListItem ======== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ListItemAction.rst b/docs/component/ListItemAction.rst index 3db4d37f..5b2d741f 100644 --- a/docs/component/ListItemAction.rst +++ b/docs/component/ListItemAction.rst @@ -1,5 +1,9 @@ ListItemAction ============== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ListItemActionText.rst b/docs/component/ListItemActionText.rst index 8ab3bd5f..837508e3 100644 --- a/docs/component/ListItemActionText.rst +++ b/docs/component/ListItemActionText.rst @@ -1,5 +1,9 @@ ListItemActionText ================== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ListItemAvatar.rst b/docs/component/ListItemAvatar.rst index 65ad23a7..e5f0fd11 100644 --- a/docs/component/ListItemAvatar.rst +++ b/docs/component/ListItemAvatar.rst @@ -1,5 +1,9 @@ ListItemAvatar ============== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ListItemContent.rst b/docs/component/ListItemContent.rst index 321b582e..00c13f11 100644 --- a/docs/component/ListItemContent.rst +++ b/docs/component/ListItemContent.rst @@ -1,5 +1,9 @@ ListItemContent =============== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ListItemGroup.rst b/docs/component/ListItemGroup.rst index 57df0c4c..dd79ab53 100644 --- a/docs/component/ListItemGroup.rst +++ b/docs/component/ListItemGroup.rst @@ -1,5 +1,9 @@ ListItemGroup ============= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ListItemIcon.rst b/docs/component/ListItemIcon.rst index cb7a65e0..6406df76 100644 --- a/docs/component/ListItemIcon.rst +++ b/docs/component/ListItemIcon.rst @@ -1,5 +1,9 @@ ListItemIcon ============ +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ListItemSubtitle.rst b/docs/component/ListItemSubtitle.rst index 0b6c76da..45bd0a1a 100644 --- a/docs/component/ListItemSubtitle.rst +++ b/docs/component/ListItemSubtitle.rst @@ -1,5 +1,9 @@ ListItemSubtitle ================ +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ListItemTitle.rst b/docs/component/ListItemTitle.rst index 8b97e25f..06e75b01 100644 --- a/docs/component/ListItemTitle.rst +++ b/docs/component/ListItemTitle.rst @@ -1,5 +1,9 @@ ListItemTitle ============= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Menu.rst b/docs/component/Menu.rst index a26e80b9..6efc4858 100644 --- a/docs/component/Menu.rst +++ b/docs/component/Menu.rst @@ -1,5 +1,9 @@ Menu ==== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/MenuTransition.rst b/docs/component/MenuTransition.rst index 7e90ef09..216ccce9 100644 --- a/docs/component/MenuTransition.rst +++ b/docs/component/MenuTransition.rst @@ -1,5 +1,9 @@ MenuTransition ============== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Messages.rst b/docs/component/Messages.rst index 4da13c15..415f654a 100644 --- a/docs/component/Messages.rst +++ b/docs/component/Messages.rst @@ -1,5 +1,9 @@ Messages ======== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Mutate.rst b/docs/component/Mutate.rst index 0d725701..a69ef81e 100644 --- a/docs/component/Mutate.rst +++ b/docs/component/Mutate.rst @@ -1,5 +1,9 @@ Mutate ====== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/NavigationDrawer.rst b/docs/component/NavigationDrawer.rst index 25c4644a..c113d4f4 100644 --- a/docs/component/NavigationDrawer.rst +++ b/docs/component/NavigationDrawer.rst @@ -1,5 +1,9 @@ NavigationDrawer ================ +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/OverflowBtn.rst b/docs/component/OverflowBtn.rst index ecf9137c..ffd7c99f 100644 --- a/docs/component/OverflowBtn.rst +++ b/docs/component/OverflowBtn.rst @@ -1,5 +1,9 @@ OverflowBtn =========== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Overlay.rst b/docs/component/Overlay.rst index 8e1892b0..7cab8b17 100644 --- a/docs/component/Overlay.rst +++ b/docs/component/Overlay.rst @@ -1,5 +1,9 @@ Overlay ======= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Pagination.rst b/docs/component/Pagination.rst index 1091ea18..6e7fa6ab 100644 --- a/docs/component/Pagination.rst +++ b/docs/component/Pagination.rst @@ -1,5 +1,9 @@ Pagination ========== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Parallax.rst b/docs/component/Parallax.rst index 429bde81..a9bc2fca 100644 --- a/docs/component/Parallax.rst +++ b/docs/component/Parallax.rst @@ -1,5 +1,9 @@ Parallax ======== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Picker.rst b/docs/component/Picker.rst index 9c20d6b1..f0dae4cd 100644 --- a/docs/component/Picker.rst +++ b/docs/component/Picker.rst @@ -1,5 +1,9 @@ Picker ====== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ProgressCircular.rst b/docs/component/ProgressCircular.rst index 5cb1e86f..6b776026 100644 --- a/docs/component/ProgressCircular.rst +++ b/docs/component/ProgressCircular.rst @@ -1,5 +1,9 @@ ProgressCircular ================ +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ProgressLinear.rst b/docs/component/ProgressLinear.rst index b68f2f7f..697a9aeb 100644 --- a/docs/component/ProgressLinear.rst +++ b/docs/component/ProgressLinear.rst @@ -1,5 +1,9 @@ ProgressLinear ============== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Radio.rst b/docs/component/Radio.rst index 52167ea4..bc7cc68b 100644 --- a/docs/component/Radio.rst +++ b/docs/component/Radio.rst @@ -1,5 +1,9 @@ Radio ===== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/RadioGroup.rst b/docs/component/RadioGroup.rst index f582e9d1..a2be361f 100644 --- a/docs/component/RadioGroup.rst +++ b/docs/component/RadioGroup.rst @@ -1,5 +1,9 @@ RadioGroup ========== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/RangeSlider.rst b/docs/component/RangeSlider.rst index 5a96dbb9..38dfb67a 100644 --- a/docs/component/RangeSlider.rst +++ b/docs/component/RangeSlider.rst @@ -1,5 +1,9 @@ RangeSlider =========== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Rating.rst b/docs/component/Rating.rst index d1c4efb9..38d2b31c 100644 --- a/docs/component/Rating.rst +++ b/docs/component/Rating.rst @@ -1,5 +1,9 @@ Rating ====== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Resize.rst b/docs/component/Resize.rst index 16abe7bc..2f020e76 100644 --- a/docs/component/Resize.rst +++ b/docs/component/Resize.rst @@ -1,5 +1,9 @@ Resize ====== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Responsive.rst b/docs/component/Responsive.rst index 209219a1..1b16afc5 100644 --- a/docs/component/Responsive.rst +++ b/docs/component/Responsive.rst @@ -1,5 +1,9 @@ Responsive ========== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Ripple.rst b/docs/component/Ripple.rst index 3e34392b..48bc382b 100644 --- a/docs/component/Ripple.rst +++ b/docs/component/Ripple.rst @@ -1,5 +1,9 @@ Ripple ====== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Row.rst b/docs/component/Row.rst index d9686a09..5dcdaca5 100644 --- a/docs/component/Row.rst +++ b/docs/component/Row.rst @@ -1,5 +1,9 @@ Row === +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ScaleTransition.rst b/docs/component/ScaleTransition.rst index 551bc139..732b09be 100644 --- a/docs/component/ScaleTransition.rst +++ b/docs/component/ScaleTransition.rst @@ -1,5 +1,9 @@ ScaleTransition =============== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Scroll.rst b/docs/component/Scroll.rst index b9402295..5e62fea0 100644 --- a/docs/component/Scroll.rst +++ b/docs/component/Scroll.rst @@ -1,5 +1,9 @@ Scroll ====== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ScrollXReverseTransition.rst b/docs/component/ScrollXReverseTransition.rst index 8a14b889..bcabb4fa 100644 --- a/docs/component/ScrollXReverseTransition.rst +++ b/docs/component/ScrollXReverseTransition.rst @@ -1,5 +1,9 @@ ScrollXReverseTransition ======================== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ScrollXTransition.rst b/docs/component/ScrollXTransition.rst index a7769828..857d00de 100644 --- a/docs/component/ScrollXTransition.rst +++ b/docs/component/ScrollXTransition.rst @@ -1,5 +1,9 @@ ScrollXTransition ================= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ScrollYReverseTransition.rst b/docs/component/ScrollYReverseTransition.rst index 55a8f645..4b3904a0 100644 --- a/docs/component/ScrollYReverseTransition.rst +++ b/docs/component/ScrollYReverseTransition.rst @@ -1,5 +1,9 @@ ScrollYReverseTransition ======================== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ScrollYTransition.rst b/docs/component/ScrollYTransition.rst index 5c6e9f55..5477d4a6 100644 --- a/docs/component/ScrollYTransition.rst +++ b/docs/component/ScrollYTransition.rst @@ -1,5 +1,9 @@ ScrollYTransition ================= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Select.rst b/docs/component/Select.rst index 597e183e..9458fc9f 100644 --- a/docs/component/Select.rst +++ b/docs/component/Select.rst @@ -1,5 +1,9 @@ Select ====== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Sheet.rst b/docs/component/Sheet.rst index 35f56bb3..cd9de8e0 100644 --- a/docs/component/Sheet.rst +++ b/docs/component/Sheet.rst @@ -1,5 +1,9 @@ Sheet ===== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/SimpleCheckbox.rst b/docs/component/SimpleCheckbox.rst index fd138971..67b3b85b 100644 --- a/docs/component/SimpleCheckbox.rst +++ b/docs/component/SimpleCheckbox.rst @@ -1,5 +1,9 @@ SimpleCheckbox ============== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/SimpleTable.rst b/docs/component/SimpleTable.rst index 632602d3..9d64d741 100644 --- a/docs/component/SimpleTable.rst +++ b/docs/component/SimpleTable.rst @@ -1,5 +1,9 @@ SimpleTable =========== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/SkeletonLoader.rst b/docs/component/SkeletonLoader.rst index 7313824b..895343da 100644 --- a/docs/component/SkeletonLoader.rst +++ b/docs/component/SkeletonLoader.rst @@ -1,5 +1,9 @@ SkeletonLoader ============== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/SlideGroup.rst b/docs/component/SlideGroup.rst index 6aab2be6..b0629c99 100644 --- a/docs/component/SlideGroup.rst +++ b/docs/component/SlideGroup.rst @@ -1,5 +1,9 @@ SlideGroup ========== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/SlideItem.rst b/docs/component/SlideItem.rst index eec364fb..70ad1664 100644 --- a/docs/component/SlideItem.rst +++ b/docs/component/SlideItem.rst @@ -1,5 +1,9 @@ SlideItem ========= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/SlideXReverseTransition.rst b/docs/component/SlideXReverseTransition.rst index ea0cb5be..5ec51fd9 100644 --- a/docs/component/SlideXReverseTransition.rst +++ b/docs/component/SlideXReverseTransition.rst @@ -1,5 +1,9 @@ SlideXReverseTransition ======================= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/SlideXTransition.rst b/docs/component/SlideXTransition.rst index bfef30e5..d33f4058 100644 --- a/docs/component/SlideXTransition.rst +++ b/docs/component/SlideXTransition.rst @@ -1,5 +1,9 @@ SlideXTransition ================ +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/SlideYReverseTransition.rst b/docs/component/SlideYReverseTransition.rst index a46535c2..7249916c 100644 --- a/docs/component/SlideYReverseTransition.rst +++ b/docs/component/SlideYReverseTransition.rst @@ -1,5 +1,9 @@ SlideYReverseTransition ======================= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/SlideYTransition.rst b/docs/component/SlideYTransition.rst index c80da9b3..04eae3d7 100644 --- a/docs/component/SlideYTransition.rst +++ b/docs/component/SlideYTransition.rst @@ -1,5 +1,9 @@ SlideYTransition ================ +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Slider.rst b/docs/component/Slider.rst index 16d96354..df008922 100644 --- a/docs/component/Slider.rst +++ b/docs/component/Slider.rst @@ -1,5 +1,9 @@ Slider ====== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Snackbar.rst b/docs/component/Snackbar.rst index 53714977..2d7be597 100644 --- a/docs/component/Snackbar.rst +++ b/docs/component/Snackbar.rst @@ -1,5 +1,9 @@ Snackbar ======== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Spacer.rst b/docs/component/Spacer.rst index 0b61e27c..14fc2989 100644 --- a/docs/component/Spacer.rst +++ b/docs/component/Spacer.rst @@ -1,5 +1,9 @@ Spacer ====== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Sparkline.rst b/docs/component/Sparkline.rst index 389345d8..607f053a 100644 --- a/docs/component/Sparkline.rst +++ b/docs/component/Sparkline.rst @@ -1,5 +1,9 @@ Sparkline ========= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/SpeedDial.rst b/docs/component/SpeedDial.rst index a0cef9bb..c28e48d8 100644 --- a/docs/component/SpeedDial.rst +++ b/docs/component/SpeedDial.rst @@ -1,5 +1,9 @@ SpeedDial ========= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Stepper.rst b/docs/component/Stepper.rst index 029e9168..6638e392 100644 --- a/docs/component/Stepper.rst +++ b/docs/component/Stepper.rst @@ -1,5 +1,9 @@ Stepper ======= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/StepperContent.rst b/docs/component/StepperContent.rst index 24c8fac9..1933381d 100644 --- a/docs/component/StepperContent.rst +++ b/docs/component/StepperContent.rst @@ -1,5 +1,9 @@ StepperContent ============== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/StepperHeader.rst b/docs/component/StepperHeader.rst index 77a0a242..0d199af4 100644 --- a/docs/component/StepperHeader.rst +++ b/docs/component/StepperHeader.rst @@ -1,5 +1,9 @@ StepperHeader ============= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/StepperItems.rst b/docs/component/StepperItems.rst index d9e6b585..e8671ff0 100644 --- a/docs/component/StepperItems.rst +++ b/docs/component/StepperItems.rst @@ -1,5 +1,9 @@ StepperItems ============ +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/StepperStep.rst b/docs/component/StepperStep.rst index 3ac12134..c75ef2e1 100644 --- a/docs/component/StepperStep.rst +++ b/docs/component/StepperStep.rst @@ -1,5 +1,9 @@ StepperStep =========== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Subheader.rst b/docs/component/Subheader.rst index c557336c..429ff0ff 100644 --- a/docs/component/Subheader.rst +++ b/docs/component/Subheader.rst @@ -1,5 +1,9 @@ Subheader ========= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Switch.rst b/docs/component/Switch.rst index 2abc93d6..64e416dc 100644 --- a/docs/component/Switch.rst +++ b/docs/component/Switch.rst @@ -1,5 +1,9 @@ Switch ====== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/SystemBar.rst b/docs/component/SystemBar.rst index 412fbc49..be5e6cf2 100644 --- a/docs/component/SystemBar.rst +++ b/docs/component/SystemBar.rst @@ -1,5 +1,9 @@ SystemBar ========= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Tab.rst b/docs/component/Tab.rst index 7a312079..54ad40eb 100644 --- a/docs/component/Tab.rst +++ b/docs/component/Tab.rst @@ -1,5 +1,9 @@ Tab === +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/TabItem.rst b/docs/component/TabItem.rst index 5bb7ff0f..bf97515f 100644 --- a/docs/component/TabItem.rst +++ b/docs/component/TabItem.rst @@ -1,5 +1,9 @@ TabItem ======= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/TabReverseTransition.rst b/docs/component/TabReverseTransition.rst index 8f60563b..2c92f7c3 100644 --- a/docs/component/TabReverseTransition.rst +++ b/docs/component/TabReverseTransition.rst @@ -1,5 +1,9 @@ TabReverseTransition ==================== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/TabTransition.rst b/docs/component/TabTransition.rst index 61946723..b2188d06 100644 --- a/docs/component/TabTransition.rst +++ b/docs/component/TabTransition.rst @@ -1,5 +1,9 @@ TabTransition ============= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/TableOverflow.rst b/docs/component/TableOverflow.rst index 7fb13f53..f95cff45 100644 --- a/docs/component/TableOverflow.rst +++ b/docs/component/TableOverflow.rst @@ -1,5 +1,9 @@ TableOverflow ============= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Tabs.rst b/docs/component/Tabs.rst index 06e0aa4d..80e46296 100644 --- a/docs/component/Tabs.rst +++ b/docs/component/Tabs.rst @@ -1,5 +1,9 @@ Tabs ==== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/TabsItems.rst b/docs/component/TabsItems.rst index fe986e02..52bd05c7 100644 --- a/docs/component/TabsItems.rst +++ b/docs/component/TabsItems.rst @@ -1,5 +1,9 @@ TabsItems ========= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/TabsSlider.rst b/docs/component/TabsSlider.rst index eea3fccc..9aae8840 100644 --- a/docs/component/TabsSlider.rst +++ b/docs/component/TabsSlider.rst @@ -1,5 +1,9 @@ TabsSlider ========== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/TextField.rst b/docs/component/TextField.rst index 7631d288..2b28d23f 100644 --- a/docs/component/TextField.rst +++ b/docs/component/TextField.rst @@ -1,5 +1,9 @@ TextField ========= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Textarea.rst b/docs/component/Textarea.rst index afc3ee5c..d6ae623d 100644 --- a/docs/component/Textarea.rst +++ b/docs/component/Textarea.rst @@ -1,5 +1,9 @@ Textarea ======== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ThemeProvider.rst b/docs/component/ThemeProvider.rst index 6fad4eb3..4f807671 100644 --- a/docs/component/ThemeProvider.rst +++ b/docs/component/ThemeProvider.rst @@ -1,5 +1,9 @@ ThemeProvider ============= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/TimePicker.rst b/docs/component/TimePicker.rst index 3e52dd57..4edb5d0a 100644 --- a/docs/component/TimePicker.rst +++ b/docs/component/TimePicker.rst @@ -1,5 +1,9 @@ TimePicker ========== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/TimePickerClock.rst b/docs/component/TimePickerClock.rst index 03f81a22..75867404 100644 --- a/docs/component/TimePickerClock.rst +++ b/docs/component/TimePickerClock.rst @@ -1,5 +1,9 @@ TimePickerClock =============== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/TimePickerTitle.rst b/docs/component/TimePickerTitle.rst index 49639383..31bdf8a6 100644 --- a/docs/component/TimePickerTitle.rst +++ b/docs/component/TimePickerTitle.rst @@ -1,5 +1,9 @@ TimePickerTitle =============== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Timeline.rst b/docs/component/Timeline.rst index 3214b030..e4391f30 100644 --- a/docs/component/Timeline.rst +++ b/docs/component/Timeline.rst @@ -1,5 +1,9 @@ Timeline ======== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/TimelineItem.rst b/docs/component/TimelineItem.rst index c524b799..e2a94317 100644 --- a/docs/component/TimelineItem.rst +++ b/docs/component/TimelineItem.rst @@ -1,5 +1,9 @@ TimelineItem ============ +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Toolbar.rst b/docs/component/Toolbar.rst index 779d5633..f985677e 100644 --- a/docs/component/Toolbar.rst +++ b/docs/component/Toolbar.rst @@ -1,5 +1,9 @@ Toolbar ======= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ToolbarItems.rst b/docs/component/ToolbarItems.rst index 8d7d03c1..41e2626f 100644 --- a/docs/component/ToolbarItems.rst +++ b/docs/component/ToolbarItems.rst @@ -1,5 +1,9 @@ ToolbarItems ============ +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/ToolbarTitle.rst b/docs/component/ToolbarTitle.rst index 823327db..824c91cf 100644 --- a/docs/component/ToolbarTitle.rst +++ b/docs/component/ToolbarTitle.rst @@ -1,5 +1,9 @@ ToolbarTitle ============ +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Tooltip.rst b/docs/component/Tooltip.rst index 3973de59..06cd34f9 100644 --- a/docs/component/Tooltip.rst +++ b/docs/component/Tooltip.rst @@ -1,5 +1,9 @@ Tooltip ======= +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Touch.rst b/docs/component/Touch.rst index a5eaba5d..10d2de23 100644 --- a/docs/component/Touch.rst +++ b/docs/component/Touch.rst @@ -1,5 +1,9 @@ Touch ===== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Treeview.rst b/docs/component/Treeview.rst index d0cb6b2a..a6f84d02 100644 --- a/docs/component/Treeview.rst +++ b/docs/component/Treeview.rst @@ -1,5 +1,9 @@ Treeview ======== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/TreeviewNode.rst b/docs/component/TreeviewNode.rst index f03a2403..641bf3bb 100644 --- a/docs/component/TreeviewNode.rst +++ b/docs/component/TreeviewNode.rst @@ -1,5 +1,9 @@ TreeviewNode ============ +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/VirtualTable.rst b/docs/component/VirtualTable.rst index 5f287ea6..616e02b7 100644 --- a/docs/component/VirtualTable.rst +++ b/docs/component/VirtualTable.rst @@ -1,5 +1,9 @@ VirtualTable ============ +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/Window.rst b/docs/component/Window.rst index f7ae0856..18c5f4d3 100644 --- a/docs/component/Window.rst +++ b/docs/component/Window.rst @@ -1,5 +1,9 @@ Window ====== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. diff --git a/docs/component/WindowItem.rst b/docs/component/WindowItem.rst index 9d3e5af0..9cb6be0a 100644 --- a/docs/component/WindowItem.rst +++ b/docs/component/WindowItem.rst @@ -1,5 +1,9 @@ WindowItem ========== +.. warning:: + This page is AI-generated and requires human review. The content may contain errors or inaccuracies. + + .. note:: Documentation for this component has not been written yet. From 9d8fabb19b3adda32e95ba6f9e3ea19d9d6ec6b7 Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Fri, 21 Nov 2025 17:46:36 +0000 Subject: [PATCH 028/110] docs: document until appBar --- docs/component/Alert.rst | 390 ++++++--- docs/component/App.rst | 112 ++- docs/component/AppBar.rst | 1371 +++++++++++++++++++++++++++++- docs/component/AppBarNavIcon.rst | 9 - docs/component/Avatar.rst | 290 ++++++- docs/component/Btn.rst | 346 +++++++- docs/component/Card.rst | 117 ++- 7 files changed, 2481 insertions(+), 154 deletions(-) delete mode 100644 docs/component/AppBarNavIcon.rst diff --git a/docs/component/Alert.rst b/docs/component/Alert.rst index 92bee1ee..e54c2b1c 100644 --- a/docs/component/Alert.rst +++ b/docs/component/Alert.rst @@ -2,9 +2,14 @@ Alert ===== .. aknowledgement:: - This page is a Python adaptation of the `official Vuetify documentation `_. All examples have been converted to ipyvuetify syntax. + This page is a Python adaptation of the `official Vuetify documentation `_. + All examples have been converted to ipyvuetify syntax. -The :py:class:`Alert ` component is used to convey important information to the user through the use of contextual types, icons, and colors. These default types come in 4 variations: success, info, warning, and error. Default icons are assigned which help represent different actions each type portrays. Many parts of an alert such as ``border``, ``icon``, and ``color`` can also be customized to fit almost any situation. +The :py:class:`Alert ` component is used to convey important information to the user +through the use of contextual types, icons, and colors. These default types come in 4 variations: +``success``, ``info``, ``warning``, and ``error``. Default icons are assigned which help represent +different actions each type portrays. Many parts of an alert such as ``border``, ``icon``, and ``color`` +can also be customized to fit almost any situation. .. api:: @@ -29,7 +34,8 @@ Alerts in their simplest form are flat sheets of paper that display a message. Border ------ -The ``border`` prop adds a simple border to one of the 4 sides of the alert. This can be combined with props like ``color``, ``dark``, and ``type`` to provide unique accents to the alert. +The ``border`` prop adds a simple border to one of the 4 sides of the alert. This can be combined with +props like ``color``, ``dark``, and ``type`` to provide unique accents to the alert. .. tab-set:: @@ -140,7 +146,9 @@ The ``border`` prop adds a simple border to one of the 4 sides of the alert. Thi Colored Border -------------- -The ``colored-border`` prop removes the alert background in order to accent the ``border`` prop. If a ``type`` is set, it will use the type's default color. If no color or type is set, the color will default to the inverted color of the applied theme (black for light and white/gray for dark). +The ``colored-border`` prop removes the alert background in order to accent the ``border`` prop. +If a ``type`` is set, it will use the type's default color. If no color or type is set, the color +will default to the inverted color of the applied theme (black for light and white/gray for dark). .. tab-set:: @@ -157,28 +165,46 @@ The ``colored-border`` prop removes the alert background in order to accent the colored_border=True, color="deep-purple accent-4", elevation=2, - children=["Aliquam eu nunc. Fusce commodo aliquam arcu. In consectetuer turpis ut velit. Nulla facilisi. Morbi mollis tellus ac sapien."] + children=[ + "Aliquam eu nunc. Fusce commodo aliquam arcu. In consectetuer turpis ut velit. " + "Nulla facilisi.. Morbi mollis tellus ac sapien. Fusce vel dui. Praesent ut ligula " + "non mi varius sagittis. Vivamus consectetuer hendrerit lacus. Suspendisse enim " + "turpis, dictum sed, iaculis a, condimentum nec, nisi." + ] ), v.Alert( border="top", colored_border=True, type="info", elevation=2, - children=["Vestibulum ullamcorper mauris at ligula. Nam pretium turpis et arcu. Ut varius tincidunt libero."] + children=[ + "Vestibulum ullamcorper mauris at ligula. Nam pretium turpis et arcu. Ut varius " + "tincidunt libero. Curabitur ligula sapien, tincidunt non, euismod vitae, posuere " + "imperdiet, leo. Morbi nec metus." + ] ), v.Alert( border="bottom", colored_border=True, type="warning", elevation=2, - children=["Sed in libero ut nibh placerat accumsan. Phasellus leo dolor, tempus non, auctor et, hendrerit quis, nisi."] + children=[ + "Sed in libero ut nibh placerat accumsan. Phasellus leo dolor, tempus non, auctor " + "et, hendrerit quis, nisi. Phasellus leo dolor, tempus non, auctor et, hendrerit " + "quis, nisi. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc, " + "quis gravida magna mi a libero. Donec elit libero, sodales nec, volutpat a, " + "suscipit non, turpis." + ] ), v.Alert( border="right", colored_border=True, type="error", elevation=2, - children=["Fusce commodo aliquam arcu. Pellentesque posuere. Phasellus tempus."] + children=[ + "Fusce commodo aliquam arcu. Pellentesque posuere. Phasellus tempus. Donec " + "posuere vulputate arcu." + ] ), ]) @@ -194,28 +220,28 @@ The ``colored-border`` prop removes the alert background in order to accent the colored_border=True, color="deep-purple accent-4", elevation=2, - children=["Aliquam eu nunc. Fusce commodo aliquam arcu. In consectetuer turpis ut velit. Nulla facilisi. Morbi mollis tellus ac sapien."] + children=["Aliquam eu nunc..."] ), v.Alert( border="top", colored_border=True, type="info", elevation=2, - children=["Vestibulum ullamcorper mauris at ligula. Nam pretium turpis et arcu. Ut varius tincidunt libero."] + children=["Vestibulum ullamcorper mauris at ligula..."] ), v.Alert( border="bottom", colored_border=True, type="warning", elevation=2, - children=["Sed in libero ut nibh placerat accumsan. Phasellus leo dolor, tempus non, auctor et, hendrerit quis, nisi."] + children=["Sed in libero ut nibh placerat accumsan. Phasellus leo dolor..."] ), v.Alert( border="right", colored_border=True, type="error", elevation=2, - children=["Fusce commodo aliquam arcu. Pellentesque posuere. Phasellus tempus."] + children=["Fusce commodo aliquam arcu. Pellentesque posuere..."] ), ]) @@ -263,7 +289,9 @@ The ``colored-border`` prop removes the alert background in order to accent the Dense ----- -The ``dense`` prop decreases the height of the alert to create a simple and compact style. When combined with the ``border`` prop, the border thickness will be decreased to stay consistent with the style. +The ``dense`` prop decreases the height of the alert to create a simple and compact style. +When combined with the ``border`` prop, the border thickness will be decreased to stay consistent +with the style. .. tab-set:: @@ -356,7 +384,11 @@ The ``dense`` prop decreases the height of the alert to create a simple and comp Dismissible ----------- -The ``dismissible`` prop adds a close button to the end of the alert component. Clicking this button will set its value to false and effectively hide the alert. You can restore the alert by binding ``v_model`` and setting it to true. The close icon automatically has an ``aria-label`` applied that can be changed by modifying the ``close_label`` prop or changing close value in your locale. +The ``dismissible`` prop adds a close button to the end of the alert component. Clicking this +button will set its value to false and effectively hide the alert. You can restore the alert by +binding ``v_model`` and setting it to true. The close icon automatically has an ``aria-label`` +applied that can be changed by modifying the ``close_label`` prop or changing close value in your +locale. .. tab-set:: @@ -374,7 +406,14 @@ The ``dismissible`` prop adds a close button to the end of the alert component. color="deep-purple accent-4", dark=True, dismissible=True, - children=["Aenean imperdiet. Quisque id odio. Cras dapibus. Pellentesque ut neque. Vivamus consectetuer hendrerit lacus. Sed mollis, eros et ultrices tempus, mauris ipsum aliquam libero."] + children=[ + "Aenean imperdiet. Quisque id odio. Cras dapibus. Pellentesque ut neque. Cras " + "dapibus. Vivamus consectetuer hendrerit lacus. Sed mollis, eros et ultrices " + "tempus, mauris ipsum aliquam libero, non adipiscing dolor urna a orci. Sed " + "mollis, eros et ultrices tempus, mauris ipsum aliquam libero, non adipiscing " + "dolor urna a orci. Curabitur blandit mollis lacus. Curabitur ligula sapien, " + "tincidunt non, euismod vitae, posuere imperdiet, leo." + ] ) v.Container(children=[alert]) @@ -419,7 +458,9 @@ The ``dismissible`` prop adds a close button to the end of the alert component. Icon ---- -The ``icon`` prop allows you to add an icon to the beginning of the alert component. If a ``type`` is provided, this will override the default type icon. Additionally, setting the ``icon`` prop to false will remove the icon altogether. +The ``icon`` prop allows you to add an icon to the beginning of the alert component. If a ``type`` is +provided, this will override the default type icon. Additionally, setting the ``icon`` prop to false +will remove the icon altogether. .. tab-set:: @@ -436,14 +477,21 @@ The ``icon`` prop allows you to add an icon to the beginning of the alert compon dark=True, icon="mdi-firework", dense=True, - children=["Suspendisse enim turpis, dictum sed, iaculis a, condimentum nec, nisi."] + children=[ + "Suspendisse enim turpis, dictum sed, iaculis a, condimentum nec, nisi. " + "Vivamus quis mi. Quisque ut nisi. Maecenas malesuada." + ] ), v.Alert( color="#C51162", dark=True, icon="mdi-material-design", border="right", - children=["Phasellus blandit leo ut odio. Morbi mattis ullamcorper velit."] + children=[ + "Phasellus blandit leo ut odio. Morbi mattis ullamcorper velit. Donec orci " + "lectus, aliquam ut, faucibus non, euismod id, nulla. In ut quam vitae odio " + "lacinia tincidunt." + ] ), v.Alert( color="primary", @@ -451,7 +499,12 @@ The ``icon`` prop allows you to add an icon to the beginning of the alert compon icon="mdi-vuetify", border="left", prominent=True, - children=["Praesent congue erat at massa. Nullam vel sem."] + children=[ + "Praesent congue erat at massa. Nullam vel sem. Aliquam lorem ante, dapibus " + "in, viverra quis, feugiat a, tellus. Proin viverra, ligula sit amet ultrices " + "semper, ligula arcu tristique sapien, a accumsan nisi mauris ac eros. " + "Curabitur at lacus ac velit ornare lobortis." + ] ), ]) @@ -514,7 +567,8 @@ The ``icon`` prop allows you to add an icon to the beginning of the alert compon Outlined -------- -The ``outlined`` prop inverts the style of an alert, inheriting the currently applied color, applying it to the text and border, and making its background transparent. +The ``outlined`` prop inverts the style of an alert, inheriting the currently applied color, applying +it to the text and border, and making its background transparent. .. tab-set:: @@ -529,20 +583,38 @@ The ``outlined`` prop inverts the style of an alert, inheriting the currently ap v.Alert( outlined=True, color="purple", - children=[v.Html(tag="div", class_="text-h6", children=["Lorem Ipsum"]), "Maecenas ullamcorper, dui et placerat feugiat, eros pede varius nisi."] + children=[ + v.Html(tag="h5", class_="mt-1", children=["Lorem Ipsum"]), + ( + "Maecenas ullamcorper, dui et placerat feugiat, eros pede varius nisi, " + "condimentum viverra felis nunc et lorem. Duis vel nibh at velit scelerisque " + "suscipit. Praesent blandit laoreet nibh. Aenean posuere, tortor sed cursus " + "feugiat, nunc augue blandit nunc, eu sollicitudin urna dolor sagittis lacus. " + "Etiam sollicitudin, ipsum eu pulvinar rutrum, tellus ipsum laoreet sapien, " + "quis venenatis ante odio sit amet eros." + ) + ] ), v.Alert( outlined=True, type="success", text=True, - children=["Praesent venenatis metus at tortor pulvinar varius."] + children=[ + "Praesent venenatis metus at tortor pulvinar varius. Aenean commodo ligula eget " + "dolor. Praesent ac massa at ligula laoreet iaculis. Vestibulum ullamcorper mauris " + "at ligula." + ] ), v.Alert( outlined=True, type="warning", prominent=True, border="left", - children=["Duis arcu tortor, suscipit eget, imperdiet nec, imperdiet iaculis, ipsum."] + children=[ + "Duis arcu tortor, suscipit eget, imperdiet nec, imperdiet iaculis, ipsum. " + "Suspendisse non nisl sit amet velit hendrerit rutrum. Nullam vel sem. " + "Pellentesque dapibus hendrerit tortor." + ] ), ]) @@ -556,7 +628,10 @@ The ``outlined`` prop inverts the style of an alert, inheriting the currently ap v.Alert( outlined=True, color="purple", - children=[v.Html(tag="div", class_="text-h6", children=["Lorem Ipsum"]), "Maecenas ullamcorper..."] + children=[ + v.Html(tag="h5", class_="mt-1", children=["Lorem Ipsum"]), + "Maecenas ullamcorper..." + ] ), v.Alert( outlined=True, @@ -580,7 +655,7 @@ The ``outlined`` prop inverts the style of an alert, inheriting the currently ap