handsontable 0.0.0-next-5d3870b-20230222 → 0.0.0-next-648dcfa-20230223
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/3rdparty/walkontable/src/calculator/viewportColumns.js +31 -9
- package/3rdparty/walkontable/src/calculator/viewportColumns.mjs +31 -9
- package/3rdparty/walkontable/src/calculator/viewportRows.js +21 -6
- package/3rdparty/walkontable/src/calculator/viewportRows.mjs +21 -6
- package/3rdparty/walkontable/src/core/_base.js +3 -0
- package/3rdparty/walkontable/src/core/_base.mjs +3 -0
- package/3rdparty/walkontable/src/scroll.js +14 -3
- package/3rdparty/walkontable/src/scroll.mjs +14 -3
- package/3rdparty/walkontable/src/table.js +4 -2
- package/3rdparty/walkontable/src/table.mjs +4 -2
- package/3rdparty/walkontable/src/types.js +1 -0
- package/3rdparty/walkontable/src/types.mjs +1 -0
- package/3rdparty/walkontable/src/viewport.js +11 -14
- package/3rdparty/walkontable/src/viewport.mjs +11 -14
- package/base.js +2 -2
- package/base.mjs +2 -2
- package/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +89 -47
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +90 -90
- package/dist/handsontable.js +89 -47
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +3 -3
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/package.json +1 -1
- package/plugins/filters/filters.js +0 -8
- package/plugins/filters/filters.mjs +0 -8
package/helpers/mixed.js
CHANGED
@@ -152,7 +152,7 @@ var domMessages = {
|
|
152
152
|
function _injectProductInfo(key, element) {
|
153
153
|
var hasValidType = !isEmpty(key);
|
154
154
|
var isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
|
155
|
-
var hotVersion = "0.0.0-next-
|
155
|
+
var hotVersion = "0.0.0-next-648dcfa-20230223";
|
156
156
|
var keyValidityDate;
|
157
157
|
var consoleMessageState = 'invalid';
|
158
158
|
var domMessageState = 'invalid';
|
package/helpers/mixed.mjs
CHANGED
@@ -142,7 +142,7 @@ var domMessages = {
|
|
142
142
|
export function _injectProductInfo(key, element) {
|
143
143
|
var hasValidType = !isEmpty(key);
|
144
144
|
var isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
|
145
|
-
var hotVersion = "0.0.0-next-
|
145
|
+
var hotVersion = "0.0.0-next-648dcfa-20230223";
|
146
146
|
var keyValidityDate;
|
147
147
|
var consoleMessageState = 'invalid';
|
148
148
|
var domMessageState = 'invalid';
|
package/package.json
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
"url": "https://github.com/handsontable/handsontable/issues"
|
11
11
|
},
|
12
12
|
"author": "Handsoncode <hello@handsontable.com>",
|
13
|
-
"version": "0.0.0-next-
|
13
|
+
"version": "0.0.0-next-648dcfa-20230223",
|
14
14
|
"main": "index",
|
15
15
|
"module": "index.mjs",
|
16
16
|
"jsnext:main": "index.mjs",
|
@@ -154,14 +154,6 @@ var Filters = /*#__PURE__*/function (_BasePlugin) {
|
|
154
154
|
* @type {Map}
|
155
155
|
*/
|
156
156
|
_this.components = new Map([['filter_by_condition', null], ['filter_operators', null], ['filter_by_condition2', null], ['filter_by_value', null], ['filter_action_bar', null]]);
|
157
|
-
/**
|
158
|
-
* Object containing information about last selected column physical and visual index for added filter conditions.
|
159
|
-
*
|
160
|
-
* @private
|
161
|
-
* @type {object}
|
162
|
-
* @default null
|
163
|
-
*/
|
164
|
-
_this.lastSelectedColumn = null;
|
165
157
|
/**
|
166
158
|
* Map of skipped rows by plugin.
|
167
159
|
*
|
@@ -144,14 +144,6 @@ export var Filters = /*#__PURE__*/function (_BasePlugin) {
|
|
144
144
|
* @type {Map}
|
145
145
|
*/
|
146
146
|
_this.components = new Map([['filter_by_condition', null], ['filter_operators', null], ['filter_by_condition2', null], ['filter_by_value', null], ['filter_action_bar', null]]);
|
147
|
-
/**
|
148
|
-
* Object containing information about last selected column physical and visual index for added filter conditions.
|
149
|
-
*
|
150
|
-
* @private
|
151
|
-
* @type {object}
|
152
|
-
* @default null
|
153
|
-
*/
|
154
|
-
_this.lastSelectedColumn = null;
|
155
147
|
/**
|
156
148
|
* Map of skipped rows by plugin.
|
157
149
|
*
|