handsontable 0.0.0-next-bbcfca6-20260708 → 0.0.0-next-98d53ca-20260709
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/base.js +2 -2
- package/base.mjs +2 -2
- package/core.js +10 -4
- package/core.mjs +10 -4
- package/dataMap/metaManager/metaSchema.js +4 -4
- package/dataMap/metaManager/metaSchema.mjs +4 -4
- package/dist/handsontable.full.js +26 -16
- package/dist/handsontable.full.min.js +5 -5
- package/dist/handsontable.js +26 -16
- package/dist/handsontable.min.js +5 -5
- package/dist/themes/classic.js +2 -2
- package/dist/themes/classic.min.js +2 -2
- package/dist/themes/horizon.js +2 -2
- package/dist/themes/horizon.min.js +2 -2
- package/dist/themes/main.js +2 -2
- package/dist/themes/main.min.js +2 -2
- package/dist/themes/static/variables/colors/ant.js +2 -2
- package/dist/themes/static/variables/colors/ant.min.js +2 -2
- package/dist/themes/static/variables/colors/classic.js +2 -2
- package/dist/themes/static/variables/colors/classic.min.js +2 -2
- package/dist/themes/static/variables/colors/horizon.js +2 -2
- package/dist/themes/static/variables/colors/horizon.min.js +2 -2
- package/dist/themes/static/variables/colors/main.js +2 -2
- package/dist/themes/static/variables/colors/main.min.js +2 -2
- package/dist/themes/static/variables/colors/material.js +2 -2
- package/dist/themes/static/variables/colors/material.min.js +2 -2
- package/dist/themes/static/variables/colors/shadcn.js +2 -2
- package/dist/themes/static/variables/colors/shadcn.min.js +2 -2
- package/dist/themes/static/variables/density.js +2 -2
- package/dist/themes/static/variables/density.min.js +2 -2
- package/dist/themes/static/variables/helpers/iconsMap.js +2 -2
- package/dist/themes/static/variables/helpers/iconsMap.min.js +2 -2
- package/dist/themes/static/variables/icons/horizon.js +2 -2
- package/dist/themes/static/variables/icons/horizon.min.js +2 -2
- package/dist/themes/static/variables/icons/main.js +2 -2
- package/dist/themes/static/variables/icons/main.min.js +2 -2
- package/dist/themes/static/variables/sizing.js +2 -2
- package/dist/themes/static/variables/sizing.min.js +2 -2
- package/dist/themes/static/variables/tokens/classic.js +2 -2
- package/dist/themes/static/variables/tokens/classic.min.js +2 -2
- package/dist/themes/static/variables/tokens/horizon.js +2 -2
- package/dist/themes/static/variables/tokens/horizon.min.js +2 -2
- package/dist/themes/static/variables/tokens/main.js +2 -2
- package/dist/themes/static/variables/tokens/main.min.js +2 -2
- package/helpers/mixed.js +1 -1
- package/helpers/mixed.mjs +1 -1
- package/package.json +1 -1
- package/plugins/filters/filters.d.ts +2 -2
- package/plugins/filters/filters.js +2 -2
- package/plugins/filters/filters.mjs +2 -2
- package/shortcuts/context.d.ts +4 -0
- package/shortcuts/context.mjs +4 -0
- package/styles/handsontable.css +2 -2
- package/styles/handsontable.min.css +2 -2
- package/styles/handsontableStyles.d.mts +2 -0
- package/styles/handsontableStyles.d.ts +2 -0
- package/styles/handsontableStyles.js +1 -1
- package/styles/handsontableStyles.mjs +1 -1
- package/styles/ht-icons-horizon.min.css +2 -2
- package/styles/ht-icons-main.min.css +2 -2
- package/styles/ht-theme-classic-no-icons.min.css +2 -2
- package/styles/ht-theme-classic.min.css +2 -2
- package/styles/ht-theme-horizon-no-icons.min.css +2 -2
- package/styles/ht-theme-horizon.min.css +2 -2
- package/styles/ht-theme-main-no-icons.min.css +2 -2
- package/styles/ht-theme-main.min.css +2 -2
package/base.js
CHANGED
|
@@ -72,8 +72,8 @@ Handsontable.hooks = _hooks.Hooks.getSingleton();
|
|
|
72
72
|
Handsontable.CellCoords = _src.CellCoords;
|
|
73
73
|
Handsontable.CellRange = _src.CellRange;
|
|
74
74
|
Handsontable.packageName = 'handsontable';
|
|
75
|
-
Handsontable.buildDate = "
|
|
76
|
-
Handsontable.version = "0.0.0-next-
|
|
75
|
+
Handsontable.buildDate = "09/07/2026 08:23:13";
|
|
76
|
+
Handsontable.version = "0.0.0-next-98d53ca-20260709";
|
|
77
77
|
Handsontable.languages = {
|
|
78
78
|
dictionaryKeys: _registry.dictionaryKeys,
|
|
79
79
|
getLanguageDictionary: _registry.getLanguageDictionary,
|
package/base.mjs
CHANGED
|
@@ -43,8 +43,8 @@ Handsontable.hooks = Hooks.getSingleton();
|
|
|
43
43
|
Handsontable.CellCoords = CellCoords;
|
|
44
44
|
Handsontable.CellRange = CellRange;
|
|
45
45
|
Handsontable.packageName = 'handsontable';
|
|
46
|
-
Handsontable.buildDate = "
|
|
47
|
-
Handsontable.version = "0.0.0-next-
|
|
46
|
+
Handsontable.buildDate = "09/07/2026 08:23:13";
|
|
47
|
+
Handsontable.version = "0.0.0-next-98d53ca-20260709";
|
|
48
48
|
Handsontable.languages = {
|
|
49
49
|
dictionaryKeys,
|
|
50
50
|
getLanguageDictionary,
|
package/core.js
CHANGED
|
@@ -1348,7 +1348,7 @@ function Core(rootContainer, userSettings, rootInstanceSymbol = false) {
|
|
|
1348
1348
|
*
|
|
1349
1349
|
* @private
|
|
1350
1350
|
* @param {Array} changes Array in form of [row, prop, oldValue, newValue].
|
|
1351
|
-
* @param {string} source String that identifies how this change will be described in changes array (useful in
|
|
1351
|
+
* @param {string} source String that identifies how this change will be described in changes array (useful in {@link Hooks#afterChange} or {@link Hooks#beforeChange} callbacks).
|
|
1352
1352
|
* @fires Hooks#beforeChangeRender
|
|
1353
1353
|
* @fires Hooks#afterChange
|
|
1354
1354
|
*/ function applyChanges(changes, source) {
|
|
@@ -1566,7 +1566,9 @@ function Core(rootContainer, userSettings, rootInstanceSymbol = false) {
|
|
|
1566
1566
|
* @param {number|Array} row Visual row index or array of changes in format `[[row, col, value],...]`.
|
|
1567
1567
|
* @param {number} [column] Visual column index.
|
|
1568
1568
|
* @param {string} [value] New value.
|
|
1569
|
-
* @param {string} [source] String that identifies how this change will be described in the changes array (useful in afterChange or beforeChange
|
|
1569
|
+
* @param {string} [source] String that identifies how this change will be described in the changes array (useful in {@link Hooks#afterChange} or {@link Hooks#beforeChange} callbacks). Set to 'edit' if left empty.
|
|
1570
|
+
* @fires Hooks#beforeChange
|
|
1571
|
+
* @fires Hooks#afterChange
|
|
1570
1572
|
*/ this.setDataAtCell = function(row, column, value, source) {
|
|
1571
1573
|
const input = setDataInputToArray(row, column, value);
|
|
1572
1574
|
const changes = [];
|
|
@@ -1616,7 +1618,9 @@ function Core(rootContainer, userSettings, rootInstanceSymbol = false) {
|
|
|
1616
1618
|
* @param {number|Array} row Visual row index or array of changes in format `[[row, prop, value], ...]`.
|
|
1617
1619
|
* @param {string} prop Property name or the source string (e.g. `'first.name'` or `'0'`).
|
|
1618
1620
|
* @param {string} value Value to be set.
|
|
1619
|
-
* @param {string} [source] String that identifies how this change will be described in changes array (useful in
|
|
1621
|
+
* @param {string} [source] String that identifies how this change will be described in changes array (useful in {@link Hooks#afterChange} or {@link Hooks#beforeChange} callbacks).
|
|
1622
|
+
* @fires Hooks#beforeChange
|
|
1623
|
+
* @fires Hooks#afterChange
|
|
1620
1624
|
*/ this.setDataAtRowProp = function(row, prop, value, source) {
|
|
1621
1625
|
const input = setDataInputToArray(row, prop, value);
|
|
1622
1626
|
const changes = [];
|
|
@@ -1862,8 +1866,10 @@ function Core(rootContainer, userSettings, rootInstanceSymbol = false) {
|
|
|
1862
1866
|
*
|
|
1863
1867
|
* @memberof Core#
|
|
1864
1868
|
* @function emptySelectedCells
|
|
1865
|
-
* @param {string} [source] String that identifies how this change will be described in the changes array (useful in afterChange or beforeChange
|
|
1869
|
+
* @param {string} [source] String that identifies how this change will be described in the changes array (useful in {@link Hooks#afterChange} or {@link Hooks#beforeChange} callbacks). Set to 'edit' if left empty.
|
|
1866
1870
|
* @since 0.36.0
|
|
1871
|
+
* @fires Hooks#beforeChange
|
|
1872
|
+
* @fires Hooks#afterChange
|
|
1867
1873
|
*/ this.emptySelectedCells = function(source) {
|
|
1868
1874
|
if (!selection.isSelected() || this.countRows() === 0 || this.countCols() === 0) {
|
|
1869
1875
|
return;
|
package/core.mjs
CHANGED
|
@@ -1333,7 +1333,7 @@ let activeGuid = null;
|
|
|
1333
1333
|
*
|
|
1334
1334
|
* @private
|
|
1335
1335
|
* @param {Array} changes Array in form of [row, prop, oldValue, newValue].
|
|
1336
|
-
* @param {string} source String that identifies how this change will be described in changes array (useful in
|
|
1336
|
+
* @param {string} source String that identifies how this change will be described in changes array (useful in {@link Hooks#afterChange} or {@link Hooks#beforeChange} callbacks).
|
|
1337
1337
|
* @fires Hooks#beforeChangeRender
|
|
1338
1338
|
* @fires Hooks#afterChange
|
|
1339
1339
|
*/ function applyChanges(changes, source) {
|
|
@@ -1551,7 +1551,9 @@ let activeGuid = null;
|
|
|
1551
1551
|
* @param {number|Array} row Visual row index or array of changes in format `[[row, col, value],...]`.
|
|
1552
1552
|
* @param {number} [column] Visual column index.
|
|
1553
1553
|
* @param {string} [value] New value.
|
|
1554
|
-
* @param {string} [source] String that identifies how this change will be described in the changes array (useful in afterChange or beforeChange
|
|
1554
|
+
* @param {string} [source] String that identifies how this change will be described in the changes array (useful in {@link Hooks#afterChange} or {@link Hooks#beforeChange} callbacks). Set to 'edit' if left empty.
|
|
1555
|
+
* @fires Hooks#beforeChange
|
|
1556
|
+
* @fires Hooks#afterChange
|
|
1555
1557
|
*/ this.setDataAtCell = function(row, column, value, source) {
|
|
1556
1558
|
const input = setDataInputToArray(row, column, value);
|
|
1557
1559
|
const changes = [];
|
|
@@ -1601,7 +1603,9 @@ let activeGuid = null;
|
|
|
1601
1603
|
* @param {number|Array} row Visual row index or array of changes in format `[[row, prop, value], ...]`.
|
|
1602
1604
|
* @param {string} prop Property name or the source string (e.g. `'first.name'` or `'0'`).
|
|
1603
1605
|
* @param {string} value Value to be set.
|
|
1604
|
-
* @param {string} [source] String that identifies how this change will be described in changes array (useful in
|
|
1606
|
+
* @param {string} [source] String that identifies how this change will be described in changes array (useful in {@link Hooks#afterChange} or {@link Hooks#beforeChange} callbacks).
|
|
1607
|
+
* @fires Hooks#beforeChange
|
|
1608
|
+
* @fires Hooks#afterChange
|
|
1605
1609
|
*/ this.setDataAtRowProp = function(row, prop, value, source) {
|
|
1606
1610
|
const input = setDataInputToArray(row, prop, value);
|
|
1607
1611
|
const changes = [];
|
|
@@ -1847,8 +1851,10 @@ let activeGuid = null;
|
|
|
1847
1851
|
*
|
|
1848
1852
|
* @memberof Core#
|
|
1849
1853
|
* @function emptySelectedCells
|
|
1850
|
-
* @param {string} [source] String that identifies how this change will be described in the changes array (useful in afterChange or beforeChange
|
|
1854
|
+
* @param {string} [source] String that identifies how this change will be described in the changes array (useful in {@link Hooks#afterChange} or {@link Hooks#beforeChange} callbacks). Set to 'edit' if left empty.
|
|
1851
1855
|
* @since 0.36.0
|
|
1856
|
+
* @fires Hooks#beforeChange
|
|
1857
|
+
* @fires Hooks#afterChange
|
|
1852
1858
|
*/ this.emptySelectedCells = function(source) {
|
|
1853
1859
|
if (!selection.isSelected() || this.countRows() === 0 || this.countCols() === 0) {
|
|
1854
1860
|
return;
|
|
@@ -4704,9 +4704,9 @@ const _default = ()=>{
|
|
|
4704
4704
|
*/ preventWheel: false,
|
|
4705
4705
|
/**
|
|
4706
4706
|
* @description
|
|
4707
|
-
* The `readOnly` option determines whether a [cell](@/guides/cell-features/
|
|
4708
|
-
* [comment](@/guides/cell-features/comments/comments.md#make-a-comment-read-only), [column](@/guides/cell-features/
|
|
4709
|
-
* or the [entire grid](@/guides/cell-features/
|
|
4707
|
+
* The `readOnly` option determines whether a [cell](@/guides/cell-features/read-only-cells/read-only-cells.md#make-specific-cells-read-only),
|
|
4708
|
+
* [comment](@/guides/cell-features/comments/comments.md#make-a-comment-read-only), [column](@/guides/cell-features/read-only-cells/read-only-cells.md#make-a-column-read-only)
|
|
4709
|
+
* or the [entire grid](@/guides/cell-features/read-only-cells/read-only-cells.md#make-the-grid-read-only) is editable or not. You can configure it as follows:
|
|
4710
4710
|
*
|
|
4711
4711
|
* | Setting | Description |
|
|
4712
4712
|
* | ----------------- | ------------------------------------------------------------------------------------------------------------------------- |
|
|
@@ -4716,7 +4716,7 @@ const _default = ()=>{
|
|
|
4716
4716
|
* `readOnly` cells can't be changed by the [`populateFromArray()`](@/api/core.md#populatefromarray) method.
|
|
4717
4717
|
*
|
|
4718
4718
|
* Read more:
|
|
4719
|
-
* - [
|
|
4719
|
+
* - [Read-only cells](@/guides/cell-features/read-only-cells/read-only-cells.md)
|
|
4720
4720
|
* - [Configuration options: Cascading configuration](@/guides/getting-started/configuration-options/configuration-options.md#cascading-configuration)
|
|
4721
4721
|
*
|
|
4722
4722
|
* @memberof Options#
|
|
@@ -4694,9 +4694,9 @@ import { isObjectEqual } from '../../helpers/object.mjs';
|
|
|
4694
4694
|
*/ preventWheel: false,
|
|
4695
4695
|
/**
|
|
4696
4696
|
* @description
|
|
4697
|
-
* The `readOnly` option determines whether a [cell](@/guides/cell-features/
|
|
4698
|
-
* [comment](@/guides/cell-features/comments/comments.md#make-a-comment-read-only), [column](@/guides/cell-features/
|
|
4699
|
-
* or the [entire grid](@/guides/cell-features/
|
|
4697
|
+
* The `readOnly` option determines whether a [cell](@/guides/cell-features/read-only-cells/read-only-cells.md#make-specific-cells-read-only),
|
|
4698
|
+
* [comment](@/guides/cell-features/comments/comments.md#make-a-comment-read-only), [column](@/guides/cell-features/read-only-cells/read-only-cells.md#make-a-column-read-only)
|
|
4699
|
+
* or the [entire grid](@/guides/cell-features/read-only-cells/read-only-cells.md#make-the-grid-read-only) is editable or not. You can configure it as follows:
|
|
4700
4700
|
*
|
|
4701
4701
|
* | Setting | Description |
|
|
4702
4702
|
* | ----------------- | ------------------------------------------------------------------------------------------------------------------------- |
|
|
@@ -4706,7 +4706,7 @@ import { isObjectEqual } from '../../helpers/object.mjs';
|
|
|
4706
4706
|
* `readOnly` cells can't be changed by the [`populateFromArray()`](@/api/core.md#populatefromarray) method.
|
|
4707
4707
|
*
|
|
4708
4708
|
* Read more:
|
|
4709
|
-
* - [
|
|
4709
|
+
* - [Read-only cells](@/guides/cell-features/read-only-cells/read-only-cells.md)
|
|
4710
4710
|
* - [Configuration options: Cascading configuration](@/guides/getting-started/configuration-options/configuration-options.md#cascading-configuration)
|
|
4711
4711
|
*
|
|
4712
4712
|
* @memberof Options#
|