Skip to content

Commit

Permalink
Merge pull request #27 from awsp/0.23.0
Browse files Browse the repository at this point in the history
Update to Handsontable 0.23.0
  • Loading branch information
awsp committed Mar 3, 2016
2 parents cd0c193 + d7249f1 commit a4c76f5
Show file tree
Hide file tree
Showing 127 changed files with 35,068 additions and 1,995 deletions.
4 changes: 2 additions & 2 deletions .versions
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
awsp:handsontable@0.12.3
awsp:handsontable@0.15.0
[email protected]
[email protected]
[email protected]
Expand All @@ -9,7 +9,7 @@ [email protected]
[email protected]
[email protected]_2
[email protected]
local-test:awsp:handsontable@0.12.3
local-test:awsp:handsontable@0.15.0
[email protected]
[email protected]
[email protected]
Expand Down
29 changes: 14 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Meteor Handsontable (@version 0.12.3)
This package uses the latest version of Handsontable (currently @version 0.20.3) in MeteorJS.
# Meteor Handsontable (@version 0.15.0)
This package uses the latest version of Handsontable (currently @version 0.23.0) in MeteorJS.


## Installation
Expand All @@ -15,7 +15,7 @@ meteor add awsp:handsontable


## Important Notes
This package contains the latest yet slightly modified version of Handsontable (version 0.20.3). Minor change has been made to the UI as well.
This package contains the latest yet slightly modified version of Handsontable (version 0.23.0). Minor change has been made to the UI as well.
The new version of Handsontable no longer necessary requires jQuery to work.
In order to introduce the latest Handsontable to Meteor,
a minimum of modification was made to Handsontable in this package to fix some of the conflicts when used in Meteor.
Expand All @@ -24,22 +24,20 @@ a minimum of modification was made to Handsontable in this package to fix some o
The new way of initializing Handsontable is by following,

```js
var data = [
['', 'Maserati', 'Mazda', 'Mercedes', 'Mini', 'Mitsubishi'],
['2009', 0, 2941, 4303, 354, 5814],
['2010', 3, 2905, 2867, 412, 5284],
['2011', 4, 2517, 4822, 552, 6127],
['2012', 2, 2422, 5399, 776, 4151]
];
var container = document.getElementById('hot'), hot;
var data = function () {
return Handsontable.helper.createSpreadsheetData(100, 10);
};

var container = document.getElementById('example');

hot = new Handsontable(container, {
data: data,
var hot = new Handsontable(container, {
data: data(),
minSpareCols: 1,
minSpareRows: 1,
rowHeaders: true,
colHeaders: true,
contextMenu: true
});
});
```

It is also possible to do in the old jQuery way.
Expand Down Expand Up @@ -81,6 +79,7 @@ Formula support does not work with autofilling with Handsontable 0.14+.


## Release Notes
* Version 0.15.0 - Update Handsontable version to 0.23.0.
* Version 0.12.3 - Update Handsontable version to 0.20.3.
* Version 0.12.2 - Update Handsontable version to 0.20.2.
* Version 0.12.1 - Update Handsontable version to 0.20.1.
Expand All @@ -105,7 +104,7 @@ https://github.com/awsp/handsontable-meteor


## Versions Tracking
* Handsontable - 0.20.3 [Release Notes](https://github.com/handsontable/handsontable/releases) [New license](http://handsontable.com/static/licenses/v1/open-source-license.pdf?_ga=1.992503.778804082.1429430347)
* Handsontable - 0.23.0 [Release Notes](https://github.com/handsontable/handsontable/releases) [New license](http://handsontable.com/static/licenses/v1/open-source-license.pdf?_ga=1.992503.778804082.1429430347)
* ruleJS - 0.0.5


Expand Down
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "awsp:handsontable",
"main": "package.js",
"version": "0.12.3",
"version": "0.15.0",
"homepage": "https://github.com/awsp/handsontable-meteor",
"authors": [
"awsp <[email protected]>"
Expand All @@ -21,6 +21,6 @@
"tests"
],
"dependencies": {
"handsontable": "~0.20.3"
"handsontable": "~0.23.0"
}
}
10 changes: 5 additions & 5 deletions bower_components/handsontable/.bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "handsontable",
"description": "Spreadsheet-like data grid editor that provides copy/paste functionality compatible with Excel/Google Docs",
"version": "0.20.3",
"version": "0.23.0",
"main": [
"./dist/handsontable.js",
"./dist/handsontable.css"
Expand Down Expand Up @@ -46,13 +46,13 @@
"devDependencies": {
"chroma-js": "~0.5.6"
},
"_release": "0.20.3",
"_release": "0.23.0",
"_resolution": {
"type": "version",
"tag": "0.20.3",
"commit": "87c8f6b1842d56c99c1fc702bbf1f236a4b223b4"
"tag": "0.23.0",
"commit": "bd213ff49a66013e68c440244219e9ebaa7742d8"
},
"_source": "git://github.com/handsontable/handsontable.git",
"_target": "~0.20.3",
"_target": "~0.23.0",
"_originalSource": "handsontable"
}
8 changes: 8 additions & 0 deletions bower_components/handsontable/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,14 @@ module.exports = function(grunt) {
},

jasmine: {
options: {
page: {
viewportSize: {
width: 1200,
height: 1000
}
},
},
handsontable: {
src: [
'dist/handsontable.min.js',
Expand Down
2 changes: 1 addition & 1 deletion bower_components/handsontable/bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "handsontable",
"description": "Spreadsheet-like data grid editor that provides copy/paste functionality compatible with Excel/Google Docs",
"version": "0.20.3",
"version": "0.23.0",
"main": ["./dist/handsontable.js", "./dist/handsontable.css"],
"homepage": "http://handsontable.com/",
"repository": {
Expand Down
3 changes: 3 additions & 0 deletions bower_components/handsontable/dist/handsontable.css
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

.handsontable th,
.handsontable td {
border-top-width: 0;
border-left-width: 0;
border-right: 1px solid #CCC;
border-bottom: 1px solid #CCC;
height: 22px;
Expand Down Expand Up @@ -1139,6 +1141,7 @@ thead .htCollapseButton:after {
border-top: 1px solid #bbb;
height: 0;
padding: 0;
cursor: default;
}

.htContextMenu table tbody tr td.htDisabled {
Expand Down
3 changes: 3 additions & 0 deletions bower_components/handsontable/dist/handsontable.full.css
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

.handsontable th,
.handsontable td {
border-top-width: 0;
border-left-width: 0;
border-right: 1px solid #CCC;
border-bottom: 1px solid #CCC;
height: 22px;
Expand Down Expand Up @@ -1139,6 +1141,7 @@ thead .htCollapseButton:after {
border-top: 1px solid #bbb;
height: 0;
padding: 0;
cursor: default;
}

.htContextMenu table tbody tr td.htDisabled {
Expand Down
Loading

0 comments on commit a4c76f5

Please sign in to comment.