handsontable 0.0.0-next-9014f6b-20221201 → 0.0.0-next-c8630a2-20221202

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/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-9014f6b-20221201";
155
+ var hotVersion = "0.0.0-next-c8630a2-20221202";
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-9014f6b-20221201";
145
+ var hotVersion = "0.0.0-next-c8630a2-20221202";
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-9014f6b-20221201",
13
+ "version": "0.0.0-next-c8630a2-20221202",
14
14
  "main": "index",
15
15
  "module": "index.mjs",
16
16
  "jsnext:main": "index.mjs",
@@ -53,7 +53,7 @@ var PLUGIN_PRIORITY = 220;
53
53
  * The `ColumnSummary` plugin lets you [easily summarize your columns](@/guides/columns/column-summary.md).
54
54
  *
55
55
  * You can use the [built-in summary functions](@/guides/columns/column-summary.md#built-in-summary-functions),
56
- * or implement a [custom summary function](@/guides/columns/column-summary.md#implementing-a-custom-summary-function).
56
+ * or implement a [custom summary function](@/guides/columns/column-summary.md#implement-a-custom-summary-function).
57
57
  *
58
58
  * For each column summary, you can set the following configuration options:
59
59
  *
@@ -64,12 +64,12 @@ var PLUGIN_PRIORITY = 220;
64
64
  * | `type` | Yes | String | - | [Sets a summary function](@/guides/columns/column-summary.md#step-3-calculate-your-summary) |
65
65
  * | `destinationRow` | Yes | Number | - | [Sets the destination cell's row coordinate](@/guides/columns/column-summary.md#step-4-provide-the-destination-cell-s-coordinates) |
66
66
  * | `destinationColumn` | Yes | Number | - | [Sets the destination cell's column coordinate](@/guides/columns/column-summary.md#step-4-provide-the-destination-cell-s-coordinates) |
67
- * | `forceNumeric` | No | Boolean | `false` | [Forces the summary to treat non-numerics as numerics](@/guides/columns/column-summary.md#forcing-numeric-values) |
67
+ * | `forceNumeric` | No | Boolean | `false` | [Forces the summary to treat non-numerics as numerics](@/guides/columns/column-summary.md#force-numeric-values) |
68
68
  * | `reversedRowCoords` | No | Boolean | `false` | [Reverses row coordinates](@/guides/columns/column-summary.md#step-5-make-room-for-the-destination-cell) |
69
- * | `suppressDataTypeErrors` | No | Boolean | `true` | [Suppresses data type errors](@/guides/columns/column-summary.md#throwing-data-type-errors) |
69
+ * | `suppressDataTypeErrors` | No | Boolean | `true` | [Suppresses data type errors](@/guides/columns/column-summary.md#throw-data-type-errors) |
70
70
  * | `readOnly` | No | Boolean | `true` | Makes summary cell read-only |
71
- * | `roundFloat` | No | Number | - | [Rounds summary result](@/guides/columns/column-summary.md#rounding-a-column-summary-result) |
72
- * | `customFunction` | No | Function | - | [Lets you add a custom summary function](@/guides/columns/column-summary.md#implementing-a-custom-summary-function) |
71
+ * | `roundFloat` | No | Number | - | [Rounds summary result](@/guides/columns/column-summary.md#round-a-column-summary-result) |
72
+ * | `customFunction` | No | Function | - | [Lets you add a custom summary function](@/guides/columns/column-summary.md#implement-a-custom-summary-function) |
73
73
  *
74
74
  * @example
75
75
  * ::: only-for javascript
@@ -47,7 +47,7 @@ export var PLUGIN_PRIORITY = 220;
47
47
  * The `ColumnSummary` plugin lets you [easily summarize your columns](@/guides/columns/column-summary.md).
48
48
  *
49
49
  * You can use the [built-in summary functions](@/guides/columns/column-summary.md#built-in-summary-functions),
50
- * or implement a [custom summary function](@/guides/columns/column-summary.md#implementing-a-custom-summary-function).
50
+ * or implement a [custom summary function](@/guides/columns/column-summary.md#implement-a-custom-summary-function).
51
51
  *
52
52
  * For each column summary, you can set the following configuration options:
53
53
  *
@@ -58,12 +58,12 @@ export var PLUGIN_PRIORITY = 220;
58
58
  * | `type` | Yes | String | - | [Sets a summary function](@/guides/columns/column-summary.md#step-3-calculate-your-summary) |
59
59
  * | `destinationRow` | Yes | Number | - | [Sets the destination cell's row coordinate](@/guides/columns/column-summary.md#step-4-provide-the-destination-cell-s-coordinates) |
60
60
  * | `destinationColumn` | Yes | Number | - | [Sets the destination cell's column coordinate](@/guides/columns/column-summary.md#step-4-provide-the-destination-cell-s-coordinates) |
61
- * | `forceNumeric` | No | Boolean | `false` | [Forces the summary to treat non-numerics as numerics](@/guides/columns/column-summary.md#forcing-numeric-values) |
61
+ * | `forceNumeric` | No | Boolean | `false` | [Forces the summary to treat non-numerics as numerics](@/guides/columns/column-summary.md#force-numeric-values) |
62
62
  * | `reversedRowCoords` | No | Boolean | `false` | [Reverses row coordinates](@/guides/columns/column-summary.md#step-5-make-room-for-the-destination-cell) |
63
- * | `suppressDataTypeErrors` | No | Boolean | `true` | [Suppresses data type errors](@/guides/columns/column-summary.md#throwing-data-type-errors) |
63
+ * | `suppressDataTypeErrors` | No | Boolean | `true` | [Suppresses data type errors](@/guides/columns/column-summary.md#throw-data-type-errors) |
64
64
  * | `readOnly` | No | Boolean | `true` | Makes summary cell read-only |
65
- * | `roundFloat` | No | Number | - | [Rounds summary result](@/guides/columns/column-summary.md#rounding-a-column-summary-result) |
66
- * | `customFunction` | No | Function | - | [Lets you add a custom summary function](@/guides/columns/column-summary.md#implementing-a-custom-summary-function) |
65
+ * | `roundFloat` | No | Number | - | [Rounds summary result](@/guides/columns/column-summary.md#round-a-column-summary-result) |
66
+ * | `customFunction` | No | Function | - | [Lets you add a custom summary function](@/guides/columns/column-summary.md#implement-a-custom-summary-function) |
67
67
  *
68
68
  * @example
69
69
  * ::: only-for javascript
@@ -838,7 +838,7 @@ var Formulas = /*#__PURE__*/function (_BasePlugin) {
838
838
  * @private
839
839
  * @param {Array[]} changes An array of changes in format [[row, prop, oldValue, value], ...].
840
840
  * @param {string} [source] String that identifies source of hook call
841
- * ([list of all available sources]{@link http://docs.handsontable.com/tutorial-using-callbacks.html#page-source-definition}).
841
+ * ([list of all available sources]{@link https://handsontable.com/docs/javascript-data-grid/events-and-hooks/#handsontable-hooks}).
842
842
  */
843
843
  }, {
844
844
  key: "onAfterSetDataAtCell",
@@ -899,7 +899,7 @@ var Formulas = /*#__PURE__*/function (_BasePlugin) {
899
899
  * @private
900
900
  * @param {Array[]} changes An array of changes in format [[row, column, oldValue, value], ...].
901
901
  * @param {string} [source] String that identifies source of hook call
902
- * ([list of all available sources]{@link http://docs.handsontable.com/tutorial-using-callbacks.html#page-source-definition}).
902
+ * ([list of all available sources]{@link https://handsontable.com/docs/javascript-data-grid/events-and-hooks/#handsontable-hooks}).
903
903
  */
904
904
  }, {
905
905
  key: "onAfterSetSourceDataAtCell",
@@ -1014,7 +1014,7 @@ var Formulas = /*#__PURE__*/function (_BasePlugin) {
1014
1014
  * @param {number} row Represents the visual index of first newly created row in the data source array.
1015
1015
  * @param {number} amount Number of newly created rows in the data source array.
1016
1016
  * @param {string} [source] String that identifies source of hook call
1017
- * ([list of all available sources]{@link http://docs.handsontable.com/tutorial-using-callbacks.html#page-source-definition}).
1017
+ * ([list of all available sources]{@link https://handsontable.com/docs/javascript-data-grid/events-and-hooks/#handsontable-hooks}).
1018
1018
  */
1019
1019
  }, {
1020
1020
  key: "onAfterCreateRow",
@@ -1033,7 +1033,7 @@ var Formulas = /*#__PURE__*/function (_BasePlugin) {
1033
1033
  * @param {number} col Represents the visual index of first newly created column in the data source.
1034
1034
  * @param {number} amount Number of newly created columns in the data source.
1035
1035
  * @param {string} [source] String that identifies source of hook call
1036
- * ([list of all available sources]{@link http://docs.handsontable.com/tutorial-using-callbacks.html#page-source-definition}).
1036
+ * ([list of all available sources]{@link https://handsontable.com/docs/javascript-data-grid/events-and-hooks/#handsontable-hooks}).
1037
1037
  */
1038
1038
  }, {
1039
1039
  key: "onAfterCreateCol",
@@ -1053,7 +1053,7 @@ var Formulas = /*#__PURE__*/function (_BasePlugin) {
1053
1053
  * @param {number} amount An amount of removed rows.
1054
1054
  * @param {number[]} physicalRows An array of physical rows removed from the data source.
1055
1055
  * @param {string} [source] String that identifies source of hook call
1056
- * ([list of all available sources]{@link http://docs.handsontable.com/tutorial-using-callbacks.html#page-source-definition}).
1056
+ * ([list of all available sources]{@link https://handsontable.com/docs/javascript-data-grid/events-and-hooks/#handsontable-hooks}).
1057
1057
  */
1058
1058
  }, {
1059
1059
  key: "onAfterRemoveRow",
@@ -1079,7 +1079,7 @@ var Formulas = /*#__PURE__*/function (_BasePlugin) {
1079
1079
  * @param {number} amount An amount of removed columns.
1080
1080
  * @param {number[]} physicalColumns An array of physical columns removed from the data source.
1081
1081
  * @param {string} [source] String that identifies source of hook call
1082
- * ([list of all available sources]{@link http://docs.handsontable.com/tutorial-using-callbacks.html#page-source-definition}).
1082
+ * ([list of all available sources]{@link https://handsontable.com/docs/javascript-data-grid/events-and-hooks/#handsontable-hooks}).
1083
1083
  */
1084
1084
  }, {
1085
1085
  key: "onAfterRemoveCol",
@@ -831,7 +831,7 @@ export var Formulas = /*#__PURE__*/function (_BasePlugin) {
831
831
  * @private
832
832
  * @param {Array[]} changes An array of changes in format [[row, prop, oldValue, value], ...].
833
833
  * @param {string} [source] String that identifies source of hook call
834
- * ([list of all available sources]{@link http://docs.handsontable.com/tutorial-using-callbacks.html#page-source-definition}).
834
+ * ([list of all available sources]{@link https://handsontable.com/docs/javascript-data-grid/events-and-hooks/#handsontable-hooks}).
835
835
  */
836
836
  }, {
837
837
  key: "onAfterSetDataAtCell",
@@ -892,7 +892,7 @@ export var Formulas = /*#__PURE__*/function (_BasePlugin) {
892
892
  * @private
893
893
  * @param {Array[]} changes An array of changes in format [[row, column, oldValue, value], ...].
894
894
  * @param {string} [source] String that identifies source of hook call
895
- * ([list of all available sources]{@link http://docs.handsontable.com/tutorial-using-callbacks.html#page-source-definition}).
895
+ * ([list of all available sources]{@link https://handsontable.com/docs/javascript-data-grid/events-and-hooks/#handsontable-hooks}).
896
896
  */
897
897
  }, {
898
898
  key: "onAfterSetSourceDataAtCell",
@@ -1007,7 +1007,7 @@ export var Formulas = /*#__PURE__*/function (_BasePlugin) {
1007
1007
  * @param {number} row Represents the visual index of first newly created row in the data source array.
1008
1008
  * @param {number} amount Number of newly created rows in the data source array.
1009
1009
  * @param {string} [source] String that identifies source of hook call
1010
- * ([list of all available sources]{@link http://docs.handsontable.com/tutorial-using-callbacks.html#page-source-definition}).
1010
+ * ([list of all available sources]{@link https://handsontable.com/docs/javascript-data-grid/events-and-hooks/#handsontable-hooks}).
1011
1011
  */
1012
1012
  }, {
1013
1013
  key: "onAfterCreateRow",
@@ -1026,7 +1026,7 @@ export var Formulas = /*#__PURE__*/function (_BasePlugin) {
1026
1026
  * @param {number} col Represents the visual index of first newly created column in the data source.
1027
1027
  * @param {number} amount Number of newly created columns in the data source.
1028
1028
  * @param {string} [source] String that identifies source of hook call
1029
- * ([list of all available sources]{@link http://docs.handsontable.com/tutorial-using-callbacks.html#page-source-definition}).
1029
+ * ([list of all available sources]{@link https://handsontable.com/docs/javascript-data-grid/events-and-hooks/#handsontable-hooks}).
1030
1030
  */
1031
1031
  }, {
1032
1032
  key: "onAfterCreateCol",
@@ -1046,7 +1046,7 @@ export var Formulas = /*#__PURE__*/function (_BasePlugin) {
1046
1046
  * @param {number} amount An amount of removed rows.
1047
1047
  * @param {number[]} physicalRows An array of physical rows removed from the data source.
1048
1048
  * @param {string} [source] String that identifies source of hook call
1049
- * ([list of all available sources]{@link http://docs.handsontable.com/tutorial-using-callbacks.html#page-source-definition}).
1049
+ * ([list of all available sources]{@link https://handsontable.com/docs/javascript-data-grid/events-and-hooks/#handsontable-hooks}).
1050
1050
  */
1051
1051
  }, {
1052
1052
  key: "onAfterRemoveRow",
@@ -1072,7 +1072,7 @@ export var Formulas = /*#__PURE__*/function (_BasePlugin) {
1072
1072
  * @param {number} amount An amount of removed columns.
1073
1073
  * @param {number[]} physicalColumns An array of physical columns removed from the data source.
1074
1074
  * @param {string} [source] String that identifies source of hook call
1075
- * ([list of all available sources]{@link http://docs.handsontable.com/tutorial-using-callbacks.html#page-source-definition}).
1075
+ * ([list of all available sources]{@link https://handsontable.com/docs/javascript-data-grid/events-and-hooks/#handsontable-hooks}).
1076
1076
  */
1077
1077
  }, {
1078
1078
  key: "onAfterRemoveCol",
@@ -19,7 +19,7 @@ var _recorder = require("./recorder");
19
19
  * @param {object} options The manager's options
20
20
  * @param {EventTarget} options.ownerWindow A starting `window` element
21
21
  * @param {Function} options.handleEvent A condition on which `event` is handled.
22
- * @param {Function} options.beforeKeyDown A hook fired before the `keydown` event is handled. You can use it to [block a keyboard shortcut's actions](@/guides/accessories-and-menus/keyboard-shortcuts.md#blocking-a-keyboard-shortcut-s-actions).
22
+ * @param {Function} options.beforeKeyDown A hook fired before the `keydown` event is handled. You can use it to [block a keyboard shortcut's actions](@/guides/accessories-and-menus/keyboard-shortcuts.md#block-a-keyboard-shortcut-s-actions).
23
23
  * @param {Function} options.afterKeyDown A hook fired after the `keydown` event is handled
24
24
  */
25
25
  var createShortcutManager = function createShortcutManager(_ref) {
@@ -14,7 +14,7 @@ import { useRecorder } from "./recorder.mjs";
14
14
  * @param {object} options The manager's options
15
15
  * @param {EventTarget} options.ownerWindow A starting `window` element
16
16
  * @param {Function} options.handleEvent A condition on which `event` is handled.
17
- * @param {Function} options.beforeKeyDown A hook fired before the `keydown` event is handled. You can use it to [block a keyboard shortcut's actions](@/guides/accessories-and-menus/keyboard-shortcuts.md#blocking-a-keyboard-shortcut-s-actions).
17
+ * @param {Function} options.beforeKeyDown A hook fired before the `keydown` event is handled. You can use it to [block a keyboard shortcut's actions](@/guides/accessories-and-menus/keyboard-shortcuts.md#block-a-keyboard-shortcut-s-actions).
18
18
  * @param {Function} options.afterKeyDown A hook fired after the `keydown` event is handled
19
19
  */
20
20
  export var createShortcutManager = function createShortcutManager(_ref) {