├── hyperdiv_docs ├── __init__.py ├── demos │ ├── __init__.py │ ├── counter_plugin │ │ ├── __init__.py │ │ ├── counter.py │ │ └── assets │ │ │ ├── counter.css │ │ │ └── counter.js │ ├── leaflet_plugin │ │ ├── __init__.py │ │ ├── leaflet.py │ │ └── assets │ │ │ └── leaflet-plugin.js │ └── app_template_demo.py ├── pages │ ├── __init__.py │ ├── guide │ │ ├── __init__.py │ │ ├── static_assets.py │ │ ├── loops.py │ │ ├── conditional_rendering.py │ │ ├── interactivity.py │ │ ├── getting_started.py │ │ ├── state.py │ │ ├── components.py │ │ ├── matplotlib_charts.py │ │ ├── modular_apps.py │ │ ├── using_the_app_template.py │ │ ├── layout.py │ │ ├── pages_and_navigation.py │ │ ├── component_props.py │ │ ├── tasks.py │ │ └── deploying.py │ ├── reference │ │ ├── __init__.py │ │ ├── cli.py │ │ ├── icons.py │ │ ├── prop_types.py │ │ ├── env_variables.py │ │ ├── design_tokens.py │ │ └── components.py │ ├── introduction │ │ ├── __init__.py │ │ ├── docs_overview.py │ │ └── overview.py │ └── extending_hyperdiv │ │ ├── __init__.py │ │ ├── custom_assets.py │ │ ├── overview.py │ │ ├── new_components.py │ │ └── built_in_components.py ├── extractor │ ├── __init__.py │ ├── hyperdiv_module_path.py │ ├── README.md │ ├── dirutils.py │ ├── types.py │ ├── main.py │ ├── class_attribute_docs.py │ ├── docstring_extractor.py │ ├── top_level_docs.py │ └── extractor.py ├── utils.py ├── router.py ├── docs_metadata.py ├── main.py ├── menu.py ├── code_examples.py └── page.py ├── .gitignore ├── assets ├── kitten.jpg ├── kitten-bw.jpg ├── iframe-example.html ├── hd-logo-black.svg └── hd-logo-white.svg ├── start.py ├── README.md └── LICENSE /hyperdiv_docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperdiv_docs/demos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperdiv_docs/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperdiv_docs/extractor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperdiv_docs/pages/guide/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperdiv_docs/pages/reference/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperdiv_docs/pages/introduction/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperdiv_docs/pages/extending_hyperdiv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperdiv_docs/demos/counter_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | from .counter import counter 2 | -------------------------------------------------------------------------------- /hyperdiv_docs/demos/leaflet_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | from .leaflet import leaflet 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | 3 | .DS_Store 4 | hyperdiv_docs/extractor/extracted.json 5 | -------------------------------------------------------------------------------- /assets/kitten.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperdiv/hyperdiv-docs/HEAD/assets/kitten.jpg -------------------------------------------------------------------------------- /assets/kitten-bw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperdiv/hyperdiv-docs/HEAD/assets/kitten-bw.jpg -------------------------------------------------------------------------------- /assets/iframe-example.html: -------------------------------------------------------------------------------- 1 | 2 |