jodit 4.15.0 → 4.15.2
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/CHANGELOG.md +12 -0
- package/es2015/jodit.css +9 -7
- package/es2015/jodit.fat.min.css +1 -1
- package/es2015/jodit.fat.min.js +4 -4
- package/es2015/jodit.js +11 -7
- package/es2015/jodit.min.css +1 -1
- package/es2015/jodit.min.js +4 -4
- 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.css +1 -1
- package/es2018/jodit.fat.min.js +4 -4
- package/es2018/jodit.min.css +1 -1
- package/es2018/jodit.min.js +4 -4
- package/es2018/plugins/debug/debug.min.js +1 -1
- package/es2018/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es2021/jodit.css +9 -7
- package/es2021/jodit.fat.min.css +1 -1
- package/es2021/jodit.fat.min.js +4 -4
- package/es2021/jodit.js +11 -7
- package/es2021/jodit.min.css +1 -1
- package/es2021/jodit.min.js +4 -4
- 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 +9 -7
- package/es2021.en/jodit.fat.min.css +1 -1
- package/es2021.en/jodit.fat.min.js +4 -4
- package/es2021.en/jodit.js +11 -7
- package/es2021.en/jodit.min.css +1 -1
- package/es2021.en/jodit.min.js +4 -4
- 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 +10 -8
- package/es5/jodit.fat.min.css +1 -1
- package/es5/jodit.fat.min.js +2 -2
- package/es5/jodit.js +11 -7
- package/es5/jodit.min.css +3 -3
- 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/esm/modules/file-browser/config.js +6 -6
- package/esm/plugins/enter/enter.js +1 -1
- package/esm/plugins/enter/helpers/check-br.d.ts +2 -2
- package/esm/plugins/enter/helpers/check-br.js +9 -2
- package/package.json +1 -1
- package/types/plugins/enter/helpers/check-br.d.ts +2 -2
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-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net
|
|
5
5
|
*/
|
|
6
|
-
export const APP_VERSION = "4.15.
|
|
6
|
+
export const APP_VERSION = "4.15.2";
|
|
7
7
|
// prettier-ignore
|
|
8
8
|
export const ES = "es2020";
|
|
9
9
|
export const IS_ES_MODERN = true;
|
|
@@ -311,12 +311,12 @@ Config.prototype.controls.filebrowser = {
|
|
|
311
311
|
isInput: true,
|
|
312
312
|
getContent: (fb) => {
|
|
313
313
|
const select = fb.c.fromHTML('<select class="jodit-input jodit-select">' +
|
|
314
|
-
`<option value="changed-asc">${fb.i18n('Sort by changed')} (
|
|
315
|
-
`<option value="changed-desc">${fb.i18n('Sort by changed')} (
|
|
316
|
-
`<option value="name-asc">${fb.i18n('Sort by name')} (
|
|
317
|
-
`<option value="name-desc">${fb.i18n('Sort by name')} (
|
|
318
|
-
`<option value="size-asc">${fb.i18n('Sort by size')} (
|
|
319
|
-
`<option value="size-desc">${fb.i18n('Sort by size')} (
|
|
314
|
+
`<option value="changed-asc">${fb.i18n('Sort by changed')} (↑)</option>` +
|
|
315
|
+
`<option value="changed-desc">${fb.i18n('Sort by changed')} (↓)</option>` +
|
|
316
|
+
`<option value="name-asc">${fb.i18n('Sort by name')} (↑)</option>` +
|
|
317
|
+
`<option value="name-desc">${fb.i18n('Sort by name')} (↓)</option>` +
|
|
318
|
+
`<option value="size-asc">${fb.i18n('Sort by size')} (↑)</option>` +
|
|
319
|
+
`<option value="size-desc">${fb.i18n('Sort by size')} (↓)</option>` +
|
|
320
320
|
'</select>');
|
|
321
321
|
select.value = fb.state.sortBy;
|
|
322
322
|
fb.e
|
|
@@ -70,7 +70,7 @@ export class enter extends Plugin {
|
|
|
70
70
|
const isLi = Dom.isLeaf(block);
|
|
71
71
|
// if use <br> defaultTag for break line or when was entered SHIFt key or in <td> or <th> or <blockquote>
|
|
72
72
|
if ((!isLi || (event === null || event === void 0 ? void 0 : event.shiftKey)) &&
|
|
73
|
-
checkBR(fake, jodit, event === null || event === void 0 ? void 0 : event.shiftKey)) {
|
|
73
|
+
checkBR(fake, jodit, event === null || event === void 0 ? void 0 : event.shiftKey, block)) {
|
|
74
74
|
return false;
|
|
75
75
|
}
|
|
76
76
|
// wrap no wrapped element
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
/**
|
|
7
7
|
* @module plugins/enter
|
|
8
8
|
*/
|
|
9
|
-
import type { IJodit } from "../../../types/index";
|
|
9
|
+
import type { IJodit, Nullable } from "../../../types/index";
|
|
10
10
|
/**
|
|
11
11
|
* Checks the possibility and necessity of inserting a BR instead of a block
|
|
12
12
|
* @private
|
|
13
13
|
*/
|
|
14
|
-
export declare function checkBR(fake: Text, jodit: IJodit, shiftKeyPressed?: boolean): boolean;
|
|
14
|
+
export declare function checkBR(fake: Text, jodit: IJodit, shiftKeyPressed?: boolean, block?: Nullable<HTMLElement>): boolean;
|
|
@@ -10,9 +10,16 @@ import { scrollIntoViewIfNeeded } from "../../../core/helpers/utils/scroll-into-
|
|
|
10
10
|
* Checks the possibility and necessity of inserting a BR instead of a block
|
|
11
11
|
* @private
|
|
12
12
|
*/
|
|
13
|
-
export function checkBR(fake, jodit, shiftKeyPressed) {
|
|
13
|
+
export function checkBR(fake, jodit, shiftKeyPressed, block) {
|
|
14
14
|
const isMultiLineBlock = Boolean(Dom.closest(fake, ['pre', 'blockquote'], jodit.editor));
|
|
15
|
-
|
|
15
|
+
// A cell itself can't be split into two cells, so bare cell content gets
|
|
16
|
+
// a BR. But when the cell already holds a real block (<p>, <h3>, ...) that
|
|
17
|
+
// block is split like anywhere else, otherwise every line of the cell
|
|
18
|
+
// stays inside one block and block styles apply to all of them at once.
|
|
19
|
+
const isCell = !isMultiLineBlock &&
|
|
20
|
+
(block
|
|
21
|
+
? Dom.isCell(block)
|
|
22
|
+
: Boolean(Dom.closest(fake, ['td', 'th'], jodit.editor)));
|
|
16
23
|
const isBRMode = jodit.o.enter.toLowerCase() === BR.toLowerCase();
|
|
17
24
|
// if you use <br> defaultTag for break line or when was entered SHIFt key or in <td> or <th> or <blockquote>
|
|
18
25
|
if (isBRMode ||
|
package/package.json
CHANGED
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
/**
|
|
7
7
|
* @module plugins/enter
|
|
8
8
|
*/
|
|
9
|
-
import type { IJodit } from "../../../types/index";
|
|
9
|
+
import type { IJodit, Nullable } from "../../../types/index";
|
|
10
10
|
/**
|
|
11
11
|
* Checks the possibility and necessity of inserting a BR instead of a block
|
|
12
12
|
* @private
|
|
13
13
|
*/
|
|
14
|
-
export declare function checkBR(fake: Text, jodit: IJodit, shiftKeyPressed?: boolean): boolean;
|
|
14
|
+
export declare function checkBR(fake: Text, jodit: IJodit, shiftKeyPressed?: boolean, block?: Nullable<HTMLElement>): boolean;
|