Comparing version 1.2.0 to 1.2.1
{ | ||
"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
Empty package
Supply chain riskPackage does not contain any code. It may be removed, is name squatting, or the result of a faulty package publish.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
211440
0
29
2
6