jodit-pro-react 5.5.10 → 5.5.11
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/build/esm/JoditEditor.d.mts +6 -0
- package/build/esm/JoditEditor.mjs +1 -1
- package/build/esm/{chunk-3SB732TN.mjs → chunk-GN3FJFLN.mjs} +7 -1
- package/build/esm/index.d.mts +5 -1
- package/build/esm/index.mjs +6 -1
- package/build/jodit-react.js +1 -1
- package/build/jodit-react.js.LICENSE.txt +6 -0
- package/build/types/JoditEditor.d.ts +5 -0
- package/build/types/include.jodit.d.ts +5 -0
- package/build/types/include.jodit.js +5 -0
- package/build/types/index.d.ts +5 -0
- package/build/types/index.js +5 -0
- package/package.json +1 -1
|
@@ -3,6 +3,12 @@ import { Jodit } from 'jodit-pro/esm/index.js';
|
|
|
3
3
|
import { Config } from 'jodit-pro/esm/config';
|
|
4
4
|
import React from 'react';
|
|
5
5
|
|
|
6
|
+
/*!
|
|
7
|
+
* Jodit Editor PRO (https://xdsoft.net/jodit/)
|
|
8
|
+
* See LICENSE.md in the project root for license information.
|
|
9
|
+
* Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net/jodit/pro/
|
|
10
|
+
*/
|
|
11
|
+
|
|
6
12
|
interface JoditEditorProps<T extends typeof Jodit = typeof Jodit> {
|
|
7
13
|
JoditConstructor?: T;
|
|
8
14
|
config?: DeepPartial<Config>;
|
|
@@ -182,7 +182,7 @@ var APP_VERSION, ES, IS_ES_MODERN, IS_ES_NEXT, IS_PROD, IS_TEST, FAT_MODE, HOMEP
|
|
|
182
182
|
var init_constants = __esm({
|
|
183
183
|
"node_modules/jodit/esm/core/constants.js"() {
|
|
184
184
|
"use strict";
|
|
185
|
-
APP_VERSION = "4.11.
|
|
185
|
+
APP_VERSION = "4.11.11";
|
|
186
186
|
ES = "es2020";
|
|
187
187
|
IS_ES_MODERN = true;
|
|
188
188
|
IS_ES_NEXT = true;
|
|
@@ -26753,6 +26753,7 @@ var resizeHandler = class extends Plugin {
|
|
|
26753
26753
|
}
|
|
26754
26754
|
if ((height !== "auto" || width !== "auto") && (allowResizeX || allowResizeY)) {
|
|
26755
26755
|
editor.statusbar.setMod("resize-handle", true);
|
|
26756
|
+
editor.statusbar.show();
|
|
26756
26757
|
editor.e.on("toggleFullSize.resizeHandler", () => {
|
|
26757
26758
|
this.handle.style.display = editor.isFullSize ? "none" : "block";
|
|
26758
26759
|
}).on(this.handle, "mousedown touchstart", this.onHandleResizeStart).on(editor.ow, "mouseup touchend", this.onHandleResizeEnd);
|
|
@@ -48416,6 +48417,11 @@ export {
|
|
|
48416
48417
|
n11 as n,
|
|
48417
48418
|
JoditEditor_default
|
|
48418
48419
|
};
|
|
48420
|
+
/*!
|
|
48421
|
+
* Jodit Editor PRO (https://xdsoft.net/jodit/)
|
|
48422
|
+
* See LICENSE.md in the project root for license information.
|
|
48423
|
+
* Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net/jodit/pro/
|
|
48424
|
+
*/
|
|
48419
48425
|
/*! Bundled license information:
|
|
48420
48426
|
|
|
48421
48427
|
jodit/esm/core/constants.js:
|
package/build/esm/index.d.mts
CHANGED
|
@@ -5,6 +5,10 @@ export { JoditEditorProps } from './JoditEditor.mjs';
|
|
|
5
5
|
import 'jodit/esm/types';
|
|
6
6
|
import 'react';
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
/*!
|
|
9
|
+
* Jodit Editor PRO (https://xdsoft.net/jodit/)
|
|
10
|
+
* See LICENSE.md in the project root for license information.
|
|
11
|
+
* Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net/jodit/pro/
|
|
12
|
+
*/
|
|
9
13
|
|
|
10
14
|
export { JoditEditor as default };
|
package/build/esm/index.mjs
CHANGED
|
@@ -2,7 +2,7 @@ import {
|
|
|
2
2
|
Config,
|
|
3
3
|
JoditEditor_default,
|
|
4
4
|
n
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-GN3FJFLN.mjs";
|
|
6
6
|
|
|
7
7
|
// src/index.ts
|
|
8
8
|
var index_default = JoditEditor_default;
|
|
@@ -11,3 +11,8 @@ export {
|
|
|
11
11
|
n as Jodit,
|
|
12
12
|
index_default as default
|
|
13
13
|
};
|
|
14
|
+
/*!
|
|
15
|
+
* Jodit Editor PRO (https://xdsoft.net/jodit/)
|
|
16
|
+
* See LICENSE.md in the project root for license information.
|
|
17
|
+
* Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net/jodit/pro/
|
|
18
|
+
*/
|