Skip to content

Commit

Permalink
0.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jansiegel committed Nov 3, 2015
1 parent 9962673 commit 5e257d5
Show file tree
Hide file tree
Showing 12 changed files with 1,324 additions and 666 deletions.
2 changes: 1 addition & 1 deletion 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.19.0",
"version": "0.20.0",
"main": ["./dist/handsontable.js", "./dist/handsontable.css"],
"homepage": "http://handsontable.com/",
"repository": {
Expand Down
8 changes: 6 additions & 2 deletions dist/handsontable.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/*!
* Handsontable 0.19.0
* Handsontable 0.20.0
* Handsontable is a JavaScript library for editable tables with basic copy-paste compatibility with Excel and Google Docs
*
* Copyright 2015 Handsoncode sp. z o.o. <hello@handsontable.com>
* Licensed under the MIT license.
* http://handsontable.com/
*
* Date: Fri Oct 02 2015 12:37:12 GMT+0200 (CEST)
* Date: Tue Nov 03 2015 14:30:34 GMT+0100 (CET)
*/

.handsontable {
Expand Down Expand Up @@ -1136,6 +1136,10 @@ thead .htCollapseButton:after {
cursor: default;
}

.htContextMenu table tbody tr.htHidden {
display: none;
}

.htContextMenu table tbody tr td .htItemWrapper {
margin-left: 10px;
margin-right: 6px;
Expand Down
8 changes: 6 additions & 2 deletions dist/handsontable.full.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/*!
* Handsontable 0.19.0
* Handsontable 0.20.0
* Handsontable is a JavaScript library for editable tables with basic copy-paste compatibility with Excel and Google Docs
*
* Copyright 2015 Handsoncode sp. z o.o. <hello@handsontable.com>
* Licensed under the MIT license.
* http://handsontable.com/
*
* Date: Fri Oct 02 2015 12:37:12 GMT+0200 (CEST)
* Date: Tue Nov 03 2015 14:30:34 GMT+0100 (CET)
*/

.handsontable {
Expand Down Expand Up @@ -1136,6 +1136,10 @@ thead .htCollapseButton:after {
cursor: default;
}

.htContextMenu table tbody tr.htHidden {
display: none;
}

.htContextMenu table tbody tr td .htItemWrapper {
margin-left: 10px;
margin-right: 6px;
Expand Down
942 changes: 633 additions & 309 deletions dist/handsontable.full.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/handsontable.full.min.css

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions dist/handsontable.full.min.js

Large diffs are not rendered by default.

944 changes: 634 additions & 310 deletions dist/handsontable.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/handsontable.min.css

Large diffs are not rendered by default.

30 changes: 15 additions & 15 deletions dist/handsontable.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion handsontable.jquery.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "handsontable",
"title": "Handsontable",
"version": "0.19.0",
"version": "0.20.0",
"author": {
"name": "Marcin Warpechowski",
"email": "hello@handsontable.com",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"url": "https://github.com/handsontable/handsontable/issues"
},
"author": "Handsoncode <hello@handsontable.com>",
"version": "0.19.0",
"version": "0.20.0",
"keywords": [
"data",
"grid",
Expand Down
2 changes: 2 additions & 0 deletions test/jasmine/SpecRunner.html
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,8 @@

<script src="spec/helpers/UnicodeSpec.js"></script>

<script src="spec/mixins/localHooksSpec.js"></script>

<script src="spec/renderers/autocompleteRendererSpec.js"></script>

<script src="spec/renderers/cellDecoratorSpec.js"></script>
Expand Down

0 comments on commit 5e257d5

Please sign in to comment.