handsontable 12.3.3-next-e19badf-20230328 → 12.3.3
Sign up to get free protection for your applications and to get access to all the features.
- package/3rdparty/walkontable/src/core/_base.js +20 -16
- package/3rdparty/walkontable/src/core/_base.mjs +20 -16
- 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 +3077 -3595
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +226 -240
- package/dist/handsontable.js +112 -310
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +3 -3
- package/editors/autocompleteEditor/autocompleteEditor.js +9 -8
- package/editors/autocompleteEditor/autocompleteEditor.mjs +9 -8
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/package.json +1 -1
- package/plugins/base/base.js +10 -9
- package/plugins/base/base.mjs +10 -9
- package/plugins/collapsibleColumns/collapsibleColumns.js +7 -24
- package/plugins/collapsibleColumns/collapsibleColumns.mjs +7 -24
- package/plugins/copyPaste/copyPaste.js +16 -92
- package/plugins/copyPaste/copyPaste.mjs +16 -92
- package/plugins/copyPaste/copyableRanges.js +8 -14
- package/plugins/copyPaste/copyableRanges.mjs +8 -14
- package/plugins/customBorders/customBorders.js +7 -6
- package/plugins/customBorders/customBorders.mjs +7 -6
- package/plugins/formulas/formulas.js +7 -34
- package/plugins/formulas/formulas.mjs +7 -34
- package/plugins/hiddenColumns/hiddenColumns.js +7 -12
- package/plugins/hiddenColumns/hiddenColumns.mjs +7 -12
- package/plugins/hiddenRows/hiddenRows.js +7 -12
- package/plugins/hiddenRows/hiddenRows.mjs +7 -12
- package/plugins/nestedHeaders/nestedHeaders.js +7 -26
- package/plugins/nestedHeaders/nestedHeaders.mjs +7 -26
- package/plugins/nestedHeaders/stateManager/index.js +0 -18
- package/plugins/nestedHeaders/stateManager/index.mjs +0 -18
- package/plugins/nestedHeaders/stateManager/sourceSettings.js +0 -19
- package/plugins/nestedHeaders/stateManager/sourceSettings.mjs +0 -19
- package/translations/changesObservable/observer.js +0 -7
- package/translations/changesObservable/observer.mjs +0 -7
- package/translations/maps/linkedPhysicalIndexToValueMap.js +0 -6
- package/translations/maps/linkedPhysicalIndexToValueMap.mjs +0 -6
@@ -43,40 +43,44 @@ var CoreAbstract = /*#__PURE__*/function () {
|
|
43
43
|
_defineProperty(this, "wtOverlays", void 0);
|
44
44
|
_defineProperty(this, "selections", void 0);
|
45
45
|
_defineProperty(this, "wtEvent", void 0);
|
46
|
+
_defineProperty(this, "guid", "wt_".concat((0, _string.randomString)()));
|
47
|
+
_defineProperty(this, "drawInterrupted", false);
|
48
|
+
_defineProperty(this, "drawn", false);
|
49
|
+
_defineProperty(this, "domBindings", void 0);
|
50
|
+
_defineProperty(this, "wtSettings", void 0);
|
51
|
+
this.domBindings = {
|
52
|
+
rootTable: table,
|
53
|
+
rootDocument: table.ownerDocument,
|
54
|
+
rootWindow: table.ownerDocument.defaultView
|
55
|
+
};
|
56
|
+
this.wtSettings = settings;
|
57
|
+
this.wtScroll = new _scroll.default(this.createScrollDao());
|
58
|
+
}
|
59
|
+
_createClass(CoreAbstract, [{
|
60
|
+
key: "eventManager",
|
61
|
+
get:
|
46
62
|
/**
|
47
63
|
* The walkontable instance id.
|
48
64
|
*
|
49
65
|
* @public
|
50
66
|
* @type {Readonly<string>}
|
51
67
|
*/
|
52
|
-
|
53
|
-
_defineProperty(this, "drawInterrupted", false);
|
54
|
-
_defineProperty(this, "drawn", false);
|
68
|
+
|
55
69
|
/**
|
56
70
|
* The DOM bindings.
|
57
71
|
*
|
58
72
|
* @public
|
59
73
|
* @type {DomBindings}
|
60
74
|
*/
|
61
|
-
|
75
|
+
|
62
76
|
/**
|
63
77
|
* Settings.
|
64
78
|
*
|
65
79
|
* @public
|
66
80
|
* @type {Settings}
|
67
81
|
*/
|
68
|
-
|
69
|
-
|
70
|
-
rootTable: table,
|
71
|
-
rootDocument: table.ownerDocument,
|
72
|
-
rootWindow: table.ownerDocument.defaultView
|
73
|
-
};
|
74
|
-
this.wtSettings = settings;
|
75
|
-
this.wtScroll = new _scroll.default(this.createScrollDao());
|
76
|
-
}
|
77
|
-
_createClass(CoreAbstract, [{
|
78
|
-
key: "eventManager",
|
79
|
-
get: function get() {
|
82
|
+
|
83
|
+
function get() {
|
80
84
|
return new _eventManager.default(this);
|
81
85
|
}
|
82
86
|
}, {
|
@@ -38,40 +38,44 @@ var CoreAbstract = /*#__PURE__*/function () {
|
|
38
38
|
_defineProperty(this, "wtOverlays", void 0);
|
39
39
|
_defineProperty(this, "selections", void 0);
|
40
40
|
_defineProperty(this, "wtEvent", void 0);
|
41
|
+
_defineProperty(this, "guid", "wt_".concat(randomString()));
|
42
|
+
_defineProperty(this, "drawInterrupted", false);
|
43
|
+
_defineProperty(this, "drawn", false);
|
44
|
+
_defineProperty(this, "domBindings", void 0);
|
45
|
+
_defineProperty(this, "wtSettings", void 0);
|
46
|
+
this.domBindings = {
|
47
|
+
rootTable: table,
|
48
|
+
rootDocument: table.ownerDocument,
|
49
|
+
rootWindow: table.ownerDocument.defaultView
|
50
|
+
};
|
51
|
+
this.wtSettings = settings;
|
52
|
+
this.wtScroll = new Scroll(this.createScrollDao());
|
53
|
+
}
|
54
|
+
_createClass(CoreAbstract, [{
|
55
|
+
key: "eventManager",
|
56
|
+
get:
|
41
57
|
/**
|
42
58
|
* The walkontable instance id.
|
43
59
|
*
|
44
60
|
* @public
|
45
61
|
* @type {Readonly<string>}
|
46
62
|
*/
|
47
|
-
|
48
|
-
_defineProperty(this, "drawInterrupted", false);
|
49
|
-
_defineProperty(this, "drawn", false);
|
63
|
+
|
50
64
|
/**
|
51
65
|
* The DOM bindings.
|
52
66
|
*
|
53
67
|
* @public
|
54
68
|
* @type {DomBindings}
|
55
69
|
*/
|
56
|
-
|
70
|
+
|
57
71
|
/**
|
58
72
|
* Settings.
|
59
73
|
*
|
60
74
|
* @public
|
61
75
|
* @type {Settings}
|
62
76
|
*/
|
63
|
-
|
64
|
-
|
65
|
-
rootTable: table,
|
66
|
-
rootDocument: table.ownerDocument,
|
67
|
-
rootWindow: table.ownerDocument.defaultView
|
68
|
-
};
|
69
|
-
this.wtSettings = settings;
|
70
|
-
this.wtScroll = new Scroll(this.createScrollDao());
|
71
|
-
}
|
72
|
-
_createClass(CoreAbstract, [{
|
73
|
-
key: "eventManager",
|
74
|
-
get: function get() {
|
77
|
+
|
78
|
+
function get() {
|
75
79
|
return new EventManager(this);
|
76
80
|
}
|
77
81
|
}, {
|
package/base.js
CHANGED
@@ -46,8 +46,8 @@ Handsontable.hooks = _pluginHooks.default.getSingleton();
|
|
46
46
|
Handsontable.CellCoords = _src.CellCoords;
|
47
47
|
Handsontable.CellRange = _src.CellRange;
|
48
48
|
Handsontable.packageName = 'handsontable';
|
49
|
-
Handsontable.buildDate = "28/03/2023
|
50
|
-
Handsontable.version = "12.3.3
|
49
|
+
Handsontable.buildDate = "28/03/2023 12:24:06";
|
50
|
+
Handsontable.version = "12.3.3";
|
51
51
|
Handsontable.languages = {
|
52
52
|
dictionaryKeys: _registry.dictionaryKeys,
|
53
53
|
getLanguageDictionary: _registry.getLanguageDictionary,
|
package/base.mjs
CHANGED
@@ -35,8 +35,8 @@ Handsontable.hooks = Hooks.getSingleton();
|
|
35
35
|
Handsontable.CellCoords = CellCoords;
|
36
36
|
Handsontable.CellRange = CellRange;
|
37
37
|
Handsontable.packageName = 'handsontable';
|
38
|
-
Handsontable.buildDate = "28/03/2023
|
39
|
-
Handsontable.version = "12.3.3
|
38
|
+
Handsontable.buildDate = "28/03/2023 12:24:11";
|
39
|
+
Handsontable.version = "12.3.3";
|
40
40
|
Handsontable.languages = {
|
41
41
|
dictionaryKeys: dictionaryKeys,
|
42
42
|
getLanguageDictionary: getLanguageDictionary,
|
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: 12.3.3
|
29
|
-
* Release date: 28/03/2023 (built at 28/03/2023
|
28
|
+
* Version: 12.3.3
|
29
|
+
* Release date: 28/03/2023 (built at 28/03/2023 12:24:16)
|
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: 12.3.3
|
29
|
-
* Release date: 28/03/2023 (built at 28/03/2023
|
28
|
+
* Version: 12.3.3
|
29
|
+
* Release date: 28/03/2023 (built at 28/03/2023 12:24:16)
|
30
30
|
*/
|
31
31
|
/**
|
32
32
|
* Fix for bootstrap styles
|