
Product
Introducing Rust Support in Socket
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
table-listing
Advanced tools
Reusable React library for displaying tabular data with filtering, pagination, and search functionality
Library to render a table, from a list of objects.
npm install --save table-listing
listTitle
(String): The title of your table.
listTitles
(Array of Objects): The title of each column in your table, the corresponding label in your listElements, and the type of the information. (Currently supported : string, date and number)
listElements
(Array of Objects): A list of objects where each object represents a row in the table. The properties of each object should always be the same, in the same order, and their values represent the data for each cell in the table.
import TableListing from 'table-listing'
const listTitle = "Class 3 students"
const listTitles = [
{
"label": "First Name",
"elementLabel": "name",
"type": "string"
},
{
"label": "Age",
"elementLabel": "age",
"type": "number"
}
]
const listElements = [
{
"name": "John",
"age": 12
},
{
"name": "Elisa",
"age": 13
}
]
function Example() {
return (
<>
<TableListing listTitle={listTitle} listTitles={listTitles} listElements={listElements}/>
</>
);
}
MIT © Jendoki
FAQs
Reusable React library for displaying tabular data with filtering, pagination, and search functionality
The npm package table-listing receives a total of 3 weekly downloads. As such, table-listing popularity was classified as not popular.
We found that table-listing demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
Product
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.