Skip to content

Commit 2ddef36

Browse files
committed
0.33.0
1 parent 1ccdda1 commit 2ddef36

9 files changed

Lines changed: 43 additions & 15 deletions

dist/handsontable.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/handsontable.full.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2525
*
2626
* Version: 0.33.0
27-
* Date: Thu Jul 06 2017 14:20:52 GMT+0200 (CEST)
27+
* Date: Mon Jul 10 2017 10:08:33 GMT+0200 (CEST)
2828
*/
2929
/**
3030
* Fix for bootstrap styles

dist/handsontable.full.js

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2525
*
2626
* Version: 0.33.0
27-
* Date: Thu Jul 06 2017 14:20:52 GMT+0200 (CEST)
27+
* Date: Mon Jul 10 2017 10:08:33 GMT+0200 (CEST)
2828
*/
2929
(function webpackUniversalModuleDefinition(root, factory) {
3030
if(typeof exports === 'object' && typeof module === 'object')
@@ -36497,7 +36497,7 @@ Handsontable.DefaultSettings = _defaultSettings2.default;
3649736497
Handsontable.EventManager = _eventManager2.default;
3649836498
Handsontable._getListenersCounter = _eventManager.getListenersCounter; // For MemoryLeak tests
3649936499

36500-
Handsontable.buildDate = "2017-07-06T12:20:52.460Z";
36500+
Handsontable.buildDate = "2017-07-10T08:08:33.664Z";
3650136501
Handsontable.packageName = "handsontable";
3650236502
Handsontable.version = "0.33.0";
3650336503

@@ -43870,6 +43870,20 @@ var CopyPaste = function (_BasePlugin) {
4387043870
});
4387143871
}
4387243872

43873+
/**
43874+
* Trigger to make possible observe `onInput` in textarea.
43875+
*
43876+
* @private
43877+
*/
43878+
43879+
}, {
43880+
key: 'triggerPaste',
43881+
value: function triggerPaste() {
43882+
this.textarea.select();
43883+
43884+
this.onPaste();
43885+
}
43886+
4387343887
/**
4387443888
* `paste` event callback on textarea element.
4387543889
*
@@ -44032,7 +44046,7 @@ var CopyPaste = function (_BasePlugin) {
4403244046
this.copy();
4403344047
}
4403444048
if (event.keyCode == _unicode.KEY_CODES.V) {
44035-
this.paste();
44049+
this.triggerPaste();
4403644050
}
4403744051
}
4403844052
}

dist/handsontable.full.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/handsontable.full.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/handsontable.js

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2525
*
2626
* Version: 0.33.0
27-
* Date: Thu Jul 06 2017 14:20:52 GMT+0200 (CEST)
27+
* Date: Mon Jul 10 2017 10:08:33 GMT+0200 (CEST)
2828
*/
2929
(function webpackUniversalModuleDefinition(root, factory) {
3030
if(typeof exports === 'object' && typeof module === 'object')
@@ -30043,7 +30043,7 @@ Handsontable.DefaultSettings = _defaultSettings2.default;
3004330043
Handsontable.EventManager = _eventManager2.default;
3004430044
Handsontable._getListenersCounter = _eventManager.getListenersCounter; // For MemoryLeak tests
3004530045

30046-
Handsontable.buildDate = "2017-07-06T12:20:52.460Z";
30046+
Handsontable.buildDate = "2017-07-10T08:08:33.664Z";
3004730047
Handsontable.packageName = "handsontable";
3004830048
Handsontable.version = "0.33.0";
3004930049

@@ -37416,6 +37416,20 @@ var CopyPaste = function (_BasePlugin) {
3741637416
});
3741737417
}
3741837418

37419+
/**
37420+
* Trigger to make possible observe `onInput` in textarea.
37421+
*
37422+
* @private
37423+
*/
37424+
37425+
}, {
37426+
key: 'triggerPaste',
37427+
value: function triggerPaste() {
37428+
this.textarea.select();
37429+
37430+
this.onPaste();
37431+
}
37432+
3741937433
/**
3742037434
* `paste` event callback on textarea element.
3742137435
*
@@ -37578,7 +37592,7 @@ var CopyPaste = function (_BasePlugin) {
3757837592
this.copy();
3757937593
}
3758037594
if (event.keyCode == _unicode.KEY_CODES.V) {
37581-
this.paste();
37595+
this.triggerPaste();
3758237596
}
3758337597
}
3758437598
}

dist/handsontable.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)