handsontable 0.34.1 → 0.34.5
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of handsontable might be problematic. Click here for more details.
- package/.travis.yml +2 -0
- package/README.md +127 -96
- package/commonjs/core.js +11 -6
- package/commonjs/helpers/dom/element.js +4 -3
- package/commonjs/helpers/mixed.js +8 -4
- package/commonjs/index.js +5 -4
- package/commonjs/pluginHooks.js +18 -2
- package/commonjs/plugins/copyPaste/clipboardData.js +31 -0
- package/commonjs/plugins/copyPaste/contextMenuItem/copy.js +1 -2
- package/commonjs/plugins/copyPaste/contextMenuItem/cut.js +1 -2
- package/commonjs/plugins/copyPaste/copyPaste.js +127 -134
- package/commonjs/plugins/copyPaste/pasteEvent.js +19 -0
- package/commonjs/plugins/copyPaste/test/copyPaste.e2e.js +90 -189
- package/commonjs/plugins/copyPaste/test/textarea.unit.js +2 -2
- package/commonjs/plugins/copyPaste/textarea.js +2 -1
- package/commonjs/plugins/manualColumnMove/manualColumnMove.js +8 -11
- package/commonjs/plugins/manualColumnMove/test/manualColumnMoveUI.e2e.js +35 -0
- package/commonjs/plugins/manualRowMove/manualRowMove.js +9 -12
- package/commonjs/plugins/manualRowMove/test/manualRowMove.e2e.js +256 -60
- package/commonjs/plugins/manualRowMove/test/manualRowMoveUI.e2e.js +40 -182
- package/commonjs/plugins/manualRowMove/ui/_base.js +2 -2
- package/commonjs/tableView.js +1 -0
- package/dist/handsontable.css +6 -5
- package/dist/handsontable.css.map +1 -1
- package/dist/handsontable.full.css +6 -5
- package/dist/handsontable.full.js +37721 -42290
- package/dist/handsontable.full.min.css +4 -4
- package/dist/handsontable.full.min.js +5 -5
- package/dist/handsontable.js +28732 -28433
- package/dist/handsontable.js.map +1 -1
- package/dist/handsontable.min.css +4 -4
- package/dist/handsontable.min.js +3 -3
- package/es/core.js +11 -6
- package/es/helpers/dom/element.js +4 -3
- package/es/helpers/mixed.js +4 -4
- package/es/index.js +3 -4
- package/es/pluginHooks.js +18 -2
- package/es/plugins/copyPaste/clipboardData.js +27 -0
- package/es/plugins/copyPaste/contextMenuItem/copy.js +1 -2
- package/es/plugins/copyPaste/contextMenuItem/cut.js +1 -2
- package/es/plugins/copyPaste/copyPaste.js +124 -132
- package/es/plugins/copyPaste/pasteEvent.js +11 -0
- package/es/plugins/copyPaste/test/copyPaste.e2e.js +90 -189
- package/es/plugins/copyPaste/test/textarea.unit.js +2 -2
- package/es/plugins/copyPaste/textarea.js +2 -1
- package/es/plugins/manualColumnMove/manualColumnMove.js +8 -11
- package/es/plugins/manualColumnMove/test/manualColumnMoveUI.e2e.js +35 -0
- package/es/plugins/manualRowMove/manualRowMove.js +9 -12
- package/es/plugins/manualRowMove/test/manualRowMove.e2e.js +256 -60
- package/es/plugins/manualRowMove/test/manualRowMoveUI.e2e.js +40 -182
- package/es/plugins/manualRowMove/ui/_base.js +2 -2
- package/es/tableView.js +1 -0
- package/handsontable.jquery.json +1 -1
- package/hot.config.js +1 -1
- package/package.json +5 -5
- package/src/3rdparty/walkontable/dist/walkontable.js +27234 -11175
- package/src/3rdparty/walkontable/dist/walkontable.js.map +1 -1
- package/src/3rdparty/walkontable/test/dist/helpers.entry.js +32 -36
- package/src/3rdparty/walkontable/test/dist/helpers.entry.js.map +1 -1
- package/src/3rdparty/walkontable/test/dist/specs.entry.js +36 -39
- package/src/3rdparty/walkontable/test/dist/specs.entry.js.map +1 -1
- package/src/core.js +11 -6
- package/src/css/handsontable.css +1 -2
- package/src/helpers/dom/element.js +4 -3
- package/src/helpers/mixed.js +3 -3
- package/src/index.js +1 -2
- package/src/pluginHooks.js +18 -2
- package/src/plugins/copyPaste/clipboardData.js +11 -0
- package/src/plugins/copyPaste/contextMenuItem/copy.js +1 -2
- package/src/plugins/copyPaste/contextMenuItem/cut.js +1 -2
- package/src/plugins/copyPaste/copyPaste.css +3 -1
- package/src/plugins/copyPaste/copyPaste.js +120 -127
- package/src/plugins/copyPaste/pasteEvent.js +7 -0
- package/src/plugins/copyPaste/test/copyPaste.e2e.js +75 -193
- package/src/plugins/copyPaste/test/textarea.unit.js +2 -2
- package/src/plugins/copyPaste/textarea.js +2 -1
- package/src/plugins/manualColumnMove/manualColumnMove.js +6 -9
- package/src/plugins/manualColumnMove/test/manualColumnMoveUI.e2e.js +35 -0
- package/src/plugins/manualRowMove/manualRowMove.js +7 -10
- package/src/plugins/manualRowMove/test/manualRowMove.e2e.js +282 -86
- package/src/plugins/manualRowMove/test/manualRowMoveUI.e2e.js +51 -190
- package/src/plugins/manualRowMove/ui/_base.js +2 -2
- package/test/dist/e2e.entry.js +31381 -31131
- package/test/dist/e2e.entry.js.map +1 -1
- package/test/dist/helpers.entry.js +16 -19
- package/test/dist/helpers.entry.js.map +1 -1
- package/test/e2e/Core_listen.spec.js +32 -0
- package/test/e2e/Core_selection.spec.js +1 -1
- package/test/e2e/Core_validate.spec.js +29 -0
- package/test/e2e/renderers/checkboxRenderer.spec.js +20 -7
- package/test/e2e/settings/fragmentSelection.spec.js +12 -9
- package/test/scripts/trigger-pro-tests.sh +41 -0
- package/yarn.lock +260 -208
- package/.npmignore +0 -19
- package/demo/bower_components/numbro/package.json +0 -63
package/.npmignore
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
.DS_Store
|
2
|
-
.grunt
|
3
|
-
.config
|
4
|
-
.github
|
5
|
-
.idea
|
6
|
-
_SpecRunner.html
|
7
|
-
cars.sqlite
|
8
|
-
dev.html
|
9
|
-
webpack.config.js
|
10
|
-
|
11
|
-
!dist/README.md
|
12
|
-
node_modules/
|
13
|
-
|
14
|
-
# this directories are necessary for build PRO package
|
15
|
-
#demo/
|
16
|
-
#src/
|
17
|
-
#lib/
|
18
|
-
#test/
|
19
|
-
#tasks/
|
@@ -1,63 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"name": "numbro",
|
3
|
-
"version": "1.9.3",
|
4
|
-
"description": "Format and manipulate numbers.",
|
5
|
-
"homepage": "http://numbrojs.com",
|
6
|
-
"author": {
|
7
|
-
"name": "Företagsplatsen AB",
|
8
|
-
"email": "contact@foretagsplatsen.se",
|
9
|
-
"url": "http://www.foretagsplatsen.se"
|
10
|
-
},
|
11
|
-
"keywords": [
|
12
|
-
"numeral",
|
13
|
-
"numbro",
|
14
|
-
"number",
|
15
|
-
"format",
|
16
|
-
"time",
|
17
|
-
"money",
|
18
|
-
"percentage"
|
19
|
-
],
|
20
|
-
"main": "./numbro.js",
|
21
|
-
"typings": "./numbro.d.ts",
|
22
|
-
"engines": {
|
23
|
-
"node": "*"
|
24
|
-
},
|
25
|
-
"repository": {
|
26
|
-
"type": "git",
|
27
|
-
"url": "https://github.com/foretagsplatsen/numbro"
|
28
|
-
},
|
29
|
-
"bugs": {
|
30
|
-
"url": "https://github.com/foretagsplatsen/numbro/issues"
|
31
|
-
},
|
32
|
-
"licenses": [
|
33
|
-
{
|
34
|
-
"type": "MIT"
|
35
|
-
}
|
36
|
-
],
|
37
|
-
"devDependencies": {
|
38
|
-
"grunt": "^1.0.1",
|
39
|
-
"grunt-bump": "^0.8.0",
|
40
|
-
"grunt-confirm": "^1.0.5",
|
41
|
-
"grunt-contrib-concat": "^1.0.1",
|
42
|
-
"grunt-contrib-copy": "^1.0.0",
|
43
|
-
"grunt-contrib-jshint": "^1.0.0",
|
44
|
-
"grunt-contrib-nodeunit": "^1.0.0",
|
45
|
-
"grunt-contrib-uglify": "^1.0.1",
|
46
|
-
"grunt-jscs": "^2.8.0",
|
47
|
-
"grunt-release": "^0.13.1",
|
48
|
-
"uglify-js": "^2.6.2"
|
49
|
-
},
|
50
|
-
"scripts": {
|
51
|
-
"test": "grunt test"
|
52
|
-
},
|
53
|
-
"files": [
|
54
|
-
"LICENSE",
|
55
|
-
"LICENSE-Numeraljs",
|
56
|
-
"CHANGELOG",
|
57
|
-
"CHANGELOG-Numeraljs.md",
|
58
|
-
"numbro.js",
|
59
|
-
"numbro.d.ts",
|
60
|
-
"languages",
|
61
|
-
"dist"
|
62
|
-
]
|
63
|
-
}
|