Metadata-Version: 2.4
Name: dashkit_table
Version: 1.0.1
Summary: Modern Handsontable component for Dash with native theming support
Home-page: https://pypi.org/project/dashkit_table/
Author: Dashkit Team
License: MIT
Project-URL: Homepage, https://pypi.org/project/dashkit_table/
Project-URL: Source, https://github.com/iamgp/dash-attio
Project-URL: Issues, https://github.com/iamgp/dash-attio/issues
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Framework :: Dash
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: User Interfaces
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: dash>=2.0.0
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# dashkit_table

Dash component wrapping Handsontable (v16) with Dashkit-native theming and sensible defaults.

## Install

```bash
pip install dashkit_table
```

## Usage

```python
from dash import Dash, html
from dashkit_table import DashkitTable

app = Dash(__name__)

app.layout = html.Div(
    DashkitTable(
        id="table",
        data=[["Alice", 10], ["Bob", 20]],
        columns=[{"data": 0, "title": "Name"}, {"data": 1, "title": "Score"}],
        themeName="ht-theme-main",
        stretchH="all",
    )
)

if __name__ == "__main__":
    app.run(debug=True)
```

## Features
- Handsontable v16 with column sorting, filters, dropdown menu enabled by default
- Theme switching support via `themeName`
- Bundled JS assets for immediate use in Dash

## License
MIT
