jodit 4.2.37 → 4.2.39
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 +39 -5
- package/es2015/jodit.css +4 -3
- package/es2015/jodit.fat.min.css +1 -1
- package/es2015/jodit.fat.min.js +2 -2
- package/es2015/jodit.js +43 -6
- package/es2015/jodit.min.css +1 -1
- package/es2015/jodit.min.js +2 -2
- 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.css +4 -3
- package/es2018/jodit.fat.min.css +1 -1
- package/es2018/jodit.fat.min.js +2 -2
- package/es2018/jodit.js +43 -6
- package/es2018/jodit.min.css +1 -1
- package/es2018/jodit.min.js +2 -2
- package/es2018/plugins/debug/debug.js +1 -1
- package/es2018/plugins/debug/debug.min.js +1 -1
- package/es2018/plugins/speech-recognize/speech-recognize.css +1 -1
- package/es2018/plugins/speech-recognize/speech-recognize.js +1 -1
- package/es2018/plugins/speech-recognize/speech-recognize.min.js +1 -1
- package/es2021/jodit.css +4 -3
- package/es2021/jodit.fat.min.css +1 -1
- package/es2021/jodit.fat.min.js +2 -2
- package/es2021/jodit.js +42 -6
- package/es2021/jodit.min.css +1 -1
- package/es2021/jodit.min.js +2 -2
- 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 +4 -3
- package/es2021.en/jodit.fat.min.css +1 -1
- package/es2021.en/jodit.fat.min.js +2 -2
- package/es2021.en/jodit.js +42 -6
- package/es2021.en/jodit.min.css +1 -1
- package/es2021.en/jodit.min.js +2 -2
- 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/164.fat.min.js +2 -2
- package/es5/164.js +6 -6
- package/es5/164.min.js +2 -2
- package/es5/5.fat.min.js +1 -1
- package/es5/5.min.js +1 -1
- package/es5/jodit.css +4 -4
- package/es5/jodit.fat.min.css +1 -1
- package/es5/jodit.fat.min.js +2 -2
- package/es5/jodit.js +45 -6
- package/es5/jodit.min.css +3 -3
- package/es5/jodit.min.js +2 -2
- 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/esm/core/constants.js +1 -1
- package/esm/core/ui/form/form.js +1 -0
- package/esm/core/ui/form/inputs/input/input.d.ts +1 -0
- package/esm/core/ui/form/inputs/input/input.js +13 -1
- package/package.json +1 -1
- package/types/core/ui/form/inputs/input/input.d.ts +1 -0
package/es2021/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.2.
|
|
4
|
+
* Version: v4.2.39
|
|
5
5
|
* Url: https://xdsoft.net/jodit/
|
|
6
6
|
* License(s): MIT
|
|
7
7
|
*/
|
|
@@ -1736,7 +1736,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1736
1736
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
1737
1737
|
* Copyright (c) 2013-2024 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
1738
1738
|
*/
|
|
1739
|
-
const APP_VERSION = "4.2.
|
|
1739
|
+
const APP_VERSION = "4.2.39";
|
|
1740
1740
|
// prettier-ignore
|
|
1741
1741
|
const ES = "es2021";
|
|
1742
1742
|
const IS_ES_MODERN = true;
|
|
@@ -13844,6 +13844,7 @@ let UIForm = class UIForm extends jodit_core_ui_group_group__WEBPACK_IMPORTED_MO
|
|
|
13844
13844
|
const form = this.j.c.element('form');
|
|
13845
13845
|
form.classList.add(this.componentName);
|
|
13846
13846
|
(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_1__.attr)(form, 'dir', this.j.o.direction || 'auto');
|
|
13847
|
+
(0,jodit_core_helpers_utils__WEBPACK_IMPORTED_MODULE_1__.attr)(form, 'novalidate', '');
|
|
13847
13848
|
return form;
|
|
13848
13849
|
}
|
|
13849
13850
|
constructor(...args) {
|
|
@@ -14271,7 +14272,19 @@ let UIInput = UIInput_1 = class UIInput extends jodit_core_ui_element__WEBPACK_I
|
|
|
14271
14272
|
}
|
|
14272
14273
|
validate() {
|
|
14273
14274
|
this.error = '';
|
|
14274
|
-
|
|
14275
|
+
const validate = (0,jodit_core_helpers_array_to_array__WEBPACK_IMPORTED_MODULE_2__/* .toArray */ .$)(this.validators).every(validator => validator(this));
|
|
14276
|
+
this.__markInputInvalid();
|
|
14277
|
+
return validate;
|
|
14278
|
+
}
|
|
14279
|
+
__markInputInvalid() {
|
|
14280
|
+
if (this.error) {
|
|
14281
|
+
this.nativeInput.setAttribute('aria-invalid', 'true');
|
|
14282
|
+
this.nativeInput.setCustomValidity?.(this.error);
|
|
14283
|
+
}
|
|
14284
|
+
else {
|
|
14285
|
+
this.nativeInput.removeAttribute('aria-invalid');
|
|
14286
|
+
this.nativeInput.setCustomValidity?.('');
|
|
14287
|
+
}
|
|
14275
14288
|
}
|
|
14276
14289
|
/** @override **/
|
|
14277
14290
|
createContainer(options) {
|
|
@@ -43961,7 +43974,7 @@ module.exports = {assert(){}};;
|
|
|
43961
43974
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
43962
43975
|
/* harmony export */ Cg: function() { return /* binding */ __decorate; }
|
|
43963
43976
|
/* harmony export */ });
|
|
43964
|
-
/* unused harmony exports __extends, __assign, __rest, __param, __esDecorate, __runInitializers, __propKey, __setFunctionName, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet, __classPrivateFieldIn, __addDisposableResource, __disposeResources */
|
|
43977
|
+
/* unused harmony exports __extends, __assign, __rest, __param, __esDecorate, __runInitializers, __propKey, __setFunctionName, __metadata, __awaiter, __generator, __createBinding, __exportStar, __values, __read, __spread, __spreadArrays, __spreadArray, __await, __asyncGenerator, __asyncDelegator, __asyncValues, __makeTemplateObject, __importStar, __importDefault, __classPrivateFieldGet, __classPrivateFieldSet, __classPrivateFieldIn, __addDisposableResource, __disposeResources, __rewriteRelativeImportExtension */
|
|
43965
43978
|
/******************************************************************************
|
|
43966
43979
|
Copyright (c) Microsoft Corporation.
|
|
43967
43980
|
|
|
@@ -44227,10 +44240,19 @@ var __setModuleDefault = Object.create ? (function(o, v) {
|
|
|
44227
44240
|
o["default"] = v;
|
|
44228
44241
|
};
|
|
44229
44242
|
|
|
44243
|
+
var ownKeys = function(o) {
|
|
44244
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
44245
|
+
var ar = [];
|
|
44246
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
44247
|
+
return ar;
|
|
44248
|
+
};
|
|
44249
|
+
return ownKeys(o);
|
|
44250
|
+
};
|
|
44251
|
+
|
|
44230
44252
|
function __importStar(mod) {
|
|
44231
44253
|
if (mod && mod.__esModule) return mod;
|
|
44232
44254
|
var result = {};
|
|
44233
|
-
if (mod != null) for (var k
|
|
44255
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
44234
44256
|
__setModuleDefault(result, mod);
|
|
44235
44257
|
return result;
|
|
44236
44258
|
}
|
|
@@ -44311,12 +44333,25 @@ function __disposeResources(env) {
|
|
|
44311
44333
|
return next();
|
|
44312
44334
|
}
|
|
44313
44335
|
|
|
44336
|
+
function __rewriteRelativeImportExtension(path, preserveJsx) {
|
|
44337
|
+
if (typeof path === "string" && /^\.\.?\//.test(path)) {
|
|
44338
|
+
return path.replace(/\.(tsx)$|((?:\.d)?)((?:\.[^./]+?)?)\.([cm]?)ts$/i, function (m, tsx, d, ext, cm) {
|
|
44339
|
+
return tsx ? preserveJsx ? ".jsx" : ".js" : d && (!ext || !cm) ? m : (d + ext + "." + cm.toLowerCase() + "js");
|
|
44340
|
+
});
|
|
44341
|
+
}
|
|
44342
|
+
return path;
|
|
44343
|
+
}
|
|
44344
|
+
|
|
44314
44345
|
/* unused harmony default export */ var __WEBPACK_DEFAULT_EXPORT__ = ({
|
|
44315
44346
|
__extends,
|
|
44316
44347
|
__assign,
|
|
44317
44348
|
__rest,
|
|
44318
44349
|
__decorate,
|
|
44319
44350
|
__param,
|
|
44351
|
+
__esDecorate,
|
|
44352
|
+
__runInitializers,
|
|
44353
|
+
__propKey,
|
|
44354
|
+
__setFunctionName,
|
|
44320
44355
|
__metadata,
|
|
44321
44356
|
__awaiter,
|
|
44322
44357
|
__generator,
|
|
@@ -44339,6 +44374,7 @@ function __disposeResources(env) {
|
|
|
44339
44374
|
__classPrivateFieldIn,
|
|
44340
44375
|
__addDisposableResource,
|
|
44341
44376
|
__disposeResources,
|
|
44377
|
+
__rewriteRelativeImportExtension,
|
|
44342
44378
|
});
|
|
44343
44379
|
|
|
44344
44380
|
|
|
@@ -44505,7 +44541,7 @@ function __disposeResources(env) {
|
|
|
44505
44541
|
/******/
|
|
44506
44542
|
/************************************************************************/
|
|
44507
44543
|
var __webpack_exports__ = {};
|
|
44508
|
-
// This entry
|
|
44544
|
+
// This entry needs to be wrapped in an IIFE because it needs to be in strict mode.
|
|
44509
44545
|
!function() {
|
|
44510
44546
|
"use strict";
|
|
44511
44547
|
__webpack_require__.r(__webpack_exports__);
|