Metadata-Version: 2.3
Name: solara-ipyantd
Version: 0.0.1
Summary: React for ipywidgets that just works
Project-URL: Homepage, https://github.com/widgetti/ipyantd
Author-email: "Maarten A. Breddels" <maartenbreddels@gmail.com>
License: Copyright (c) 2023 Maarten A. Breddels
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE.txt
Keywords: IPython,Jupyter,Widgets
Classifier: Framework :: Jupyter
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.7
Requires-Dist: anywidget>=0.2.0
Requires-Dist: ipyreact>=0.4.0
Requires-Dist: ipywidgets>=7.0.0
Provides-Extra: dev
Requires-Dist: pre-commit; extra == 'dev'
Provides-Extra: docs
Requires-Dist: jupyter-sphinx; extra == 'docs'
Requires-Dist: nbsphinx; extra == 'docs'
Requires-Dist: nbsphinx-link; extra == 'docs'
Requires-Dist: pypandoc; extra == 'docs'
Requires-Dist: pytest-check-links; extra == 'docs'
Requires-Dist: recommonmark; extra == 'docs'
Requires-Dist: sphinx-rtd-theme; extra == 'docs'
Requires-Dist: sphinx>=1.5; extra == 'docs'
Provides-Extra: examples
Provides-Extra: ui-test
Requires-Dist: pytest>=6.0; extra == 'ui-test'
Requires-Dist: solara[pytest]; extra == 'ui-test'
Provides-Extra: unit-test
Requires-Dist: pytest>=6.0; extra == 'unit-test'
Description-Content-Type: text/markdown

ipywidget wrapper for [Ant Design components](https://ant.design/) using [ipyreact](https://github.com/widgetti/ipyreact/).

# Demo

https://github.com/widgetti/ipyantd/assets/1765949/419020e8-27ad-4722-9d00-5a5e0dad17f3

- [(classical) widget demo code](https://github.com/widgetti/ipyantd/blob/master/examples/demo.ipynb)
- [Solara/reacton component demo code](https://github.com/widgetti/ipyantd/blob/master/examples/demo.py)

# Components

The following components are wrapped (more will be coming):

- General
  - Button
- Layout
  - Flex
  - Grid (Col / Row)
- Navigation
  - Dropdown
- Data entry
  - DatePicker
  - ColorPicker
  - Select
  - Switch
- Feedback
  - Modal

# Installation

```
pip install solara-ipyantd
```

# Dev install

```
npm ci
npm run build
pip install -e .
```
