Socket
Socket
Sign inDemoInstall

react-paginate

Package Overview
Dependencies
Maintainers
1
Versions
106
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-paginate - npm Package Compare versions

Comparing version 0.1.21 to 0.1.22

5

package.json
{
"name": "react-paginate",
"version": "0.1.21",
"version": "0.1.22",
"description": "A ReactJS component that creates a pagination.",

@@ -28,2 +28,3 @@ "main": "./react_components/index.js",

"browserify": "~6.0.3",
"classnames": "^1.2.0",
"express": "^4.12.1",

@@ -35,3 +36,3 @@ "gulp": "~3.8.8",

"jquery": "^2.1.3",
"react": "~0.12.2",
"react": "~0.13.1",
"react-tools": "~0.12.2",

@@ -38,0 +39,0 @@ "reactify": "1.0.0",

9

react_components/PaginationBoxView.jsx
'use strict';
var React = require('react/addons');
var React = require('react');
var classNames = require('classnames');
var PaginationListView = require("./PaginationListView.jsx");

@@ -67,5 +68,3 @@

render: function() {
var cx = React.addons.classSet;
var previousClasses = cx({
var previousClasses = classNames({
'previous': true,

@@ -75,3 +74,3 @@ 'disabled': this.state.selected === 0

var nextClasses = cx({
var nextClasses = classNames({
'next': true,

@@ -78,0 +77,0 @@ 'disabled': this.state.selected === this.props.pageNum - 1

'use strict';
var _ = require("underscore");
var React = require('react');
var React = require('react/addons');
var PageView = require("./PageView.jsx");

@@ -6,0 +6,0 @@

Sorry, the diff of this file is too big to display

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