handsontable 12.3.1-next-712715f-20230130 → 12.3.1-next-75db455-20230202
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/CHANGELOG.md +11 -6
- 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 +294 -295
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +34 -34
- package/dist/handsontable.js +229 -230
- 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/package.json +1 -1
- package/plugins/mergeCells/calculations/autofill.js +3 -0
- package/plugins/mergeCells/calculations/autofill.mjs +3 -0
- package/plugins/mergeCells/mergeCells.js +73 -77
- package/plugins/mergeCells/mergeCells.mjs +73 -77
package/CHANGELOG.md
CHANGED
@@ -12,16 +12,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
12
12
|
## [12.3.1] - 2023-02-06
|
13
13
|
|
14
14
|
### Added
|
15
|
-
- Added Japanese translation
|
15
|
+
- Added a Japanese translation of the "Copy with headers" feature. [#10201](https://github.com/handsontable/handsontable/pull/10201)
|
16
16
|
|
17
17
|
### Removed
|
18
|
-
- Removed the
|
18
|
+
- Removed the two-week delay in showing the console warning about license expiration. [#10175](https://github.com/handsontable/handsontable/pull/10175)
|
19
19
|
|
20
20
|
### Fixed
|
21
|
-
- Fixed
|
22
|
-
- Fixed
|
23
|
-
- Fixed an issue where
|
24
|
-
- Fixed
|
21
|
+
- Fixed an issue where `updateData()` didn't work with nested data structures (`NestedRows`). [#10178](https://github.com/handsontable/handsontable/pull/10178)
|
22
|
+
- Fixed an issue of unwanted pixels in the "Filter by condition" menu by removing a superfluous overlay. [#10174](https://github.com/handsontable/handsontable/pull/10174)
|
23
|
+
- Fixed an issue where merged cells could lack right and bottom borders due to a Chrome bug. [#10212](https://github.com/handsontable/handsontable/pull/10212)
|
24
|
+
- Fixed an issue where using some browser and system shortcuts could cause Handsontable to behave as if <kbd>Cmd</kbd>/<kbd>Ctrl</kbd> was being held down. [#10210](https://github.com/handsontable/handsontable/pull/10210)
|
25
|
+
|
26
|
+
For more information on Handsontable 12.3.1, see:
|
27
|
+
- [Blog post (12.3.1)](PLACEHOLDER)
|
28
|
+
- [Documentation (12.3)](https://handsontable.com/docs/12.3)
|
29
|
+
- [Release notes (12.3.1)](https://handsontable.com/docs/release-notes/#_12-3-1)
|
25
30
|
|
26
31
|
## [12.3.0] - 2022-12-14
|
27
32
|
|
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 = "
|
50
|
-
Handsontable.version = "12.3.1-next-
|
49
|
+
Handsontable.buildDate = "02/02/2023 13:29:16";
|
50
|
+
Handsontable.version = "12.3.1-next-75db455-20230202";
|
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 = "
|
39
|
-
Handsontable.version = "12.3.1-next-
|
38
|
+
Handsontable.buildDate = "02/02/2023 13:29:35";
|
39
|
+
Handsontable.version = "12.3.1-next-75db455-20230202";
|
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.1-next-
|
29
|
-
* Release date: 06/02/2023 (built at
|
28
|
+
* Version: 12.3.1-next-75db455-20230202
|
29
|
+
* Release date: 06/02/2023 (built at 02/02/2023 13:29: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: 12.3.1-next-
|
29
|
-
* Release date: 06/02/2023 (built at
|
28
|
+
* Version: 12.3.1-next-75db455-20230202
|
29
|
+
* Release date: 06/02/2023 (built at 02/02/2023 13:29:51)
|
30
30
|
*/
|
31
31
|
/**
|
32
32
|
* Fix for bootstrap styles
|