handsontable 0.0.0-next-3c01700-20240619 → 0.0.0-next-eb8532d-20240619
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/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 +7 -7
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +4 -4
- package/dist/handsontable.js +7 -7
- 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/plugins/formulas/formulas.js +2 -2
- package/plugins/formulas/formulas.mjs +2 -2
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 = "0.0.0-next-
|
137
|
+
const hotVersion = "0.0.0-next-eb8532d-20240619";
|
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 = "0.0.0-next-
|
127
|
+
const hotVersion = "0.0.0-next-eb8532d-20240619";
|
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": "0.0.0-next-
|
13
|
+
"version": "0.0.0-next-eb8532d-20240619",
|
14
14
|
"main": "index",
|
15
15
|
"module": "index.mjs",
|
16
16
|
"jsnext:main": "index.mjs",
|
@@ -761,8 +761,8 @@ function _onBeforeAutofill(fillData, sourceRange, targetRange) {
|
|
761
761
|
for (let populatedRowIndex = 0; populatedRowIndex < fillRangeData.length; populatedRowIndex += 1) {
|
762
762
|
for (let populatedColumnIndex = 0; populatedColumnIndex < fillRangeData[populatedRowIndex].length; populatedColumnIndex += 1) {
|
763
763
|
const populatedValue = fillRangeData[populatedRowIndex][populatedColumnIndex];
|
764
|
-
const sourceRow = populatedRowIndex % populationRowLength;
|
765
|
-
const sourceColumn = populatedColumnIndex % populationColumnLength;
|
764
|
+
const sourceRow = sourceStartRow + populatedRowIndex % populationRowLength;
|
765
|
+
const sourceColumn = sourceStartColumn + populatedColumnIndex % populationColumnLength;
|
766
766
|
const sourceCellMeta = this.hot.getCellMeta(sourceRow, sourceColumn);
|
767
767
|
if ((0, _utils.isDate)(populatedValue, sourceCellMeta.type)) {
|
768
768
|
if (populatedValue.startsWith('\'')) {
|
@@ -756,8 +756,8 @@ function _onBeforeAutofill(fillData, sourceRange, targetRange) {
|
|
756
756
|
for (let populatedRowIndex = 0; populatedRowIndex < fillRangeData.length; populatedRowIndex += 1) {
|
757
757
|
for (let populatedColumnIndex = 0; populatedColumnIndex < fillRangeData[populatedRowIndex].length; populatedColumnIndex += 1) {
|
758
758
|
const populatedValue = fillRangeData[populatedRowIndex][populatedColumnIndex];
|
759
|
-
const sourceRow = populatedRowIndex % populationRowLength;
|
760
|
-
const sourceColumn = populatedColumnIndex % populationColumnLength;
|
759
|
+
const sourceRow = sourceStartRow + populatedRowIndex % populationRowLength;
|
760
|
+
const sourceColumn = sourceStartColumn + populatedColumnIndex % populationColumnLength;
|
761
761
|
const sourceCellMeta = this.hot.getCellMeta(sourceRow, sourceColumn);
|
762
762
|
if (isDate(populatedValue, sourceCellMeta.type)) {
|
763
763
|
if (populatedValue.startsWith('\'')) {
|