Socket
Socket
Sign inDemoInstall

react-json-table-v2

Package Overview
Dependencies
3
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.5 to 0.1.6

16

build/react-json-table.js
/*
react-json-table-v2 v0.1.4
react-json-table-v2 v0.1.5
https://github.com/Amedeo91/react-json-table

@@ -84,2 +84,9 @@ MIT: https://github.com/Amedeo91/react-json-table/raw/master/LICENSE

class JsonTable extends React.Component{
constructor (props){
super(props);
this.onClickRow = this.onClickRow.bind(this);
this.onClickCell = this.onClickCell.bind(this);
this.onClickHeader = this.onClickCell.bind(this);
}
getSetting(name){

@@ -239,2 +246,9 @@ return getSetting(name, this)

class Row extends React.Component{
constructor (props){
super(props);
this.onClickRow = this.onClickRow.bind(this);
this.onClickCell = this.onClickCell.bind(this);
}
getSetting(name){

@@ -241,0 +255,0 @@ return getSetting(name, this)

/*
react-json-table-v2 v0.1.4
react-json-table-v2 v0.1.5
https://github.com/Amedeo91/react-json-table

@@ -84,2 +84,9 @@ MIT: https://github.com/Amedeo91/react-json-table/raw/master/LICENSE

class JsonTable extends React.Component{
constructor (props){
super(props);
this.onClickRow = this.onClickRow.bind(this);
this.onClickCell = this.onClickCell.bind(this);
this.onClickHeader = this.onClickCell.bind(this);
}
getSetting(name){

@@ -239,2 +246,9 @@ return getSetting(name, this)

class Row extends React.Component{
constructor (props){
super(props);
this.onClickRow = this.onClickRow.bind(this);
this.onClickCell = this.onClickCell.bind(this);
}
getSetting(name){

@@ -241,0 +255,0 @@ return getSetting(name, this)

2

package.json
{
"name": "react-json-table-v2",
"version": "0.1.5",
"version": "0.1.6",
"description": "A simple but reactive table react component to display JSON data, based on https://github.com/arqex/react-json-table",

@@ -5,0 +5,0 @@ "main": "rjt.js",

@@ -23,2 +23,9 @@ var React = require('react');

class JsonTable extends React.Component{
constructor (props){
super(props);
this.onClickRow = this.onClickRow.bind(this);
this.onClickCell = this.onClickCell.bind(this);
this.onClickHeader = this.onClickCell.bind(this);
}
getSetting(name){

@@ -178,2 +185,9 @@ return getSetting(name, this)

class Row extends React.Component{
constructor (props){
super(props);
this.onClickRow = this.onClickRow.bind(this);
this.onClickCell = this.onClickCell.bind(this);
}
getSetting(name){

@@ -180,0 +194,0 @@ return getSetting(name, this)

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc