handsontable 14.6.0-next-4d69faf-20240924 → 14.6.0-next-9f83127-20240930

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.
package/helpers/mixed.js CHANGED
@@ -134,7 +134,7 @@ const domMessages = {
134
134
  function _injectProductInfo(key, element) {
135
135
  const hasValidType = !isEmpty(key);
136
136
  const isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
137
- const hotVersion = "14.6.0-next-4d69faf-20240924";
137
+ const hotVersion = "14.6.0-next-9f83127-20240930";
138
138
  let keyValidityDate;
139
139
  let consoleMessageState = 'invalid';
140
140
  let domMessageState = 'invalid';
package/helpers/mixed.mjs CHANGED
@@ -124,7 +124,7 @@ const domMessages = {
124
124
  export function _injectProductInfo(key, element) {
125
125
  const hasValidType = !isEmpty(key);
126
126
  const isNonCommercial = typeof key === 'string' && key.toLowerCase() === 'non-commercial-and-evaluation';
127
- const hotVersion = "14.6.0-next-4d69faf-20240924";
127
+ const hotVersion = "14.6.0-next-9f83127-20240930";
128
128
  let keyValidityDate;
129
129
  let consoleMessageState = 'invalid';
130
130
  let 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": "14.6.0-next-4d69faf-20240924",
13
+ "version": "14.6.0-next-9f83127-20240930",
14
14
  "main": "index",
15
15
  "module": "index.mjs",
16
16
  "jsnext:main": "index.mjs",
package/pluginHooks.js CHANGED
@@ -1953,7 +1953,9 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
1953
1953
  * Fired by the [`Filters`](@/api/filters.md) plugin,
1954
1954
  * before a [column filter](@/guides/columns/column-filter/column-filter.md) gets applied.
1955
1955
  *
1956
- * [`beforeFilter`](#beforefilter) takes one argument (`conditionsStack`), which is an array of objects.
1956
+ * [`beforeFilter`](#beforefilter) takes two arguments: `conditionsStack` and `previousConditionsStack`, both are
1957
+ * arrays of objects.
1958
+ *
1957
1959
  * Each object represents one of your [column filters](@/api/filters.md#addcondition),
1958
1960
  * and consists of the following properties:
1959
1961
  *
package/pluginHooks.mjs CHANGED
@@ -1949,7 +1949,9 @@ const REGISTERED_HOOKS = [/* eslint-disable jsdoc/require-description-complete-s
1949
1949
  * Fired by the [`Filters`](@/api/filters.md) plugin,
1950
1950
  * before a [column filter](@/guides/columns/column-filter/column-filter.md) gets applied.
1951
1951
  *
1952
- * [`beforeFilter`](#beforefilter) takes one argument (`conditionsStack`), which is an array of objects.
1952
+ * [`beforeFilter`](#beforefilter) takes two arguments: `conditionsStack` and `previousConditionsStack`, both are
1953
+ * arrays of objects.
1954
+ *
1953
1955
  * Each object represents one of your [column filters](@/api/filters.md#addcondition),
1954
1956
  * and consists of the following properties:
1955
1957
  *