Skip to content

Commit

Permalink
update Handsontable to 0.9.19 (using Bower)
Browse files Browse the repository at this point in the history
  • Loading branch information
warpech committed Oct 1, 2013
1 parent 1379798 commit 2eb9065
Show file tree
Hide file tree
Showing 85 changed files with 6,331 additions and 4,164 deletions.
8 changes: 4 additions & 4 deletions bower_components/handsontable/.bower.json
@@ -1,6 +1,6 @@
{
"name": "handsontable",
"version": "0.9.14",
"version": "0.9.19",
"main": [
"./dist/jquery.handsontable.full.js",
"./dist/jquery.handsontable.full.css"
Expand All @@ -14,11 +14,11 @@
"jquery": ">=1.9.0"
},
"homepage": "https://github.com/warpech/jquery-handsontable",
"_release": "0.9.14",
"_release": "0.9.19",
"_resolution": {
"type": "version",
"tag": "0.9.14",
"commit": "9d35c3592b4771539291fb58d7e0d1e37d91d6cf"
"tag": "v0.9.19",
"commit": "8cbf89d305fc5caa5116c0c851ca195f35953b12"
},
"_source": "git://github.com/warpech/jquery-handsontable.git",
"_target": "~0.9.11",
Expand Down
61 changes: 59 additions & 2 deletions bower_components/handsontable/CHANGELOG.md
@@ -1,11 +1,68 @@
## [0.9.14](https://github.com/warpech/jquery-handsontable/tree/v0.9.13) (Aug 20, 2013)
## [0.9.19](https://github.com/warpech/jquery-handsontable/tree/v0.9.19) (Oct 01, 2013)

Two features that come in handy for plugin developers:
- new plugin hook: `afterRenderer`
- (previously private) DOM helpers are now exposed as `Handosontable.Dom` (see [api](https://github.com/warpech/jquery-handsontable/blob/master/src/3rdparty/walkontable/src/dom.js))

## [0.9.18](https://github.com/warpech/jquery-handsontable/tree/v0.9.18) (Sep 19, 2013)

Features:
- native browser scrollbars feature becomes usable, but currently only works vertically ([demo](http://handsontable.com/demo/scroll_native.html))

Bugfixes:
- it was possible to move a column by just double clicking on move handle ([#963](https://github.com/warpech/jquery-handsontable/issues/963))
- can't edit a cell that is outside of the viewport ([#1035](https://github.com/warpech/jquery-handsontable/issues/1035))
- context-menu-layer was not removed from DOM after $.contextMenu destroy
- cleanup CSS from excessive vendor prefixes
- performance improvement of scrolling with autoColumnSize

## [0.9.17](https://github.com/warpech/jquery-handsontable/tree/v0.9.17) (Sep 5, 2013)

Features:
- `beforeRemoveRow` and `beforeRemoveCol` events are now invoked with absolute index
- if table has custom column headers, removing column will also remove the corresponding header

Bugfix:

- fixed crashing the whole page when autocomplete is on ([#1011](https://github.com/warpech/jquery-handsontable/issues/1011))
- fixed changing multiple cells values when using autocomplete ([#1021](https://github.com/warpech/jquery-handsontable/issues/1021))
- fixed handling multiple tables with different sorting options on the same page ([#1020](https://github.com/warpech/jquery-handsontable/issues/1020))
- fixed undoing row removal from tables which data source is array of objects ([#966](https://github.com/warpech/jquery-handsontable/issues/966))
- fixed undoing column removal
- fixed removing columns form table which has more rows than can be rendered in viewport ([#1012](https://github.com/warpech/jquery-handsontable/issues/1012))
- fixed marking Undo/Redo in context menu as enabled/disabled
- fixed adding new rows directly to data source, when table is sorted ([#858](https://github.com/warpech/jquery-handsontable/issues/858))

## [0.9.16](https://github.com/warpech/jquery-handsontable/tree/v0.9.16) (Aug 27, 2013)

Features:

- New cell type: `password`
- Rebuilt UndoRedo module

Bugfix:

- fixed using manualColumnMove with multiple HOT instances ([#999](https://github.com/warpech/jquery-handsontable/issues/999))
- fixed autoWrapCol and autoWrapRow behaviour ([#992](https://github.com/warpech/jquery-handsontable/issues/992))
- autocomplete fields will now behave the same as regular fields after closing editor by clicking on another cell (if in non strict mode) ([#991](https://github.com/warpech/jquery-handsontable/issues/991))
- fixed validation after changing column order ([#980](https://github.com/warpech/jquery-handsontable/issues/980))

## [0.9.15](https://github.com/warpech/jquery-handsontable/tree/v0.9.15) (Aug 26, 2013)

Features:
- `colWidths` property of the constructor may now be of type: number, string, array, function (was only array) ([#947](https://github.com/warpech/jquery-handsontable/issues/947), [#997](https://github.com/warpech/jquery-handsontable/issues/997))
- `widths` property of `columns` or `cells` option may now be of type: number, string (was only number)

Bugfix:
- autoColumnSize now calculates width using the actual cell renderer ([#486](https://github.com/warpech/jquery-handsontable/issues/486))

## [0.9.14](https://github.com/warpech/jquery-handsontable/tree/v0.9.14) (Aug 20, 2013)

Bugfixes:

- fixed selecting date using jQuery UI Datepicker ([#970](https://github.com/warpech/jquery-handsontable/issues/970))
- fixed opening cell editor after clearing cell data with Delete or Backspace ([#975](https://github.com/warpech/jquery-handsontable/issues/975))


## [0.9.13](https://github.com/warpech/jquery-handsontable/tree/v0.9.13) (Aug 16, 2013)

Features:
Expand Down
4 changes: 3 additions & 1 deletion bower_components/handsontable/Gruntfile.js
Expand Up @@ -57,19 +57,20 @@ module.exports = function (grunt) {
'src/tableView.js',
'src/helpers.js',
'src/fillHandle.js',
'src/undoRedo.js',
'src/selectionPoint.js',

'src/renderers/textRenderer.js',
'src/renderers/autocompleteRenderer.js',
'src/renderers/checkboxRenderer.js',
'src/renderers/numericRenderer.js',
'src/renderers/passwordRenderer.js',

'src/editors/textEditor.js',
'src/editors/autocompleteEditor.js',
'src/editors/checkboxEditor.js',
'src/editors/dateEditor.js',
'src/editors/handsontableEditor.js',
'src/editors/passwordEditor.js',

'src/validators/numericValidator.js',
'src/validators/autocompleteValidator.js',
Expand All @@ -85,6 +86,7 @@ module.exports = function (grunt) {
'src/plugins/manualColumnResize.js',
'src/plugins/observeChanges.js',
'src/plugins/persistentState.js',
'src/plugins/undoRedo.js',

'src/3rdparty/jquery.autoresize.js',
'src/3rdparty/sheetclip.js',
Expand Down
2 changes: 1 addition & 1 deletion bower_components/handsontable/bower.json
@@ -1,6 +1,6 @@
{
"name": "handsontable",
"version": "0.9.14",
"version": "0.9.19",
"main": ["./dist/jquery.handsontable.full.js", "./dist/jquery.handsontable.full.css"],
"ignore": [
"**/.*",
Expand Down
6 changes: 3 additions & 3 deletions bower_components/handsontable/demo/autocomplete.html
Expand Up @@ -107,7 +107,7 @@ <h2>Autocomplete lazy mode</h2>
<div class="codeLayout">
<div class="pad">
<div class="jsFiddle">
<div class="jsFiddleLink" data-runfiddle="example1">Edit in jsFiddle</div>
<button class="jsFiddleLink" data-runfiddle="example1">Edit in jsFiddle</button>
</div>

<script data-jsfiddle="common">
Expand Down Expand Up @@ -187,7 +187,7 @@ <h2>Autocomplete strict mode</h2>
<div class="codeLayout">
<div class="pad">
<div class="jsFiddle">
<div class="jsFiddleLink" data-runfiddle="example2">Edit in jsFiddle</div>
<button class="jsFiddleLink" data-runfiddle="example2">Edit in jsFiddle</button>
</div>

<script data-jsfiddle="example2">
Expand Down Expand Up @@ -250,7 +250,7 @@ <h2>Autocomplete strict mode (Ajax)</h2>
<div class="jsFiddle">
<!--
Ajax example will not work with JSFiddle at the moment because `php/cars.php` does not implement CORS.
<div class="jsFiddleLink">Edit in jsFiddle</div>
<button class="jsFiddleLink">Edit in jsFiddle</button>
-->
</div>

Expand Down
2 changes: 1 addition & 1 deletion bower_components/handsontable/demo/backbone.html
Expand Up @@ -112,7 +112,7 @@ <h2>Backbone.js</h2>
<div class="codeLayout">
<div class="pad">
<div class="jsFiddle">
<div class="jsFiddleLink" data-runfiddle="example1">Edit in jsFiddle</div>
<button class="jsFiddleLink" data-runfiddle="example1">Edit in jsFiddle</button>
</div>

<script data-jsfiddle="example1">
Expand Down
2 changes: 1 addition & 1 deletion bower_components/handsontable/demo/beforeKeyDown.html
Expand Up @@ -93,7 +93,7 @@ <h2>beforeKeyDown callback</h2>
<div class="codeLayout">
<div class="pad">
<div class="jsFiddle">
<div class="jsFiddleLink" data-runfiddle="example1">Edit in jsFiddle</div>
<button class="jsFiddleLink" data-runfiddle="example1">Edit in jsFiddle</button>
</div>

<script data-jsfiddle="example1">
Expand Down
2 changes: 1 addition & 1 deletion bower_components/handsontable/demo/bigCells.html
Expand Up @@ -76,7 +76,7 @@ <h2>Big cells</h2>
<div class="codeLayout">
<div class="pad">
<div class="jsFiddle">
<div class="jsFiddleLink" data-runfiddle="example1">Edit in jsFiddle</div>
<button class="jsFiddleLink" data-runfiddle="example1">Edit in jsFiddle</button>
</div>

<script data-jsfiddle="example1">
Expand Down
2 changes: 1 addition & 1 deletion bower_components/handsontable/demo/bootstrap.html
Expand Up @@ -114,7 +114,7 @@ <h2>Twitter Bootstrap integration</h2>
<div class="codeLayout">
<div class="pad">
<div class="jsFiddle">
<div class="jsFiddleLink" data-runfiddle="example1">Edit in jsFiddle</div>
<button class="jsFiddleLink" data-runfiddle="example1">Edit in jsFiddle</button>
</div>

<script data-jsfiddle="example1">
Expand Down
2 changes: 1 addition & 1 deletion bower_components/handsontable/demo/callbacks.html
Expand Up @@ -99,7 +99,7 @@ <h3>Events log
<div class="codeLayout">
<div class="pad">
<div class="jsFiddle">
<div class="jsFiddleLink" data-runfiddle="example1">Edit in jsFiddle</div>
<button class="jsFiddleLink" data-runfiddle="example1">Edit in jsFiddle</button>
</div>

<script data-jsfiddle="example1">
Expand Down
4 changes: 2 additions & 2 deletions bower_components/handsontable/demo/column_resize.html
Expand Up @@ -111,7 +111,7 @@ <h2>Column resize</h2>
<div class="codeLayout">
<div class="pad">
<div class="jsFiddle">
<div class="jsFiddleLink" data-runfiddle="example1">Edit in jsFiddle</div>
<button class="jsFiddleLink" data-runfiddle="example1">Edit in jsFiddle</button>
</div>

<script data-jsfiddle="example1">
Expand Down Expand Up @@ -158,7 +158,7 @@ <h2>Column move</h2>
<div class="codeLayout">
<div class="pad">
<div class="jsFiddle">
<div class="jsFiddleLink" data-runfiddle="example2">Edit in jsFiddle</div>
<button class="jsFiddleLink" data-runfiddle="example2">Edit in jsFiddle</button>
</div>

<script data-jsfiddle="example2">
Expand Down
2 changes: 1 addition & 1 deletion bower_components/handsontable/demo/conditional.html
Expand Up @@ -91,7 +91,7 @@ <h2>Conditional formatting</h2>
<div class="codeLayout">
<div class="pad">
<div class="jsFiddle">
<div class="jsFiddleLink" data-runfiddle="example1">Edit in jsFiddle</div>
<button class="jsFiddleLink" data-runfiddle="example1">Edit in jsFiddle</button>
</div>

<script data-jsfiddle="example1">
Expand Down
6 changes: 3 additions & 3 deletions bower_components/handsontable/demo/contextmenu.html
Expand Up @@ -124,7 +124,7 @@ <h2>Context Menu with default options</h2>
<div class="codeLayout">
<div class="pad">
<div class="jsFiddle">
<div class="jsFiddleLink" data-runfiddle="example1">Edit in jsFiddle</div>
<button class="jsFiddleLink" data-runfiddle="example1">Edit in jsFiddle</button>
</div>

<script data-jsfiddle="common">
Expand Down Expand Up @@ -193,7 +193,7 @@ <h2>Context Menu with specific options</h2>
<div class="codeLayout">
<div class="pad">
<div class="jsFiddle">
<div class="jsFiddleLink" data-runfiddle="example2">Edit in jsFiddle</div>
<button class="jsFiddleLink" data-runfiddle="example2">Edit in jsFiddle</button>
</div>

<script data-jsfiddle="example2">
Expand Down Expand Up @@ -237,7 +237,7 @@ <h2>Context Menu with with fully custom configuration</h2>
<div class="codeLayout">
<div class="pad">
<div class="jsFiddle">
<div class="jsFiddleLink" data-runfiddle="example3">Edit in jsFiddle</div>
<button class="jsFiddleLink" data-runfiddle="example3">Edit in jsFiddle</button>
</div>

<script data-jsfiddle="example3">
Expand Down

0 comments on commit 2eb9065

Please sign in to comment.