handsontable 0.0.0-next-7cc7ef7-20241028 → 0.0.0-next-fd98d33-20241029
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/README.md +1 -1
- 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 +5 -5
- package/dist/handsontable.full.min.css +2 -2
- package/dist/handsontable.full.min.js +4 -4
- package/dist/handsontable.js +5 -5
- 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/i18n/languages/index.d.ts +8 -0
- package/i18n/languages/ja-JP.d.ts +1 -1
- package/package.json +1 -1
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-fd98d33-20241029";
|
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-fd98d33-20241029";
|
128
128
|
let keyValidityDate;
|
129
129
|
let consoleMessageState = 'invalid';
|
130
130
|
let domMessageState = 'invalid';
|
@@ -1,8 +1,11 @@
|
|
1
|
+
import arAr from './ar-AR';
|
2
|
+
import csCZ from './cs-CZ';
|
1
3
|
import deCH from './de-CH';
|
2
4
|
import deDE from './de-DE';
|
3
5
|
import enUS from './en-US';
|
4
6
|
import esMX from './es-MX';
|
5
7
|
import frFR from './fr-FR';
|
8
|
+
import hrHR from './hr-HR';
|
6
9
|
import itIT from './it-IT';
|
7
10
|
import jaJP from './ja-JP';
|
8
11
|
import koKR from './ko-KR';
|
@@ -12,15 +15,19 @@ import nlNL from './nl-NL';
|
|
12
15
|
import plPL from './pl-PL';
|
13
16
|
import ptBR from './pt-BR';
|
14
17
|
import ruRU from './ru-RU';
|
18
|
+
import srSP from './sr-SP';
|
15
19
|
import zhCN from './zh-CN';
|
16
20
|
import zhTW from './zh-TW';
|
17
21
|
|
18
22
|
export {
|
23
|
+
arAr,
|
24
|
+
csCZ,
|
19
25
|
deCH,
|
20
26
|
deDE,
|
21
27
|
enUS,
|
22
28
|
esMX,
|
23
29
|
frFR,
|
30
|
+
hrHR,
|
24
31
|
itIT,
|
25
32
|
jaJP,
|
26
33
|
koKR,
|
@@ -30,6 +37,7 @@ export {
|
|
30
37
|
plPL,
|
31
38
|
ptBR,
|
32
39
|
ruRU,
|
40
|
+
srSP,
|
33
41
|
zhCN,
|
34
42
|
zhTW
|
35
43
|
};
|
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-fd98d33-20241029",
|
14
14
|
"main": "index",
|
15
15
|
"module": "index.mjs",
|
16
16
|
"jsnext:main": "index.mjs",
|