jodit 4.7.8 → 4.7.9
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/es2015/jodit.css +1 -1
- package/es2015/jodit.fat.min.js +2 -2
- package/es2015/jodit.js +2 -2
- package/es2015/jodit.min.js +2 -2
- package/es2015/plugins/debug/debug.css +1 -1
- package/es2015/plugins/debug/debug.js +1 -1
- package/es2015/plugins/debug/debug.min.js +1 -1
- package/es2015/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es2015/plugins/speech-recognize/speech-recognize.js +1 -1
- package/es2015/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es2018/jodit.fat.min.js +2 -2
- package/es2018/jodit.min.js +2 -2
- package/es2018/plugins/debug/debug.min.js +1 -1
- package/es2018/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es2021/jodit.css +1 -1
- package/es2021/jodit.fat.min.js +2 -2
- package/es2021/jodit.js +2 -2
- package/es2021/jodit.min.js +2 -2
- package/es2021/plugins/debug/debug.css +1 -1
- package/es2021/plugins/debug/debug.js +1 -1
- package/es2021/plugins/debug/debug.min.js +1 -1
- package/es2021/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es2021/plugins/speech-recognize/speech-recognize.js +1 -1
- package/es2021/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es2021.en/jodit.css +1 -1
- package/es2021.en/jodit.fat.min.js +2 -2
- package/es2021.en/jodit.js +2 -2
- package/es2021.en/jodit.min.js +2 -2
- package/es2021.en/plugins/debug/debug.css +1 -1
- package/es2021.en/plugins/debug/debug.js +1 -1
- package/es2021.en/plugins/debug/debug.min.js +1 -1
- package/es2021.en/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es2021.en/plugins/speech-recognize/speech-recognize.js +1 -1
- package/es2021.en/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es5/jodit.css +2 -2
- package/es5/jodit.fat.min.js +2 -2
- package/es5/jodit.js +2 -2
- package/es5/jodit.min.css +2 -2
- package/es5/jodit.min.js +2 -2
- package/es5/plugins/debug/debug.css +1 -1
- package/es5/plugins/debug/debug.js +1 -1
- package/es5/plugins/debug/debug.min.js +1 -1
- package/es5/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es5/plugins/speech-recognize/speech-recognize.js +1 -1
- package/es5/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es5/polyfills.fat.min.js +1 -1
- package/es5/polyfills.js +1 -1
- package/es5/polyfills.min.js +1 -1
- package/esm/core/constants.js +1 -1
- package/package.json +1 -1
- package/esm/tsconfig.json +0 -47
- package/types/tsconfig.json +0 -47
package/es5/polyfills.fat.min.js
CHANGED
package/es5/polyfills.js
CHANGED
package/es5/polyfills.min.js
CHANGED
package/esm/core/constants.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
4
4
|
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
5
5
|
*/
|
|
6
|
-
export const APP_VERSION = "4.7.
|
|
6
|
+
export const APP_VERSION = "4.7.9";
|
|
7
7
|
// prettier-ignore
|
|
8
8
|
export const ES = "es2020";
|
|
9
9
|
export const IS_ES_MODERN = true;
|
package/package.json
CHANGED
package/esm/tsconfig.json
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "es5",
|
|
4
|
-
"module": "es2020",
|
|
5
|
-
"moduleResolution": "node",
|
|
6
|
-
|
|
7
|
-
"removeComments": false,
|
|
8
|
-
|
|
9
|
-
"strict": true,
|
|
10
|
-
"alwaysStrict": true,
|
|
11
|
-
|
|
12
|
-
"downlevelIteration": true,
|
|
13
|
-
"strictNullChecks": true,
|
|
14
|
-
"strictFunctionTypes": true,
|
|
15
|
-
"strictBindCallApply": true,
|
|
16
|
-
"strictPropertyInitialization": true,
|
|
17
|
-
"experimentalDecorators": true,
|
|
18
|
-
"verbatimModuleSyntax": true,
|
|
19
|
-
|
|
20
|
-
"allowSyntheticDefaultImports": true,
|
|
21
|
-
|
|
22
|
-
"allowJs": true,
|
|
23
|
-
"checkJs": false,
|
|
24
|
-
|
|
25
|
-
"noImplicitAny": true,
|
|
26
|
-
"noImplicitReturns": true,
|
|
27
|
-
"noUnusedLocals": true,
|
|
28
|
-
"noImplicitOverride": true,
|
|
29
|
-
"noImplicitThis": true,
|
|
30
|
-
"resolveJsonModule": true,
|
|
31
|
-
|
|
32
|
-
"forceConsistentCasingInFileNames": true,
|
|
33
|
-
|
|
34
|
-
"sourceMap": true,
|
|
35
|
-
|
|
36
|
-
"importHelpers": false,
|
|
37
|
-
|
|
38
|
-
"lib": ["esnext", "DOM", "scripthost", "es2015.iterable"],
|
|
39
|
-
|
|
40
|
-
"baseUrl": ".",
|
|
41
|
-
"paths": {
|
|
42
|
-
"jodit/*": ["./src/*"]
|
|
43
|
-
}
|
|
44
|
-
},
|
|
45
|
-
"exclude": ["tools/**/*"],
|
|
46
|
-
"files": ["./src/index.ts", "./src/polyfills.ts", "./src/typings.d.ts", "./index.d.ts"]
|
|
47
|
-
}
|
package/types/tsconfig.json
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "es5",
|
|
4
|
-
"module": "es2020",
|
|
5
|
-
"moduleResolution": "node",
|
|
6
|
-
|
|
7
|
-
"removeComments": false,
|
|
8
|
-
|
|
9
|
-
"strict": true,
|
|
10
|
-
"alwaysStrict": true,
|
|
11
|
-
|
|
12
|
-
"downlevelIteration": true,
|
|
13
|
-
"strictNullChecks": true,
|
|
14
|
-
"strictFunctionTypes": true,
|
|
15
|
-
"strictBindCallApply": true,
|
|
16
|
-
"strictPropertyInitialization": true,
|
|
17
|
-
"experimentalDecorators": true,
|
|
18
|
-
"verbatimModuleSyntax": true,
|
|
19
|
-
|
|
20
|
-
"allowSyntheticDefaultImports": true,
|
|
21
|
-
|
|
22
|
-
"allowJs": true,
|
|
23
|
-
"checkJs": false,
|
|
24
|
-
|
|
25
|
-
"noImplicitAny": true,
|
|
26
|
-
"noImplicitReturns": true,
|
|
27
|
-
"noUnusedLocals": true,
|
|
28
|
-
"noImplicitOverride": true,
|
|
29
|
-
"noImplicitThis": true,
|
|
30
|
-
"resolveJsonModule": true,
|
|
31
|
-
|
|
32
|
-
"forceConsistentCasingInFileNames": true,
|
|
33
|
-
|
|
34
|
-
"sourceMap": true,
|
|
35
|
-
|
|
36
|
-
"importHelpers": false,
|
|
37
|
-
|
|
38
|
-
"lib": ["esnext", "DOM", "scripthost", "es2015.iterable"],
|
|
39
|
-
|
|
40
|
-
"baseUrl": ".",
|
|
41
|
-
"paths": {
|
|
42
|
-
"jodit/*": ["./src/*"]
|
|
43
|
-
}
|
|
44
|
-
},
|
|
45
|
-
"exclude": ["tools/**/*"],
|
|
46
|
-
"files": ["./src/index.ts", "./src/polyfills.ts", "./src/typings.d.ts", "./index.d.ts"]
|
|
47
|
-
}
|