jodit 4.12.2 → 4.12.3
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 +3 -3
- package/es2015/jodit.js +69 -11
- package/es2015/jodit.min.js +3 -3
- 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 +3 -3
- package/es2018/jodit.min.js +24 -24
- 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 +3 -3
- package/es2021/jodit.js +69 -11
- package/es2021/jodit.min.js +3 -3
- 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 +3 -3
- package/es2021.en/jodit.js +69 -11
- package/es2021.en/jodit.min.js +3 -3
- 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 +72 -11
- 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/config.d.ts +48 -4
- package/esm/config.js +28 -3
- package/esm/core/constants.js +1 -1
- package/esm/core/ui/icon.d.ts +10 -0
- package/esm/core/ui/icon.js +17 -1
- package/package.json +1 -1
- package/types/config.d.ts +48 -4
- package/types/core/ui/icon.d.ts +10 -0
package/es2021.en/jodit.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* jodit - Jodit is an awesome and useful wysiwyg editor with filebrowser
|
|
3
3
|
* Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/jodit/)
|
|
4
|
-
* Version: v4.12.
|
|
4
|
+
* Version: v4.12.3
|
|
5
5
|
* Url: https://xdsoft.net/jodit/
|
|
6
6
|
* License(s): MIT
|
|
7
7
|
*/
|
|
@@ -717,17 +717,61 @@ let ConfigPrototype = {};
|
|
|
717
717
|
* ```
|
|
718
718
|
*/ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "disablePlugins", []);
|
|
719
719
|
/**
|
|
720
|
-
* Init and download extra plugins
|
|
720
|
+
* Init and download extra plugins that are **not** already bundled/registered.
|
|
721
|
+
*
|
|
722
|
+
* For every name in this list that is not found in the plugin registry, Jodit
|
|
723
|
+
* loads it **at runtime over the network** from:
|
|
724
|
+
*
|
|
725
|
+
* ```text
|
|
726
|
+
* <basePath>plugins/<name>/<name>(.min).js
|
|
727
|
+
* ```
|
|
728
|
+
*
|
|
729
|
+
* (see {@link Config.basePath} and {@link Config.minified}). If the plugin is
|
|
730
|
+
* already registered — e.g. you imported it statically, or you use a bundle
|
|
731
|
+
* that ships it (such as the `jodit-pro` / `jodit-pro-react` "all plugins"
|
|
732
|
+
* build) — it is **skipped** and no request is made; in that case you don't
|
|
733
|
+
* need `extraPlugins` at all, just add the plugin's button.
|
|
721
734
|
*
|
|
722
735
|
* ```typescript
|
|
723
|
-
*
|
|
736
|
+
* // Dynamic loading: fetches <basePath>plugins/emoji/emoji.js
|
|
737
|
+
* const editor = Jodit.make('.editor', {
|
|
724
738
|
* extraPlugins: ['emoji']
|
|
725
739
|
* });
|
|
726
740
|
* ```
|
|
727
|
-
*
|
|
741
|
+
*
|
|
742
|
+
* You can also pass an explicit URL to bypass the `basePath` convention:
|
|
743
|
+
*
|
|
744
|
+
* ```typescript
|
|
745
|
+
* const editor = Jodit.make('.editor', {
|
|
746
|
+
* extraPlugins: [{ name: 'emoji', url: 'https://cdn.example.com/emoji.js' }]
|
|
747
|
+
* });
|
|
748
|
+
* ```
|
|
749
|
+
*
|
|
750
|
+
* Note: if you see a request to a malformed URL (e.g. `.../src/main.tsx?t=...plugins/emoji/emoji.js`),
|
|
751
|
+
* it means `basePath` was auto-detected incorrectly under your bundler — set
|
|
752
|
+
* {@link Config.basePath} explicitly. See the Plugin System docs for details.
|
|
728
753
|
*/ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "extraPlugins", []);
|
|
729
754
|
/**
|
|
730
|
-
* Base path for
|
|
755
|
+
* Base path used to build the URL for dynamically loaded {@link Config.extraPlugins}
|
|
756
|
+
* (and their styles): `<basePath>plugins/<name>/<name>(.min).js`.
|
|
757
|
+
*
|
|
758
|
+
* When not set, Jodit auto-detects it from `document.currentScript`, then the
|
|
759
|
+
* last `<script src>` on the page, then `location.href`. That detection works
|
|
760
|
+
* for classic `<script>` includes, but **fails under ESM bundlers / dev
|
|
761
|
+
* servers** (Vite, Webpack dev, etc.) where there is no script tag for the
|
|
762
|
+
* bundle — it falls back to the entry module URL (e.g. `main.tsx`) and produces
|
|
763
|
+
* a broken plugin URL.
|
|
764
|
+
*
|
|
765
|
+
* Fix: host the plugin files at a public location and point `basePath` there
|
|
766
|
+
* (note the trailing slash):
|
|
767
|
+
*
|
|
768
|
+
* ```typescript
|
|
769
|
+
* const editor = Jodit.make('.editor', {
|
|
770
|
+
* basePath: 'https://your-site.com/jodit-assets/',
|
|
771
|
+
* extraPlugins: ['emoji']
|
|
772
|
+
* // → loads https://your-site.com/jodit-assets/plugins/emoji/emoji.js
|
|
773
|
+
* });
|
|
774
|
+
* ```
|
|
731
775
|
*/ (0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(this, "basePath", void 0);
|
|
732
776
|
/**
|
|
733
777
|
* Additional buttons appended to the {@link Config.buttons} list
|
|
@@ -1758,7 +1802,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1758
1802
|
* ```
|
|
1759
1803
|
* @packageDocumentation
|
|
1760
1804
|
* @module constants
|
|
1761
|
-
*/ const APP_VERSION = "4.12.
|
|
1805
|
+
*/ const APP_VERSION = "4.12.3";
|
|
1762
1806
|
// prettier-ignore
|
|
1763
1807
|
const ES = "es2021";
|
|
1764
1808
|
const IS_ES_MODERN = true;
|
|
@@ -15399,8 +15443,9 @@ UISpacer = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)(
|
|
|
15399
15443
|
/* harmony export */ });
|
|
15400
15444
|
/* harmony import */ var _swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(25045);
|
|
15401
15445
|
/* harmony import */ var jodit_core_constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(81937);
|
|
15402
|
-
/* harmony import */ var
|
|
15403
|
-
/* harmony import */ var
|
|
15446
|
+
/* harmony import */ var jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(23211);
|
|
15447
|
+
/* harmony import */ var jodit_core_helpers__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(65946);
|
|
15448
|
+
/* harmony import */ var jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(80991);
|
|
15404
15449
|
/*!
|
|
15405
15450
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
15406
15451
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
@@ -15411,12 +15456,13 @@ UISpacer = (0,_swc_helpers_ts_decorate__WEBPACK_IMPORTED_MODULE_0__.__decorate)(
|
|
|
15411
15456
|
|
|
15412
15457
|
|
|
15413
15458
|
|
|
15459
|
+
|
|
15414
15460
|
class Icon {
|
|
15415
15461
|
static getIcon(name) {
|
|
15416
15462
|
if (/<svg/i.test(name)) {
|
|
15417
15463
|
return name;
|
|
15418
15464
|
}
|
|
15419
|
-
const icon = Icon.icons[name] || Icon.icons[name.replace(/-/g, '_')] || Icon.icons[name.replace(/_/g, '-')] || Icon.icons[(0,
|
|
15465
|
+
const icon = Icon.icons[name] || Icon.icons[name.replace(/-/g, '_')] || Icon.icons[name.replace(/_/g, '-')] || Icon.icons[(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_3__.camelCase)(name)] || Icon.icons[(0,jodit_core_helpers__WEBPACK_IMPORTED_MODULE_3__.kebabCase)(name)] || Icon.icons[name.toLowerCase()];
|
|
15420
15466
|
if (!jodit_core_constants__WEBPACK_IMPORTED_MODULE_1__.IS_PROD && !icon) {
|
|
15421
15467
|
console.warn(`Icon "${name}" not found`);
|
|
15422
15468
|
}
|
|
@@ -15457,11 +15503,11 @@ class Icon {
|
|
|
15457
15503
|
}
|
|
15458
15504
|
if (iconURL) {
|
|
15459
15505
|
iconElement = jodit.c.span();
|
|
15460
|
-
(0,
|
|
15506
|
+
(0,jodit_core_helpers_utils_css__WEBPACK_IMPORTED_MODULE_4__.css)(iconElement, 'backgroundImage', 'url(' + iconURL.replace('{basePath}', jodit?.basePath || '') + ')');
|
|
15461
15507
|
} else {
|
|
15462
15508
|
const svg = iconFromEvent || Icon.get(name, '') || jodit.o.extraIcons?.[name];
|
|
15463
15509
|
if (svg) {
|
|
15464
|
-
iconElement =
|
|
15510
|
+
iconElement = Icon.toIconElement(jodit, svg.trim());
|
|
15465
15511
|
if (!/^<svg/i.test(name)) {
|
|
15466
15512
|
iconElement.classList.add('jodit-icon_' + clearName);
|
|
15467
15513
|
}
|
|
@@ -15477,6 +15523,18 @@ class Icon {
|
|
|
15477
15523
|
}
|
|
15478
15524
|
return iconElement;
|
|
15479
15525
|
}
|
|
15526
|
+
/**
|
|
15527
|
+
* Turn a raw icon string into an element with a `classList`.
|
|
15528
|
+
*
|
|
15529
|
+
* A plain-text icon (e.g. an emoji/text glyph) makes `fromHTML` return a
|
|
15530
|
+
* Text node, which has no `classList`; wrap it in a span so classes/styles
|
|
15531
|
+
* can be applied and `makeIcon` never crashes on `iconElement.classList`.
|
|
15532
|
+
* Note: SVG icons are `SVGElement` (not `HTMLElement`) but are still Element
|
|
15533
|
+
* nodes with a `classList`, so we check `isElement`, not `isHTMLElement`.
|
|
15534
|
+
*/ static toIconElement(jodit, svg) {
|
|
15535
|
+
const node = jodit.c.fromHTML(svg);
|
|
15536
|
+
return jodit_core_dom_dom__WEBPACK_IMPORTED_MODULE_2__.Dom.isElement(node) ? node : jodit.c.span('jodit-icon_text', node);
|
|
15537
|
+
}
|
|
15480
15538
|
}
|
|
15481
15539
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Icon, "icons", {});
|
|
15482
15540
|
(0,_swc_helpers_define_property__WEBPACK_IMPORTED_MODULE_0__._)(Icon, "__cache", new Map());
|