sm-tablefilter
v1.0.2
Published
This is the package for table with filter option.
Downloads
13
Readme
sm-tablefilter
This package provides a table component with filter options for React applications, allowing easy integration of dynamic tables with customizable filtering capabilities.
Installation
You can install sm-tablefilter
via npm or yarn:
npm install sm-tablefilter
# or
yarn add sm-tablefilter
Usage
import React from "react";
import TableFilter from "sm-tablefilter";
import jsonData from "./path_to_your_json_data.json";
const MyComponent = () => {
return (
<TableFilter jsondata={jsonData} />
);
}
export default MyComponent;
Props
jsondata
: JSON object containing the configuration for the table component.
Example JSON Data
{
"id": "exampleId",
"tableData": [
{
"id": 1,
"title": "Title 1",
"description": "Description 1",
"url": "https://example.com/1",
"category": "Education",
"year": 2004
},
{
"id": 2,
"title": "Title 2",
"description": "Description 2",
"url": "https://example.com/2",
"category": "Sports",
"year": 2003
},
...
],
"wow_animation": "fadeIn", // Example animation class
"wow_duration": "1s", // Example animation duration
"wow_delay": "0.5s" // Example animation delay
}
License
This project is licensed under the ISC License. See the LICENSE file below :
ISC License
Copyright (c) 2024, Shivam Makwana
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.