Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Declarative React table component with highly customizable scroll and layout feature
For npm:
npm install --save rb-table
Add the default stylesheet, you can choose css/sass/less version by just change the suffix.
import 'rb-table/dist/rb-table.css';
For cdn version
<script src="https://unpkg.com/rb-table@1/dist/rb-table.bundle.min.js" crossorigin></script>
Put <RBTable/>
in your page with props and you are good to go.
<RBTable
columns={[
{ header: () => 'header 1', cell: i => i },
{ header: 'header 2', cell: i => i },
{ header: <span>header 3</span>, cell: i => i }
]}
data={[1,2,3]}
/>
Property | Description | Type | Default |
---|---|---|---|
columns | Columns of table | Array<ColumnProps> | - |
data | Data to be displayed | Array <any> | - |
onRowClick | Event callback on row click, if provided an extra class 'rb-table-row--clickable' will append to each body row | function | - |
prefixCls | Classname prefix, if specified must use with less/sass style and override variable @prefix-rb-table with the same value | string | 'rb-table' |
Property | Description | Type |
---|---|---|
header | Render column header | string | number | element | function(data, column) |
cell | Render column cell | string | number | element | function(rowData, data, column) |
width | Specify column width in px , if not specify the width will be auto calculate to fit content in one row, when the total width of table is exceed a horizontal scrollbar will be show | number |
minWidth | Specify column minimum width in px only when width is not set | number |
maxWidth | Specify column maximum width in px only when width is not set | number |
fixed | Specify column to be fixed on left or right, if not specified will scroll when it is neccessary | 'left' | 'right' |
cellClassName | Additional cell class | string |
cellStyle | Additional cell style | object |
headerClassName | Additional header class | string |
headerStyle | Additional header style | object |
rb-table
provide the less/scss style file with predefined theme variables, so you can easily customize the look by modifying these variable as well as override the default style. if you are useing wepack, bellow is an example as well as a complete list of variables:
// my-rb-table.less
@import "~rb-table"
@prefix-rb-table: rb-table;
@rb-table-scroll-bar-color: ; @your-primary-color // default #777
@rb-table-cell-border-color: #f0f0f0;
@rb-table-scroll-bar-background: #eee;
@rb-table-scroll-bar-width: 10px;
@rb-table-scroll-bar-padding: 1px;
@rb-table-scroll-bar-right-offset: 2px;
@prefix-rb-table-padding: (@rb-table-scroll-bar-width + 5px);
@rb-table-background: #FFF;
@rb-table-color: #333;
@rb-table-row-hover-background: lighten(@rb-table-scroll-bar-color, 55%);
Chrome | Firefox | IE | Safari |
---|---|---|---|
Latest | Latest | 11+ | Latest |
Use GitHub issues for requests.
Pull requests are most welcome;
Changes are tracked as GitHub releases.
rb-table
is MIT-licensed.
FAQs
High performance table with fixed columns and header support
The npm package rb-table receives a total of 0 weekly downloads. As such, rb-table popularity was classified as not popular.
We found that rb-table 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.