├── .gitignore ├── LICENSE ├── README.md ├── example ├── main.py └── react_components │ ├── common.js │ └── my_component.js ├── pyproject.toml ├── src └── dash_local_react_components │ ├── __init__.py │ ├── _common.py │ ├── _config.py │ ├── _file_generator.py │ ├── _functions.py │ ├── _types.py │ └── _utils.py └── tests ├── __init__.py └── test_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomaszRewak/dash-local-react-components/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomaszRewak/dash-local-react-components/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomaszRewak/dash-local-react-components/HEAD/README.md -------------------------------------------------------------------------------- /example/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomaszRewak/dash-local-react-components/HEAD/example/main.py -------------------------------------------------------------------------------- /example/react_components/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomaszRewak/dash-local-react-components/HEAD/example/react_components/common.js -------------------------------------------------------------------------------- /example/react_components/my_component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomaszRewak/dash-local-react-components/HEAD/example/react_components/my_component.js -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomaszRewak/dash-local-react-components/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/dash_local_react_components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomaszRewak/dash-local-react-components/HEAD/src/dash_local_react_components/__init__.py -------------------------------------------------------------------------------- /src/dash_local_react_components/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomaszRewak/dash-local-react-components/HEAD/src/dash_local_react_components/_common.py -------------------------------------------------------------------------------- /src/dash_local_react_components/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomaszRewak/dash-local-react-components/HEAD/src/dash_local_react_components/_config.py -------------------------------------------------------------------------------- /src/dash_local_react_components/_file_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomaszRewak/dash-local-react-components/HEAD/src/dash_local_react_components/_file_generator.py -------------------------------------------------------------------------------- /src/dash_local_react_components/_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomaszRewak/dash-local-react-components/HEAD/src/dash_local_react_components/_functions.py -------------------------------------------------------------------------------- /src/dash_local_react_components/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomaszRewak/dash-local-react-components/HEAD/src/dash_local_react_components/_types.py -------------------------------------------------------------------------------- /src/dash_local_react_components/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomaszRewak/dash-local-react-components/HEAD/src/dash_local_react_components/_utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomaszRewak/dash-local-react-components/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomaszRewak/dash-local-react-components/HEAD/tests/test_utils.py --------------------------------------------------------------------------------