handsontable 0.0.0-next-3e92a2d-20221130 → 0.0.0-next-4a99ab8-20221201
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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/base.js
CHANGED
@@ -10,6 +10,9 @@ var _registry = require("./i18n/registry");
|
|
10
10
|
var _registry2 = require("./cellTypes/registry");
|
11
11
|
var _textType = require("./cellTypes/textType");
|
12
12
|
var _baseEditor = require("./editors/baseEditor");
|
13
|
+
var _src = require("./3rdparty/walkontable/src");
|
14
|
+
exports.CellCoords = _src.CellCoords;
|
15
|
+
exports.CellRange = _src.CellRange;
|
13
16
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
14
17
|
// FIXME: Bug in eslint-plugin-import: https://github.com/benmosher/eslint-plugin-import/issues/1883
|
15
18
|
/* eslint-disable import/named */
|
@@ -40,9 +43,11 @@ Handsontable.Core = function (rootElement) {
|
|
40
43
|
};
|
41
44
|
Handsontable.DefaultSettings = (0, _dataMap.metaSchemaFactory)();
|
42
45
|
Handsontable.hooks = _pluginHooks.default.getSingleton();
|
46
|
+
Handsontable.CellCoords = _src.CellCoords;
|
47
|
+
Handsontable.CellRange = _src.CellRange;
|
43
48
|
Handsontable.packageName = 'handsontable';
|
44
|
-
Handsontable.buildDate = "
|
45
|
-
Handsontable.version = "0.0.0-next-
|
49
|
+
Handsontable.buildDate = "01/12/2022 12:13:25";
|
50
|
+
Handsontable.version = "0.0.0-next-4a99ab8-20221201";
|
46
51
|
Handsontable.languages = {
|
47
52
|
dictionaryKeys: _registry.dictionaryKeys,
|
48
53
|
getLanguageDictionary: _registry.getLanguageDictionary,
|
package/base.mjs
CHANGED
@@ -7,7 +7,8 @@ import { dictionaryKeys, getTranslatedPhrase, registerLanguageDictionary, getLan
|
|
7
7
|
/* eslint-enable import/named */
|
8
8
|
import { registerCellType } from "./cellTypes/registry.mjs";
|
9
9
|
import { TextCellType } from "./cellTypes/textType/index.mjs";
|
10
|
-
import { BaseEditor } from "./editors/baseEditor/index.mjs";
|
10
|
+
import { BaseEditor } from "./editors/baseEditor/index.mjs";
|
11
|
+
import { CellCoords, CellRange } from "./3rdparty/walkontable/src/index.mjs"; // register default mandatory cell type for the Base package
|
11
12
|
registerCellType(TextCellType);
|
12
13
|
|
13
14
|
// export the `BaseEditor` class to the Handsontable global namespace
|
@@ -31,9 +32,11 @@ Handsontable.Core = function (rootElement) {
|
|
31
32
|
};
|
32
33
|
Handsontable.DefaultSettings = metaSchemaFactory();
|
33
34
|
Handsontable.hooks = Hooks.getSingleton();
|
35
|
+
Handsontable.CellCoords = CellCoords;
|
36
|
+
Handsontable.CellRange = CellRange;
|
34
37
|
Handsontable.packageName = 'handsontable';
|
35
|
-
Handsontable.buildDate = "
|
36
|
-
Handsontable.version = "0.0.0-next-
|
38
|
+
Handsontable.buildDate = "01/12/2022 12:13:39";
|
39
|
+
Handsontable.version = "0.0.0-next-4a99ab8-20221201";
|
37
40
|
Handsontable.languages = {
|
38
41
|
dictionaryKeys: dictionaryKeys,
|
39
42
|
getLanguageDictionary: getLanguageDictionary,
|
@@ -41,4 +44,5 @@ Handsontable.languages = {
|
|
41
44
|
registerLanguageDictionary: registerLanguageDictionary,
|
42
45
|
getTranslatedPhrase: getTranslatedPhrase
|
43
46
|
};
|
47
|
+
export { CellCoords, CellRange };
|
44
48
|
export default Handsontable;
|
package/dist/handsontable.css
CHANGED
@@ -25,8 +25,8 @@
|
|
25
25
|
* INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING FROM
|
26
26
|
* USE OR INABILITY TO USE THIS SOFTWARE.
|
27
27
|
*
|
28
|
-
* Version: 0.0.0-next-
|
29
|
-
* Release date: 25/10/2022 (built at
|
28
|
+
* Version: 0.0.0-next-4a99ab8-20221201
|
29
|
+
* Release date: 25/10/2022 (built at 01/12/2022 12:13:51)
|
30
30
|
*/
|
31
31
|
/**
|
32
32
|
* Fix for bootstrap styles
|
@@ -25,8 +25,8 @@
|
|
25
25
|
* INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING FROM
|
26
26
|
* USE OR INABILITY TO USE THIS SOFTWARE.
|
27
27
|
*
|
28
|
-
* Version: 0.0.0-next-
|
29
|
-
* Release date: 25/10/2022 (built at
|
28
|
+
* Version: 0.0.0-next-4a99ab8-20221201
|
29
|
+
* Release date: 25/10/2022 (built at 01/12/2022 12:13:51)
|
30
30
|
*/
|
31
31
|
/**
|
32
32
|
* Fix for bootstrap styles
|