Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fast-table

Package Overview
Dependencies
Maintainers
1
Versions
97
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fast-table - npm Package Compare versions

Comparing version 1.4.8-beta.8 to 1.4.8-beta.9

8

lib/HeadCell.js

@@ -105,5 +105,13 @@ "use strict";

if (children.length > 0) {
var _style = {};
if (current !== 0) {
_style.display = 'inline-block';
_style.float = 'left';
}
return _react.default.createElement("div", {
className: current === 0 ? 'row-group' : '',
key: key,
style: _style,
fixed: fixed

@@ -110,0 +118,0 @@ }, cell, _react.default.createElement("div", {

2

package.json
{
"name": "fast-table",
"version": "1.4.8-beta.8",
"version": "1.4.8-beta.9",
"description": "react table fast",

@@ -5,0 +5,0 @@ "main": "./lib/index.js",

@@ -91,4 +91,14 @@ import React from 'react';

if (children.length > 0) {
let style = {};
if (current !== 0) {
style.display = 'inline-block';
style.float = 'left';
}
return (
<div className={current === 0 ? 'row-group' : ''} key={key} fixed={fixed}>
<div
className={current === 0 ? 'row-group' : ''}
key={key}
style={style}
fixed={fixed}
>
{cell}

@@ -95,0 +105,0 @@ <div className='col-group'>

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc