handsontable 0.0.0-next-97c8a0d-20240320 → 0.0.0-next-ba9a67b-20240320
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/dist/handsontable.css +2 -2
- package/dist/handsontable.full.css +2 -2
- package/dist/handsontable.full.js +8 -8
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +3 -3
- package/dist/handsontable.js +8 -8
- 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/copyPaste/copyPaste.js +3 -3
- package/plugins/copyPaste/copyPaste.mjs +3 -3
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-ba9a67b-20240320";
|
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-ba9a67b-20240320";
|
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-ba9a67b-20240320",
|
14
14
|
"main": "index",
|
15
15
|
"module": "index.mjs",
|
16
16
|
"jsnext:main": "index.mjs",
|
@@ -110,9 +110,9 @@ class CopyPaste extends _base.BasePlugin {
|
|
110
110
|
_defineProperty(this, "rowsLimit", Infinity);
|
111
111
|
/**
|
112
112
|
* When pasting:
|
113
|
-
* - `'overwrite'
|
114
|
-
* - `'shift_down'
|
115
|
-
* - `'shift_right'
|
113
|
+
* - `'overwrite'` - overwrite the currently-selected cells
|
114
|
+
* - `'shift_down'` - move currently-selected cells down
|
115
|
+
* - `'shift_right'` - move currently-selected cells to the right
|
116
116
|
*
|
117
117
|
* @type {string}
|
118
118
|
* @default 'overwrite'
|
@@ -106,9 +106,9 @@ export class CopyPaste extends BasePlugin {
|
|
106
106
|
_defineProperty(this, "rowsLimit", Infinity);
|
107
107
|
/**
|
108
108
|
* When pasting:
|
109
|
-
* - `'overwrite'
|
110
|
-
* - `'shift_down'
|
111
|
-
* - `'shift_right'
|
109
|
+
* - `'overwrite'` - overwrite the currently-selected cells
|
110
|
+
* - `'shift_down'` - move currently-selected cells down
|
111
|
+
* - `'shift_right'` - move currently-selected cells to the right
|
112
112
|
*
|
113
113
|
* @type {string}
|
114
114
|
* @default 'overwrite'
|