Metadata-Version: 2.2
Name: streamlit-slickgrid
Version: 0.1.8
Summary: A Streamlit component that wraps SlickGrid
Author-email: Thiago Teixeira <thiago.teixeira@snowflake.com>
License: Apache 2.0
Requires-Python: >=3.7.0
Description-Content-Type: text/markdown
Requires-Dist: streamlit>=1.20.0

# streamlit-slickgrid

A wrapper that allows you to use [SlickGrid](https://github.com/ghiscoding/slickgrid-universal) in Streamlit.

## Installation instructions

```sh
pip install streamlit-slickgrid
```

## Usage instructions

See [streamlit_slickgrid/example.py](https://github.com/sfc-gh-tteixeira/streamlit-slickgrid/blob/main/streamlit_slickgrid/example.py).

## Contributing

On one terminal:

```sh
cd [this folder]
python -m venv .venv # One-time only.
source .venv/bin/activate
pip install -e .[dev]
streamlit run streamlit_slickgrid/example.py
```

On another terminal:

```sh
cd [this folder]
cd streamlit_slickgrid/frontend
npm install
npm run start
```

## Building wheel file

```sh
cd [this folder]
cd streamlit_slickgrid/frontend
npm run build
cd ../..
python -m build --wheel # or: uv build
```
