UNPKG

@blocktion/json-to-table

Version:

A powerful, modular React component for converting JSON data to navigable tables with advanced features like automatic column detection, theming, and sub-table navigation. Part of the Blocktion SaaS project ecosystem.

15 lines (14 loc) 665 B
// Main component export { JsonTable } from "./JsonTable"; // Sub-components export { NavigableCell } from "./Cells/NavigableCell"; export { CellRenderer } from "./Cells/CellRenderer"; export { NavigationControls } from "./Navigation/NavigationControls"; export { TableContainer } from "./Table/TableContainer"; export { TableHeader } from "./Table/TableHeader"; export { TableBody } from "./Table/TableBody"; // Editing components export { AddRowButton, QuickAddRowButton } from "./Editing/AddRowButton"; export { RowActions } from "./Editing/RowActions"; export { BulkActions } from "./Editing/BulkActions"; export { EditableCell } from "./Editing/EditableCell";