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
@@ -56,7 +56,7 @@ describe('manualRowMove', function () {
|
|
56
56
|
manualRowMove: true
|
57
57
|
});
|
58
58
|
|
59
|
-
var $headers = [
|
59
|
+
var $headers = [spec().$container.find('tbody tr:eq(0) th:eq(0)'), spec().$container.find('tbody tr:eq(1) th:eq(0)'), spec().$container.find('tbody tr:eq(2) th:eq(0)')];
|
60
60
|
|
61
61
|
$headers[0].simulate('mousedown');
|
62
62
|
$headers[0].simulate('mouseup');
|
@@ -68,202 +68,60 @@ describe('manualRowMove', function () {
|
|
68
68
|
expect(spec().$container.find('.ht__manualRowMove--backlight:visible').length).toBe(1);
|
69
69
|
});
|
70
70
|
|
71
|
-
|
72
|
-
|
71
|
+
describe('backlight', function () {
|
72
|
+
it('should set proper left position of element when colWidths is undefined', function () {
|
73
|
+
handsontable({
|
74
|
+
data: Handsontable.helper.createSpreadsheetData(10, 10),
|
75
|
+
rowHeaders: true,
|
76
|
+
manualRowMove: true
|
77
|
+
});
|
73
78
|
|
74
|
-
|
75
|
-
data: Handsontable.helper.createSpreadsheetData(30, 30),
|
76
|
-
rowHeaders: true,
|
77
|
-
colHeaders: true,
|
78
|
-
manualRowMove: true,
|
79
|
-
beforeRowMove: function beforeRowMove(rows, target) {
|
80
|
-
targetParameterInsideCallback = target;
|
81
|
-
}
|
82
|
-
});
|
83
|
-
var $fistHeader = this.$container.find('tbody tr:eq(0) th:eq(0)');
|
79
|
+
var $headerTH = spec().$container.find('tbody tr:eq(0) th:eq(0)');
|
84
80
|
|
85
|
-
|
86
|
-
|
87
|
-
|
81
|
+
$headerTH.simulate('mousedown');
|
82
|
+
$headerTH.simulate('mouseup');
|
83
|
+
$headerTH.simulate('mousedown');
|
88
84
|
|
89
|
-
|
90
|
-
$fistHeader.simulate('mousemove', {
|
91
|
-
clientY: $fistHeader.offset().bottom - $fistHeader.height() - 50
|
85
|
+
expect(spec().$container.find('.ht__manualRowMove--backlight')[0].offsetLeft).toBe(50);
|
92
86
|
});
|
93
|
-
$fistHeader.simulate('mouseup');
|
94
87
|
|
95
|
-
|
96
|
-
|
88
|
+
it('should set proper left position of element when colWidths is defined', function () {
|
89
|
+
handsontable({
|
90
|
+
data: Handsontable.helper.createSpreadsheetData(10, 10),
|
91
|
+
rowHeaders: true,
|
92
|
+
manualRowMove: true,
|
93
|
+
colWidths: 100
|
94
|
+
});
|
97
95
|
|
98
|
-
|
99
|
-
var targetParameterInsideCallback = void 0;
|
96
|
+
var $headerTH = spec().$container.find('tbody tr:eq(0) th:eq(0)');
|
100
97
|
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
manualRowMove: true,
|
105
|
-
colHeaders: true,
|
106
|
-
beforeRowMove: function beforeRowMove(rows, target) {
|
107
|
-
targetParameterInsideCallback = target;
|
108
|
-
}
|
109
|
-
});
|
110
|
-
var $fistHeader = this.$container.find('tbody tr:eq(0) th:eq(0)');
|
98
|
+
$headerTH.simulate('mousedown');
|
99
|
+
$headerTH.simulate('mouseup');
|
100
|
+
$headerTH.simulate('mousedown');
|
111
101
|
|
112
|
-
|
113
|
-
this.$container.find('tbody tr:eq(1) th:eq(0)').simulate('mouseup');
|
114
|
-
this.$container.find('tbody tr:eq(1) th:eq(0)').simulate('mousedown');
|
115
|
-
|
116
|
-
$fistHeader.simulate('mouseover');
|
117
|
-
$fistHeader.simulate('mousemove', {
|
118
|
-
clientY: $fistHeader.offset().bottom - $fistHeader.height()
|
119
|
-
});
|
120
|
-
$fistHeader.simulate('mouseup');
|
121
|
-
|
122
|
-
expect(targetParameterInsideCallback).toEqual(0);
|
123
|
-
});
|
124
|
-
|
125
|
-
it('should run `beforeRowMove` with proper `target` parameter (moving row to the middle of the table)', function () {
|
126
|
-
var targetParameterInsideCallback = void 0;
|
127
|
-
|
128
|
-
handsontable({
|
129
|
-
data: Handsontable.helper.createSpreadsheetData(30, 30),
|
130
|
-
rowHeaders: true,
|
131
|
-
manualRowMove: true,
|
132
|
-
beforeRowMove: function beforeRowMove(rows, target) {
|
133
|
-
targetParameterInsideCallback = target;
|
134
|
-
}
|
102
|
+
expect(spec().$container.find('.ht__manualRowMove--backlight')[0].offsetLeft).toBe(50);
|
135
103
|
});
|
136
|
-
|
137
|
-
this.$container.find('tbody tr:eq(0) th:eq(0)').simulate('mousedown');
|
138
|
-
this.$container.find('tbody tr:eq(0) th:eq(0)').simulate('mouseup');
|
139
|
-
this.$container.find('tbody tr:eq(0) th:eq(0)').simulate('mousedown');
|
140
|
-
|
141
|
-
this.$container.find('tbody tr:eq(2) th:eq(0)').simulate('mouseover');
|
142
|
-
this.$container.find('tbody tr:eq(2) th:eq(0)').simulate('mousemove');
|
143
|
-
this.$container.find('tbody tr:eq(2) th:eq(0)').simulate('mouseup');
|
144
|
-
|
145
|
-
expect(targetParameterInsideCallback).toEqual(2);
|
146
104
|
});
|
147
105
|
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
targetParameterInsideCallback = target;
|
157
|
-
}
|
158
|
-
});
|
106
|
+
describe('guideline', function () {
|
107
|
+
it('should set proper top position of element when target is first row and column headers are disabled', function () {
|
108
|
+
handsontable({
|
109
|
+
data: Handsontable.helper.createSpreadsheetData(10, 10),
|
110
|
+
rowHeaders: true,
|
111
|
+
colHeaders: false,
|
112
|
+
manualRowMove: true
|
113
|
+
});
|
159
114
|
|
160
|
-
|
161
|
-
this.$container.find('tbody tr:eq(0) th:eq(0)').simulate('mouseup');
|
162
|
-
this.$container.find('tbody tr:eq(0) th:eq(0)').simulate('mousedown');
|
115
|
+
var $headers = [spec().$container.find('tbody tr:eq(0) th:eq(0)'), spec().$container.find('tbody tr:eq(1) th:eq(0)')];
|
163
116
|
|
164
|
-
|
165
|
-
|
166
|
-
|
117
|
+
$headers[1].simulate('mousedown');
|
118
|
+
$headers[1].simulate('mouseup');
|
119
|
+
$headers[1].simulate('mousedown');
|
120
|
+
$headers[0].simulate('mouseover');
|
121
|
+
$headers[0].simulate('mousemove');
|
167
122
|
|
168
|
-
|
169
|
-
});
|
170
|
-
|
171
|
-
it('should run `beforeRowMove` with proper `target` parameter (moving row to the bottom of last header)', function () {
|
172
|
-
var targetParameterInsideCallback = void 0;
|
173
|
-
|
174
|
-
handsontable({
|
175
|
-
data: Handsontable.helper.createSpreadsheetData(30, 30),
|
176
|
-
rowHeaders: true,
|
177
|
-
manualRowMove: true,
|
178
|
-
beforeRowMove: function beforeRowMove(rows, target) {
|
179
|
-
targetParameterInsideCallback = target;
|
180
|
-
}
|
123
|
+
expect(spec().$container.find('.ht__manualRowMove--guideline')[0].offsetTop).toBe(-1);
|
181
124
|
});
|
182
|
-
var $lastHeader = this.$container.find('tbody tr:eq(29) th:eq(0)');
|
183
|
-
|
184
|
-
this.$container.find('tbody tr:eq(0) th:eq(0)').simulate('mousedown');
|
185
|
-
this.$container.find('tbody tr:eq(0) th:eq(0)').simulate('mouseup');
|
186
|
-
this.$container.find('tbody tr:eq(0) th:eq(0)').simulate('mousedown');
|
187
|
-
|
188
|
-
$lastHeader.simulate('mouseover');
|
189
|
-
$lastHeader.simulate('mousemove', {
|
190
|
-
clientY: $lastHeader.offset().top + $lastHeader.height()
|
191
|
-
});
|
192
|
-
$lastHeader.simulate('mouseup');
|
193
|
-
|
194
|
-
expect(targetParameterInsideCallback).toEqual(30);
|
195
|
-
});
|
196
|
-
|
197
|
-
it('should run `beforeRowMove` with proper `target` parameter (moving row below last header)', function () {
|
198
|
-
var targetParameterInsideCallback = void 0;
|
199
|
-
|
200
|
-
handsontable({
|
201
|
-
data: Handsontable.helper.createSpreadsheetData(30, 30),
|
202
|
-
rowHeaders: true,
|
203
|
-
manualRowMove: true,
|
204
|
-
beforeRowMove: function beforeRowMove(rows, target) {
|
205
|
-
targetParameterInsideCallback = target;
|
206
|
-
}
|
207
|
-
});
|
208
|
-
var $lastHeader = this.$container.find('tbody tr:eq(29) th:eq(0)');
|
209
|
-
|
210
|
-
this.$container.find('tbody tr:eq(0) th:eq(0)').simulate('mousedown');
|
211
|
-
this.$container.find('tbody tr:eq(0) th:eq(0)').simulate('mouseup');
|
212
|
-
this.$container.find('tbody tr:eq(0) th:eq(0)').simulate('mousedown');
|
213
|
-
|
214
|
-
$lastHeader.simulate('mouseover');
|
215
|
-
$lastHeader.simulate('mousemove', {
|
216
|
-
clientY: $lastHeader.offset().top + $lastHeader.height() + 200
|
217
|
-
});
|
218
|
-
$lastHeader.simulate('mouseup');
|
219
|
-
|
220
|
-
expect(targetParameterInsideCallback).toEqual(30);
|
221
|
-
});
|
222
|
-
|
223
|
-
it('should run `beforeRowMove` with proper visual `target` parameter', function () {
|
224
|
-
var targetParameterInsideCallback = void 0;
|
225
|
-
|
226
|
-
handsontable({
|
227
|
-
data: Handsontable.helper.createSpreadsheetData(30, 30),
|
228
|
-
rowHeaders: true,
|
229
|
-
manualRowMove: [1, 2, 0],
|
230
|
-
beforeRowMove: function beforeRowMove(rows, target) {
|
231
|
-
targetParameterInsideCallback = target;
|
232
|
-
}
|
233
|
-
});
|
234
|
-
|
235
|
-
this.$container.find('tbody tr:eq(0) th:eq(0)').simulate('mousedown');
|
236
|
-
this.$container.find('tbody tr:eq(0) th:eq(0)').simulate('mouseup');
|
237
|
-
this.$container.find('tbody tr:eq(0) th:eq(0)').simulate('mousedown');
|
238
|
-
|
239
|
-
this.$container.find('tbody tr:eq(2) th:eq(0)').simulate('mouseover');
|
240
|
-
this.$container.find('tbody tr:eq(2) th:eq(0)').simulate('mousemove');
|
241
|
-
this.$container.find('tbody tr:eq(2) th:eq(0)').simulate('mouseup');
|
242
|
-
|
243
|
-
expect(targetParameterInsideCallback).toEqual(2);
|
244
|
-
});
|
245
|
-
|
246
|
-
it('should run `afterRowMove` with proper visual `target` parameter', function () {
|
247
|
-
var targetParameterInsideCallback = void 0;
|
248
|
-
|
249
|
-
handsontable({
|
250
|
-
data: Handsontable.helper.createSpreadsheetData(30, 30),
|
251
|
-
rowHeaders: true,
|
252
|
-
manualRowMove: [1, 2, 0],
|
253
|
-
afterRowMove: function afterRowMove(rows, target) {
|
254
|
-
targetParameterInsideCallback = target;
|
255
|
-
}
|
256
|
-
});
|
257
|
-
|
258
|
-
this.$container.find('tbody tr:eq(0) th:eq(0)').simulate('mousedown');
|
259
|
-
this.$container.find('tbody tr:eq(0) th:eq(0)').simulate('mouseup');
|
260
|
-
this.$container.find('tbody tr:eq(0) th:eq(0)').simulate('mousedown');
|
261
|
-
|
262
|
-
this.$container.find('tbody tr:eq(2) th:eq(0)').simulate('mouseover');
|
263
|
-
this.$container.find('tbody tr:eq(2) th:eq(0)').simulate('mousemove');
|
264
|
-
this.$container.find('tbody tr:eq(2) th:eq(0)').simulate('mouseup');
|
265
|
-
|
266
|
-
expect(targetParameterInsideCallback).toEqual(2);
|
267
125
|
});
|
268
126
|
});
|
269
127
|
});
|
@@ -116,10 +116,10 @@ var BaseUI = function () {
|
|
116
116
|
}, {
|
117
117
|
key: 'setPosition',
|
118
118
|
value: function setPosition(top, left) {
|
119
|
-
if (top) {
|
119
|
+
if (top !== void 0) {
|
120
120
|
this._element.style.top = top + UNIT;
|
121
121
|
}
|
122
|
-
if (left) {
|
122
|
+
if (left !== void 0) {
|
123
123
|
this._element.style.left = left + UNIT;
|
124
124
|
}
|
125
125
|
}
|
package/commonjs/tableView.js
CHANGED
package/dist/handsontable.css
CHANGED
@@ -23,8 +23,8 @@
|
|
23
23
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
24
24
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
25
25
|
*
|
26
|
-
* Version: 0.34.
|
27
|
-
* Release date:
|
26
|
+
* Version: 0.34.5
|
27
|
+
* Release date: 12/10/2017 (built at 12/10/2017 10:04:29)
|
28
28
|
*/
|
29
29
|
/**
|
30
30
|
* Fix for bootstrap styles
|
@@ -267,8 +267,7 @@
|
|
267
267
|
color: #000;
|
268
268
|
}
|
269
269
|
|
270
|
-
|
271
|
-
background-color: rgba(255, 255, 255, 0.8);
|
270
|
+
#hot-display-license-info {
|
272
271
|
font-size: 9px;
|
273
272
|
color: #323232 ;
|
274
273
|
padding: 5px 0 3px 0;
|
@@ -1187,8 +1186,10 @@ thead .htCollapseButton:after {
|
|
1187
1186
|
}
|
1188
1187
|
textarea#HandsontableCopyPaste {
|
1189
1188
|
position: fixed !important;
|
1190
|
-
|
1189
|
+
top: 0 !important;
|
1191
1190
|
right: 100% !important;
|
1191
|
+
overflow: hidden;
|
1192
|
+
opacity: 0;
|
1192
1193
|
outline: 0 none !important;
|
1193
1194
|
}
|
1194
1195
|
.htRowHeaders .ht_master.innerBorderLeft ~ .ht_clone_top_left_corner th:nth-child(2),
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"handsontable.css","sources":[],"mappings":"
|
1
|
+
{"version":3,"file":"handsontable.css","sources":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","sourceRoot":""}
|
@@ -23,8 +23,8 @@
|
|
23
23
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
24
24
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
25
25
|
*
|
26
|
-
* Version: 0.34.
|
27
|
-
* Release date:
|
26
|
+
* Version: 0.34.5
|
27
|
+
* Release date: 12/10/2017 (built at 12/10/2017 10:04:29)
|
28
28
|
*/
|
29
29
|
/**
|
30
30
|
* Fix for bootstrap styles
|
@@ -267,8 +267,7 @@
|
|
267
267
|
color: #000;
|
268
268
|
}
|
269
269
|
|
270
|
-
|
271
|
-
background-color: rgba(255, 255, 255, 0.8);
|
270
|
+
#hot-display-license-info {
|
272
271
|
font-size: 9px;
|
273
272
|
color: #323232 ;
|
274
273
|
padding: 5px 0 3px 0;
|
@@ -1409,8 +1408,10 @@ http://nicolasgallagher.com/micro-clearfix-hack/
|
|
1409
1408
|
}
|
1410
1409
|
textarea#HandsontableCopyPaste {
|
1411
1410
|
position: fixed !important;
|
1412
|
-
|
1411
|
+
top: 0 !important;
|
1413
1412
|
right: 100% !important;
|
1413
|
+
overflow: hidden;
|
1414
|
+
opacity: 0;
|
1414
1415
|
outline: 0 none !important;
|
1415
1416
|
}
|
1416
1417
|
.htRowHeaders .ht_master.innerBorderLeft ~ .ht_clone_top_left_corner th:nth-child(2),
|