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

turbogrid

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

turbogrid - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

20

package.json
{
"name": "turbogrid",
"version": "1.2.0",
"version": "1.2.1",
"main": "dist/turbogrid.js",

@@ -12,14 +12,14 @@ "description": "TurboGrid",

"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.2",
"html-loader": "^0.5.5",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-loader": "^8.1.0",
"css-loader": "^3.5.2",
"html-loader": "^1.1.0",
"node-sass": "^4.13.1",
"raw-loader": "^4.0.0",
"raw-loader": "^4.0.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
"style-loader": "^1.1.4",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
}
}

@@ -1,7 +0,2 @@

# Welcome to the TurboGrid!
## Getting Started
Basic Setup
```javascript

@@ -11,17 +6,9 @@ npm install turbogrid --save

## Import constructor
## Usage
```javascript
var TurboGrid = window.turbogrid.TurboGrid;
var TurboGrid = require("turbogrid").TurboGrid;
import { TurboGrid } from "turbogrid";
```
## Simple Example
```javascript
var container = $(".container");
var turbogrid = new TurboGrid(container);
turbogrid.setOption({
var grid = new window.turbogrid.Grid(".container");
grid.setOption({
sortField: "name"
});
turbogrid.setData({
grid.setData({
columns: [{

@@ -42,3 +29,3 @@ id: "name",

});
turbogrid.render();
grid.render();
```

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