fast-table
Advanced tools
Comparing version 1.4.8-beta.8 to 1.4.8-beta.9
@@ -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", { |
{ | ||
"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'> |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
241315
6201