handsontable 0.0.0-next-10cbf34-20221130 → 0.0.0-next-4a99ab8-20221201
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/cell/coords.d.ts +1 -1
- package/3rdparty/walkontable/src/cell/coords.js +51 -23
- package/3rdparty/walkontable/src/cell/coords.mjs +51 -23
- package/3rdparty/walkontable/src/cell/range.d.ts +19 -16
- package/3rdparty/walkontable/src/cell/range.js +178 -101
- package/3rdparty/walkontable/src/cell/range.mjs +178 -101
- package/base.d.ts +1 -0
- package/base.js +7 -2
- package/base.mjs +7 -3
- package/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +425 -313
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +22 -22
- package/dist/handsontable.js +411 -299
- 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/index.d.ts +9 -0
- package/index.js +4 -2
- package/index.mjs +2 -1
- package/package.json +1 -1
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-4a99ab8-20221201";
|
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-4a99ab8-20221201";
|
146
146
|
var keyValidityDate;
|
147
147
|
var consoleMessageState = 'invalid';
|
148
148
|
var domMessageState = 'invalid';
|
package/index.d.ts
CHANGED
@@ -69,6 +69,8 @@ import {
|
|
69
69
|
} from './validators';
|
70
70
|
import * as helper from './helpers';
|
71
71
|
import * as dom from './helpers/dom';
|
72
|
+
import CellCoords from './3rdparty/walkontable/src/cell/coords';
|
73
|
+
import CellRange from './3rdparty/walkontable/src/cell/range';
|
72
74
|
import EventManager from './eventManager';
|
73
75
|
import { Hooks } from './pluginHooks';
|
74
76
|
// plugins
|
@@ -259,6 +261,9 @@ declare namespace Handsontable {
|
|
259
261
|
ColumnSettings,
|
260
262
|
GridSettings,
|
261
263
|
NumericFormatOptions,
|
264
|
+
// coords
|
265
|
+
CellCoords,
|
266
|
+
CellRange,
|
262
267
|
|
263
268
|
RecordTranslation,
|
264
269
|
};
|
@@ -517,4 +522,8 @@ declare class Handsontable extends Core {
|
|
517
522
|
static version: string;
|
518
523
|
}
|
519
524
|
|
525
|
+
export {
|
526
|
+
CellCoords,
|
527
|
+
CellRange,
|
528
|
+
};
|
520
529
|
export default Handsontable;
|
package/index.js
CHANGED
@@ -13,7 +13,9 @@ require("core-js/modules/es.symbol.iterator.js");
|
|
13
13
|
exports.__esModule = true;
|
14
14
|
exports.default = void 0;
|
15
15
|
require("core-js/modules/es.object.get-own-property-names.js");
|
16
|
-
var _base =
|
16
|
+
var _base = _interopRequireWildcard(require("./base"));
|
17
|
+
exports.CellCoords = _base.CellCoords;
|
18
|
+
exports.CellRange = _base.CellRange;
|
17
19
|
var _registry = require("./registry");
|
18
20
|
var _eventManager = _interopRequireWildcard(require("./eventManager"));
|
19
21
|
var _translations = require("./translations");
|
@@ -40,9 +42,9 @@ var _registry5 = require("./cellTypes/registry");
|
|
40
42
|
var _registry6 = require("./plugins/registry");
|
41
43
|
var _base2 = require("./plugins/base");
|
42
44
|
var _Handsontable$cellTyp, _Handsontable$editors, _Handsontable$rendere, _Handsontable$validat, _Handsontable$plugins;
|
45
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
43
46
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
44
47
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
45
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
46
48
|
(0, _registry.registerAllModules)();
|
47
49
|
(0, _jquery.default)(_base.default);
|
48
50
|
|
package/index.mjs
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
var _Handsontable$cellTyp, _Handsontable$editors, _Handsontable$rendere, _Handsontable$validat, _Handsontable$plugins;
|
2
2
|
import "core-js/modules/es.object.get-own-property-names.js";
|
3
|
-
import Handsontable from "./base.mjs";
|
3
|
+
import Handsontable, { CellCoords, CellRange } from "./base.mjs";
|
4
4
|
import { registerAllModules } from "./registry.mjs";
|
5
5
|
import EventManager, { getListenersCounter } from "./eventManager.mjs";
|
6
6
|
import { getRegisteredMapsCounter } from "./translations/index.mjs";
|
@@ -109,4 +109,5 @@ arrayHelpers.arrayEach(getPluginsNames(), function (pluginName) {
|
|
109
109
|
Handsontable.plugins["".concat(stringHelpers.toUpperCaseFirst(BasePlugin.PLUGIN_KEY), "Plugin")] = BasePlugin;
|
110
110
|
Handsontable.plugins.registerPlugin = registerPlugin;
|
111
111
|
Handsontable.plugins.getPlugin = getPlugin;
|
112
|
+
export { CellCoords, CellRange };
|
112
113
|
export default Handsontable;
|
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-4a99ab8-20221201",
|
14
14
|
"main": "index",
|
15
15
|
"module": "index.mjs",
|
16
16
|
"jsnext:main": "index.mjs",
|