glideapps / glideapps/glide-data-grid
JSON cell
Open
package:cells
type:enhancement
- Dominant language
- TypeScript
- Stars
- 5.3k
- Forks
- 428
- PR merge metrics
- No merged PRs in 30d
Description
Add a cell optimized for JSON values to the `cells` package. This could use the [`react-json-view`](https://github.com/microlinkhq/react-json-view) library to show and edit the JSON (object) values.
Propsed API:
```typescript
interface JsonCellProps {
readonly kind: "json-cell";
readonly data: string | Object | undefined | null;
readonly displayData?: string;
}
```
Contributor guide
Assessment
This issue has not been assessed yet.