From 5bf22fc7e3c392c8bd44315ca2d06d7dca7d084e Mon Sep 17 00:00:00 2001 From: sotech117 Date: Thu, 31 Jul 2025 17:27:24 -0400 Subject: add code for analysis of data --- venv/lib/python3.8/site-packages/dash/dcc/Input.py | 399 +++++++++++++++++++++ 1 file changed, 399 insertions(+) create mode 100644 venv/lib/python3.8/site-packages/dash/dcc/Input.py (limited to 'venv/lib/python3.8/site-packages/dash/dcc/Input.py') diff --git a/venv/lib/python3.8/site-packages/dash/dcc/Input.py b/venv/lib/python3.8/site-packages/dash/dcc/Input.py new file mode 100644 index 0000000..3b226e9 --- /dev/null +++ b/venv/lib/python3.8/site-packages/dash/dcc/Input.py @@ -0,0 +1,399 @@ +# AUTO GENERATED FILE - DO NOT EDIT + +import typing # noqa: F401 +from typing_extensions import TypedDict, NotRequired, Literal # noqa: F401 +from dash.development.base_component import Component, _explicitize_args + +ComponentType = typing.Union[ + str, + int, + float, + Component, + None, + typing.Sequence[typing.Union[str, int, float, Component, None]], +] + +NumberType = typing.Union[ + typing.SupportsFloat, typing.SupportsInt, typing.SupportsComplex +] + + +class Input(Component): + """An Input component. + A basic HTML input control for entering text, numbers, or passwords. + + Note that checkbox and radio types are supported through + the Checklist and RadioItems component. Dates, times, and file uploads + are also supported through separate components. + + Keyword arguments: + + - value (string | number; optional): + The value of the input. + + - type (a value equal to: 'text', 'number', 'password', 'email', 'range', 'search', 'tel', 'url', 'hidden'; default 'text'): + The type of control to render. + + - debounce (boolean | number; default False): + If True, changes to input will be sent back to the Dash server + only on enter or when losing focus. If it's False, it will send + the value back on every change. If a number, it will not send + anything back to the Dash server until the user has stopped typing + for that number of seconds. + + - placeholder (string | number; optional): + A hint to the user of what can be entered in the control . The + placeholder text must not contain carriage returns or line-feeds. + Note: Do not use the placeholder attribute instead of a