handsontable 0.0.0-next-80f5f61-20230504 → 0.0.0-next-a01036f-20230508
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/base.js +2 -2
- package/base.mjs +2 -2
- package/core.js +11 -3
- package/core.mjs +11 -3
- package/dataMap/metaManager/metaSchema.js +1 -1
- package/dataMap/metaManager/metaSchema.mjs +1 -1
- package/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +1272 -1246
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +38 -38
- package/dist/handsontable.js +1130 -1104
- package/dist/handsontable.min.css +2 -2
- package/dist/handsontable.min.js +4 -4
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/package.json +1 -1
- package/utils/parseTable.js +5 -1
- package/utils/parseTable.mjs +5 -1
package/base.js
CHANGED
|
@@ -44,8 +44,8 @@ Handsontable.hooks = _pluginHooks.default.getSingleton();
|
|
|
44
44
|
Handsontable.CellCoords = _src.CellCoords;
|
|
45
45
|
Handsontable.CellRange = _src.CellRange;
|
|
46
46
|
Handsontable.packageName = 'handsontable';
|
|
47
|
-
Handsontable.buildDate = "
|
|
48
|
-
Handsontable.version = "0.0.0-next-
|
|
47
|
+
Handsontable.buildDate = "08/05/2023 10:46:53";
|
|
48
|
+
Handsontable.version = "0.0.0-next-a01036f-20230508";
|
|
49
49
|
Handsontable.languages = {
|
|
50
50
|
dictionaryKeys: _registry.dictionaryKeys,
|
|
51
51
|
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 = "0.0.0-next-
|
|
38
|
+
Handsontable.buildDate = "08/05/2023 10:47:08";
|
|
39
|
+
Handsontable.version = "0.0.0-next-a01036f-20230508";
|
|
40
40
|
Handsontable.languages = {
|
|
41
41
|
dictionaryKeys: dictionaryKeys,
|
|
42
42
|
getLanguageDictionary: getLanguageDictionary,
|
package/core.js
CHANGED
|
@@ -2448,11 +2448,13 @@ function Core(rootElement, userSettings) {
|
|
|
2448
2448
|
};
|
|
2449
2449
|
|
|
2450
2450
|
/**
|
|
2451
|
-
*
|
|
2451
|
+
* Gets the value of the currently focused cell.
|
|
2452
|
+
*
|
|
2453
|
+
* For column headers and row headers, returns `null`.
|
|
2452
2454
|
*
|
|
2453
2455
|
* @memberof Core#
|
|
2454
2456
|
* @function getValue
|
|
2455
|
-
* @returns {*}
|
|
2457
|
+
* @returns {*} The value of the focused cell.
|
|
2456
2458
|
*/
|
|
2457
2459
|
this.getValue = function () {
|
|
2458
2460
|
var sel = instance.getSelectedLast();
|
|
@@ -3144,7 +3146,13 @@ function Core(rootElement, userSettings) {
|
|
|
3144
3146
|
};
|
|
3145
3147
|
|
|
3146
3148
|
/**
|
|
3147
|
-
* Checks if
|
|
3149
|
+
* Checks if your [data format](@/guides/getting-started/binding-to-data.md#compatible-data-types)
|
|
3150
|
+
* and [configuration options](@/guides/getting-started/configuration-options.md)
|
|
3151
|
+
* allow for changing the number of columns.
|
|
3152
|
+
*
|
|
3153
|
+
* Returns `false` when your data is an array of objects,
|
|
3154
|
+
* or when you use the [`columns`](@/api/options.md#columns) option.
|
|
3155
|
+
* Otherwise, returns `true`.
|
|
3148
3156
|
*
|
|
3149
3157
|
* @memberof Core#
|
|
3150
3158
|
* @function isColumnModificationAllowed
|
package/core.mjs
CHANGED
|
@@ -2443,11 +2443,13 @@ export default function Core(rootElement, userSettings) {
|
|
|
2443
2443
|
};
|
|
2444
2444
|
|
|
2445
2445
|
/**
|
|
2446
|
-
*
|
|
2446
|
+
* Gets the value of the currently focused cell.
|
|
2447
|
+
*
|
|
2448
|
+
* For column headers and row headers, returns `null`.
|
|
2447
2449
|
*
|
|
2448
2450
|
* @memberof Core#
|
|
2449
2451
|
* @function getValue
|
|
2450
|
-
* @returns {*}
|
|
2452
|
+
* @returns {*} The value of the focused cell.
|
|
2451
2453
|
*/
|
|
2452
2454
|
this.getValue = function () {
|
|
2453
2455
|
var sel = instance.getSelectedLast();
|
|
@@ -3139,7 +3141,13 @@ export default function Core(rootElement, userSettings) {
|
|
|
3139
3141
|
};
|
|
3140
3142
|
|
|
3141
3143
|
/**
|
|
3142
|
-
* Checks if
|
|
3144
|
+
* Checks if your [data format](@/guides/getting-started/binding-to-data.md#compatible-data-types)
|
|
3145
|
+
* and [configuration options](@/guides/getting-started/configuration-options.md)
|
|
3146
|
+
* allow for changing the number of columns.
|
|
3147
|
+
*
|
|
3148
|
+
* Returns `false` when your data is an array of objects,
|
|
3149
|
+
* or when you use the [`columns`](@/api/options.md#columns) option.
|
|
3150
|
+
* Otherwise, returns `true`.
|
|
3143
3151
|
*
|
|
3144
3152
|
* @memberof Core#
|
|
3145
3153
|
* @function isColumnModificationAllowed
|
|
@@ -21,7 +21,7 @@ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" =
|
|
|
21
21
|
* [Configuration options](@/guides/getting-started/configuration-options.md) let you heavily customize your Handsontable instance. For example, you can:
|
|
22
22
|
*
|
|
23
23
|
* - Enable and disable built-in features
|
|
24
|
-
* - Enable and configure additional [plugins](@/
|
|
24
|
+
* - Enable and configure additional [plugins](@/api/plugins.md)
|
|
25
25
|
* - Personalize Handsontable's look
|
|
26
26
|
* - Adjust Handsontable's behavior
|
|
27
27
|
* - Implement your own custom features
|
|
@@ -17,7 +17,7 @@ import { isObjectEqual } from "../../helpers/object.mjs";
|
|
|
17
17
|
* [Configuration options](@/guides/getting-started/configuration-options.md) let you heavily customize your Handsontable instance. For example, you can:
|
|
18
18
|
*
|
|
19
19
|
* - Enable and disable built-in features
|
|
20
|
-
* - Enable and configure additional [plugins](@/
|
|
20
|
+
* - Enable and configure additional [plugins](@/api/plugins.md)
|
|
21
21
|
* - Personalize Handsontable's look
|
|
22
22
|
* - Adjust Handsontable's behavior
|
|
23
23
|
* - Implement your own custom features
|
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: 28/03/2023 (built at
|
|
28
|
+
* Version: 0.0.0-next-a01036f-20230508
|
|
29
|
+
* Release date: 28/03/2023 (built at 08/05/2023 10:47:21)
|
|
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: 28/03/2023 (built at
|
|
28
|
+
* Version: 0.0.0-next-a01036f-20230508
|
|
29
|
+
* Release date: 28/03/2023 (built at 08/05/2023 10:47:21)
|
|
30
30
|
*/
|
|
31
31
|
/**
|
|
32
32
|
* Fix for bootstrap styles
|