UNPKG

jodit-ts-vue3

Version:
2,756 lines 833 kB
/******/ (function() { // webpackBootstrap
/******/ 	var __webpack_modules__ = ({

/***/ 9662:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var global = __webpack_require__(7854);
var isCallable = __webpack_require__(614);
var tryToString = __webpack_require__(6330);

var TypeError = global.TypeError;

// `Assert: IsCallable(argument) is true`
module.exports = function (argument) {
  if (isCallable(argument)) return argument;
  throw TypeError(tryToString(argument) + ' is not a function');
};


/***/ }),

/***/ 6077:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var global = __webpack_require__(7854);
var isCallable = __webpack_require__(614);

var String = global.String;
var TypeError = global.TypeError;

module.exports = function (argument) {
  if (typeof argument == 'object' || isCallable(argument)) return argument;
  throw TypeError("Can't set " + String(argument) + ' as a prototype');
};


/***/ }),

/***/ 1223:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var wellKnownSymbol = __webpack_require__(5112);
var create = __webpack_require__(30);
var defineProperty = (__webpack_require__(3070).f);

var UNSCOPABLES = wellKnownSymbol('unscopables');
var ArrayPrototype = Array.prototype;

// Array.prototype[@@unscopables]
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
if (ArrayPrototype[UNSCOPABLES] == undefined) {
  defineProperty(ArrayPrototype, UNSCOPABLES, {
    configurable: true,
    value: create(null)
  });
}

// add a key to Array.prototype[@@unscopables]
module.exports = function (key) {
  ArrayPrototype[UNSCOPABLES][key] = true;
};


/***/ }),

/***/ 5787:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var global = __webpack_require__(7854);
var isPrototypeOf = __webpack_require__(7976);

var TypeError = global.TypeError;

module.exports = function (it, Prototype) {
  if (isPrototypeOf(Prototype, it)) return it;
  throw TypeError('Incorrect invocation');
};


/***/ }),

/***/ 9670:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var global = __webpack_require__(7854);
var isObject = __webpack_require__(111);

var String = global.String;
var TypeError = global.TypeError;

// `Assert: Type(argument) is Object`
module.exports = function (argument) {
  if (isObject(argument)) return argument;
  throw TypeError(String(argument) + ' is not an object');
};


/***/ }),

/***/ 4019:
/***/ (function(module) {

// eslint-disable-next-line es-x/no-typed-arrays -- safe
module.exports = typeof ArrayBuffer != 'undefined' && typeof DataView != 'undefined';


/***/ }),

/***/ 260:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

"use strict";

var NATIVE_ARRAY_BUFFER = __webpack_require__(4019);
var DESCRIPTORS = __webpack_require__(9781);
var global = __webpack_require__(7854);
var isCallable = __webpack_require__(614);
var isObject = __webpack_require__(111);
var hasOwn = __webpack_require__(2597);
var classof = __webpack_require__(648);
var tryToString = __webpack_require__(6330);
var createNonEnumerableProperty = __webpack_require__(8880);
var defineBuiltIn = __webpack_require__(8052);
var defineProperty = (__webpack_require__(3070).f);
var isPrototypeOf = __webpack_require__(7976);
var getPrototypeOf = __webpack_require__(9518);
var setPrototypeOf = __webpack_require__(7674);
var wellKnownSymbol = __webpack_require__(5112);
var uid = __webpack_require__(9711);

var Int8Array = global.Int8Array;
var Int8ArrayPrototype = Int8Array && Int8Array.prototype;
var Uint8ClampedArray = global.Uint8ClampedArray;
var Uint8ClampedArrayPrototype = Uint8ClampedArray && Uint8ClampedArray.prototype;
var TypedArray = Int8Array && getPrototypeOf(Int8Array);
var TypedArrayPrototype = Int8ArrayPrototype && getPrototypeOf(Int8ArrayPrototype);
var ObjectPrototype = Object.prototype;
var TypeError = global.TypeError;

var TO_STRING_TAG = wellKnownSymbol('toStringTag');
var TYPED_ARRAY_TAG = uid('TYPED_ARRAY_TAG');
var TYPED_ARRAY_CONSTRUCTOR = uid('TYPED_ARRAY_CONSTRUCTOR');
// Fixing native typed arrays in Opera Presto crashes the browser, see #595
var NATIVE_ARRAY_BUFFER_VIEWS = NATIVE_ARRAY_BUFFER && !!setPrototypeOf && classof(global.opera) !== 'Opera';
var TYPED_ARRAY_TAG_REQUIRED = false;
var NAME, Constructor, Prototype;

var TypedArrayConstructorsList = {
  Int8Array: 1,
  Uint8Array: 1,
  Uint8ClampedArray: 1,
  Int16Array: 2,
  Uint16Array: 2,
  Int32Array: 4,
  Uint32Array: 4,
  Float32Array: 4,
  Float64Array: 8
};

var BigIntArrayConstructorsList = {
  BigInt64Array: 8,
  BigUint64Array: 8
};

var isView = function isView(it) {
  if (!isObject(it)) return false;
  var klass = classof(it);
  return klass === 'DataView'
    || hasOwn(TypedArrayConstructorsList, klass)
    || hasOwn(BigIntArrayConstructorsList, klass);
};

var isTypedArray = function (it) {
  if (!isObject(it)) return false;
  var klass = classof(it);
  return hasOwn(TypedArrayConstructorsList, klass)
    || hasOwn(BigIntArrayConstructorsList, klass);
};

var aTypedArray = function (it) {
  if (isTypedArray(it)) return it;
  throw TypeError('Target is not a typed array');
};

var aTypedArrayConstructor = function (C) {
  if (isCallable(C) && (!setPrototypeOf || isPrototypeOf(TypedArray, C))) return C;
  throw TypeError(tryToString(C) + ' is not a typed array constructor');
};

var exportTypedArrayMethod = function (KEY, property, forced, options) {
  if (!DESCRIPTORS) return;
  if (forced) for (var ARRAY in TypedArrayConstructorsList) {
    var TypedArrayConstructor = global[ARRAY];
    if (TypedArrayConstructor && hasOwn(TypedArrayConstructor.prototype, KEY)) try {
      delete TypedArrayConstructor.prototype[KEY];
    } catch (error) {
      // old WebKit bug - some methods are non-configurable
      try {
        TypedArrayConstructor.prototype[KEY] = property;
      } catch (error2) { /* empty */ }
    }
  }
  if (!TypedArrayPrototype[KEY] || forced) {
    defineBuiltIn(TypedArrayPrototype, KEY, forced ? property
      : NATIVE_ARRAY_BUFFER_VIEWS && Int8ArrayPrototype[KEY] || property, options);
  }
};

var exportTypedArrayStaticMethod = function (KEY, property, forced) {
  var ARRAY, TypedArrayConstructor;
  if (!DESCRIPTORS) return;
  if (setPrototypeOf) {
    if (forced) for (ARRAY in TypedArrayConstructorsList) {
      TypedArrayConstructor = global[ARRAY];
      if (TypedArrayConstructor && hasOwn(TypedArrayConstructor, KEY)) try {
        delete TypedArrayConstructor[KEY];
      } catch (error) { /* empty */ }
    }
    if (!TypedArray[KEY] || forced) {
      // V8 ~ Chrome 49-50 `%TypedArray%` methods are non-writable non-configurable
      try {
        return defineBuiltIn(TypedArray, KEY, forced ? property : NATIVE_ARRAY_BUFFER_VIEWS && TypedArray[KEY] || property);
      } catch (error) { /* empty */ }
    } else return;
  }
  for (ARRAY in TypedArrayConstructorsList) {
    TypedArrayConstructor = global[ARRAY];
    if (TypedArrayConstructor && (!TypedArrayConstructor[KEY] || forced)) {
      defineBuiltIn(TypedArrayConstructor, KEY, property);
    }
  }
};

for (NAME in TypedArrayConstructorsList) {
  Constructor = global[NAME];
  Prototype = Constructor && Constructor.prototype;
  if (Prototype) createNonEnumerableProperty(Prototype, TYPED_ARRAY_CONSTRUCTOR, Constructor);
  else NATIVE_ARRAY_BUFFER_VIEWS = false;
}

for (NAME in BigIntArrayConstructorsList) {
  Constructor = global[NAME];
  Prototype = Constructor && Constructor.prototype;
  if (Prototype) createNonEnumerableProperty(Prototype, TYPED_ARRAY_CONSTRUCTOR, Constructor);
}

// WebKit bug - typed arrays constructors prototype is Object.prototype
if (!NATIVE_ARRAY_BUFFER_VIEWS || !isCallable(TypedArray) || TypedArray === Function.prototype) {
  // eslint-disable-next-line no-shadow -- safe
  TypedArray = function TypedArray() {
    throw TypeError('Incorrect invocation');
  };
  if (NATIVE_ARRAY_BUFFER_VIEWS) for (NAME in TypedArrayConstructorsList) {
    if (global[NAME]) setPrototypeOf(global[NAME], TypedArray);
  }
}

if (!NATIVE_ARRAY_BUFFER_VIEWS || !TypedArrayPrototype || TypedArrayPrototype === ObjectPrototype) {
  TypedArrayPrototype = TypedArray.prototype;
  if (NATIVE_ARRAY_BUFFER_VIEWS) for (NAME in TypedArrayConstructorsList) {
    if (global[NAME]) setPrototypeOf(global[NAME].prototype, TypedArrayPrototype);
  }
}

// WebKit bug - one more object in Uint8ClampedArray prototype chain
if (NATIVE_ARRAY_BUFFER_VIEWS && getPrototypeOf(Uint8ClampedArrayPrototype) !== TypedArrayPrototype) {
  setPrototypeOf(Uint8ClampedArrayPrototype, TypedArrayPrototype);
}

if (DESCRIPTORS && !hasOwn(TypedArrayPrototype, TO_STRING_TAG)) {
  TYPED_ARRAY_TAG_REQUIRED = true;
  defineProperty(TypedArrayPrototype, TO_STRING_TAG, { get: function () {
    return isObject(this) ? this[TYPED_ARRAY_TAG] : undefined;
  } });
  for (NAME in TypedArrayConstructorsList) if (global[NAME]) {
    createNonEnumerableProperty(global[NAME], TYPED_ARRAY_TAG, NAME);
  }
}

module.exports = {
  NATIVE_ARRAY_BUFFER_VIEWS: NATIVE_ARRAY_BUFFER_VIEWS,
  TYPED_ARRAY_CONSTRUCTOR: TYPED_ARRAY_CONSTRUCTOR,
  TYPED_ARRAY_TAG: TYPED_ARRAY_TAG_REQUIRED && TYPED_ARRAY_TAG,
  aTypedArray: aTypedArray,
  aTypedArrayConstructor: aTypedArrayConstructor,
  exportTypedArrayMethod: exportTypedArrayMethod,
  exportTypedArrayStaticMethod: exportTypedArrayStaticMethod,
  isView: isView,
  isTypedArray: isTypedArray,
  TypedArray: TypedArray,
  TypedArrayPrototype: TypedArrayPrototype
};


/***/ }),

/***/ 1318:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var toIndexedObject = __webpack_require__(5656);
var toAbsoluteIndex = __webpack_require__(1400);
var lengthOfArrayLike = __webpack_require__(6244);

// `Array.prototype.{ indexOf, includes }` methods implementation
var createMethod = function (IS_INCLUDES) {
  return function ($this, el, fromIndex) {
    var O = toIndexedObject($this);
    var length = lengthOfArrayLike(O);
    var index = toAbsoluteIndex(fromIndex, length);
    var value;
    // Array#includes uses SameValueZero equality algorithm
    // eslint-disable-next-line no-self-compare -- NaN check
    if (IS_INCLUDES && el != el) while (length > index) {
      value = O[index++];
      // eslint-disable-next-line no-self-compare -- NaN check
      if (value != value) return true;
    // Array#indexOf ignores holes, Array#includes - not
    } else for (;length > index; index++) {
      if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
    } return !IS_INCLUDES && -1;
  };
};

module.exports = {
  // `Array.prototype.includes` method
  // https://tc39.es/ecma262/#sec-array.prototype.includes
  includes: createMethod(true),
  // `Array.prototype.indexOf` method
  // https://tc39.es/ecma262/#sec-array.prototype.indexof
  indexOf: createMethod(false)
};


/***/ }),

/***/ 4326:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var uncurryThis = __webpack_require__(1702);

var toString = uncurryThis({}.toString);
var stringSlice = uncurryThis(''.slice);

module.exports = function (it) {
  return stringSlice(toString(it), 8, -1);
};


/***/ }),

/***/ 648:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var global = __webpack_require__(7854);
var TO_STRING_TAG_SUPPORT = __webpack_require__(1694);
var isCallable = __webpack_require__(614);
var classofRaw = __webpack_require__(4326);
var wellKnownSymbol = __webpack_require__(5112);

var TO_STRING_TAG = wellKnownSymbol('toStringTag');
var Object = global.Object;

// ES3 wrong here
var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';

// fallback for IE11 Script Access Denied error
var tryGet = function (it, key) {
  try {
    return it[key];
  } catch (error) { /* empty */ }
};

// getting tag from ES6+ `Object.prototype.toString`
module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
  var O, tag, result;
  return it === undefined ? 'Undefined' : it === null ? 'Null'
    // @@toStringTag case
    : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag
    // builtinTag case
    : CORRECT_ARGUMENTS ? classofRaw(O)
    // ES3 arguments fallback
    : (result = classofRaw(O)) == 'Object' && isCallable(O.callee) ? 'Arguments' : result;
};


/***/ }),

/***/ 7741:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var uncurryThis = __webpack_require__(1702);

var $Error = Error;
var replace = uncurryThis(''.replace);

var TEST = (function (arg) { return String($Error(arg).stack); })('zxcasd');
var V8_OR_CHAKRA_STACK_ENTRY = /\n\s*at [^:]*:[^\n]*/;
var IS_V8_OR_CHAKRA_STACK = V8_OR_CHAKRA_STACK_ENTRY.test(TEST);

module.exports = function (stack, dropEntries) {
  if (IS_V8_OR_CHAKRA_STACK && typeof stack == 'string' && !$Error.prepareStackTrace) {
    while (dropEntries--) stack = replace(stack, V8_OR_CHAKRA_STACK_ENTRY, '');
  } return stack;
};


/***/ }),

/***/ 9920:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var hasOwn = __webpack_require__(2597);
var ownKeys = __webpack_require__(3887);
var getOwnPropertyDescriptorModule = __webpack_require__(1236);
var definePropertyModule = __webpack_require__(3070);

module.exports = function (target, source, exceptions) {
  var keys = ownKeys(source);
  var defineProperty = definePropertyModule.f;
  var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
  for (var i = 0; i < keys.length; i++) {
    var key = keys[i];
    if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {
      defineProperty(target, key, getOwnPropertyDescriptor(source, key));
    }
  }
};


/***/ }),

/***/ 8544:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var fails = __webpack_require__(7293);

module.exports = !fails(function () {
  function F() { /* empty */ }
  F.prototype.constructor = null;
  // eslint-disable-next-line es-x/no-object-getprototypeof -- required for testing
  return Object.getPrototypeOf(new F()) !== F.prototype;
});


/***/ }),

/***/ 8880:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var DESCRIPTORS = __webpack_require__(9781);
var definePropertyModule = __webpack_require__(3070);
var createPropertyDescriptor = __webpack_require__(9114);

module.exports = DESCRIPTORS ? function (object, key, value) {
  return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));
} : function (object, key, value) {
  object[key] = value;
  return object;
};


/***/ }),

/***/ 9114:
/***/ (function(module) {

module.exports = function (bitmap, value) {
  return {
    enumerable: !(bitmap & 1),
    configurable: !(bitmap & 2),
    writable: !(bitmap & 4),
    value: value
  };
};


/***/ }),

/***/ 8052:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var isCallable = __webpack_require__(614);
var createNonEnumerableProperty = __webpack_require__(8880);
var makeBuiltIn = __webpack_require__(6339);
var defineGlobalProperty = __webpack_require__(3072);

module.exports = function (O, key, value, options) {
  if (!options) options = {};
  var simple = options.enumerable;
  var name = options.name !== undefined ? options.name : key;
  if (isCallable(value)) makeBuiltIn(value, name, options);
  if (options.global) {
    if (simple) O[key] = value;
    else defineGlobalProperty(key, value);
  } else {
    if (!options.unsafe) delete O[key];
    else if (O[key]) simple = true;
    if (simple) O[key] = value;
    else createNonEnumerableProperty(O, key, value);
  } return O;
};


/***/ }),

/***/ 3072:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var global = __webpack_require__(7854);

// eslint-disable-next-line es-x/no-object-defineproperty -- safe
var defineProperty = Object.defineProperty;

module.exports = function (key, value) {
  try {
    defineProperty(global, key, { value: value, configurable: true, writable: true });
  } catch (error) {
    global[key] = value;
  } return value;
};


/***/ }),

/***/ 9781:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var fails = __webpack_require__(7293);

// Detect IE8's incomplete defineProperty implementation
module.exports = !fails(function () {
  // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
  return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
});


/***/ }),

/***/ 317:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var global = __webpack_require__(7854);
var isObject = __webpack_require__(111);

var document = global.document;
// typeof document.createElement is 'object' in old IE
var EXISTS = isObject(document) && isObject(document.createElement);

module.exports = function (it) {
  return EXISTS ? document.createElement(it) : {};
};


/***/ }),

/***/ 3678:
/***/ (function(module) {

module.exports = {
  IndexSizeError: { s: 'INDEX_SIZE_ERR', c: 1, m: 1 },
  DOMStringSizeError: { s: 'DOMSTRING_SIZE_ERR', c: 2, m: 0 },
  HierarchyRequestError: { s: 'HIERARCHY_REQUEST_ERR', c: 3, m: 1 },
  WrongDocumentError: { s: 'WRONG_DOCUMENT_ERR', c: 4, m: 1 },
  InvalidCharacterError: { s: 'INVALID_CHARACTER_ERR', c: 5, m: 1 },
  NoDataAllowedError: { s: 'NO_DATA_ALLOWED_ERR', c: 6, m: 0 },
  NoModificationAllowedError: { s: 'NO_MODIFICATION_ALLOWED_ERR', c: 7, m: 1 },
  NotFoundError: { s: 'NOT_FOUND_ERR', c: 8, m: 1 },
  NotSupportedError: { s: 'NOT_SUPPORTED_ERR', c: 9, m: 1 },
  InUseAttributeError: { s: 'INUSE_ATTRIBUTE_ERR', c: 10, m: 1 },
  InvalidStateError: { s: 'INVALID_STATE_ERR', c: 11, m: 1 },
  SyntaxError: { s: 'SYNTAX_ERR', c: 12, m: 1 },
  InvalidModificationError: { s: 'INVALID_MODIFICATION_ERR', c: 13, m: 1 },
  NamespaceError: { s: 'NAMESPACE_ERR', c: 14, m: 1 },
  InvalidAccessError: { s: 'INVALID_ACCESS_ERR', c: 15, m: 1 },
  ValidationError: { s: 'VALIDATION_ERR', c: 16, m: 0 },
  TypeMismatchError: { s: 'TYPE_MISMATCH_ERR', c: 17, m: 1 },
  SecurityError: { s: 'SECURITY_ERR', c: 18, m: 1 },
  NetworkError: { s: 'NETWORK_ERR', c: 19, m: 1 },
  AbortError: { s: 'ABORT_ERR', c: 20, m: 1 },
  URLMismatchError: { s: 'URL_MISMATCH_ERR', c: 21, m: 1 },
  QuotaExceededError: { s: 'QUOTA_EXCEEDED_ERR', c: 22, m: 1 },
  TimeoutError: { s: 'TIMEOUT_ERR', c: 23, m: 1 },
  InvalidNodeTypeError: { s: 'INVALID_NODE_TYPE_ERR', c: 24, m: 1 },
  DataCloneError: { s: 'DATA_CLONE_ERR', c: 25, m: 1 }
};


/***/ }),

/***/ 8113:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var getBuiltIn = __webpack_require__(5005);

module.exports = getBuiltIn('navigator', 'userAgent') || '';


/***/ }),

/***/ 7392:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var global = __webpack_require__(7854);
var userAgent = __webpack_require__(8113);

var process = global.process;
var Deno = global.Deno;
var versions = process && process.versions || Deno && Deno.version;
var v8 = versions && versions.v8;
var match, version;

if (v8) {
  match = v8.split('.');
  // in old Chrome, versions of V8 isn't V8 = Chrome / 10
  // but their correct versions are not interesting for us
  version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
}

// BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
// so check `userAgent` even if `.v8` exists, but 0
if (!version && userAgent) {
  match = userAgent.match(/Edge\/(\d+)/);
  if (!match || match[1] >= 74) {
    match = userAgent.match(/Chrome\/(\d+)/);
    if (match) version = +match[1];
  }
}

module.exports = version;


/***/ }),

/***/ 748:
/***/ (function(module) {

// IE8- don't enum bug keys
module.exports = [
  'constructor',
  'hasOwnProperty',
  'isPrototypeOf',
  'propertyIsEnumerable',
  'toLocaleString',
  'toString',
  'valueOf'
];


/***/ }),

/***/ 2914:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var fails = __webpack_require__(7293);
var createPropertyDescriptor = __webpack_require__(9114);

module.exports = !fails(function () {
  var error = Error('a');
  if (!('stack' in error)) return true;
  // eslint-disable-next-line es-x/no-object-defineproperty -- safe
  Object.defineProperty(error, 'stack', createPropertyDescriptor(1, 7));
  return error.stack !== 7;
});


/***/ }),

/***/ 2109:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var global = __webpack_require__(7854);
var getOwnPropertyDescriptor = (__webpack_require__(1236).f);
var createNonEnumerableProperty = __webpack_require__(8880);
var defineBuiltIn = __webpack_require__(8052);
var defineGlobalProperty = __webpack_require__(3072);
var copyConstructorProperties = __webpack_require__(9920);
var isForced = __webpack_require__(4705);

/*
  options.target         - name of the target object
  options.global         - target is the global object
  options.stat           - export as static methods of target
  options.proto          - export as prototype methods of target
  options.real           - real prototype method for the `pure` version
  options.forced         - export even if the native feature is available
  options.bind           - bind methods to the target, required for the `pure` version
  options.wrap           - wrap constructors to preventing global pollution, required for the `pure` version
  options.unsafe         - use the simple assignment of property instead of delete + defineProperty
  options.sham           - add a flag to not completely full polyfills
  options.enumerable     - export as enumerable property
  options.dontCallGetSet - prevent calling a getter on target
  options.name           - the .name of the function if it does not match the key
*/
module.exports = function (options, source) {
  var TARGET = options.target;
  var GLOBAL = options.global;
  var STATIC = options.stat;
  var FORCED, target, key, targetProperty, sourceProperty, descriptor;
  if (GLOBAL) {
    target = global;
  } else if (STATIC) {
    target = global[TARGET] || defineGlobalProperty(TARGET, {});
  } else {
    target = (global[TARGET] || {}).prototype;
  }
  if (target) for (key in source) {
    sourceProperty = source[key];
    if (options.dontCallGetSet) {
      descriptor = getOwnPropertyDescriptor(target, key);
      targetProperty = descriptor && descriptor.value;
    } else targetProperty = target[key];
    FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
    // contained in target
    if (!FORCED && targetProperty !== undefined) {
      if (typeof sourceProperty == typeof targetProperty) continue;
      copyConstructorProperties(sourceProperty, targetProperty);
    }
    // add a flag to not completely full polyfills
    if (options.sham || (targetProperty && targetProperty.sham)) {
      createNonEnumerableProperty(sourceProperty, 'sham', true);
    }
    defineBuiltIn(target, key, sourceProperty, options);
  }
};


/***/ }),

/***/ 7293:
/***/ (function(module) {

module.exports = function (exec) {
  try {
    return !!exec();
  } catch (error) {
    return true;
  }
};


/***/ }),

/***/ 2104:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var NATIVE_BIND = __webpack_require__(4374);

var FunctionPrototype = Function.prototype;
var apply = FunctionPrototype.apply;
var call = FunctionPrototype.call;

// eslint-disable-next-line es-x/no-reflect -- safe
module.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () {
  return call.apply(apply, arguments);
});


/***/ }),

/***/ 4374:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var fails = __webpack_require__(7293);

module.exports = !fails(function () {
  // eslint-disable-next-line es-x/no-function-prototype-bind -- safe
  var test = (function () { /* empty */ }).bind();
  // eslint-disable-next-line no-prototype-builtins -- safe
  return typeof test != 'function' || test.hasOwnProperty('prototype');
});


/***/ }),

/***/ 6916:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var NATIVE_BIND = __webpack_require__(4374);

var call = Function.prototype.call;

module.exports = NATIVE_BIND ? call.bind(call) : function () {
  return call.apply(call, arguments);
};


/***/ }),

/***/ 6530:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var DESCRIPTORS = __webpack_require__(9781);
var hasOwn = __webpack_require__(2597);

var FunctionPrototype = Function.prototype;
// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;

var EXISTS = hasOwn(FunctionPrototype, 'name');
// additional protection from minified / mangled / dropped function names
var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));

module.exports = {
  EXISTS: EXISTS,
  PROPER: PROPER,
  CONFIGURABLE: CONFIGURABLE
};


/***/ }),

/***/ 1702:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var NATIVE_BIND = __webpack_require__(4374);

var FunctionPrototype = Function.prototype;
var bind = FunctionPrototype.bind;
var call = FunctionPrototype.call;
var uncurryThis = NATIVE_BIND && bind.bind(call, call);

module.exports = NATIVE_BIND ? function (fn) {
  return fn && uncurryThis(fn);
} : function (fn) {
  return fn && function () {
    return call.apply(fn, arguments);
  };
};


/***/ }),

/***/ 5005:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var global = __webpack_require__(7854);
var isCallable = __webpack_require__(614);

var aFunction = function (argument) {
  return isCallable(argument) ? argument : undefined;
};

module.exports = function (namespace, method) {
  return arguments.length < 2 ? aFunction(global[namespace]) : global[namespace] && global[namespace][method];
};


/***/ }),

/***/ 8173:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var aCallable = __webpack_require__(9662);

// `GetMethod` abstract operation
// https://tc39.es/ecma262/#sec-getmethod
module.exports = function (V, P) {
  var func = V[P];
  return func == null ? undefined : aCallable(func);
};


/***/ }),

/***/ 7854:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var check = function (it) {
  return it && it.Math == Math && it;
};

// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
module.exports =
  // eslint-disable-next-line es-x/no-global-this -- safe
  check(typeof globalThis == 'object' && globalThis) ||
  check(typeof window == 'object' && window) ||
  // eslint-disable-next-line no-restricted-globals -- safe
  check(typeof self == 'object' && self) ||
  check(typeof __webpack_require__.g == 'object' && __webpack_require__.g) ||
  // eslint-disable-next-line no-new-func -- fallback
  (function () { return this; })() || Function('return this')();


/***/ }),

/***/ 2597:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var uncurryThis = __webpack_require__(1702);
var toObject = __webpack_require__(7908);

var hasOwnProperty = uncurryThis({}.hasOwnProperty);

// `HasOwnProperty` abstract operation
// https://tc39.es/ecma262/#sec-hasownproperty
// eslint-disable-next-line es-x/no-object-hasown -- safe
module.exports = Object.hasOwn || function hasOwn(it, key) {
  return hasOwnProperty(toObject(it), key);
};


/***/ }),

/***/ 3501:
/***/ (function(module) {

module.exports = {};


/***/ }),

/***/ 490:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var getBuiltIn = __webpack_require__(5005);

module.exports = getBuiltIn('document', 'documentElement');


/***/ }),

/***/ 4664:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var DESCRIPTORS = __webpack_require__(9781);
var fails = __webpack_require__(7293);
var createElement = __webpack_require__(317);

// Thanks to IE8 for its funny defineProperty
module.exports = !DESCRIPTORS && !fails(function () {
  // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
  return Object.defineProperty(createElement('div'), 'a', {
    get: function () { return 7; }
  }).a != 7;
});


/***/ }),

/***/ 8361:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var global = __webpack_require__(7854);
var uncurryThis = __webpack_require__(1702);
var fails = __webpack_require__(7293);
var classof = __webpack_require__(4326);

var Object = global.Object;
var split = uncurryThis(''.split);

// fallback for non-array-like ES3 and non-enumerable old V8 strings
module.exports = fails(function () {
  // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
  // eslint-disable-next-line no-prototype-builtins -- safe
  return !Object('z').propertyIsEnumerable(0);
}) ? function (it) {
  return classof(it) == 'String' ? split(it, '') : Object(it);
} : Object;


/***/ }),

/***/ 9587:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var isCallable = __webpack_require__(614);
var isObject = __webpack_require__(111);
var setPrototypeOf = __webpack_require__(7674);

// makes subclassing work correct for wrapped built-ins
module.exports = function ($this, dummy, Wrapper) {
  var NewTarget, NewTargetPrototype;
  if (
    // it can work only with native `setPrototypeOf`
    setPrototypeOf &&
    // we haven't completely correct pre-ES6 way for getting `new.target`, so use this
    isCallable(NewTarget = dummy.constructor) &&
    NewTarget !== Wrapper &&
    isObject(NewTargetPrototype = NewTarget.prototype) &&
    NewTargetPrototype !== Wrapper.prototype
  ) setPrototypeOf($this, NewTargetPrototype);
  return $this;
};


/***/ }),

/***/ 2788:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var uncurryThis = __webpack_require__(1702);
var isCallable = __webpack_require__(614);
var store = __webpack_require__(5465);

var functionToString = uncurryThis(Function.toString);

// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
if (!isCallable(store.inspectSource)) {
  store.inspectSource = function (it) {
    return functionToString(it);
  };
}

module.exports = store.inspectSource;


/***/ }),

/***/ 8340:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var isObject = __webpack_require__(111);
var createNonEnumerableProperty = __webpack_require__(8880);

// `InstallErrorCause` abstract operation
// https://tc39.es/proposal-error-cause/#sec-errorobjects-install-error-cause
module.exports = function (O, options) {
  if (isObject(options) && 'cause' in options) {
    createNonEnumerableProperty(O, 'cause', options.cause);
  }
};


/***/ }),

/***/ 9909:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var NATIVE_WEAK_MAP = __webpack_require__(8536);
var global = __webpack_require__(7854);
var uncurryThis = __webpack_require__(1702);
var isObject = __webpack_require__(111);
var createNonEnumerableProperty = __webpack_require__(8880);
var hasOwn = __webpack_require__(2597);
var shared = __webpack_require__(5465);
var sharedKey = __webpack_require__(6200);
var hiddenKeys = __webpack_require__(3501);

var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
var TypeError = global.TypeError;
var WeakMap = global.WeakMap;
var set, get, has;

var enforce = function (it) {
  return has(it) ? get(it) : set(it, {});
};

var getterFor = function (TYPE) {
  return function (it) {
    var state;
    if (!isObject(it) || (state = get(it)).type !== TYPE) {
      throw TypeError('Incompatible receiver, ' + TYPE + ' required');
    } return state;
  };
};

if (NATIVE_WEAK_MAP || shared.state) {
  var store = shared.state || (shared.state = new WeakMap());
  var wmget = uncurryThis(store.get);
  var wmhas = uncurryThis(store.has);
  var wmset = uncurryThis(store.set);
  set = function (it, metadata) {
    if (wmhas(store, it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
    metadata.facade = it;
    wmset(store, it, metadata);
    return metadata;
  };
  get = function (it) {
    return wmget(store, it) || {};
  };
  has = function (it) {
    return wmhas(store, it);
  };
} else {
  var STATE = sharedKey('state');
  hiddenKeys[STATE] = true;
  set = function (it, metadata) {
    if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
    metadata.facade = it;
    createNonEnumerableProperty(it, STATE, metadata);
    return metadata;
  };
  get = function (it) {
    return hasOwn(it, STATE) ? it[STATE] : {};
  };
  has = function (it) {
    return hasOwn(it, STATE);
  };
}

module.exports = {
  set: set,
  get: get,
  has: has,
  enforce: enforce,
  getterFor: getterFor
};


/***/ }),

/***/ 614:
/***/ (function(module) {

// `IsCallable` abstract operation
// https://tc39.es/ecma262/#sec-iscallable
module.exports = function (argument) {
  return typeof argument == 'function';
};


/***/ }),

/***/ 4705:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var fails = __webpack_require__(7293);
var isCallable = __webpack_require__(614);

var replacement = /#|\.prototype\./;

var isForced = function (feature, detection) {
  var value = data[normalize(feature)];
  return value == POLYFILL ? true
    : value == NATIVE ? false
    : isCallable(detection) ? fails(detection)
    : !!detection;
};

var normalize = isForced.normalize = function (string) {
  return String(string).replace(replacement, '.').toLowerCase();
};

var data = isForced.data = {};
var NATIVE = isForced.NATIVE = 'N';
var POLYFILL = isForced.POLYFILL = 'P';

module.exports = isForced;


/***/ }),

/***/ 111:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var isCallable = __webpack_require__(614);

module.exports = function (it) {
  return typeof it == 'object' ? it !== null : isCallable(it);
};


/***/ }),

/***/ 1913:
/***/ (function(module) {

module.exports = false;


/***/ }),

/***/ 2190:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var global = __webpack_require__(7854);
var getBuiltIn = __webpack_require__(5005);
var isCallable = __webpack_require__(614);
var isPrototypeOf = __webpack_require__(7976);
var USE_SYMBOL_AS_UID = __webpack_require__(3307);

var Object = global.Object;

module.exports = USE_SYMBOL_AS_UID ? function (it) {
  return typeof it == 'symbol';
} : function (it) {
  var $Symbol = getBuiltIn('Symbol');
  return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, Object(it));
};


/***/ }),

/***/ 6244:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var toLength = __webpack_require__(7466);

// `LengthOfArrayLike` abstract operation
// https://tc39.es/ecma262/#sec-lengthofarraylike
module.exports = function (obj) {
  return toLength(obj.length);
};


/***/ }),

/***/ 6339:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var fails = __webpack_require__(7293);
var isCallable = __webpack_require__(614);
var hasOwn = __webpack_require__(2597);
var DESCRIPTORS = __webpack_require__(9781);
var CONFIGURABLE_FUNCTION_NAME = (__webpack_require__(6530).CONFIGURABLE);
var inspectSource = __webpack_require__(2788);
var InternalStateModule = __webpack_require__(9909);

var enforceInternalState = InternalStateModule.enforce;
var getInternalState = InternalStateModule.get;
// eslint-disable-next-line es-x/no-object-defineproperty -- safe
var defineProperty = Object.defineProperty;

var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () {
  return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
});

var TEMPLATE = String(String).split('String');

var makeBuiltIn = module.exports = function (value, name, options) {
  if (String(name).slice(0, 7) === 'Symbol(') {
    name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']';
  }
  if (options && options.getter) name = 'get ' + name;
  if (options && options.setter) name = 'set ' + name;
  if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
    defineProperty(value, 'name', { value: name, configurable: true });
  }
  if (CONFIGURABLE_LENGTH && options && hasOwn(options, 'arity') && value.length !== options.arity) {
    defineProperty(value, 'length', { value: options.arity });
  }
  try {
    if (options && hasOwn(options, 'constructor') && options.constructor) {
      if (DESCRIPTORS) defineProperty(value, 'prototype', { writable: false });
    // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
    } else if (value.prototype) value.prototype = undefined;
  } catch (error) { /* empty */ }
  var state = enforceInternalState(value);
  if (!hasOwn(state, 'source')) {
    state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
  } return value;
};

// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
// eslint-disable-next-line no-extend-native -- required
Function.prototype.toString = makeBuiltIn(function toString() {
  return isCallable(this) && getInternalState(this).source || inspectSource(this);
}, 'toString');


/***/ }),

/***/ 4758:
/***/ (function(module) {

var ceil = Math.ceil;
var floor = Math.floor;

// `Math.trunc` method
// https://tc39.es/ecma262/#sec-math.trunc
// eslint-disable-next-line es-x/no-math-trunc -- safe
module.exports = Math.trunc || function trunc(x) {
  var n = +x;
  return (n > 0 ? floor : ceil)(n);
};


/***/ }),

/***/ 133:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

/* eslint-disable es-x/no-symbol -- required for testing */
var V8_VERSION = __webpack_require__(7392);
var fails = __webpack_require__(7293);

// eslint-disable-next-line es-x/no-object-getownpropertysymbols -- required for testing
module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
  var symbol = Symbol();
  // Chrome 38 Symbol has incorrect toString conversion
  // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
  return !String(symbol) || !(Object(symbol) instanceof Symbol) ||
    // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
    !Symbol.sham && V8_VERSION && V8_VERSION < 41;
});


/***/ }),

/***/ 8536:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var global = __webpack_require__(7854);
var isCallable = __webpack_require__(614);
var inspectSource = __webpack_require__(2788);

var WeakMap = global.WeakMap;

module.exports = isCallable(WeakMap) && /native code/.test(inspectSource(WeakMap));


/***/ }),

/***/ 6277:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var toString = __webpack_require__(1340);

module.exports = function (argument, $default) {
  return argument === undefined ? arguments.length < 2 ? '' : $default : toString(argument);
};


/***/ }),

/***/ 30:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

/* global ActiveXObject -- old IE, WSH */
var anObject = __webpack_require__(9670);
var definePropertiesModule = __webpack_require__(6048);
var enumBugKeys = __webpack_require__(748);
var hiddenKeys = __webpack_require__(3501);
var html = __webpack_require__(490);
var documentCreateElement = __webpack_require__(317);
var sharedKey = __webpack_require__(6200);

var GT = '>';
var LT = '<';
var PROTOTYPE = 'prototype';
var SCRIPT = 'script';
var IE_PROTO = sharedKey('IE_PROTO');

var EmptyConstructor = function () { /* empty */ };

var scriptTag = function (content) {
  return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
};

// Create object with fake `null` prototype: use ActiveX Object with cleared prototype
var NullProtoObjectViaActiveX = function (activeXDocument) {
  activeXDocument.write(scriptTag(''));
  activeXDocument.close();
  var temp = activeXDocument.parentWindow.Object;
  activeXDocument = null; // avoid memory leak
  return temp;
};

// Create object with fake `null` prototype: use iframe Object with cleared prototype
var NullProtoObjectViaIFrame = function () {
  // Thrash, waste and sodomy: IE GC bug
  var iframe = documentCreateElement('iframe');
  var JS = 'java' + SCRIPT + ':';
  var iframeDocument;
  iframe.style.display = 'none';
  html.appendChild(iframe);
  // https://github.com/zloirock/core-js/issues/475
  iframe.src = String(JS);
  iframeDocument = iframe.contentWindow.document;
  iframeDocument.open();
  iframeDocument.write(scriptTag('document.F=Object'));
  iframeDocument.close();
  return iframeDocument.F;
};

// Check for document.domain and active x support
// No need to use active x approach when document.domain is not set
// see https://github.com/es-shims/es5-shim/issues/150
// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
// avoid IE GC bug
var activeXDocument;
var NullProtoObject = function () {
  try {
    activeXDocument = new ActiveXObject('htmlfile');
  } catch (error) { /* ignore */ }
  NullProtoObject = typeof document != 'undefined'
    ? document.domain && activeXDocument
      ? NullProtoObjectViaActiveX(activeXDocument) // old IE
      : NullProtoObjectViaIFrame()
    : NullProtoObjectViaActiveX(activeXDocument); // WSH
  var length = enumBugKeys.length;
  while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
  return NullProtoObject();
};

hiddenKeys[IE_PROTO] = true;

// `Object.create` method
// https://tc39.es/ecma262/#sec-object.create
// eslint-disable-next-line es-x/no-object-create -- safe
module.exports = Object.create || function create(O, Properties) {
  var result;
  if (O !== null) {
    EmptyConstructor[PROTOTYPE] = anObject(O);
    result = new EmptyConstructor();
    EmptyConstructor[PROTOTYPE] = null;
    // add "__proto__" for Object.getPrototypeOf polyfill
    result[IE_PROTO] = O;
  } else result = NullProtoObject();
  return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
};


/***/ }),

/***/ 6048:
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {

var DESCRIPTORS = __webpack_require__(9781);
var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(3353);
var definePropertyModule = __webpack_require__(3070);
var anObject = __webpack_require__(9670);
var toIndexedObject = __webpack_require__(5656);
var objectKeys = __webpack_require__(1956);

// `Object.defineProperties` method
// https://tc39.es/ecma262/#sec-object.defineproperties
// eslint-disable-next-line es-x/no-object-defineproperties -- safe
exports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
  anObject(O);
  var props = toIndexedObject(Properties);
  var keys = objectKeys(Properties);
  var length = keys.length;
  var index = 0;
  var key;
  while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
  return O;
};


/***/ }),

/***/ 3070:
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {

var global = __webpack_require__(7854);
var DESCRIPTORS = __webpack_require__(9781);
var IE8_DOM_DEFINE = __webpack_require__(4664);
var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(3353);
var anObject = __webpack_require__(9670);
var toPropertyKey = __webpack_require__(4948);

var TypeError = global.TypeError;
// eslint-disable-next-line es-x/no-object-defineproperty -- safe
var $defineProperty = Object.defineProperty;
// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
var ENUMERABLE = 'enumerable';
var CONFIGURABLE = 'configurable';
var WRITABLE = 'writable';

// `Object.defineProperty` method
// https://tc39.es/ecma262/#sec-object.defineproperty
exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
  anObject(O);
  P = toPropertyKey(P);
  anObject(Attributes);
  if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
    var current = $getOwnPropertyDescriptor(O, P);
    if (current && current[WRITABLE]) {
      O[P] = Attributes.value;
      Attributes = {
        configurable: CONFIGURABLE in Attributes ? Attributes[CONFIGURABLE] : current[CONFIGURABLE],
        enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
        writable: false
      };
    }
  } return $defineProperty(O, P, Attributes);
} : $defineProperty : function defineProperty(O, P, Attributes) {
  anObject(O);
  P = toPropertyKey(P);
  anObject(Attributes);
  if (IE8_DOM_DEFINE) try {
    return $defineProperty(O, P, Attributes);
  } catch (error) { /* empty */ }
  if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');
  if ('value' in Attributes) O[P] = Attributes.value;
  return O;
};


/***/ }),

/***/ 1236:
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {

var DESCRIPTORS = __webpack_require__(9781);
var call = __webpack_require__(6916);
var propertyIsEnumerableModule = __webpack_require__(5296);
var createPropertyDescriptor = __webpack_require__(9114);
var toIndexedObject = __webpack_require__(5656);
var toPropertyKey = __webpack_require__(4948);
var hasOwn = __webpack_require__(2597);
var IE8_DOM_DEFINE = __webpack_require__(4664);

// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;

// `Object.getOwnPropertyDescriptor` method
// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
  O = toIndexedObject(O);
  P = toPropertyKey(P);
  if (IE8_DOM_DEFINE) try {
    return $getOwnPropertyDescriptor(O, P);
  } catch (error) { /* empty */ }
  if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);
};


/***/ }),

/***/ 8006:
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {

var internalObjectKeys = __webpack_require__(6324);
var enumBugKeys = __webpack_require__(748);

var hiddenKeys = enumBugKeys.concat('length', 'prototype');

// `Object.getOwnPropertyNames` method
// https://tc39.es/ecma262/#sec-object.getownpropertynames
// eslint-disable-next-line es-x/no-object-getownpropertynames -- safe
exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
  return internalObjectKeys(O, hiddenKeys);
};


/***/ }),

/***/ 5181:
/***/ (function(__unused_webpack_module, exports) {

// eslint-disable-next-line es-x/no-object-getownpropertysymbols -- safe
exports.f = Object.getOwnPropertySymbols;


/***/ }),

/***/ 9518:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var global = __webpack_require__(7854);
var hasOwn = __webpack_require__(2597);
var isCallable = __webpack_require__(614);
var toObject = __webpack_require__(7908);
var sharedKey = __webpack_require__(6200);
var CORRECT_PROTOTYPE_GETTER = __webpack_require__(8544);

var IE_PROTO = sharedKey('IE_PROTO');
var Object = global.Object;
var ObjectPrototype = Object.prototype;

// `Object.getPrototypeOf` method
// https://tc39.es/ecma262/#sec-object.getprototypeof
module.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O) {
  var object = toObject(O);
  if (hasOwn(object, IE_PROTO)) return object[IE_PROTO];
  var constructor = object.constructor;
  if (isCallable(constructor) && object instanceof constructor) {
    return constructor.prototype;
  } return object instanceof Object ? ObjectPrototype : null;
};


/***/ }),

/***/ 7976:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var uncurryThis = __webpack_require__(1702);

module.exports = uncurryThis({}.isPrototypeOf);


/***/ }),

/***/ 6324:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var uncurryThis = __webpack_require__(1702);
var hasOwn = __webpack_require__(2597);
var toIndexedObject = __webpack_require__(5656);
var indexOf = (__webpack_require__(1318).indexOf);
var hiddenKeys = __webpack_require__(3501);

var push = uncurryThis([].push);

module.exports = function (object, names) {
  var O = toIndexedObject(object);
  var i = 0;
  var result = [];
  var key;
  for (key in O) !hasOwn(hiddenKeys, key) && hasOwn(O, key) && push(result, key);
  // Don't enum bug & hidden keys
  while (names.length > i) if (hasOwn(O, key = names[i++])) {
    ~indexOf(result, key) || push(result, key);
  }
  return result;
};


/***/ }),

/***/ 1956:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var internalObjectKeys = __webpack_require__(6324);
var enumBugKeys = __webpack_require__(748);

// `Object.keys` method
// https://tc39.es/ecma262/#sec-object.keys
// eslint-disable-next-line es-x/no-object-keys -- safe
module.exports = Object.keys || function keys(O) {
  return internalObjectKeys(O, enumBugKeys);
};


/***/ }),

/***/ 5296:
/***/ (function(__unused_webpack_module, exports) {

"use strict";

var $propertyIsEnumerable = {}.propertyIsEnumerable;
// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;

// Nashorn ~ JDK8 bug
var NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1);

// `Object.prototype.propertyIsEnumerable` method implementation
// https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
  var descriptor = getOwnPropertyDescriptor(this, V);
  return !!descriptor && descriptor.enumerable;
} : $propertyIsEnumerable;


/***/ }),

/***/ 7674:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

/* eslint-disable no-proto -- safe */
var uncurryThis = __webpack_require__(1702);
var anObject = __webpack_require__(9670);
var aPossiblePrototype = __webpack_require__(6077);

// `Object.setPrototypeOf` method
// https://tc39.es/ecma262/#sec-object.setprototypeof
// Works with __proto__ only. Old v8 can't work with null proto objects.
// eslint-disable-next-line es-x/no-object-setprototypeof -- safe
module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
  var CORRECT_SETTER = false;
  var test = {};
  var setter;
  try {
    // eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
    setter = uncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
    setter(test, []);
    CORRECT_SETTER = test instanceof Array;
  } catch (error) { /* empty */ }
  return function setPrototypeOf(O, proto) {
    anObject(O);
    aPossiblePrototype(proto);
    if (CORRECT_SETTER) setter(O, proto);
    else O.__proto__ = proto;
    return O;
  };
}() : undefined);


/***/ }),

/***/ 2140:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var global = __webpack_require__(7854);
var call = __webpack_require__(6916);
var isCallable = __webpack_require__(614);
var isObject = __webpack_require__(111);

var TypeError = global.TypeError;

// `OrdinaryToPrimitive` abstract operation
// https://tc39.es/ecma262/#sec-ordinarytoprimitive
module.exports = function (input, pref) {
  var fn, val;
  if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
  if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;
  if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
  throw TypeError("Can't convert object to primitive value");
};


/***/ }),

/***/ 3887:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var getBuiltIn = __webpack_require__(5005);
var uncurryThis = __webpack_require__(1702);
var getOwnPropertyNamesModule = __webpack_require__(8006);
var getOwnPropertySymbolsModule = __webpack_require__(5181);
var anObject = __webpack_require__(9670);

var concat = uncurryThis([].concat);

// all object keys, includes non-enumerable and symbols
module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
  var keys = getOwnPropertyNamesModule.f(anObject(it));
  var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
  return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
};


/***/ }),

/***/ 2626:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var defineProperty = (__webpack_require__(3070).f);

module.exports = function (Target, Source, key) {
  key in Target || defineProperty(Target, key, {
    configurable: true,
    get: function () { return Source[key]; },
    set: function (it) { Source[key] = it; }
  });
};


/***/ }),

/***/ 4488:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var global = __webpack_require__(7854);

var TypeError = global.TypeError;

// `RequireObjectCoercible` abstract operation
// https://tc39.es/ecma262/#sec-requireobjectcoercible
module.exports = function (it) {
  if (it == undefined) throw TypeError("Can't call method on " + it);
  return it;
};


/***/ }),

/***/ 6200:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var shared = __webpack_require__(2309);
var uid = __webpack_require__(9711);

var keys = shared('keys');

module.exports = function (key) {
  return keys[key] || (keys[key] = uid(key));
};


/***/ }),

/***/ 5465:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var global = __webpack_require__(7854);
var defineGlobalProperty = __webpack_require__(3072);

var SHARED = '__core-js_shared__';
var store = global[SHARED] || defineGlobalProperty(SHARED, {});

module.exports = store;


/***/ }),

/***/ 2309:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var IS_PURE = __webpack_require__(1913);
var store = __webpack_require__(5465);

(module.exports = function (key, value) {
  return store[key] || (store[key] = value !== undefined ? value : {});
})('versions', []).push({
  version: '3.22.7',
  mode: IS_PURE ? 'pure' : 'global',
  copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
  license: 'https://github.com/zloirock/core-js/blob/v3.22.7/LICENSE',
  source: 'https://github.com/zloirock/core-js'
});


/***/ }),

/***/ 1400:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var toIntegerOrInfinity = __webpack_require__(9303);

var max = Math.max;
var min = Math.min;

// Helper for a popular repeating case of the spec:
// Let integer be ? ToInteger(index).
// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
module.exports = function (index, length) {
  var integer = toIntegerOrInfinity(index);
  return integer < 0 ? max(integer + length, 0) : min(integer, length);
};


/***/ }),

/***/ 5656:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

// toObject with fallback for non-array-like ES3 strings
var IndexedObject = __webpack_require__(8361);
var requireObjectCoercible = __webpack_require__(4488);

module.exports = function (it) {
  return IndexedObject(requireObjectCoercible(it));
};


/***/ }),

/***/ 9303:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var trunc = __webpack_require__(4758);

// `ToIntegerOrInfinity` abstract operation
// https://tc39.es/ecma262/#sec-tointegerorinfinity
module.exports = function (argument) {
  var number = +argument;
  // eslint-disable-next-line no-self-compare -- NaN check
  return number !== number || number === 0 ? 0 : trunc(number);
};


/***/ }),

/***/ 7466:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var toIntegerOrInfinity = __webpack_require__(9303);

var min = Math.min;

// `ToLength` abstract operation
// https://tc39.es/ecma262/#sec-tolength
module.exports = function (argument) {
  return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
};


/***/ }),

/***/ 7908:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var global = __webpack_require__(7854);
var requireObjectCoercible = __webpack_require__(4488);

var Object = global.Object;

// `ToObject` abstract operation
// https://tc39.es/ecma262/#sec-toobject
module.exports = function (argument) {
  return Object(requireObjectCoercible(argument));
};


/***/ }),

/***/ 4590:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var global = __webpack_require__(7854);
var toPositiveInteger = __webpack_require__(3002);

var RangeError = global.RangeError;

module.exports = function (it, BYTES) {
  var offset = toPositiveInteger(it);
  if (offset % BYTES) throw RangeError('Wrong offset');
  return offset;
};


/***/ }),

/***/ 3002:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var global = __webpack_require__(7854);
var toIntegerOrInfinity = __webpack_require__(9303);

var RangeError = global.RangeError;

module.exports = function (it) {
  var result = toIntegerOrInfinity(it);
  if (result < 0) throw RangeError("The argument can't be less than 0");
  return result;
};


/***/ }),

/***/ 7593:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var global = __webpack_require__(7854);
var call = __webpack_require__(6916);
var isObject = __webpack_require__(111);
var isSymbol = __webpack_require__(2190);
var getMethod = __webpack_require__(8173);
var ordinaryToPrimitive = __webpack_require__(2140);
var wellKnownSymbol = __webpack_require__(5112);

var TypeError = global.TypeError;
var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');

// `ToPrimitive` abstract operation
// https://tc39.es/ecma262/#sec-toprimitive
module.exports = function (input, pref) {
  if (!isObject(input) || isSymbol(input)) return input;
  var exoticToPrim = getMethod(input, TO_PRIMITIVE);
  var result;
  if (exoticToPrim) {
    if (pref === undefined) pref = 'default';
    result = call(exoticToPrim, input, pref);
    if (!isObject(result) || isSymbol(result)) return result;
    throw TypeError("Can't convert object to primitive value");
  }
  if (pref === undefined) pref = 'number';
  return ordinaryToPrimitive(input, pref);
};


/***/ }),

/***/ 4948:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var toPrimitive = __webpack_require__(7593);
var isSymbol = __webpack_require__(2190);

// `ToPropertyKey` abstract operation
// https://tc39.es/ecma262/#sec-topropertykey
module.exports = function (argument) {
  var key = toPrimitive(argument, 'string');
  return isSymbol(key) ? key : key + '';
};


/***/ }),

/***/ 1694:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var wellKnownSymbol = __webpack_require__(5112);

var TO_STRING_TAG = wellKnownSymbol('toStringTag');
var test = {};

test[TO_STRING_TAG] = 'z';

module.exports = String(test) === '[object z]';


/***/ }),

/***/ 1340:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var global = __webpack_require__(7854);
var classof = __webpack_require__(648);

var String = global.String;

module.exports = function (argument) {
  if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
  return String(argument);
};


/***/ }),

/***/ 6330:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var global = __webpack_require__(7854);

var String = global.String;

module.exports = function (argument) {
  try {
    return String(argument);
  } catch (error) {
    return 'Object';
  }
};


/***/ }),

/***/ 9711:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var uncurryThis = __webpack_require__(1702);

var id = 0;
var postfix = Math.random();
var toString = uncurryThis(1.0.toString);

module.exports = function (key) {
  return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
};


/***/ }),

/***/ 3307:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

/* eslint-disable es-x/no-symbol -- required for testing */
var NATIVE_SYMBOL = __webpack_require__(133);

module.exports = NATIVE_SYMBOL
  && !Symbol.sham
  && typeof Symbol.iterator == 'symbol';


/***/ }),

/***/ 3353:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var DESCRIPTORS = __webpack_require__(9781);
var fails = __webpack_require__(7293);

// V8 ~ Chrome 36-
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
module.exports = DESCRIPTORS && fails(function () {
  // eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
  return Object.defineProperty(function () { /* empty */ }, 'prototype', {
    value: 42,
    writable: false
  }).prototype != 42;
});


/***/ }),

/***/ 5112:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

var global = __webpack_require__(7854);
var shared = __webpack_require__(2309);
var hasOwn = __webpack_require__(2597);
var uid = __webpack_require__(9711);
var NATIVE_SYMBOL = __webpack_require__(133);
var USE_SYMBOL_AS_UID = __webpack_require__(3307);

var WellKnownSymbolsStore = shared('wks');
var Symbol = global.Symbol;
var symbolFor = Symbol && Symbol['for'];
var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid;

module.exports = function (name) {
  if (!hasOwn(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) {
    var description = 'Symbol.' + name;
    if (NATIVE_SYMBOL && hasOwn(Symbol, name)) {
      WellKnownSymbolsStore[name] = Symbol[name];
    } else if (USE_SYMBOL_AS_UID && symbolFor) {
      WellKnownSymbolsStore[name] = symbolFor(description);
    } else {
      WellKnownSymbolsStore[name] = createWellKnownSymbol(description);
    }
  } return WellKnownSymbolsStore[name];
};


/***/ }),

/***/ 9191:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

"use strict";

var getBuiltIn = __webpack_require__(5005);
var hasOwn = __webpack_require__(2597);
var createNonEnumerableProperty = __webpack_require__(8880);
var isPrototypeOf = __webpack_require__(7976);
var setPrototypeOf = __webpack_require__(7674);
var copyConstructorProperties = __webpack_require__(9920);
var proxyAccessor = __webpack_require__(2626);
var inheritIfRequired = __webpack_require__(9587);
var normalizeStringArgument = __webpack_require__(6277);
var installErrorCause = __webpack_require__(8340);
var clearErrorStack = __webpack_require__(7741);
var ERROR_STACK_INSTALLABLE = __webpack_require__(2914);
var DESCRIPTORS = __webpack_require__(9781);
var IS_PURE = __webpack_require__(1913);

module.exports = function (FULL_NAME, wrapper, FORCED, IS_AGGREGATE_ERROR) {
  var STACK_TRACE_LIMIT = 'stackTraceLimit';
  var OPTIONS_POSITION = IS_AGGREGATE_ERROR ? 2 : 1;
  var path = FULL_NAME.split('.');
  var ERROR_NAME = path[path.length - 1];
  var OriginalError = getBuiltIn.apply(null, path);

  if (!OriginalError) return;

  var OriginalErrorPrototype = OriginalError.prototype;

  // V8 9.3- bug https://bugs.chromium.org/p/v8/issues/detail?id=12006
  if (!IS_PURE && hasOwn(OriginalErrorPrototype, 'cause')) delete OriginalErrorPrototype.cause;

  if (!FORCED) return OriginalError;

  var BaseError = getBuiltIn('Error');

  var WrappedError = wrapper(function (a, b) {
    var message = normalizeStringArgument(IS_AGGREGATE_ERROR ? b : a, undefined);
    var result = IS_AGGREGATE_ERROR ? new OriginalError(a) : new OriginalError();
    if (message !== undefined) createNonEnumerableProperty(result, 'message', message);
    if (ERROR_STACK_INSTALLABLE) createNonEnumerableProperty(result, 'stack', clearErrorStack(result.stack, 2));
    if (this && isPrototypeOf(OriginalErrorPrototype, this)) inheritIfRequired(result, this, WrappedError);
    if (arguments.length > OPTIONS_POSITION) installErrorCause(result, arguments[OPTIONS_POSITION]);
    return result;
  });

  WrappedError.prototype = OriginalErrorPrototype;

  if (ERROR_NAME !== 'Error') {
    if (setPrototypeOf) setPrototypeOf(WrappedError, BaseError);
    else copyConstructorProperties(WrappedError, BaseError, { name: true });
  } else if (DESCRIPTORS && STACK_TRACE_LIMIT in OriginalError) {
    proxyAccessor(WrappedError, OriginalError, STACK_TRACE_LIMIT);
    proxyAccessor(WrappedError, OriginalError, 'prepareStackTrace');
  }

  copyConstructorProperties(WrappedError, OriginalError);

  if (!IS_PURE) try {
    // Safari 13- bug: WebAssembly errors does not have a proper `.name`
    if (OriginalErrorPrototype.name !== ERROR_NAME) {
      createNonEnumerableProperty(OriginalErrorPrototype, 'name', ERROR_NAME);
    }
    OriginalErrorPrototype.constructor = WrappedError;
  } catch (error) { /* empty */ }

  return WrappedError;
};


/***/ }),

/***/ 6699:
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {

"use strict";

var $ = __webpack_require__(2109);
var $includes = (__webpack_require__(1318).includes);
var fails = __webpack_require__(7293);
var addToUnscopables = __webpack_require__(1223);

// FF99+ bug
var BROKEN_ON_SPARSE = fails(function () {
  return !Array(1).includes();
});

// `Array.prototype.includes` method
// https://tc39.es/ecma262/#sec-array.prototype.includes
$({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {
  includes: function includes(el /* , fromIndex = 0 */) {
    return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);
  }
});

// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
addToUnscopables('includes');


/***/ }),

/***/ 1703:
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {

/* eslint-disable no-unused-vars -- required for functions `.length` */
var $ = __webpack_require__(2109);
var global = __webpack_require__(7854);
var apply = __webpack_require__(2104);
var wrapErrorConstructorWithCause = __webpack_require__(9191);

var WEB_ASSEMBLY = 'WebAssembly';
var WebAssembly = global[WEB_ASSEMBLY];

var FORCED = Error('e', { cause: 7 }).cause !== 7;

var exportGlobalErrorCauseWrapper = function (ERROR_NAME, wrapper) {
  var O = {};
  O[ERROR_NAME] = wrapErrorConstructorWithCause(ERROR_NAME, wrapper, FORCED);
  $({ global: true, constructor: true, arity: 1, forced: FORCED }, O);
};

var exportWebAssemblyErrorCauseWrapper = function (ERROR_NAME, wrapper) {
  if (WebAssembly && WebAssembly[ERROR_NAME]) {
    var O = {};
    O[ERROR_NAME] = wrapErrorConstructorWithCause(WEB_ASSEMBLY + '.' + ERROR_NAME, wrapper, FORCED);
    $({ target: WEB_ASSEMBLY, stat: true, constructor: true, arity: 1, forced: FORCED }, O);
  }
};

// https://github.com/tc39/proposal-error-cause
exportGlobalErrorCauseWrapper('Error', function (init) {
  return function Error(message) { return apply(init, this, arguments); };
});
exportGlobalErrorCauseWrapper('EvalError', function (init) {
  return function EvalError(message) { return apply(init, this, arguments); };
});
exportGlobalErrorCauseWrapper('RangeError', function (init) {
  return function RangeError(message) { return apply(init, this, arguments); };
});
exportGlobalErrorCauseWrapper('ReferenceError', function (init) {
  return function ReferenceError(message) { return apply(init, this, arguments); };
});
exportGlobalErrorCauseWrapper('SyntaxError', function (init) {
  return function SyntaxError(message) { return apply(init, this, arguments); };
});
exportGlobalErrorCauseWrapper('TypeError', function (init) {
  return function TypeError(message) { return apply(init, this, arguments); };
});
exportGlobalErrorCauseWrapper('URIError', function (init) {
  return function URIError(message) { return apply(init, this, arguments); };
});
exportWebAssemblyErrorCauseWrapper('CompileError', function (init) {
  return function CompileError(message) { return apply(init, this, arguments); };
});
exportWebAssemblyErrorCauseWrapper('LinkError', function (init) {
  return function LinkError(message) { return apply(init, this, arguments); };
});
exportWebAssemblyErrorCauseWrapper('RuntimeError', function (init) {
  return function RuntimeError(message) { return apply(init, this, arguments); };
});


/***/ }),

/***/ 6314:
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {

var $ = __webpack_require__(2109);
var hasOwn = __webpack_require__(2597);

// `Object.hasOwn` method
// https://github.com/tc39/proposal-accessible-object-hasownproperty
$({ target: 'Object', stat: true }, {
  hasOwn: hasOwn
});


/***/ }),

/***/ 8675:
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {

"use strict";

var ArrayBufferViewCore = __webpack_require__(260);
var lengthOfArrayLike = __webpack_require__(6244);
var toIntegerOrInfinity = __webpack_require__(9303);

var aTypedArray = ArrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod;

// `%TypedArray%.prototype.at` method
// https://github.com/tc39/proposal-relative-indexing-method
exportTypedArrayMethod('at', function at(index) {
  var O = aTypedArray(this);
  var len = lengthOfArrayLike(O);
  var relativeIndex = toIntegerOrInfinity(index);
  var k = relativeIndex >= 0 ? relativeIndex : len + relativeIndex;
  return (k < 0 || k >= len) ? undefined : O[k];
});


/***/ }),

/***/ 3462:
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {

"use strict";

var global = __webpack_require__(7854);
var call = __webpack_require__(6916);
var ArrayBufferViewCore = __webpack_require__(260);
var lengthOfArrayLike = __webpack_require__(6244);
var toOffset = __webpack_require__(4590);
var toIndexedObject = __webpack_require__(7908);
var fails = __webpack_require__(7293);

var RangeError = global.RangeError;
var Int8Array = global.Int8Array;
var Int8ArrayPrototype = Int8Array && Int8Array.prototype;
var $set = Int8ArrayPrototype && Int8ArrayPrototype.set;
var aTypedArray = ArrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod;

var WORKS_WITH_OBJECTS_AND_GEERIC_ON_TYPED_ARRAYS = !fails(function () {
  // eslint-disable-next-line es-x/no-typed-arrays -- required for testing
  var array = new Uint8ClampedArray(2);
  call($set, array, { length: 1, 0: 3 }, 1);
  return array[1] !== 3;
});

// https://bugs.chromium.org/p/v8/issues/detail?id=11294 and other
var TO_OBJECT_BUG = WORKS_WITH_OBJECTS_AND_GEERIC_ON_TYPED_ARRAYS && ArrayBufferViewCore.NATIVE_ARRAY_BUFFER_VIEWS && fails(function () {
  var array = new Int8Array(2);
  array.set(1);
  array.set('2', 1);
  return array[0] !== 0 || array[1] !== 2;
});

// `%TypedArray%.prototype.set` method
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.set
exportTypedArrayMethod('set', function set(arrayLike /* , offset */) {
  aTypedArray(this);
  var offset = toOffset(arguments.length > 1 ? arguments[1] : undefined, 1);
  var src = toIndexedObject(arrayLike);
  if (WORKS_WITH_OBJECTS_AND_GEERIC_ON_TYPED_ARRAYS) return call($set, this, src, offset);
  var length = this.length;
  var len = lengthOfArrayLike(src);
  var index = 0;
  if (len + offset > length) throw RangeError('Wrong length');
  while (index < len) this[offset + index] = src[index++];
}, !WORKS_WITH_OBJECTS_AND_GEERIC_ON_TYPED_ARRAYS || TO_OBJECT_BUG);


/***/ }),

/***/ 2801:
/***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {

"use strict";

var $ = __webpack_require__(2109);
var getBuiltIn = __webpack_require__(5005);
var createPropertyDescriptor = __webpack_require__(9114);
var defineProperty = (__webpack_require__(3070).f);
var hasOwn = __webpack_require__(2597);
var anInstance = __webpack_require__(5787);
var inheritIfRequired = __webpack_require__(9587);
var normalizeStringArgument = __webpack_require__(6277);
var DOMExceptionConstants = __webpack_require__(3678);
var clearErrorStack = __webpack_require__(7741);
var IS_PURE = __webpack_require__(1913);

var DOM_EXCEPTION = 'DOMException';
var Error = getBuiltIn('Error');
var NativeDOMException = getBuiltIn(DOM_EXCEPTION);

var $DOMException = function DOMException() {
  anInstance(this, DOMExceptionPrototype);
  var argumentsLength = arguments.length;
  var message = normalizeStringArgument(argumentsLength < 1 ? undefined : arguments[0]);
  var name = normalizeStringArgument(argumentsLength < 2 ? undefined : arguments[1], 'Error');
  var that = new NativeDOMException(message, name);
  var error = Error(message);
  error.name = DOM_EXCEPTION;
  defineProperty(that, 'stack', createPropertyDescriptor(1, clearErrorStack(error.stack, 1)));
  inheritIfRequired(that, this, $DOMException);
  return that;
};

var DOMExceptionPrototype = $DOMException.prototype = NativeDOMException.prototype;

var ERROR_HAS_STACK = 'stack' in Error(DOM_EXCEPTION);
var DOM_EXCEPTION_HAS_STACK = 'stack' in new NativeDOMException(1, 2);
var FORCED_CONSTRUCTOR = ERROR_HAS_STACK && !DOM_EXCEPTION_HAS_STACK;

// `DOMException` constructor patch for `.stack` where it's required
// https://webidl.spec.whatwg.org/#es-DOMException-specialness
$({ global: true, constructor: true, forced: IS_PURE || FORCED_CONSTRUCTOR }, { // TODO: fix export logic
  DOMException: FORCED_CONSTRUCTOR ? $DOMException : NativeDOMException
});

var PolyfilledDOMException = getBuiltIn(DOM_EXCEPTION);
var PolyfilledDOMExceptionPrototype = PolyfilledDOMException.prototype;

if (PolyfilledDOMExceptionPrototype.constructor !== PolyfilledDOMException) {
  if (!IS_PURE) {
    defineProperty(PolyfilledDOMExceptionPrototype, 'constructor', createPropertyDescriptor(1, PolyfilledDOMException));
  }

  for (var key in DOMExceptionConstants) if (hasOwn(DOMExceptionConstants, key)) {
    var constant = DOMExceptionConstants[key];
    var constantName = constant.s;
    if (!hasOwn(PolyfilledDOMException, constantName)) {
      defineProperty(PolyfilledDOMException, constantName, createPropertyDescriptor(6, constant.c));
    }
  }
}


/***/ }),

/***/ 1918:
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {

__webpack_require__(6699);__webpack_require__(1703);__webpack_require__(2801);__webpack_require__(8675);__webpack_require__(3462);__webpack_require__(6314);!function(e,t){if(true)module.exports=t();else { var r, o; }}(self,function(){return function(){var e=[,function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),o(3),o(4),o(6),o(121),o(125),Array.prototype.includes||(Array.prototype.includes=function(e){return this.indexOf(e)>-1;}),"function"!=typeof Object.assign&&Object.defineProperty(Object,"assign",{value:function(e,t){if(null==e)throw new TypeError("Cannot convert undefined or null to object");for(var o=Object(e),r=1;arguments.length>r;r++){var n=arguments[r];if(null!=n)for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(o[i]=n[i]);}return o;},writable:!0,configurable:!0}),Array.prototype.find||(Array.prototype.find=function(e){return this.indexOf(e)>-1?e:void 0;}),String.prototype.endsWith||(String.prototype.endsWith=function(e){return this[this.length-1]===e;});},function(){"use strict";"document"in window.self&&((!("classList"in document.createElement("_"))||document.createElementNS&&!("classList"in document.createElementNS("http://www.w3.org/2000/svg","g")))&&function(e){if("Element"in e){var t="classList",o=e.Element.prototype,r=Object,n=String.prototype.trim||function(){return this.replace(/^\s+|\s+$/g,"");},i=Array.prototype.indexOf||function(e){for(var t=0,o=this.length;o>t;t++)if(t in this&&this[t]===e)return t;return-1;},a=function(e,t){this.name=e,this.code=DOMException[e],this.message=t;},s=function(e,t){if(""===t)throw new a("SYNTAX_ERR","An invalid or illegal string was specified");if(/\s/.test(t))throw new a("INVALID_CHARACTER_ERR","String contains an invalid character");return i.call(e,t);},l=function(e){for(var t=n.call(e.getAttribute("class")||""),o=t?t.split(/\s+/):[],r=0,i=o.length;i>r;r++)this.push(o[r]);this._updateClassName=function(){e.setAttribute("class",this.toString());};},c=l.prototype=[],u=function(){return new l(this);};if(a.prototype=Error.prototype,c.item=function(e){return this[e]||null;},c.contains=function(e){return-1!==s(this,e+="");},c.add=function(){var e,t=arguments,o=0,r=t.length,n=!1;do{-1===s(this,e=t[o]+"")&&(this.push(e),n=!0);}while(++o<r);n&&this._updateClassName();},c.remove=function(){var e,t,o=arguments,r=0,n=o.length,i=!1;do{for(t=s(this,e=o[r]+"");-1!==t;)this.splice(t,1),i=!0,t=s(this,e);}while(++r<n);i&&this._updateClassName();},c.toggle=function(e,t){var o=this.contains(e+=""),r=o?!0!==t&&"remove":!1!==t&&"add";return r&&this[r](e),!0===t||!1===t?t:!o;},c.toString=function(){return this.join(" ");},r.defineProperty){var d={get:u,enumerable:!0,configurable:!0};try{r.defineProperty(o,t,d);}catch(e){void 0!==e.number&&-2146823252!==e.number||(d.enumerable=!1,r.defineProperty(o,t,d));}}else r.prototype.__defineGetter__&&o.__defineGetter__(t,u);}}(window.self),function(){var e=document.createElement("_");if(e.classList.add("c1","c2"),!e.classList.contains("c2")){var t=function(e){var t=DOMTokenList.prototype[e];DOMTokenList.prototype[e]=function(e){var o,r=arguments.length;for(o=0;r>o;o++)t.call(this,e=arguments[o]);};};t("add"),t("remove");}if(e.classList.toggle("c3",!1),e.classList.contains("c3")){var o=DOMTokenList.prototype.toggle;DOMTokenList.prototype.toggle=function(e,t){return 1 in arguments&&!this.contains(e)==!t?t:o.call(this,e);};}e=null;}());},function(e,t,o){"use strict";e.exports=o(5).polyfill();},function(e,t,o){"use strict";e.exports=function(){function e(e){return"function"==typeof e;}var t=Array.isArray?Array.isArray:function(e){return"[object Array]"===Object.prototype.toString.call(e);},r=0,n=void 0,i=void 0,a=function(e,t){f[r]=e,f[r+1]=t,2===(r+=2)&&(i?i(h):b());},s="undefined"!=typeof window?window:void 0,l=s||{},c=l.MutationObserver||l.WebKitMutationObserver,u="undefined"==typeof self&&"undefined"!=typeof process&&"[object process]"==={}.toString.call(process),d="undefined"!=typeof Uint8ClampedArray&&"undefined"!=typeof importScripts&&"undefined"!=typeof MessageChannel;function p(){var e=setTimeout;return function(){return e(h,1);};}var f=new Array(1e3);function h(){for(var e=0;r>e;e+=2)(0,f[e])(f[e+1]),f[e]=void 0,f[e+1]=void 0;r=0;}var m,v,g,y,b=void 0;function _(e,t){var o=this,r=new this.constructor(C);void 0===r[S]&&A(r);var n=o._state;if(n){var i=arguments[n-1];a(function(){return z(n,r,i,o._result);});}else P(o,r,e,t);return r;}function w(e){if(e&&"object"==typeof e&&e.constructor===this)return e;var t=new this(C);return E(t,e),t;}b=u?function(){return process.nextTick(h);}:c?(v=0,g=new c(h),y=document.createTextNode(""),g.observe(y,{characterData:!0}),function(){y.data=v=++v%2;}):d?((m=new MessageChannel()).port1.onmessage=h,function(){return m.port2.postMessage(0);}):void 0===s?function(){try{var e=Function("return this")().require("vertx");return void 0!==(n=e.runOnLoop||e.runOnContext)?function(){n(h);}:p();}catch(e){return p();}}():p();var S=Math.random().toString(36).substring(2);function C(){}var k=void 0;function j(t,o,r){o.constructor===t.constructor&&r===_&&o.constructor.resolve===w?function(e,t){1===t._state?I(e,t._result):2===t._state?T(e,t._result):P(t,void 0,function(t){return E(e,t);},function(t){return T(e,t);});}(t,o):void 0===r?I(t,o):e(r)?function(e,t,o){a(function(e){var r=!1,n=function(o,n,i,a){try{o.call(n,function(o){r||(r=!0,t!==o?E(e,o):I(e,o));},function(t){r||(r=!0,T(e,t));});}catch(e){return e;}}(o,t);!r&&n&&(r=!0,T(e,n));},e);}(t,o,r):I(t,o);}function E(e,t){if(e===t)T(e,new TypeError("You cannot resolve a promise with itself"));else if(n=typeof(r=t),null===r||"object"!==n&&"function"!==n)I(e,t);else{var o=void 0;try{o=t.then;}catch(t){return void T(e,t);}j(e,t,o);}var r,n;}function x(e){e._onerror&&e._onerror(e._result),D(e);}function I(e,t){e._state===k&&(e._result=t,e._state=1,0!==e._subscribers.length&&a(D,e));}function T(e,t){e._state===k&&(e._state=2,e._result=t,a(x,e));}function P(e,t,o,r){var n=e._subscribers,i=n.length;e._onerror=null,n[i]=t,n[i+1]=o,n[i+2]=r,0===i&&e._state&&a(D,e);}function D(e){var t=e._subscribers,o=e._state;if(0!==t.length){for(var r=void 0,n=void 0,i=e._result,a=0;t.length>a;a+=3)n=t[a+o],(r=t[a])?z(o,r,n,i):n(i);e._subscribers.length=0;}}function z(t,o,r,n){var i=e(r),a=void 0,s=void 0,l=!0;if(i){try{a=r(n);}catch(e){l=!1,s=e;}if(o===a)return void T(o,new TypeError("A promises callback cannot return that same promise."));}else a=n;o._state!==k||(i&&l?E(o,a):!1===l?T(o,s):1===t?I(o,a):2===t&&T(o,a));}var M=0;function A(e){e[S]=M++,e._state=void 0,e._result=void 0,e._subscribers=[];}var O=function(){function e(e,o){this._instanceConstructor=e,this.promise=new e(C),this.promise[S]||A(this.promise),t(o)?(this.length=o.length,this._remaining=o.length,this._result=new Array(this.length),0===this.length?I(this.promise,this._result):(this.length=this.length||0,this._enumerate(o),0===this._remaining&&I(this.promise,this._result))):T(this.promise,new Error("Array Methods must be provided an Array"));}return e.prototype._enumerate=function(e){for(var t=0;this._state===k&&e.length>t;t++)this._eachEntry(e[t],t);},e.prototype._eachEntry=function(e,t){var o=this._instanceConstructor,r=o.resolve;if(r===w){var n=void 0,i=void 0,a=!1;try{n=e.then;}catch(e){a=!0,i=e;}if(n===_&&e._state!==k)this._settledAt(e._state,t,e._result);else if("function"!=typeof n)this._remaining--,this._result[t]=e;else if(o===L){var s=new o(C);a?T(s,i):j(s,e,n),this._willSettleAt(s,t);}else this._willSettleAt(new o(function(t){return t(e);}),t);}else this._willSettleAt(r(e),t);},e.prototype._settledAt=function(e,t,o){var r=this.promise;r._state===k&&(this._remaining--,2===e?T(r,o):this._result[t]=o),0===this._remaining&&I(r,this._result);},e.prototype._willSettleAt=function(e,t){var o=this;P(e,void 0,function(e){return o._settledAt(1,t,e);},function(e){return o._settledAt(2,t,e);});},e;}(),L=function(){function t(e){this[S]=M++,this._result=this._state=void 0,this._subscribers=[],C!==e&&("function"!=typeof e&&function(){throw new TypeError("You must pass a resolver function as the first argument to the promise constructor");}(),this instanceof t?function(e,t){try{t(function(t){E(e,t);},function(t){T(e,t);});}catch(t){T(e,t);}}(this,e):function(){throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.");}());}return t.prototype.catch=function(e){return this.then(null,e);},t.prototype.finally=function(t){var o=this,r=o.constructor;return e(t)?o.then(function(e){return r.resolve(t()).then(function(){return e;});},function(e){return r.resolve(t()).then(function(){throw e;});}):o.then(t,t);},t;}();return L.prototype.then=_,L.all=function(e){return new O(this,e).promise;},L.race=function(e){var o=this;return t(e)?new o(function(t,r){for(var n=e.length,i=0;n>i;i++)o.resolve(e[i]).then(t,r);}):new o(function(e,t){return t(new TypeError("You must pass an array to race."));});},L.resolve=w,L.reject=function(e){var t=new this(C);return T(t,e),t;},L._setScheduler=function(e){i=e;},L._setAsap=function(e){a=e;},L._asap=a,L.polyfill=function(){var e=void 0;if(void 0!==o.g)e=o.g;else if("undefined"!=typeof self)e=self;else try{e=Function("return this")();}catch(e){throw new Error("polyfill failed because global object is unavailable in this environment");}var t=e.Promise;if(t){var r=null;try{r=Object.prototype.toString.call(t.resolve());}catch(e){}if("[object Promise]"===r&&!t.cast)return;}e.Promise=L;},L.Promise=L,L;}();},function(e,t,o){"use strict";o(7),o(79),o(81),o(104),o(105),o(106),o(107),o(108),o(109),o(110),o(111),o(112),o(113),o(114),o(115),o(116),o(117),o(118),o(119),o(120);var r=o(92);e.exports=r.Symbol;},function(e,t,o){"use strict";var r=o(8),n=o(9),i=o(12),a=o(71),s=o(24),l=o(43),c=o(66),u=o(72),d=o(73),p=o(78),f=o(37),h=o(31),m=f("isConcatSpreadable"),v=9007199254740991,g="Maximum allowed index exceeded",y=n.TypeError,b=h>=51||!i(function(){var e=[];return e[m]=!1,e.concat()[0]!==e;}),_=p("concat"),w=function(e){if(!s(e))return!1;var t=e[m];return void 0!==t?!!t:a(e);};r({target:"Array",proto:!0,arity:1,forced:!b||!_},{concat:function(e){var t,o,r,n,i,a=l(this),s=d(a,0),p=0;for(t=-1,r=arguments.length;r>t;t++)if(w(i=-1===t?a:arguments[t])){if(p+(n=c(i))>v)throw y(g);for(o=0;n>o;o++,p++)o in i&&u(s,p,i[o]);}else{if(p>=v)throw y(g);u(s,p++,i);}return s.length=p,s;}});},function(e,t,o){"use strict";var r=o(9),n=o(10).f,i=o(47),a=o(51),s=o(41),l=o(59),c=o(70);e.exports=function(e,t){var o,u,d,p,f,h=e.target,m=e.global,v=e.stat;if(o=m?r:v?r[h]||s(h,{}):(r[h]||{}).prototype)for(u in t){if(p=t[u],d=e.noTargetGet?(f=n(o,u))&&f.value:o[u],!c(m?u:h+(v?".":"#")+u,e.forced)&&void 0!==d){if(typeof p==typeof d)continue;l(p,d);}(e.sham||d&&d.sham)&&i(p,"sham",!0),a(o,u,p,e);}};},function(e,t,o){"use strict";var r=function(e){return e&&e.Math==Math&&e;};e.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof o.g&&o.g)||function(){return this;}()||Function("return this")();},function(e,t,o){"use strict";var r=o(11),n=o(13),i=o(15),a=o(16),s=o(17),l=o(22),c=o(42),u=o(45),d=Object.getOwnPropertyDescriptor;t.f=r?d:function(e,t){if(e=s(e),t=l(t),u)try{return d(e,t);}catch(e){}if(c(e,t))return a(!n(i.f,e,t),e[t]);};},function(e,t,o){"use strict";var r=o(12);e.exports=!r(function(){return 7!=Object.defineProperty({},1,{get:function(){return 7;}})[1];});},function(e){"use strict";e.exports=function(e){try{return!!e();}catch(e){return!0;}};},function(e,t,o){"use strict";var r=o(14),n=Function.prototype.call;e.exports=r?n.bind(n):function(){return n.apply(n,arguments);};},function(e,t,o){"use strict";var r=o(12);e.exports=!r(function(){var e=function(){}.bind();return"function"!=typeof e||e.hasOwnProperty("prototype");});},function(e,t){"use strict";var o={}.propertyIsEnumerable,r=Object.getOwnPropertyDescriptor,n=r&&!o.call({1:2},1);t.f=n?function(e){var t=r(this,e);return!!t&&t.enumerable;}:o;},function(e){"use strict";e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t};};},function(e,t,o){"use strict";var r=o(18),n=o(21);e.exports=function(e){return r(n(e));};},function(e,t,o){"use strict";var r=o(9),n=o(19),i=o(12),a=o(20),s=r.Object,l=n("".split);e.exports=i(function(){return!s("z").propertyIsEnumerable(0);})?function(e){return"String"==a(e)?l(e,""):s(e);}:s;},function(e,t,o){"use strict";var r=o(14),n=Function.prototype,i=n.call,a=r&&n.bind.bind(i,i);e.exports=r?function(e){return e&&a(e);}:function(e){return e&&function(){return i.apply(e,arguments);};};},function(e,t,o){"use strict";var r=o(19),n=r({}.toString),i=r("".slice);e.exports=function(e){return i(n(e),8,-1);};},function(e,t,o){"use strict";var r=o(9).TypeError;e.exports=function(e){if(null==e)throw r("Can't call method on "+e);return e;};},function(e,t,o){"use strict";var r=o(23),n=o(26);e.exports=function(e){var t=r(e,"string");return n(t)?t:t+"";};},function(e,t,o){"use strict";var r=o(9),n=o(13),i=o(24),a=o(26),s=o(33),l=o(36),c=o(37),u=r.TypeError,d=c("toPrimitive");e.exports=function(e,t){if(!i(e)||a(e))return e;var o,r=s(e,d);if(r){if(void 0===t&&(t="default"),o=n(r,e,t),!i(o)||a(o))return o;throw u("Can't convert object to primitive value");}return void 0===t&&(t="number"),l(e,t);};},function(e,t,o){"use strict";var r=o(25);e.exports=function(e){return"object"==typeof e?null!==e:r(e);};},function(e){"use strict";e.exports=function(e){return"function"==typeof e;};},function(e,t,o){"use strict";var r=o(9),n=o(27),i=o(25),a=o(28),s=o(29),l=r.Object;e.exports=s?function(e){return"symbol"==typeof e;}:function(e){var t=n("Symbol");return i(t)&&a(t.prototype,l(e));};},function(e,t,o){"use strict";var r=o(9),n=o(25),i=function(e){return n(e)?e:void 0;};e.exports=function(e,t){return 2>arguments.length?i(r[e]):r[e]&&r[e][t];};},function(e,t,o){"use strict";var r=o(19);e.exports=r({}.isPrototypeOf);},function(e,t,o){"use strict";var r=o(30);e.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator;},function(e,t,o){"use strict";var r=o(31),n=o(12);e.exports=!!Object.getOwnPropertySymbols&&!n(function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&r&&41>r;});},function(e,t,o){"use strict";var r,n,i=o(9),a=o(32),s=i.process,l=i.Deno,c=s&&s.versions||l&&l.version,u=c&&c.v8;u&&(n=(r=u.split("."))[0]>0&&4>r[0]?1:+(r[0]+r[1])),!n&&a&&((r=a.match(/Edge\/(\d+)/))&&74>r[1]||(r=a.match(/Chrome\/(\d+)/))&&(n=+r[1])),e.exports=n;},function(e,t,o){"use strict";var r=o(27);e.exports=r("navigator","userAgent")||"";},function(e,t,o){"use strict";var r=o(34);e.exports=function(e,t){var o=e[t];return null==o?void 0:r(o);};},function(e,t,o){"use strict";var r=o(9),n=o(25),i=o(35),a=r.TypeError;e.exports=function(e){if(n(e))return e;throw a(i(e)+" is not a function");};},function(e,t,o){"use strict";var r=o(9).String;e.exports=function(e){try{return r(e);}catch(e){return"Object";}};},function(e,t,o){"use strict";var r=o(9),n=o(13),i=o(25),a=o(24),s=r.TypeError;e.exports=function(e,t){var o,r;if("string"===t&&i(o=e.toString)&&!a(r=n(o,e)))return r;if(i(o=e.valueOf)&&!a(r=n(o,e)))return r;if("string"!==t&&i(o=e.toString)&&!a(r=n(o,e)))return r;throw s("Can't convert object to primitive value");};},function(e,t,o){"use strict";var r=o(9),n=o(38),i=o(42),a=o(44),s=o(30),l=o(29),c=n("wks"),u=r.Symbol,d=u&&u.for,p=l?u:u&&u.withoutSetter||a;e.exports=function(e){if(!i(c,e)||!s&&"string"!=typeof c[e]){var t="Symbol."+e;c[e]=s&&i(u,e)?u[e]:l&&d?d(t):p(t);}return c[e];};},function(e,t,o){"use strict";var r=o(39),n=o(40);(e.exports=function(e,t){return n[e]||(n[e]=void 0!==t?t:{});})("versions",[]).push({version:"3.22.4",mode:r?"pure":"global",copyright:"© 2014-2022 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.22.4/LICENSE",source:"https://github.com/zloirock/core-js"});},function(e){"use strict";e.exports=!1;},function(e,t,o){"use strict";var r=o(9),n=o(41),i="__core-js_shared__",a=r[i]||n(i,{});e.exports=a;},function(e,t,o){"use strict";var r=o(9),n=Object.defineProperty;e.exports=function(e,t){try{n(r,e,{value:t,configurable:!0,writable:!0});}catch(o){r[e]=t;}return t;};},function(e,t,o){"use strict";var r=o(19),n=o(43),i=r({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,t){return i(n(e),t);};},function(e,t,o){"use strict";var r=o(9),n=o(21),i=r.Object;e.exports=function(e){return i(n(e));};},function(e,t,o){"use strict";var r=o(19),n=0,i=Math.random(),a=r(1..toString);e.exports=function(e){return"Symbol("+(void 0===e?"":e)+")_"+a(++n+i,36);};},function(e,t,o){"use strict";var r=o(11),n=o(12),i=o(46);e.exports=!r&&!n(function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7;}}).a;});},function(e,t,o){"use strict";var r=o(9),n=o(24),i=r.document,a=n(i)&&n(i.createElement);e.exports=function(e){return a?i.createElement(e):{};};},function(e,t,o){"use strict";var r=o(11),n=o(48),i=o(16);e.exports=r?function(e,t,o){return n.f(e,t,i(1,o));}:function(e,t,o){return e[t]=o,e;};},function(e,t,o){"use strict";var r=o(9),n=o(11),i=o(45),a=o(49),s=o(50),l=o(22),c=r.TypeError,u=Object.defineProperty,d=Object.getOwnPropertyDescriptor;t.f=n?a?function(e,t,o){if(s(e),t=l(t),s(o),"function"==typeof e&&"prototype"===t&&"value"in o&&"writable"in o&&!o.writable){var r=d(e,t);r&&r.writable&&(e[t]=o.value,o={configurable:"configurable"in o?o.configurable:r.configurable,enumerable:"enumerable"in o?o.enumerable:r.enumerable,writable:!1});}return u(e,t,o);}:u:function(e,t,o){if(s(e),t=l(t),s(o),i)try{return u(e,t,o);}catch(e){}if("get"in o||"set"in o)throw c("Accessors not supported");return"value"in o&&(e[t]=o.value),e;};},function(e,t,o){"use strict";var r=o(11),n=o(12);e.exports=r&&n(function(){return 42!=Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype;});},function(e,t,o){"use strict";var r=o(9),n=o(24),i=r.String,a=r.TypeError;e.exports=function(e){if(n(e))return e;throw a(i(e)+" is not an object");};},function(e,t,o){"use strict";var r=o(9),n=o(25),i=o(47),a=o(52),s=o(41);e.exports=function(e,t,o,l){var c=!!l&&!!l.unsafe,u=!!l&&!!l.enumerable,d=!!l&&!!l.noTargetGet,p=l&&void 0!==l.name?l.name:t;return n(o)&&a(o,p,l),e===r?(u?e[t]=o:s(t,o),e):(c?!d&&e[t]&&(u=!0):delete e[t],u?e[t]=o:i(e,t,o),e);};},function(e,t,o){"use strict";var r=o(12),n=o(25),i=o(42),a=o(48).f,s=o(53).CONFIGURABLE,l=o(54),c=o(55),u=c.enforce,d=c.get,p=!r(function(){return 8!==a(function(){},"length",{value:8}).length;}),f=String(String).split("String"),h=e.exports=function(e,t,o){"Symbol("===String(t).slice(0,7)&&(t="["+String(t).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),o&&o.getter&&(t="get "+t),o&&o.setter&&(t="set "+t),(!i(e,"name")||s&&e.name!==t)&&a(e,"name",{value:t,configurable:!0}),p&&o&&i(o,"arity")&&e.length!==o.arity&&a(e,"length",{value:o.arity});var r=u(e);return i(r,"source")||(r.source=f.join("string"==typeof t?t:"")),e;};Function.prototype.toString=h(function(){return n(this)&&d(this).source||l(this);},"toString");},function(e,t,o){"use strict";var r=o(11),n=o(42),i=Function.prototype,a=r&&Object.getOwnPropertyDescriptor,s=n(i,"name"),l=s&&"something"===function(){}.name,c=s&&(!r||r&&a(i,"name").configurable);e.exports={EXISTS:s,PROPER:l,CONFIGURABLE:c};},function(e,t,o){"use strict";var r=o(19),n=o(25),i=o(40),a=r(Function.toString);n(i.inspectSource)||(i.inspectSource=function(e){return a(e);}),e.exports=i.inspectSource;},function(e,t,o){"use strict";var r,n,i,a=o(56),s=o(9),l=o(19),c=o(24),u=o(47),d=o(42),p=o(40),f=o(57),h=o(58),m="Object already initialized",v=s.TypeError;if(a||p.state){var g=p.state||(p.state=new(0,s.WeakMap)()),y=l(g.get),b=l(g.has),_=l(g.set);r=function(e,t){if(b(g,e))throw new v(m);return t.facade=e,_(g,e,t),t;},n=function(e){return y(g,e)||{};},i=function(e){return b(g,e);};}else{var w=f("state");h[w]=!0,r=function(e,t){if(d(e,w))throw new v(m);return t.facade=e,u(e,w,t),t;},n=function(e){return d(e,w)?e[w]:{};},i=function(e){return d(e,w);};}e.exports={set:r,get:n,has:i,enforce:function(e){return i(e)?n(e):r(e,{});},getterFor:function(e){return function(t){var o;if(!c(t)||(o=n(t)).type!==e)throw v("Incompatible receiver, "+e+" required");return o;};}};},function(e,t,o){"use strict";var r=o(9),n=o(25),i=o(54),a=r.WeakMap;e.exports=n(a)&&/native code/.test(i(a));},function(e,t,o){"use strict";var r=o(38),n=o(44),i=r("keys");e.exports=function(e){return i[e]||(i[e]=n(e));};},function(e){"use strict";e.exports={};},function(e,t,o){"use strict";var r=o(42),n=o(60),i=o(10),a=o(48);e.exports=function(e,t,o){for(var s=n(t),l=a.f,c=i.f,u=0;s.length>u;u++){var d=s[u];r(e,d)||o&&r(o,d)||l(e,d,c(t,d));}};},function(e,t,o){"use strict";var r=o(27),n=o(19),i=o(61),a=o(69),s=o(50),l=n([].concat);e.exports=r("Reflect","ownKeys")||function(e){var t=i.f(s(e)),o=a.f;return o?l(t,o(e)):t;};},function(e,t,o){"use strict";var r=o(62),n=o(68).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return r(e,n);};},function(e,t,o){"use strict";var r=o(19),n=o(42),i=o(17),a=o(63).indexOf,s=o(58),l=r([].push);e.exports=function(e,t){var o,r=i(e),c=0,u=[];for(o in r)!n(s,o)&&n(r,o)&&l(u,o);for(;t.length>c;)n(r,o=t[c++])&&(~a(u,o)||l(u,o));return u;};},function(e,t,o){"use strict";var r=o(17),n=o(64),i=o(66),a=function(e){return function(t,o,a){var s,l=r(t),c=i(l),u=n(a,c);if(e&&o!=o){for(;c>u;)if((s=l[u++])!=s)return!0;}else for(;c>u;u++)if((e||u in l)&&l[u]===o)return e||u||0;return!e&&-1;};};e.exports={includes:a(!0),indexOf:a(!1)};},function(e,t,o){"use strict";var r=o(65),n=Math.max,i=Math.min;e.exports=function(e,t){var o=r(e);return 0>o?n(o+t,0):i(o,t);};},function(e){"use strict";var t=Math.ceil,o=Math.floor;e.exports=function(e){var r=+e;return r!=r||0===r?0:(r>0?o:t)(r);};},function(e,t,o){"use strict";var r=o(67);e.exports=function(e){return r(e.length);};},function(e,t,o){"use strict";var r=o(65),n=Math.min;e.exports=function(e){return e>0?n(r(e),9007199254740991):0;};},function(e){"use strict";e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"];},function(e,t){"use strict";t.f=Object.getOwnPropertySymbols;},function(e,t,o){"use strict";var r=o(12),n=o(25),i=/#|\.prototype\./,a=function(e,t){var o=l[s(e)];return o==u||o!=c&&(n(t)?r(t):!!t);},s=a.normalize=function(e){return String(e).replace(i,".").toLowerCase();},l=a.data={},c=a.NATIVE="N",u=a.POLYFILL="P";e.exports=a;},function(e,t,o){"use strict";var r=o(20);e.exports=Array.isArray||function(e){return"Array"==r(e);};},function(e,t,o){"use strict";var r=o(22),n=o(48),i=o(16);e.exports=function(e,t,o){var a=r(t);a in e?n.f(e,a,i(0,o)):e[a]=o;};},function(e,t,o){"use strict";var r=o(74);e.exports=function(e,t){return new(r(e))(0===t?0:t);};},function(e,t,o){"use strict";var r=o(9),n=o(71),i=o(75),a=o(24),s=o(37)("species"),l=r.Array;e.exports=function(e){var t;return n(e)&&(i(t=e.constructor)&&(t===l||n(t.prototype))||a(t)&&null===(t=t[s]))&&(t=void 0),void 0===t?l:t;};},function(e,t,o){"use strict";var r=o(19),n=o(12),i=o(25),a=o(76),s=o(27),l=o(54),c=function(){},u=[],d=s("Reflect","construct"),p=/^\s*(?:class|function)\b/,f=r(p.exec),h=!p.exec(c),m=function(e){if(!i(e))return!1;try{return d(c,u,e),!0;}catch(e){return!1;}},v=function(e){if(!i(e))return!1;switch(a(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1;}try{return h||!!f(p,l(e));}catch(e){return!0;}};v.sham=!0,e.exports=!d||n(function(){var e;return m(m.call)||!m(Object)||!m(function(){e=!0;})||e;})?v:m;},function(e,t,o){"use strict";var r=o(9),n=o(77),i=o(25),a=o(20),s=o(37)("toStringTag"),l=r.Object,c="Arguments"==a(function(){return arguments;}());e.exports=n?a:function(e){var t,o,r;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(o=function(e,t){try{return e[t];}catch(e){}}(t=l(e),s))?o:c?a(t):"Object"==(r=a(t))&&i(t.callee)?"Arguments":r;};},function(e,t,o){"use strict";var r={};r[o(37)("toStringTag")]="z",e.exports="[object z]"===String(r);},function(e,t,o){"use strict";var r=o(12),n=o(37),i=o(31),a=n("species");e.exports=function(e){return i>=51||!r(function(){var t=[];return(t.constructor={})[a]=function(){return{foo:1};},1!==t[e](Boolean).foo;});};},function(e,t,o){"use strict";var r=o(77),n=o(51),i=o(80);r||n(Object.prototype,"toString",i,{unsafe:!0});},function(e,t,o){"use strict";var r=o(77),n=o(76);e.exports=r?{}.toString:function(){return"[object "+n(this)+"]";};},function(e,t,o){"use strict";o(82),o(97),o(99),o(100),o(103);},function(e,t,o){"use strict";var r=o(8),n=o(9),i=o(13),a=o(19),s=o(39),l=o(11),c=o(30),u=o(12),d=o(42),p=o(28),f=o(50),h=o(17),m=o(22),v=o(83),g=o(16),y=o(84),b=o(86),_=o(61),w=o(88),S=o(69),C=o(10),k=o(48),j=o(85),E=o(15),x=o(51),I=o(38),T=o(57),P=o(58),D=o(44),z=o(37),M=o(90),A=o(91),O=o(93),L=o(94),N=o(55),B=o(95).forEach,R=T("hidden"),q="Symbol",F=N.set,H=N.getterFor(q),U=Object.prototype,V=n.Symbol,W=V&&V.prototype,Y=n.TypeError,K=n.QObject,G=C.f,J=k.f,X=w.f,$=E.f,Z=a([].push),Q=I("symbols"),ee=I("op-symbols"),te=I("wks"),oe=!K||!K.prototype||!K.prototype.findChild,re=l&&u(function(){return 7!=y(J({},"a",{get:function(){return J(this,"a",{value:7}).a;}})).a;})?function(e,t,o){var r=G(U,t);r&&delete U[t],J(e,t,o),r&&e!==U&&J(U,t,r);}:J,ne=function(e,t){var o=Q[e]=y(W);return F(o,{type:q,tag:e,description:t}),l||(o.description=t),o;},ie=function(e,t,o){e===U&&ie(ee,t,o),f(e);var r=m(t);return f(o),d(Q,r)?(o.enumerable?(d(e,R)&&e[R][r]&&(e[R][r]=!1),o=y(o,{enumerable:g(0,!1)})):(d(e,R)||J(e,R,g(1,{})),e[R][r]=!0),re(e,r,o)):J(e,r,o);},ae=function(e,t){f(e);var o=h(t),r=b(o).concat(ue(o));return B(r,function(t){l&&!i(se,o,t)||ie(e,t,o[t]);}),e;},se=function(e){var t=m(e),o=i($,this,t);return!(this===U&&d(Q,t)&&!d(ee,t))&&(!(o||!d(this,t)||!d(Q,t)||d(this,R)&&this[R][t])||o);},le=function(e,t){var o=h(e),r=m(t);if(o!==U||!d(Q,r)||d(ee,r)){var n=G(o,r);return!n||!d(Q,r)||d(o,R)&&o[R][r]||(n.enumerable=!0),n;}},ce=function(e){var t=X(h(e)),o=[];return B(t,function(e){d(Q,e)||d(P,e)||Z(o,e);}),o;},ue=function(e){var t=e===U,o=X(t?ee:h(e)),r=[];return B(o,function(e){!d(Q,e)||t&&!d(U,e)||Z(r,Q[e]);}),r;};c||(V=function(){if(p(W,this))throw Y("Symbol is not a constructor");var e=arguments.length&&void 0!==arguments[0]?v(arguments[0]):void 0,t=D(e),o=function(e){this===U&&i(o,ee,e),d(this,R)&&d(this[R],t)&&(this[R][t]=!1),re(this,t,g(1,e));};return l&&oe&&re(U,t,{configurable:!0,set:o}),ne(t,e);},x(W=V.prototype,"toString",function(){return H(this).tag;}),x(V,"withoutSetter",function(e){return ne(D(e),e);}),E.f=se,k.f=ie,j.f=ae,C.f=le,_.f=w.f=ce,S.f=ue,M.f=function(e){return ne(z(e),e);},l&&(J(W,"description",{configurable:!0,get:function(){return H(this).description;}}),s||x(U,"propertyIsEnumerable",se,{unsafe:!0}))),r({global:!0,wrap:!0,forced:!c,sham:!c},{Symbol:V}),B(b(te),function(e){A(e);}),r({target:q,stat:!0,forced:!c},{useSetter:function(){oe=!0;},useSimple:function(){oe=!1;}}),r({target:"Object",stat:!0,forced:!c,sham:!l},{create:function(e,t){return void 0===t?y(e):ae(y(e),t);},defineProperty:ie,defineProperties:ae,getOwnPropertyDescriptor:le}),r({target:"Object",stat:!0,forced:!c},{getOwnPropertyNames:ce}),O(),L(V,q),P[R]=!0;},function(e,t,o){"use strict";var r=o(9),n=o(76),i=r.String;e.exports=function(e){if("Symbol"===n(e))throw TypeError("Cannot convert a Symbol value to a string");return i(e);};},function(e,t,o){"use strict";var r,n=o(50),i=o(85),a=o(68),s=o(58),l=o(87),c=o(46),u=o(57)("IE_PROTO"),d=function(){},p=function(e){return"<script>"+e+"<\/script>";},f=function(e){e.write(p("")),e.close();var t=e.parentWindow.Object;return e=null,t;},h=function(){try{r=new ActiveXObject("htmlfile");}catch(e){}var e,t;h="undefined"!=typeof document?document.domain&&r?f(r):((t=c("iframe")).style.display="none",l.appendChild(t),t.src=String("javascript:"),(e=t.contentWindow.document).open(),e.write(p("document.F=Object")),e.close(),e.F):f(r);for(var o=a.length;o--;)delete h.prototype[a[o]];return h();};s[u]=!0,e.exports=Object.create||function(e,t){var o;return null!==e?(d.prototype=n(e),o=new d(),d.prototype=null,o[u]=e):o=h(),void 0===t?o:i.f(o,t);};},function(e,t,o){"use strict";var r=o(11),n=o(49),i=o(48),a=o(50),s=o(17),l=o(86);t.f=r&&!n?Object.defineProperties:function(e,t){a(e);for(var o,r=s(t),n=l(t),c=n.length,u=0;c>u;)i.f(e,o=n[u++],r[o]);return e;};},function(e,t,o){"use strict";var r=o(62),n=o(68);e.exports=Object.keys||function(e){return r(e,n);};},function(e,t,o){"use strict";var r=o(27);e.exports=r("document","documentElement");},function(e,t,o){"use strict";var r=o(20),n=o(17),i=o(61).f,a=o(89),s="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];e.exports.f=function(e){return s&&"Window"==r(e)?function(e){try{return i(e);}catch(e){return a(s);}}(e):i(n(e));};},function(e,t,o){"use strict";var r=o(9),n=o(64),i=o(66),a=o(72),s=r.Array,l=Math.max;e.exports=function(e,t,o){for(var r=i(e),c=n(t,r),u=n(void 0===o?r:o,r),d=s(l(u-c,0)),p=0;u>c;c++,p++)a(d,p,e[c]);return d.length=p,d;};},function(e,t,o){"use strict";var r=o(37);t.f=r;},function(e,t,o){"use strict";var r=o(92),n=o(42),i=o(90),a=o(48).f;e.exports=function(e){var t=r.Symbol||(r.Symbol={});n(t,e)||a(t,e,{value:i.f(e)});};},function(e,t,o){"use strict";var r=o(9);e.exports=r;},function(e,t,o){"use strict";var r=o(13),n=o(27),i=o(37),a=o(51);e.exports=function(){var e=n("Symbol"),t=e&&e.prototype,o=t&&t.valueOf,s=i("toPrimitive");t&&!t[s]&&a(t,s,function(e){return r(o,this);},{arity:1});};},function(e,t,o){"use strict";var r=o(48).f,n=o(42),i=o(37)("toStringTag");e.exports=function(e,t,o){e&&!o&&(e=e.prototype),e&&!n(e,i)&&r(e,i,{configurable:!0,value:t});};},function(e,t,o){"use strict";var r=o(96),n=o(19),i=o(18),a=o(43),s=o(66),l=o(73),c=n([].push),u=function(e){var t=1==e,o=2==e,n=3==e,u=4==e,d=6==e,p=7==e,f=5==e||d;return function(h,m,v,g){for(var y,b,_=a(h),w=i(_),S=r(m,v),C=s(w),k=0,j=g||l,E=t?j(h,C):o||p?j(h,0):void 0;C>k;k++)if((f||k in w)&&(b=S(y=w[k],k,_),e))if(t)E[k]=b;else if(b)switch(e){case 3:return!0;case 5:return y;case 6:return k;case 2:c(E,y);}else switch(e){case 4:return!1;case 7:c(E,y);}return d?-1:n||u?u:E;};};e.exports={forEach:u(0),map:u(1),filter:u(2),some:u(3),every:u(4),find:u(5),findIndex:u(6),filterReject:u(7)};},function(e,t,o){"use strict";var r=o(19),n=o(34),i=o(14),a=r(r.bind);e.exports=function(e,t){return n(e),void 0===t?e:i?a(e,t):function(){return e.apply(t,arguments);};};},function(e,t,o){"use strict";var r=o(8),n=o(27),i=o(42),a=o(83),s=o(38),l=o(98),c=s("string-to-symbol-registry"),u=s("symbol-to-string-registry");r({target:"Symbol",stat:!0,forced:!l},{for:function(e){var t=a(e);if(i(c,t))return c[t];var o=n("Symbol")(t);return c[t]=o,u[o]=t,o;}});},function(e,t,o){"use strict";var r=o(30);e.exports=r&&!!Symbol.for&&!!Symbol.keyFor;},function(e,t,o){"use strict";var r=o(8),n=o(42),i=o(26),a=o(35),s=o(38),l=o(98),c=s("symbol-to-string-registry");r({target:"Symbol",stat:!0,forced:!l},{keyFor:function(e){if(!i(e))throw TypeError(a(e)+" is not a symbol");if(n(c,e))return c[e];}});},function(e,t,o){"use strict";var r=o(8),n=o(27),i=o(101),a=o(13),s=o(19),l=o(12),c=o(71),u=o(25),d=o(24),p=o(26),f=o(102),h=o(30),m=n("JSON","stringify"),v=s(/./.exec),g=s("".charAt),y=s("".charCodeAt),b=s("".replace),_=s(1..toString),w=/[\uD800-\uDFFF]/g,S=/^[\uD800-\uDBFF]$/,C=/^[\uDC00-\uDFFF]$/,k=!h||l(function(){var e=n("Symbol")();return"[null]"!=m([e])||"{}"!=m({a:e})||"{}"!=m(Object(e));}),j=l(function(){return'"\\udf06\\ud834"'!==m("\udf06\ud834")||'"\\udead"'!==m("\udead");}),E=function(e,t){var o=f(arguments),r=t;if((d(t)||void 0!==e)&&!p(e))return c(t)||(t=function(e,t){if(u(r)&&(t=a(r,this,e,t)),!p(t))return t;}),o[1]=t,i(m,null,o);},x=function(e,t,o){var r=g(o,t-1),n=g(o,t+1);return v(S,e)&&!v(C,n)||v(C,e)&&!v(S,r)?"\\u"+_(y(e,0),16):e;};m&&r({target:"JSON",stat:!0,arity:3,forced:k||j},{stringify:function(e,t,o){var r=f(arguments),n=i(k?E:m,null,r);return j&&"string"==typeof n?b(n,w,x):n;}});},function(e,t,o){"use strict";var r=o(14),n=Function.prototype,i=n.apply,a=n.call;e.exports="object"==typeof Reflect&&Reflect.apply||(r?a.bind(i):function(){return a.apply(i,arguments);});},function(e,t,o){"use strict";var r=o(19);e.exports=r([].slice);},function(e,t,o){"use strict";var r=o(8),n=o(30),i=o(12),a=o(69),s=o(43);r({target:"Object",stat:!0,forced:!n||i(function(){a.f(1);})},{getOwnPropertySymbols:function(e){var t=a.f;return t?t(s(e)):[];}});},function(e,t,o){"use strict";o(91)("asyncIterator");},function(e,t,o){"use strict";var r=o(8),n=o(11),i=o(9),a=o(19),s=o(42),l=o(25),c=o(28),u=o(83),d=o(48).f,p=o(59),f=i.Symbol,h=f&&f.prototype;if(n&&l(f)&&(!("description"in h)||void 0!==f().description)){var m={},v=function(){var e=1>arguments.length||void 0===arguments[0]?void 0:u(arguments[0]),t=c(h,this)?new f(e):void 0===e?f():f(e);return""===e&&(m[t]=!0),t;};p(v,f),v.prototype=h,h.constructor=v;var g="Symbol(test)"==String(f("test")),y=a(h.toString),b=a(h.valueOf),_=/^Symbol\((.*)\)[^)]+$/,w=a("".replace),S=a("".slice);d(h,"description",{configurable:!0,get:function(){var e=b(this),t=y(e);if(s(m,e))return"";var o=g?S(t,7,-1):w(t,_,"$1");return""===o?void 0:o;}}),r({global:!0,forced:!0},{Symbol:v});}},function(e,t,o){"use strict";o(91)("hasInstance");},function(e,t,o){"use strict";o(91)("isConcatSpreadable");},function(e,t,o){"use strict";o(91)("iterator");},function(e,t,o){"use strict";o(91)("match");},function(e,t,o){"use strict";o(91)("matchAll");},function(e,t,o){"use strict";o(91)("replace");},function(e,t,o){"use strict";o(91)("search");},function(e,t,o){"use strict";o(91)("species");},function(e,t,o){"use strict";o(91)("split");},function(e,t,o){"use strict";var r=o(91),n=o(93);r("toPrimitive"),n();},function(e,t,o){"use strict";var r=o(27),n=o(91),i=o(94);n("toStringTag"),i(r("Symbol"),"Symbol");},function(e,t,o){"use strict";o(91)("unscopables");},function(e,t,o){"use strict";var r=o(9);o(94)(r.JSON,"JSON",!0);},function(e,t,o){"use strict";o(94)(Math,"Math",!0);},function(e,t,o){"use strict";var r=o(8),n=o(9),i=o(94);r({global:!0},{Reflect:{}}),i(n.Reflect,"Reflect",!0);},function(e,t,o){"use strict";o(122);var r=o(124);e.exports=r("Array","findIndex");},function(e,t,o){"use strict";var r=o(8),n=o(95).findIndex,i=o(123),a="findIndex",s=!0;a in[]&&Array(1).findIndex(function(){s=!1;}),r({target:"Array",proto:!0,forced:s},{findIndex:function(e){return n(this,e,arguments.length>1?arguments[1]:void 0);}}),i(a);},function(e,t,o){"use strict";var r=o(37),n=o(84),i=o(48),a=r("unscopables"),s=Array.prototype;null==s[a]&&i.f(s,a,{configurable:!0,value:n(null)}),e.exports=function(e){s[a][e]=!0;};},function(e,t,o){"use strict";var r=o(9),n=o(19);e.exports=function(e,t){return n(r[e].prototype[t]);};},function(e,t,o){"use strict";o(126),o(136);var r=o(92);e.exports=r.Array.from;},function(e,t,o){"use strict";var r=o(127).charAt,n=o(83),i=o(55),a=o(128),s="String Iterator",l=i.set,c=i.getterFor(s);a(String,"String",function(e){l(this,{type:s,string:n(e),index:0});},function(){var e,t=c(this),o=t.string,n=t.index;return o.length>n?(e=r(o,n),t.index+=e.length,{value:e,done:!1}):{value:void 0,done:!0};});},function(e,t,o){"use strict";var r=o(19),n=o(65),i=o(83),a=o(21),s=r("".charAt),l=r("".charCodeAt),c=r("".slice),u=function(e){return function(t,o){var r,u,d=i(a(t)),p=n(o),f=d.length;return 0>p||p>=f?e?"":void 0:55296>(r=l(d,p))||r>56319||p+1===f||56320>(u=l(d,p+1))||u>57343?e?s(d,p):r:e?c(d,p,p+2):u-56320+(r-55296<<10)+65536;};};e.exports={codeAt:u(!1),charAt:u(!0)};},function(e,t,o){"use strict";var r=o(8),n=o(13),i=o(39),a=o(53),s=o(25),l=o(129),c=o(131),u=o(134),d=o(94),p=o(47),f=o(51),h=o(37),m=o(133),v=o(130),g=a.PROPER,y=a.CONFIGURABLE,b=v.IteratorPrototype,_=v.BUGGY_SAFARI_ITERATORS,w=h("iterator"),S="keys",C="values",k="entries",j=function(){return this;};e.exports=function(e,t,o,a,h,v,E){l(o,t,a);var x,I,T,P=function(e){if(e===h&&O)return O;if(!_&&e in M)return M[e];switch(e){case S:case C:case k:return function(){return new o(this,e);};}return function(){return new o(this);};},D=t+" Iterator",z=!1,M=e.prototype,A=M[w]||M["@@iterator"]||h&&M[h],O=!_&&A||P(h),L="Array"==t&&M.entries||A;if(L&&(x=c(L.call(new e())))!==Object.prototype&&x.next&&(i||c(x)===b||(u?u(x,b):s(x[w])||f(x,w,j)),d(x,D,!0,!0),i&&(m[D]=j)),g&&h==C&&A&&A.name!==C&&(!i&&y?p(M,"name",C):(z=!0,O=function(){return n(A,this);})),h)if(I={values:P(C),keys:v?O:P(S),entries:P(k)},E)for(T in I)(_||z||!(T in M))&&f(M,T,I[T]);else r({target:t,proto:!0,forced:_||z},I);return i&&!E||M[w]===O||f(M,w,O,{name:h}),m[t]=O,I;};},function(e,t,o){"use strict";var r=o(130).IteratorPrototype,n=o(84),i=o(16),a=o(94),s=o(133),l=function(){return this;};e.exports=function(e,t,o,c){var u=t+" Iterator";return e.prototype=n(r,{next:i(+!c,o)}),a(e,u,!1,!0),s[u]=l,e;};},function(e,t,o){"use strict";var r,n,i,a=o(12),s=o(25),l=o(84),c=o(131),u=o(51),d=o(37),p=o(39),f=d("iterator"),h=!1;[].keys&&("next"in(i=[].keys())?(n=c(c(i)))!==Object.prototype&&(r=n):h=!0),null==r||a(function(){var e={};return r[f].call(e)!==e;})?r={}:p&&(r=l(r)),s(r[f])||u(r,f,function(){return this;}),e.exports={IteratorPrototype:r,BUGGY_SAFARI_ITERATORS:h};},function(e,t,o){"use strict";var r=o(9),n=o(42),i=o(25),a=o(43),s=o(57),l=o(132),c=s("IE_PROTO"),u=r.Object,d=u.prototype;e.exports=l?u.getPrototypeOf:function(e){var t=a(e);if(n(t,c))return t[c];var o=t.constructor;return i(o)&&t instanceof o?o.prototype:t instanceof u?d:null;};},function(e,t,o){"use strict";var r=o(12);e.exports=!r(function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e())!==e.prototype;});},function(e){"use strict";e.exports={};},function(e,t,o){"use strict";var r=o(19),n=o(50),i=o(135);e.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var e,t=!1,o={};try{(e=r(Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set))(o,[]),t=o instanceof Array;}catch(e){}return function(o,r){return n(o),i(r),t?e(o,r):o.__proto__=r,o;};}():void 0);},function(e,t,o){"use strict";var r=o(9),n=o(25),i=r.String,a=r.TypeError;e.exports=function(e){if("object"==typeof e||n(e))return e;throw a("Can't set "+i(e)+" as a prototype");};},function(e,t,o){"use strict";var r=o(8),n=o(137);r({target:"Array",stat:!0,forced:!o(143)(function(e){Array.from(e);})},{from:n});},function(e,t,o){"use strict";var r=o(9),n=o(96),i=o(13),a=o(43),s=o(138),l=o(140),c=o(75),u=o(66),d=o(72),p=o(141),f=o(142),h=r.Array;e.exports=function(e){var t=a(e),o=c(this),r=arguments.length,m=r>1?arguments[1]:void 0,v=void 0!==m;v&&(m=n(m,r>2?arguments[2]:void 0));var g,y,b,_,w,S,C=f(t),k=0;if(!C||this==h&&l(C))for(g=u(t),y=o?new this(g):h(g);g>k;k++)S=v?m(t[k],k):t[k],d(y,k,S);else for(w=(_=p(t,C)).next,y=o?new this():[];!(b=i(w,_)).done;k++)S=v?s(_,m,[b.value,k],!0):b.value,d(y,k,S);return y.length=k,y;};},function(e,t,o){"use strict";var r=o(50),n=o(139);e.exports=function(e,t,o,i){try{return i?t(r(o)[0],o[1]):t(o);}catch(t){n(e,"throw",t);}};},function(e,t,o){"use strict";var r=o(13),n=o(50),i=o(33);e.exports=function(e,t,o){var a,s;n(e);try{if(!(a=i(e,"return"))){if("throw"===t)throw o;return o;}a=r(a,e);}catch(e){s=!0,a=e;}if("throw"===t)throw o;if(s)throw a;return n(a),o;};},function(e,t,o){"use strict";var r=o(37),n=o(133),i=r("iterator"),a=Array.prototype;e.exports=function(e){return void 0!==e&&(n.Array===e||a[i]===e);};},function(e,t,o){"use strict";var r=o(9),n=o(13),i=o(34),a=o(50),s=o(35),l=o(142),c=r.TypeError;e.exports=function(e,t){var o=2>arguments.length?l(e):t;if(i(o))return a(n(o,e));throw c(s(e)+" is not iterable");};},function(e,t,o){"use strict";var r=o(76),n=o(33),i=o(133),a=o(37)("iterator");e.exports=function(e){if(null!=e)return n(e,a)||n(e,"@@iterator")||i[r(e)];};},function(e,t,o){"use strict";var r=o(37)("iterator"),n=!1;try{var i=0,a={next:function(){return{done:!!i++};},return:function(){n=!0;}};a[r]=function(){return this;},Array.from(a,function(){throw 2;});}catch(e){}e.exports=function(e,t){if(!t&&!n)return!1;var o=!1;try{var i={};i[r]=function(){return{next:function(){return{done:o=!0};}};},e(i);}catch(e){}return o;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Jodit=void 0;var r=o(145),n=o(146),i=o(147),a=o(148),s=o(185),l=o(328),c=o(325),u=o(147),d=o(237),p=o(231),f="data-jodit-default-style-display",h="data-jodit-default-classes",Jodit=function(e){function Jodit(t,o){var r=e.call(this,o,!0)||this;r.isJodit=!0,r.commands=new Map(),r.__selectionLocked=null,r.__wasReadOnly=!1,r.createInside=new a.Create(function(){return r.ed;},r.o.createAttributes),r.editorIsActive=!1,r.__mode=i.MODE_WYSIWYG,r.__callChangeCount=0,r.isSilentChange=!1,r.elementToPlace=new Map();try{var n=(0,s.resolveElement)(t,r.o.shadowRoot||r.od);if(Jodit.isJoditAssigned(n))return n.component;}catch(e){throw r.destruct(),e;}r.setStatus(a.STATUSES.beforeInit),r.id=(0,s.attr)((0,s.resolveElement)(t,r.o.shadowRoot||r.od),"id")||new Date().getTime().toString(),d.instances[r.id]=r,r.storage=l.Storage.makeStorage(!0,r.id),r.attachEvents(o),r.e.on(r.ow,"resize",function(){r.e&&r.e.fire("resize");}),r.e.on("prepareWYSIWYGEditor",r.prepareWYSIWYGEditor),r.selection=new a.Select(r);var c=r.beforeInitHook();return(0,s.callPromise)(c,function(){r.e.fire("beforeInit",r);var e=d.pluginSystem.init(r);(0,s.callPromise)(e,function(){r.e.fire("afterPluginSystemInit",r),r.e.on("changePlace",function(){r.setReadOnly(r.o.readonly),r.setDisabled(r.o.disabled);}),r.places.length=0;var e=r.addPlace(t,o);d.instances[r.id]=r,(0,s.callPromise)(e,function(){r.e&&r.e.fire("afterInit",r),r.afterInitHook(),r.setStatus(a.STATUSES.ready),r.e.fire("afterConstructor",r);});});}),r;}return r.__extends(Jodit,e),Jodit.prototype.className=function(){return"Jodit";},Jodit.prototype.waitForReady=function(){var e=this;return this.isReady?Promise.resolve(this):this.async.promise(function(t){e.hookStatus("ready",function(){return t(e);});});},Object.defineProperty(Jodit.prototype,"text",{get:function(){if(this.editor)return this.editor.innerText||"";var e=this.createInside.div();return e.innerHTML=this.getElementValue(),e.innerText||"";},enumerable:!1,configurable:!0}),Object.defineProperty(Jodit.prototype,"defaultTimeout",{get:function(){return(0,s.isNumber)(this.o.defaultTimeout)?this.o.defaultTimeout:n.Config.defaultOptions.defaultTimeout;},enumerable:!1,configurable:!0}),Jodit.atom=function(e){return(0,s.markAsAtomic)(e);},Jodit.make=function(e,t){return new Jodit(e,t);},Jodit.isJoditAssigned=function(e){return e&&(0,s.isJoditObject)(e.component)&&!e.component.isInDestruct;},Object.defineProperty(Jodit,"defaultOptions",{get:function(){return n.Config.defaultOptions;},enumerable:!1,configurable:!0}),Jodit.prototype.setPlaceField=function(e,t){this.currentPlace||(this.currentPlace={},this.places=[this.currentPlace]),this.currentPlace[e]=t;},Object.defineProperty(Jodit.prototype,"element",{get:function(){return this.currentPlace.element;},enumerable:!1,configurable:!0}),Object.defineProperty(Jodit.prototype,"editor",{get:function(){return this.currentPlace.editor;},set:function(e){this.setPlaceField("editor",e);},enumerable:!1,configurable:!0}),Object.defineProperty(Jodit.prototype,"container",{get:function(){return this.currentPlace.container;},set:function(e){this.setPlaceField("container",e);},enumerable:!1,configurable:!0}),Object.defineProperty(Jodit.prototype,"workplace",{get:function(){return this.currentPlace.workplace;},enumerable:!1,configurable:!0}),Object.defineProperty(Jodit.prototype,"statusbar",{get:function(){return this.currentPlace.statusbar;},enumerable:!1,configurable:!0}),Object.defineProperty(Jodit.prototype,"iframe",{get:function(){return this.currentPlace.iframe;},set:function(e){this.setPlaceField("iframe",e);},enumerable:!1,configurable:!0}),Object.defineProperty(Jodit.prototype,"history",{get:function(){return this.currentPlace.history;},enumerable:!1,configurable:!0}),Object.defineProperty(Jodit.prototype,"observer",{get:function(){return this.history;},enumerable:!1,configurable:!0}),Object.defineProperty(Jodit.prototype,"editorWindow",{get:function(){return this.currentPlace.editorWindow;},set:function(e){this.setPlaceField("editorWindow",e);},enumerable:!1,configurable:!0}),Object.defineProperty(Jodit.prototype,"ew",{get:function(){return this.editorWindow;},enumerable:!1,configurable:!0}),Object.defineProperty(Jodit.prototype,"editorDocument",{get:function(){return this.currentPlace.editorWindow.document;},enumerable:!1,configurable:!0}),Object.defineProperty(Jodit.prototype,"ed",{get:function(){return this.editorDocument;},enumerable:!1,configurable:!0}),Object.defineProperty(Jodit.prototype,"options",{get:function(){return this.currentPlace.options;},set:function(e){this.setPlaceField("options",e);},enumerable:!1,configurable:!0}),Object.defineProperty(Jodit.prototype,"s",{get:function(){return this.selection;},enumerable:!1,configurable:!0}),Object.defineProperty(Jodit.prototype,"uploader",{get:function(){return this.getInstance("Uploader",this.o.uploader);},enumerable:!1,configurable:!0}),Object.defineProperty(Jodit.prototype,"filebrowser",{get:function(){var e=this,t=(0,s.ConfigProto)({defaultTimeout:e.defaultTimeout,uploader:e.o.uploader,language:e.o.language,license:e.o.license,theme:e.o.theme,defaultCallback:function(t){t.files&&t.files.length&&t.files.forEach(function(o,r){var n=t.baseurl+o;t.isImages&&t.isImages[r]?e.s.insertImage(n,null,e.o.imageDefaultWidth):e.s.insertNode(e.createInside.fromHTML("<a href='".concat(n,"' title='").concat(n,"'>").concat(n,"</a>")));});}},this.o.filebrowser);return e.getInstance("FileBrowser",t);},enumerable:!1,configurable:!0}),Object.defineProperty(Jodit.prototype,"mode",{get:function(){return this.__mode;},set:function(e){this.setMode(e);},enumerable:!1,configurable:!0}),Jodit.prototype.getNativeEditorValue=function(){var e=this.e.fire("beforeGetNativeEditorValue");return(0,s.isString)(e)?e:this.editor?this.editor.innerHTML:this.getElementValue();},Jodit.prototype.setNativeEditorValue=function(e){var t={value:e};this.e.fire("beforeSetNativeEditorValue",t)||this.editor&&(this.editor.innerHTML=t.value);},Object.defineProperty(Jodit.prototype,"value",{get:function(){return this.getEditorValue();},set:function(e){this.setEditorValue(e),this.history.processChanges();},enumerable:!1,configurable:!0}),Jodit.prototype.synchronizeValues=function(){this.setEditorValue();},Jodit.prototype.getEditorValue=function(e,t){var o;if(void 0===e&&(e=!0),void 0!==(o=this.e.fire("beforeGetValueFromEditor",t)))return o;o=this.getNativeEditorValue().replace(i.INVISIBLE_SPACE_REG_EXP(),""),e&&(o=o.replace(/<span[^>]+id="jodit-selection_marker_[^>]+><\/span>/g,"")),"<br>"===o&&(o="");var r={value:o};return this.e.fire("afterGetValueFromEditor",r,t),r.value;},Jodit.prototype.setEditorValue=function(e){var t=this.e.fire("beforeSetValueToEditor",e);if(!1!==t)if((0,s.isString)(t)&&(e=t),this.editor){if(!(0,s.isString)(e)&&!(0,s.isVoid)(e))throw(0,s.error)("value must be string");void 0!==e&&this.getNativeEditorValue()!==e&&this.setNativeEditorValue(e),this.e.fire("postProcessSetEditorValue");var o=this.getElementValue(),r=this.getEditorValue();if(!this.isSilentChange&&o!==r&&i.SAFE_COUNT_CHANGE_CALL>this.__callChangeCount){this.__setElementValue(r),this.__callChangeCount+=1;try{this.history.upTick(),this.e.fire("change",r,o),this.e.fire(this.history,"change",r,o);}finally{this.__callChangeCount=0;}}}else void 0!==e&&this.__setElementValue(e);},Jodit.prototype.updateElementValue=function(){this.__setElementValue(this.getEditorValue());},Jodit.prototype.getElementValue=function(){return void 0!==this.element.value?this.element.value:this.element.innerHTML;},Jodit.prototype.setElementValue=function(e){var t=this.getElementValue();return(void 0===e||(0,s.isString)(e)&&e!==t)&&(null!=e||(e=t),e!==this.getEditorValue()&&this.setEditorValue(e)),this.__setElementValue(e);},Jodit.prototype.__setElementValue=function(e){var t=this;if(!(0,s.isString)(e))throw(0,s.error)("value must be string");if(this.element!==this.container&&e!==this.getElementValue()){var o={value:e},r=this.e.fire("beforeSetElementValue",o);(0,s.callPromise)(r,function(){void 0!==t.element.value?t.element.value=o.value:t.element.innerHTML=o.value,t.e.fire("afterSetElementValue",o);});}},Jodit.prototype.registerCommand=function(e,t,o){var r=e.toLowerCase(),n=this.commands.get(r);if(void 0===n&&this.commands.set(r,n=[]),n.push(t),!(0,s.isFunction)(t)){var i=this.o.commandToHotkeys[r]||this.o.commandToHotkeys[e]||t.hotkeys;i&&this.registerHotkeyToCommand(i,r,null==o?void 0:o.stopPropagation);}return this;},Jodit.prototype.registerHotkeyToCommand=function(e,t,o){var r=this;void 0===o&&(o=!0);var n=(0,s.asArray)(e).map(s.normalizeKeyAliases).map(function(e){return e+".hotkey";}).join(" ");this.e.off(n).on(n,function(e,n){return n&&(n.shouldStop=null==o||o),r.execCommand(t);});},Jodit.prototype.execCommand=function(e,t,o){if(void 0===t&&(t=!1),void 0===o&&(o=null),this.s.isFocused()||this.s.focus(),!this.o.readonly||"selectall"===e){var r;if(e=e.toLowerCase(),!1!==(r=this.e.fire("beforeCommand",e,t,o))&&(r=this.execCustomCommands(e,t,o)),!1!==r)if(this.s.focus(),"selectall"===e)this.s.select(this.editor,!0),this.s.expandSelection();else try{r=this.nativeExecCommand(e,t,o);}catch(e){}return this.e.fire("afterCommand",e,t,o),this.setEditorValue(),r;}},Jodit.prototype.nativeExecCommand=function(e,t,o){void 0===t&&(t=!1),void 0===o&&(o=null),this.isSilentChange=!0;try{return this.ed.execCommand(e,t,o);}finally{this.isSilentChange=!1;}},Jodit.prototype.execCustomCommands=function(e,t,o){var r=this;void 0===t&&(t=!1),void 0===o&&(o=null),e=e.toLowerCase();var n,i=this.commands.get(e);if(void 0!==i)return i.forEach(function(i){var a=((0,s.isFunction)(i)?i:i.exec).call(r,e,t,o);void 0!==a&&(n=a);}),n;},Jodit.prototype.lock=function(t){return void 0===t&&(t="any"),!!e.prototype.lock.call(this,t)&&(this.__selectionLocked=this.s.save(),this.s.clear(),this.editor.classList.add("jodit_lock"),this.e.fire("lock",!0),!0);},Jodit.prototype.unlock=function(){return!!e.prototype.unlock.call(this)&&(this.editor.classList.remove("jodit_lock"),this.__selectionLocked&&this.s.restore(),this.e.fire("lock",!1),!0);},Jodit.prototype.getMode=function(){return this.mode;},Jodit.prototype.isEditorMode=function(){return this.getRealMode()===i.MODE_WYSIWYG;},Jodit.prototype.getRealMode=function(){if(this.getMode()!==i.MODE_SPLIT)return this.getMode();var e=this.od.activeElement;return e&&(e===this.iframe||a.Dom.isOrContains(this.editor,e)||a.Dom.isOrContains(this.toolbar.container,e))?i.MODE_WYSIWYG:i.MODE_SOURCE;},Jodit.prototype.setMode=function(e){var t=this,o=this.getMode(),r={mode:parseInt(e.toString(),10)},n=["jodit-wysiwyg_mode","jodit-source__mode","jodit_split_mode"];!1!==this.e.fire("beforeSetMode",r)&&(this.__mode=[i.MODE_SOURCE,i.MODE_WYSIWYG,i.MODE_SPLIT].includes(r.mode)?r.mode:i.MODE_WYSIWYG,this.o.saveModeInStorage&&this.storage.set("jodit_default_mode",this.mode),n.forEach(function(e){t.container.classList.remove(e);}),this.container.classList.add(n[this.mode-1]),o!==this.getMode()&&this.e.fire("afterSetMode"));},Jodit.prototype.toggleMode=function(){var e=this.getMode();[i.MODE_SOURCE,i.MODE_WYSIWYG,this.o.useSplitMode?i.MODE_SPLIT:9].includes(e+1)?e+=1:e=i.MODE_WYSIWYG,this.setMode(e);},Jodit.prototype.setDisabled=function(e){this.o.disabled=e;var t=this.__wasReadOnly;this.setReadOnly(e||t),this.__wasReadOnly=t,this.editor&&(this.editor.setAttribute("aria-disabled",e.toString()),this.container.classList.toggle("jodit_disabled",e),this.e.fire("disabled",e));},Jodit.prototype.getDisabled=function(){return this.o.disabled;},Jodit.prototype.setReadOnly=function(e){this.__wasReadOnly!==e&&(this.__wasReadOnly=e,this.o.readonly=e,e?this.editor&&this.editor.removeAttribute("contenteditable"):this.editor&&this.editor.setAttribute("contenteditable","true"),this.e&&this.e.fire("readonly",e));},Jodit.prototype.getReadOnly=function(){return this.o.readonly;},Jodit.prototype.beforeInitHook=function(){},Jodit.prototype.afterInitHook=function(){},Jodit.prototype.initOptions=function(e){this.options=(0,s.ConfigProto)(e||{},n.Config.defaultOptions);},Jodit.prototype.initOwners=function(){this.editorWindow=this.o.ownerWindow,this.ownerWindow=this.o.ownerWindow;},Jodit.prototype.addPlace=function(e,t){var o=this,r=(0,s.resolveElement)(e,this.o.shadowRoot||this.od);this.attachEvents(t),r.attributes&&(0,s.toArray)(r.attributes).forEach(function(e){var r=e.name,i=e.value;void 0===n.Config.defaultOptions[r]||t&&void 0!==t[r]||(-1!==["readonly","disabled"].indexOf(r)&&(i=""===i||"true"===i),/^[0-9]+(\.)?([0-9]+)?$/.test(i.toString())&&(i=Number(i)),o.options[r]=i);});var i=this.c.div("jodit-container");i.classList.add("jodit"),i.classList.add("jodit-container"),i.classList.add("jodit_theme_".concat(this.o.theme||"default"));var l=this.o.styleValues;Object.keys(l).forEach(function(e){var t=(0,s.kebabCase)(e);i.style.setProperty("--jd-".concat(t),l[e]);}),i.setAttribute("contenteditable","false");var c=null;this.o.inline&&(-1===["TEXTAREA","INPUT"].indexOf(r.nodeName)&&(i=r,r.setAttribute(h,r.className.toString()),c=i.innerHTML,i.innerHTML=""),i.classList.add("jodit_inline"),i.classList.add("jodit-container")),r!==i&&(r.style.display&&r.setAttribute(f,r.style.display),r.style.display="none");var u=this.c.div("jodit-workplace",{contenteditable:!1});i.appendChild(u),r.parentNode&&r!==i&&r.parentNode.insertBefore(i,r),Object.defineProperty(r,"component",{enumerable:!1,configurable:!0,value:this});var d=this.c.div("jodit-wysiwyg",{contenteditable:!0,"aria-disabled":!1,tabindex:this.o.tabIndex});u.appendChild(d);var p={editor:d,element:r,container:i,workplace:u,statusbar:new a.StatusBar(this,i),options:this.isReady?(0,s.ConfigProto)(t||{},n.Config.defaultOptions):this.options,history:new a.History(this),editorWindow:this.ow};this.elementToPlace.set(d,p),this.setCurrentPlace(p),this.places.push(p),this.setNativeEditorValue(this.getElementValue());var m=this.initEditor(c),v=this.options;return(0,s.callPromise)(m,function(){v.enableDragAndDropFileToEditor&&v.uploader&&(v.uploader.url||v.uploader.insertImageAsBase64URI)&&o.uploader.bind(o.editor),o.elementToPlace.get(o.editor)||o.elementToPlace.set(o.editor,p),o.e.fire("afterAddPlace",p);});},Jodit.prototype.addDisclaimer=function(e){this.workplace.appendChild(e);},Jodit.prototype.setCurrentPlace=function(e){this.currentPlace!==e&&(this.isEditorMode()||this.setMode(i.MODE_WYSIWYG),this.currentPlace=e,this.buildToolbar(),this.isReady&&this.e.fire("changePlace",e));},Jodit.prototype.initEditor=function(e){var t=this,o=this.createEditor();return(0,s.callPromise)(o,function(){if(!t.isInDestruct){if(t.element!==t.container){var o=t.getElementValue();o!==t.getEditorValue()&&t.setEditorValue(o);}else null!=e&&t.setEditorValue(e);var r=t.o.defaultMode;if(t.o.saveModeInStorage){var n=t.storage.get("jodit_default_mode");"string"==typeof n&&(r=parseInt(n,10));}t.setMode(r),t.o.readonly&&(t.__wasReadOnly=!1,t.setReadOnly(!0)),t.o.disabled&&t.setDisabled(!0);try{t.ed.execCommand("defaultParagraphSeparator",!1,t.o.enter.toLowerCase());}catch(e){}try{t.ed.execCommand("enableObjectResizing",!1,"false");}catch(e){}try{t.ed.execCommand("enableInlineTableEditing",!1,"false");}catch(e){}}});},Jodit.prototype.createEditor=function(){var e=this,t=this.editor,o=this.e.fire("createEditor",this);return(0,s.callPromise)(o,function(){if(!e.isInDestruct){if((!1===o||(0,s.isPromise)(o))&&a.Dom.safeRemove(t),e.o.editorCssClass&&e.editor.classList.add(e.o.editorCssClass),e.o.style&&(0,s.css)(e.editor,e.o.style),e.e.on("synchro",function(){e.setEditorValue();}).on("focus",function(){e.editorIsActive=!0;}).on("blur",function(){return e.editorIsActive=!1;}),e.prepareWYSIWYGEditor(),e.o.direction){var r="rtl"===e.o.direction.toLowerCase()?"rtl":"ltr";e.container.style.direction=r,e.container.setAttribute("dir",r),e.toolbar.setDirection(r);}e.o.triggerChangeEvent&&e.e.on("change",e.async.debounce(function(){e.e&&e.e.fire(e.element,"change");},e.defaultTimeout));}});},Jodit.prototype.prepareWYSIWYGEditor=function(){var e=this,t=this.editor;if(this.o.direction){var o="rtl"===this.o.direction.toLowerCase()?"rtl":"ltr";this.editor.style.direction=o,this.editor.setAttribute("dir",o);}this.e.on(t,"mousedown touchstart focus",function(){var o=e.elementToPlace.get(t);o&&e.setCurrentPlace(o);}).on(t,"compositionend",this.synchronizeValues).on(t,"selectionchange selectionstart keydown keyup input keypress dblclick mousedown mouseup click copy cut dragstart drop dragover paste resize touchstart touchend focus blur",function(t){if(!e.o.readonly&&!e.isSilentChange&&!(t instanceof e.ew.KeyboardEvent&&t.isComposing)&&e.e&&e.e.fire){if(!1===e.e.fire(t.type,t))return!1;e.synchronizeValues();}});},Jodit.prototype.destruct=function(){var t=this;if(!this.isInDestruct&&(this.setStatus(a.STATUSES.beforeDestruct),this.elementToPlace.clear(),this.editor)){var o=this.getEditorValue();this.storage.clear(),this.buffer.clear(),this.commands.clear(),this.__selectionLocked=null,this.e.off(this.ow,"resize"),this.e.off(this.ow),this.e.off(this.od),this.e.off(this.od.body),this.places.forEach(function(e){var r=e.container,n=e.workplace,i=e.statusbar,l=e.element,c=e.iframe,u=e.editor,d=e.history;if(l!==r){if(l.hasAttribute(f)){var p=(0,s.attr)(l,f);p&&(l.style.display=p,l.removeAttribute(f));}else l.style.display="";}else l.hasAttribute(h)&&(l.className=(0,s.attr)(l,h)||"",l.removeAttribute(h));l.hasAttribute("style")&&!(0,s.attr)(l,"style")&&l.removeAttribute("style"),i.destruct(),t.e.off(r),t.e.off(l),t.e.off(u),a.Dom.safeRemove(n),a.Dom.safeRemove(u),r!==l&&a.Dom.safeRemove(r),Object.defineProperty(l,"component",{enumerable:!1,configurable:!0,value:null}),a.Dom.safeRemove(c),r===l&&(l.innerHTML=o),d.destruct();}),this.places.length=0,this.currentPlace={},delete d.instances[this.id],e.prototype.destruct.call(this);}},Jodit.fatMode=!1,Jodit.plugins=d.pluginSystem,Jodit.modules=d.modules,Jodit.ns=d.modules,Jodit.decorators={},Jodit.constants=i,Jodit.instances=d.instances,Jodit.lang=u.lang,Jodit.core={Plugin:a.Plugin},r.__decorate([p.cache],Jodit.prototype,"uploader",null),r.__decorate([p.cache],Jodit.prototype,"filebrowser",null),r.__decorate([(0,p.throttle)()],Jodit.prototype,"synchronizeValues",null),r.__decorate([(0,p.watch)(":internalChange")],Jodit.prototype,"updateElementValue",null),r.__decorate([p.autobind],Jodit.prototype,"prepareWYSIWYGEditor",null),Jodit;}(c.ViewWithToolbar);t.Jodit=Jodit;},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.__classPrivateFieldIn=t.__classPrivateFieldSet=t.__classPrivateFieldGet=t.__importDefault=t.__importStar=t.__makeTemplateObject=t.__asyncValues=t.__asyncDelegator=t.__asyncGenerator=t.__await=t.__spreadArray=t.__spreadArrays=t.__spread=t.__read=t.__values=t.__exportStar=t.__createBinding=t.__generator=t.__awaiter=t.__metadata=t.__param=t.__decorate=t.__rest=t.__assign=t.__extends=void 0;var o=function(e,t){return o=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t;}||function(e,t){for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);},o(e,t);};function r(e){var t="function"==typeof Symbol&&Symbol.iterator,o=t&&e[t],r=0;if(o)return o.call(e);if(e&&"number"==typeof e.length)return{next:function(){return e&&r>=e.length&&(e=void 0),{value:e&&e[r++],done:!e};}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.");}function n(e,t){var o="function"==typeof Symbol&&e[Symbol.iterator];if(!o)return e;var r,n,i=o.call(e),a=[];try{for(;(void 0===t||t-->0)&&!(r=i.next()).done;)a.push(r.value);}catch(e){n={error:e};}finally{try{r&&!r.done&&(o=i.return)&&o.call(i);}finally{if(n)throw n.error;}}return a;}function i(e){return this instanceof i?(this.v=e,this):new i(e);}t.__extends=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function r(){this.constructor=e;}o(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r());},t.__assign=function(){return t.__assign=Object.assign||function(e){for(var t,o=1,r=arguments.length;r>o;o++)for(var n in t=arguments[o])Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e;},t.__assign.apply(this,arguments);},t.__rest=function(e,t){var o={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(o[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var n=0;for(r=Object.getOwnPropertySymbols(e);r.length>n;n++)0>t.indexOf(r[n])&&Object.prototype.propertyIsEnumerable.call(e,r[n])&&(o[r[n]]=e[r[n]]);}return o;},t.__decorate=function(e,t,o,r){var n,i=arguments.length,a=3>i?t:null===r?r=Object.getOwnPropertyDescriptor(t,o):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(e,t,o,r);else for(var s=e.length-1;s>=0;s--)(n=e[s])&&(a=(3>i?n(a):i>3?n(t,o,a):n(t,o))||a);return i>3&&a&&Object.defineProperty(t,o,a),a;},t.__param=function(e,t){return function(o,r){t(o,r,e);};},t.__metadata=function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t);},t.__awaiter=function(e,t,o,r){return new(o||(o=Promise))(function(n,i){function a(e){try{l(r.next(e));}catch(e){i(e);}}function s(e){try{l(r.throw(e));}catch(e){i(e);}}function l(e){var t;e.done?n(e.value):(t=e.value,t instanceof o?t:new o(function(e){e(t);})).then(a,s);}l((r=r.apply(e,t||[])).next());});},t.__generator=function(e,t){var o,r,n,i,a={label:0,sent:function(){if(1&n[0])throw n[1];return n[1];},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this;}),i;function s(i){return function(s){return function(i){if(o)throw new TypeError("Generator is already executing.");for(;a;)try{if(o=1,r&&(n=2&i[0]?r.return:i[0]?r.throw||((n=r.return)&&n.call(r),0):r.next)&&!(n=n.call(r,i[1])).done)return n;switch(r=0,n&&(i=[2&i[0],n.value]),i[0]){case 0:case 1:n=i;break;case 4:return a.label++,{value:i[1],done:!1};case 5:a.label++,r=i[1],i=[0];continue;case 7:i=a.ops.pop(),a.trys.pop();continue;default:if(!((n=(n=a.trys).length>0&&n[n.length-1])||6!==i[0]&&2!==i[0])){a=0;continue;}if(3===i[0]&&(!n||i[1]>n[0]&&n[3]>i[1])){a.label=i[1];break;}if(6===i[0]&&n[1]>a.label){a.label=n[1],n=i;break;}if(n&&n[2]>a.label){a.label=n[2],a.ops.push(i);break;}n[2]&&a.ops.pop(),a.trys.pop();continue;}i=t.call(e,a);}catch(e){i=[6,e],r=0;}finally{o=n=0;}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0};}([i,s]);};}},t.__createBinding=Object.create?function(e,t,o,r){void 0===r&&(r=o);var n=Object.getOwnPropertyDescriptor(t,o);n&&!("get"in n?!t.__esModule:n.writable||n.configurable)||(n={enumerable:!0,get:function(){return t[o];}}),Object.defineProperty(e,r,n);}:function(e,t,o,r){void 0===r&&(r=o),e[r]=t[o];},t.__exportStar=function(e,o){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(o,r)||(0,t.__createBinding)(o,e,r);},t.__values=r,t.__read=n,t.__spread=function(){for(var e=[],t=0;arguments.length>t;t++)e=e.concat(n(arguments[t]));return e;},t.__spreadArrays=function(){for(var e=0,t=0,o=arguments.length;o>t;t++)e+=arguments[t].length;var r=Array(e),n=0;for(t=0;o>t;t++)for(var i=arguments[t],a=0,s=i.length;s>a;a++,n++)r[n]=i[a];return r;},t.__spreadArray=function(e,t,o){if(o||2===arguments.length)for(var r,n=0,i=t.length;i>n;n++)!r&&n in t||(r||(r=Array.prototype.slice.call(t,0,n)),r[n]=t[n]);return e.concat(r||Array.prototype.slice.call(t));},t.__await=i,t.__asyncGenerator=function(e,t,o){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r,n=o.apply(e,t||[]),a=[];return r={},s("next"),s("throw"),s("return"),r[Symbol.asyncIterator]=function(){return this;},r;function s(e){n[e]&&(r[e]=function(t){return new Promise(function(o,r){a.push([e,t,o,r])>1||l(e,t);});});}function l(e,t){try{(o=n[e](t)).value instanceof i?Promise.resolve(o.value.v).then(c,u):d(a[0][2],o);}catch(e){d(a[0][3],e);}var o;}function c(e){l("next",e);}function u(e){l("throw",e);}function d(e,t){e(t),a.shift(),a.length&&l(a[0][0],a[0][1]);}},t.__asyncDelegator=function(e){var t,o;return t={},r("next"),r("throw",function(e){throw e;}),r("return"),t[Symbol.iterator]=function(){return this;},t;function r(r,n){t[r]=e[r]?function(t){return(o=!o)?{value:i(e[r](t)),done:"return"===r}:n?n(t):t;}:n;}},t.__asyncValues=function(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var t,o=e[Symbol.asyncIterator];return o?o.call(e):(e=r(e),t={},n("next"),n("throw"),n("return"),t[Symbol.asyncIterator]=function(){return this;},t);function n(o){t[o]=e[o]&&function(t){return new Promise(function(r,n){!function(e,t,o,r){Promise.resolve(r).then(function(t){e({value:t,done:o});},t);}(r,n,(t=e[o](t)).done,t.value);});};}},t.__makeTemplateObject=function(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e;};var a=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t});}:function(e,t){e.default=t;};t.__importStar=function(e){if(e&&e.__esModule)return e;var o={};if(null!=e)for(var r in e)"default"!==r&&Object.prototype.hasOwnProperty.call(e,r)&&(0,t.__createBinding)(o,e,r);return a(o,e),o;},t.__importDefault=function(e){return e&&e.__esModule?e:{default:e};},t.__classPrivateFieldGet=function(e,t,o,r){if("a"===o&&!r)throw new TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!r:!t.has(e))throw new TypeError("Cannot read private member from an object whose class did not declare it");return"m"===o?r:"a"===o?r.call(e):r?r.value:t.get(e);},t.__classPrivateFieldSet=function(e,t,o,r,n){if("m"===r)throw new TypeError("Private method is not writable");if("a"===r&&!n)throw new TypeError("Private accessor was defined without a setter");if("function"==typeof t?e!==t||!n:!t.has(e))throw new TypeError("Cannot write private member to an object whose class did not declare it");return"a"===r?n.call(e,o):n?n.value=o:t.set(e,o),o;},t.__classPrivateFieldIn=function(e,t){if(null===t||"object"!=typeof t&&"function"!=typeof t)throw new TypeError("Cannot use 'in' operator on non-object");return"function"==typeof e?t===e:e.has(t);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Config=void 0;var r=o(147),n=function(){function e(){this.defaultTimeout=100,this.namespace="",this.safeMode=!1,this.safePluginsList=["about","enter","backspace"],this.license="",this.preset="custom",this.presets={inline:{inline:!0,toolbar:!1,toolbarInline:!0,toolbarInlineForSelection:!0,showXPathInStatusbar:!1,showCharsCounter:!1,showWordsCounter:!1,showPlaceholder:!1}},this.ownerDocument="undefined"!=typeof document?document:null,this.ownerWindow="undefined"!=typeof window?window:null,this.shadowRoot=null,this.styleValues={},this.zIndex=0,this.readonly=!1,this.disabled=!1,this.activeButtonsInReadOnly=["source","fullsize","print","about","dots","selectall"],this.toolbarButtonSize="middle",this.allowTabNavigation=!1,this.inline=!1,this.theme="default",this.saveModeInStorage=!1,this.editorCssClass=!1,this.style=!1,this.triggerChangeEvent=!0,this.direction="",this.language="auto",this.debugLanguage=!1,this.i18n=!1,this.tabIndex=-1,this.toolbar=!0,this.statusbar=!0,this.showTooltip=!0,this.showTooltipDelay=1e3,this.useNativeTooltip=!1,this.enter=r.PARAGRAPH,this.enterBlock="br"!==this.enter?this.enter:r.PARAGRAPH,this.defaultMode=r.MODE_WYSIWYG,this.useSplitMode=!1,this.colors={greyscale:["#000000","#434343","#666666","#999999","#B7B7B7","#CCCCCC","#D9D9D9","#EFEFEF","#F3F3F3","#FFFFFF"],palette:["#980000","#FF0000","#FF9900","#FFFF00","#00F0F0","#00FFFF","#4A86E8","#0000FF","#9900FF","#FF00FF"],full:["#E6B8AF","#F4CCCC","#FCE5CD","#FFF2CC","#D9EAD3","#D0E0E3","#C9DAF8","#CFE2F3","#D9D2E9","#EAD1DC","#DD7E6B","#EA9999","#F9CB9C","#FFE599","#B6D7A8","#A2C4C9","#A4C2F4","#9FC5E8","#B4A7D6","#D5A6BD","#CC4125","#E06666","#F6B26B","#FFD966","#93C47D","#76A5AF","#6D9EEB","#6FA8DC","#8E7CC3","#C27BA0","#A61C00","#CC0000","#E69138","#F1C232","#6AA84F","#45818E","#3C78D8","#3D85C6","#674EA7","#A64D79","#85200C","#990000","#B45F06","#BF9000","#38761D","#134F5C","#1155CC","#0B5394","#351C75","#733554","#5B0F00","#660000","#783F04","#7F6000","#274E13","#0C343D","#1C4587","#073763","#20124D","#4C1130"]},this.colorPickerDefaultTab="background",this.imageDefaultWidth=300,this.removeButtons=[],this.disablePlugins=[],this.extraPlugins=[],this.extraButtons=[],this.extraIcons={},this.createAttributes={table:{style:"border-collapse:collapse;width: 100%;"}},this.sizeLG=900,this.sizeMD=700,this.sizeSM=400,this.buttons=[{group:"font-style",buttons:[]},{group:"list",buttons:[]},{group:"font",buttons:[]},"---",{group:"script",buttons:[]},{group:"media",buttons:[]},"\n",{group:"state",buttons:[]},{group:"clipboard",buttons:[]},{group:"insert",buttons:[]},{group:"indent",buttons:[]},{group:"color",buttons:[]},{group:"form",buttons:[]},"---",{group:"history",buttons:[]},{group:"search",buttons:[]},{group:"source",buttons:[]},{group:"other",buttons:[]},{group:"info",buttons:[]}],this.buttonsMD=["bold","italic","|","ul","ol","eraser","|","font","fontsize","---","image","table","|","link","\n","brush","paragraph","align","|","hr","copyformat","fullsize","---","undo","redo","|","dots"],this.buttonsSM=["bold","italic","|","ul","ol","eraser","|","fontsize","brush","paragraph","---","image","table","\n","link","|","align","|","undo","redo","|","copyformat","fullsize","---","dots"],this.buttonsXS=["bold","brush","paragraph","eraser","|","fontsize","---","image","\n","align","undo","redo","|","link","table","---","dots"],this.events={},this.textIcons=!1,this.showBrowserColorPicker=!0;}return Object.defineProperty(e,"defaultOptions",{get:function(){return e.__defaultOptions||(e.__defaultOptions=new e()),e.__defaultOptions;},enumerable:!1,configurable:!0}),e;}();t.Config=n,n.prototype.controls={};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.lang=t.TEMP_ATTR=t.BASE_PATH=t.KEY_ALIASES=t.IS_MAC=t.SAFE_COUNT_CHANGE_CALL=t.INSERT_ONLY_TEXT=t.INSERT_AS_TEXT=t.INSERT_CLEAR_HTML=t.INSERT_AS_HTML=t.EMULATE_DBLCLICK_TIMEOUT=t.MARKER_CLASS=t.TEXT_RTF=t.TEXT_HTML=t.TEXT_PLAIN=t.IS_IE=t.MODE_SPLIT=t.MODE_SOURCE=t.MODE_WYSIWYG=t.PARAGRAPH=t.BR=t.COMMAND_KEYS=t.ACCURACY=t.NEARBY=t.KEY_F3=t.KEY_DELETE=t.KEY_SPACE=t.KEY_DOWN=t.KEY_RIGHT=t.KEY_UP=t.KEY_LEFT=t.KEY_ESC=t.KEY_ENTER=t.KEY_TAB=t.KEY_BACKSPACE=t.MAY_BE_REMOVED_WITH_KEY=t.INSEPARABLE_TAGS=t.IS_INLINE=t.IS_BLOCK=t.SPACE_REG_EXP_END=t.SPACE_REG_EXP_START=t.SPACE_REG_EXP=t.INVISIBLE_SPACE_REG_EXP_START=t.INVISIBLE_SPACE_REG_EXP_END=t.INVISIBLE_SPACE_REG_EXP=t.NBSP_SPACE=t.INVISIBLE_SPACE=void 0,t.INVISIBLE_SPACE="\ufeff",t.NBSP_SPACE=" ",t.INVISIBLE_SPACE_REG_EXP=function(){return /[\uFEFF]/g;},t.INVISIBLE_SPACE_REG_EXP_END=function(){return /[\uFEFF]+$/g;},t.INVISIBLE_SPACE_REG_EXP_START=function(){return /^[\uFEFF]+/g;},t.SPACE_REG_EXP=function(){return /[\s\n\t\r\uFEFF\u200b]+/g;},t.SPACE_REG_EXP_START=function(){return /^[\s\n\t\r\uFEFF\u200b]+/g;},t.SPACE_REG_EXP_END=function(){return /[\s\n\t\r\uFEFF\u200b]+$/g;},t.IS_BLOCK=/^(ADDRESS|ARTICLE|ASIDE|BLOCKQUOTE|CANVAS|DD|DFN|DIV|DL|DT|FIELDSET|FIGCAPTION|FIGURE|FOOTER|FORM|H[1-6]|HEADER|HGROUP|HR|LI|MAIN|NAV|NOSCRIPT|OUTPUT|P|PRE|RUBY|SCRIPT|STYLE|OBJECT|OL|SECTION|IFRAME|JODIT|JODIT-MEDIA|UL|TR|TD|TH|TBODY|THEAD|TFOOT|TABLE|BODY|HTML|VIDEO)$/i,t.IS_INLINE=/^(STRONG|SPAN|I|EM|B|SUP|SUB|A|U)$/i,t.INSEPARABLE_TAGS=["img","br","video","iframe","script","input","textarea","hr","link","jodit","jodit-media"],t.MAY_BE_REMOVED_WITH_KEY=RegExp("^".concat(t.INSEPARABLE_TAGS.join("|"),"$"),"i"),t.KEY_BACKSPACE="Backspace",t.KEY_TAB="Tab",t.KEY_ENTER="Enter",t.KEY_ESC="Escape",t.KEY_LEFT="ArrowLeft",t.KEY_UP="ArrowUp",t.KEY_RIGHT="ArrowRight",t.KEY_DOWN="ArrowDown",t.KEY_SPACE="Space",t.KEY_DELETE="Delete",t.KEY_F3="F3",t.NEARBY=5,t.ACCURACY=10,t.COMMAND_KEYS=[t.KEY_BACKSPACE,t.KEY_DELETE,t.KEY_UP,t.KEY_DOWN,t.KEY_RIGHT,t.KEY_LEFT,t.KEY_ENTER,t.KEY_ESC,t.KEY_F3,t.KEY_TAB],t.BR="br",t.PARAGRAPH="p",t.MODE_WYSIWYG=1,t.MODE_SOURCE=2,t.MODE_SPLIT=3,t.IS_IE="undefined"!=typeof navigator&&(-1!==navigator.userAgent.indexOf("MSIE")||/rv:11.0/i.test(navigator.userAgent)),t.TEXT_PLAIN=t.IS_IE?"text":"text/plain",t.TEXT_HTML=t.IS_IE?"html":"text/html",t.TEXT_RTF=t.IS_IE?"rtf":"text/rtf",t.MARKER_CLASS="jodit-selection_marker",t.EMULATE_DBLCLICK_TIMEOUT=300,t.INSERT_AS_HTML="insert_as_html",t.INSERT_CLEAR_HTML="insert_clear_html",t.INSERT_AS_TEXT="insert_as_text",t.INSERT_ONLY_TEXT="insert_only_text",t.SAFE_COUNT_CHANGE_CALL=10,t.IS_MAC="undefined"!=typeof window&&/Mac|iPod|iPhone|iPad/.test(window.navigator.platform),t.KEY_ALIASES={add:"+",break:"pause",cmd:"meta",command:"meta",ctl:"control",ctrl:"control",del:"delete",down:"arrowdown",esc:"escape",ins:"insert",left:"arrowleft",mod:t.IS_MAC?"meta":"control",opt:"alt",option:"alt",return:"enter",right:"arrowright",space:" ",spacebar:" ",up:"arrowup",win:"meta",windows:"meta"},t.BASE_PATH=function(){if("undefined"==typeof document)return"";var e=document.currentScript,t=function(e){var t=e.split("/");return /\.js/.test(t[t.length-1])?t.slice(0,t.length-1).join("/")+"/":e;};if(e)return t(e.src);var o=document.querySelectorAll("script[src]");return o&&o.length?t(o[o.length-1].src):window.location.href;}(),t.TEMP_ATTR="data-jodit-temp",t.lang={};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.PluginSystem=t.Uploader=t.ToolbarCollection=t.ToolbarEditorCollection=t.Table=t.StatusBar=t.CommitStyle=t.Select=t.Snapshot=t.History=t.ImageEditor=t.Helpers=t.ViewWithToolbar=t.View=t.Icon=t.ProgressBar=t.UIBlock=t.UICheckbox=t.UITextArea=t.UIInput=t.UIForm=t.UIList=t.UIGroup=t.UISeparator=t.Popup=t.UIButton=t.UIElement=t.Create=t.Plugin=t.LazyWalker=t.Dom=t.ContextMenu=t.STATUSES=t.ViewComponent=t.Component=t.Async=void 0;var r=o(145);r.__exportStar(o(149),t);var n=o(177);Object.defineProperty(t,"Async",{enumerable:!0,get:function(){return n.Async;}}),r.__exportStar(o(183),t);var i=o(235);Object.defineProperty(t,"Component",{enumerable:!0,get:function(){return i.Component;}}),Object.defineProperty(t,"ViewComponent",{enumerable:!0,get:function(){return i.ViewComponent;}}),Object.defineProperty(t,"STATUSES",{enumerable:!0,get:function(){return i.STATUSES;}});var a=o(303);Object.defineProperty(t,"ContextMenu",{enumerable:!0,get:function(){return a.ContextMenu;}}),r.__exportStar(o(322),t);var s=o(229);Object.defineProperty(t,"Dom",{enumerable:!0,get:function(){return s.Dom;}}),Object.defineProperty(t,"LazyWalker",{enumerable:!0,get:function(){return s.LazyWalker;}});var l=o(365);Object.defineProperty(t,"Plugin",{enumerable:!0,get:function(){return l.Plugin;}});var c=o(367);Object.defineProperty(t,"Create",{enumerable:!0,get:function(){return c.Create;}});var u=o(335);Object.defineProperty(t,"UIElement",{enumerable:!0,get:function(){return u.UIElement;}}),Object.defineProperty(t,"UIButton",{enumerable:!0,get:function(){return u.UIButton;}}),Object.defineProperty(t,"Popup",{enumerable:!0,get:function(){return u.Popup;}}),Object.defineProperty(t,"UISeparator",{enumerable:!0,get:function(){return u.UISeparator;}}),Object.defineProperty(t,"UIGroup",{enumerable:!0,get:function(){return u.UIGroup;}}),Object.defineProperty(t,"UIList",{enumerable:!0,get:function(){return u.UIList;}}),Object.defineProperty(t,"UIForm",{enumerable:!0,get:function(){return u.UIForm;}}),Object.defineProperty(t,"UIInput",{enumerable:!0,get:function(){return u.UIInput;}}),Object.defineProperty(t,"UITextArea",{enumerable:!0,get:function(){return u.UITextArea;}}),Object.defineProperty(t,"UICheckbox",{enumerable:!0,get:function(){return u.UICheckbox;}}),Object.defineProperty(t,"UIBlock",{enumerable:!0,get:function(){return u.UIBlock;}}),Object.defineProperty(t,"ProgressBar",{enumerable:!0,get:function(){return u.ProgressBar;}}),Object.defineProperty(t,"Icon",{enumerable:!0,get:function(){return u.Icon;}});var d=o(327);Object.defineProperty(t,"View",{enumerable:!0,get:function(){return d.View;}});var p=o(325);Object.defineProperty(t,"ViewWithToolbar",{enumerable:!0,get:function(){return p.ViewWithToolbar;}}),r.__exportStar(o(369),t);var f=o(185);t.Helpers=f;var h=o(382);Object.defineProperty(t,"ImageEditor",{enumerable:!0,get:function(){return h.ImageEditor;}});var m=o(393);Object.defineProperty(t,"History",{enumerable:!0,get:function(){return m.History;}});var v=o(394);Object.defineProperty(t,"Snapshot",{enumerable:!0,get:function(){return v.Snapshot;}});var g=o(214);Object.defineProperty(t,"Select",{enumerable:!0,get:function(){return g.Select;}}),Object.defineProperty(t,"CommitStyle",{enumerable:!0,get:function(){return g.CommitStyle;}});var y=o(397);Object.defineProperty(t,"StatusBar",{enumerable:!0,get:function(){return y.StatusBar;}});var b=o(399);Object.defineProperty(t,"Table",{enumerable:!0,get:function(){return b.Table;}});var _=o(357);Object.defineProperty(t,"ToolbarEditorCollection",{enumerable:!0,get:function(){return _.ToolbarEditorCollection;}});var w=o(333);Object.defineProperty(t,"ToolbarCollection",{enumerable:!0,get:function(){return w.ToolbarCollection;}}),r.__exportStar(o(400),t);var S=o(401);Object.defineProperty(t,"Uploader",{enumerable:!0,get:function(){return S.Uploader;}});var C=o(238);Object.defineProperty(t,"PluginSystem",{enumerable:!0,get:function(){return C.PluginSystem;}});},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(150),t),r.__exportStar(o(168),t),r.__exportStar(o(169),t),r.__exportStar(o(151),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.EventEmitter=void 0;var r=o(145),n=o(151),i=o(156),a=o(159),s=o(157),l=o(161),c=o(167),u=function(){function e(e){var t=this;this.mutedEvents=new Set(),this.__key="__JoditEventEmitterNamespaces",this.doc=document,this.prepareEvent=function(e){e.cancelBubble||(e.type.match(/^touch/)&&e.changedTouches&&e.changedTouches.length&&["clientX","clientY","pageX","pageY"].forEach(function(t){Object.defineProperty(e,t,{value:e.changedTouches[0][t],configurable:!0,enumerable:!0});}),e.originalEvent||(e.originalEvent=e),"paste"===e.type&&void 0===e.clipboardData&&t.doc.defaultView.clipboardData&&Object.defineProperty(e,"clipboardData",{get:function(){return t.doc.defaultView.clipboardData;},configurable:!0,enumerable:!0}));},this.currents=[],this.__stopped=[],this.isDestructed=!1,e&&(this.doc=e),this.__key+=new Date().getTime();}return e.prototype.mute=function(e){return this.mutedEvents.add(null!=e?e:"*"),this;},e.prototype.isMuted=function(e){return!(!e||!this.mutedEvents.has(e))||this.mutedEvents.has("*");},e.prototype.unmute=function(e){return this.mutedEvents.delete(null!=e?e:"*"),this;},e.prototype.eachEvent=function(e,t){var o=this;(0,c.splitArray)(e).map(function(e){return e.trim();}).forEach(function(e){var r=e.split(".");t.call(o,r[0],r[1]||n.defaultNameSpace);});},e.prototype.getStore=function(e){if(!e)throw(0,l.error)("Need subject");if(void 0===e[this.__key]){var t=new n.EventHandlersStore();Object.defineProperty(e,this.__key,{enumerable:!1,configurable:!0,writable:!0,value:t});}return e[this.__key];},e.prototype.removeStoreFromSubject=function(e){void 0!==e[this.__key]&&Object.defineProperty(e,this.__key,{enumerable:!1,configurable:!0,writable:!0,value:void 0});},e.prototype.triggerNativeEvent=function(e,t){var o=this.doc.createEvent("HTMLEvents");(0,i.isString)(t)?o.initEvent(t,!0,!0):(o.initEvent(t.type,t.bubbles,t.cancelable),["screenX","screenY","clientX","clientY","target","srcElement","currentTarget","timeStamp","which","keyCode"].forEach(function(e){Object.defineProperty(o,e,{value:t[e],enumerable:!0});}),Object.defineProperty(o,"originalEvent",{value:t,enumerable:!0})),e.dispatchEvent(o);},Object.defineProperty(e.prototype,"current",{get:function(){return this.currents[this.currents.length-1];},enumerable:!1,configurable:!0}),e.prototype.on=function(e,t,o,n){var c,u,d,p,f=this;if((0,i.isString)(e)||(0,i.isStringArray)(e)?(c=this,u=e,d=t,p=o):(c=e,u=t,d=o,p=n),!(0,i.isString)(u)&&!(0,i.isStringArray)(u)||0===u.length)throw(0,l.error)("Need events names");if(!(0,a.isFunction)(d))throw(0,l.error)("Need event handler");if((0,s.isArray)(c))return c.forEach(function(e){f.on(e,u,d,p);}),this;var h=c,m=this.getStore(h),v=(0,a.isFunction)(h.addEventListener),g=this,y=function(e){for(var t=[],o=1;arguments.length>o;o++)t[o-1]=arguments[o];if(!g.isMuted(e))return d&&d.call.apply(d,r.__spreadArray([this],r.__read(t),!1));};return v&&(y=function(e){if(!g.isMuted(e.type))return g.prepareEvent(e),d&&!1===d.call(this,e)?(e.preventDefault(),e.stopImmediatePropagation(),!1):void 0;}),this.eachEvent(u,function(e,t){if(0===e.length)throw(0,l.error)("Need event name");if(!1===m.indexOf(e,t,d)&&(m.set(e,t,{event:e,originalCallback:d,syntheticCallback:y},null==p?void 0:p.top),v)){var o=!!["touchstart","touchend","scroll","mousewheel","mousemove","touchmove"].includes(e)&&{passive:!0};h.addEventListener(e,y,o);}}),this;},e.prototype.one=function(e,t,o,n){var a,s,l,c,u=this;(0,i.isString)(e)||(0,i.isStringArray)(e)?(a=this,s=e,l=t,c=o):(a=e,s=t,l=o,c=n);var d=function(){for(var e=[],t=0;arguments.length>t;t++)e[t]=arguments[t];return u.off(a,s,d),l.apply(void 0,r.__spreadArray([],r.__read(e),!1));};return this.on(a,s,d,c),this;},e.prototype.off=function(e,t,o){var r,l,c,u=this;if((0,i.isString)(e)||(0,i.isStringArray)(e)?(r=this,l=e,c=t):(r=e,l=t,c=o),(0,s.isArray)(r))return r.forEach(function(e){u.off(e,l,c);}),this;var d=r,p=this.getStore(d);if(!(0,i.isString)(l)&&!(0,i.isStringArray)(l)||0===l.length)return p.namespaces().forEach(function(e){u.off(d,"."+e);}),this.removeStoreFromSubject(d),this;var f=(0,a.isFunction)(d.removeEventListener),h=function(e){f&&d.removeEventListener(e.event,e.syntheticCallback,!1);},m=function(e,t){if(""!==e){var o=p.get(e,t);if(o&&o.length)if((0,a.isFunction)(c)){var r=p.indexOf(e,t,c);!1!==r&&(h(o[r]),o.splice(r,1),o.length||p.clearEvents(t,e));}else o.forEach(h),o.length=0,p.clearEvents(t,e);}else p.events(t).forEach(function(e){""!==e&&m(e,t);});};return this.eachEvent(l,function(e,t){t===n.defaultNameSpace?p.namespaces().forEach(function(t){m(e,t);}):m(e,t);}),p.isEmpty()&&this.removeStoreFromSubject(d),this;},e.prototype.stopPropagation=function(e,t){var o=this,r=(0,i.isString)(e)?this:e,a=(0,i.isString)(e)?e:t;if("string"!=typeof a)throw(0,l.error)("Need event names");var s=this.getStore(r);this.eachEvent(a,function(e,t){var i=s.get(e,t);i&&o.__stopped.push(i),t===n.defaultNameSpace&&s.namespaces(!0).forEach(function(t){return o.stopPropagation(r,e+"."+t);});});},e.prototype.removeStop=function(e){if(e){var t=this.__stopped.indexOf(e);-1!==t&&this.__stopped.splice(0,t+1);}},e.prototype.isStopped=function(e){return void 0!==e&&-1!==this.__stopped.indexOf(e);},e.prototype.fire=function(e,t){for(var o,s,c=this,u=[],d=2;arguments.length>d;d++)u[d-2]=arguments[d];var p=(0,i.isString)(e)?this:e,f=(0,i.isString)(e)?e:t,h=(0,i.isString)(e)?r.__spreadArray([t],r.__read(u),!1):u,m=(0,a.isFunction)(p.dispatchEvent);if(!m&&!(0,i.isString)(f))throw(0,l.error)("Need events names");var v=this.getStore(p);return!(0,i.isString)(f)&&m?this.triggerNativeEvent(p,t):this.eachEvent(f,function(e,t){if(m)c.triggerNativeEvent(p,e);else{var i=v.get(e,t);if(i)try{r.__spreadArray([],r.__read(i),!1).every(function(t){var n;return!c.isStopped(i)&&(c.currents.push(e),s=(n=t.syntheticCallback).call.apply(n,r.__spreadArray([p,e],r.__read(h),!1)),c.currents.pop(),void 0!==s&&(o=s),!0);});}finally{c.removeStop(i);}t!==n.defaultNameSpace||m||v.namespaces().filter(function(e){return e!==t;}).forEach(function(t){var n=c.fire.apply(c,r.__spreadArray([p,e+"."+t],r.__read(h),!1));void 0!==n&&(o=n);});}}),o;},e.prototype.destruct=function(){this.isDestructed&&(this.isDestructed=!0,this.off(this),this.getStore(this).clear(),this.removeStoreFromSubject(this));},e;}();t.EventEmitter=u;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.EventHandlersStore=t.defaultNameSpace=void 0;var r=o(152),n=o(153);t.defaultNameSpace="JoditEventDefaultNamespace";var i=function(){function e(){this.__store=new Map();}return e.prototype.get=function(e,t){if(this.__store.has(t)){var o=this.__store.get(t);return(0,r.assert)(o,"-"),o[e];}},e.prototype.indexOf=function(e,t,o){var r=this.get(e,t);if(r)for(var n=0;r.length>n;n+=1)if(r[n].originalCallback===o)return n;return!1;},e.prototype.namespaces=function(e){void 0===e&&(e=!1);var o=(0,n.toArray)(this.__store.keys());return e?o.filter(function(e){return e!==t.defaultNameSpace;}):o;},e.prototype.events=function(e){var t=this.__store.get(e);return t?Object.keys(t):[];},e.prototype.set=function(e,t,o,r){void 0===r&&(r=!1);var n=this.__store.get(t);n||this.__store.set(t,n={}),void 0===n[e]&&(n[e]=[]),r?n[e].unshift(o):n[e].push(o);},e.prototype.clear=function(){this.__store.clear();},e.prototype.clearEvents=function(e,t){var o=this.__store.get(e);o&&o[t]&&(delete o[t],Object.keys(o).length||this.__store.delete(e));},e.prototype.isEmpty=function(){return 0===this.__store.size;},e;}();t.EventHandlersStore=i;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.assert=void 0;var r=o(145),n=function(e){function t(t){var o=e.call(this,t)||this;return o.name="AssertionError",o;}return r.__extends(t,e),t;}(Error);t.assert=function(e,t){if(!e)throw new n("Assertion failed: ".concat(t));};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.toArray=void 0;var r=o(154),n=o(160);t.toArray=function(){for(var e,t=[],o=0;arguments.length>o;o++)t[o]=arguments[o];var i=(0,n.isNativeFunction)(Array.from)?Array.from:null!==(e=(0,r.reset)("Array.from"))&&void 0!==e?e:Array.from;return i.apply(Array,t);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.reset=void 0;var r=o(155),n=o(159),i={};t.reset=function(e){var t,o;if(!(e in i)){var a=document.createElement("iframe");try{if(a.src="about:blank",document.body.appendChild(a),!a.contentWindow)return null;var s=(0,r.get)(e,a.contentWindow),l=(0,r.get)(e.split(".").slice(0,-1).join("."),a.contentWindow);(0,n.isFunction)(s)&&(i[e]=s.bind(l));}catch(e){}finally{null===(t=a.parentNode)||void 0===t||t.removeChild(a);}}return null!==(o=i[e])&&void 0!==o?o:null;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.get=void 0;var r=o(145),n=o(156),i=o(158);t.get=function(e,t){var o,a;if(!(0,n.isString)(e)||!e.length)return null;var s=e.split("."),l=t;try{try{for(var c=r.__values(s),u=c.next();!u.done;u=c.next()){var d=u.value;if((0,i.isVoid)(l[d]))return null;l=l[d];}}catch(e){o={error:e};}finally{try{u&&!u.done&&(a=c.return)&&a.call(c);}finally{if(o)throw o.error;}}}catch(e){return null;}return(0,i.isVoid)(l)?null:l;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isStringArray=t.isString=void 0;var r=o(157);function n(e){return"string"==typeof e;}t.isString=n,t.isStringArray=function(e){return(0,r.isArray)(e)&&n(e[0]);};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isArray=void 0,t.isArray=function(e){return Array.isArray(e);};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isVoid=void 0,t.isVoid=function(e){return null==e;};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isFunction=void 0,t.isFunction=function(e){return"function"==typeof e;};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isNativeFunction=void 0,t.isNativeFunction=function(e){return Boolean(e)&&"function"===(typeof e).toLowerCase()&&(e===Function.prototype||/^\s*function\s*(\b[a-z$_][a-z0-9$_]*\b)*\s*\((|([a-z$_][a-z0-9$_]*)(\s*,[a-z$_][a-z0-9$_]*)*)\)\s*{\s*\[native code]\s*}\s*$/i.test(String(e)));};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(162),t),r.__exportStar(o(163),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isAbort=t.abort=t.options=t.connection=t.error=void 0;var r=o(163);t.error=function(e){return new TypeError(e);},t.connection=function(e){return new r.ConnectionError(e);},t.options=function(e){return new r.OptionsError(e);},t.abort=function(e){return new r.AbortError(e);},t.isAbort=function(e){return e instanceof r.AbortError;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(164),t),r.__exportStar(o(165),t),r.__exportStar(o(166),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.AbortError=void 0;var r=o(145),n=function(e){function t(o){var r=e.call(this,o)||this;return Object.setPrototypeOf(r,t.prototype),r;}return r.__extends(t,e),t;}(Error);t.AbortError=n;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ConnectionError=void 0;var r=o(145),n=function(e){function t(o){var r=e.call(this,o)||this;return Object.setPrototypeOf(r,t.prototype),r;}return r.__extends(t,e),t;}(Error);t.ConnectionError=n;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.OptionsError=void 0;var r=o(145),n=function(e){function t(o){var r=e.call(this,o)||this;return Object.setPrototypeOf(r,t.prototype),r;}return r.__extends(t,e),t;}(TypeError);t.OptionsError=n;},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.splitArray=void 0,t.splitArray=function(e){return Array.isArray(e)?e:e.split(/[,\s]+/);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Eventify=void 0;var r=o(145),n=function(){function e(){this.map=new Map();}return e.prototype.on=function(e,t){var o;return this.map.has(e)||this.map.set(e,new Set()),null===(o=this.map.get(e))||void 0===o||o.add(t),this;},e.prototype.off=function(e,t){var o;return this.map.has(e)&&(null===(o=this.map.get(e))||void 0===o||o.delete(t)),this;},e.prototype.emit=function(e){for(var t,o,n=[],i=1;arguments.length>i;i++)n[i-1]=arguments[i];return this.map.has(e)&&(null===(t=this.map.get(e))||void 0===t||t.forEach(function(e){o=e.apply(void 0,r.__spreadArray([],r.__read(n),!1));})),o;},e;}();t.Eventify=n;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.observable=void 0;var r=o(145),n=o(157),i=o(170),a=o(172),s=o(174),l=Symbol("observable-object");function c(e){return void 0!==e[l];}t.observable=function(e){if(c(e))return e;var t={},o={},u=function(t,r){return(0,n.isArray)(t)?(t.map(function(e){return u(e,r);}),e):(o[t]||(o[t]=[]),o[t].push(r),e);},d=function(i){for(var a=[],s=1;arguments.length>s;s++)a[s-1]=arguments[s];if((0,n.isArray)(i))i.map(function(e){return d.apply(void 0,r.__spreadArray([e],r.__read(a),!1));});else try{!t[i]&&o[i]&&(t[i]=!0,o[i].forEach(function(t){return t.call.apply(t,r.__spreadArray([e],r.__read(a),!1));}));}finally{t[i]=!1;}},p=function(t,o){void 0===o&&(o=[]);var n={};c(t)||(Object.defineProperty(t,l,{enumerable:!1,value:!0}),Object.keys(t).forEach(function(l){var c=l,u=o.concat(c).filter(function(e){return e.length;});n[c]=t[c];var f=(0,s.getPropertyDescriptor)(t,c);Object.defineProperty(t,c,{set:function(t){var o=n[c];if(!(0,i.isFastEqual)(n[c],t)){d(["beforeChange","beforeChange.".concat(u.join("."))],c,t),(0,a.isPlainObject)(t)&&p(t,u),f&&f.set?f.set.call(e,t):n[c]=t;var s=[];d(r.__spreadArray(["change"],r.__read(u.reduce(function(e,t){return s.push(t),e.push("change.".concat(s.join("."))),e;},[])),!1),u.join("."),o,(null==t?void 0:t.valueOf)?t.valueOf():t);}},get:function(){return f&&f.get?f.get.call(e):n[c];},enumerable:!0,configurable:!0}),(0,a.isPlainObject)(n[c])&&p(n[c],u);}),Object.defineProperty(e,"on",{value:u}));};return p(e),e;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isFastEqual=t.isEqual=void 0;var r=o(171);t.isEqual=function(e,t){return e===t||(0,r.stringify)(e)===(0,r.stringify)(t);},t.isFastEqual=function(e,t){return e===t;};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.stringify=void 0,t.stringify=function(e,t){if(void 0===t&&(t={}),"object"!=typeof e)return String(e);var o=new Set(t.excludeKeys),r=new WeakMap();return JSON.stringify(e,function(e,t){if(!o.has(e)){if("object"==typeof t&&null!=t){if(r.get(t))return"[refObject]";r.set(t,!0);}return t;}},t.prettify);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isPlainObject=void 0;var r=o(173);t.isPlainObject=function(e){return!(!e||"object"!=typeof e||e.nodeType||(0,r.isWindow)(e)||e.constructor&&!{}.hasOwnProperty.call(e.constructor.prototype,"isPrototypeOf"));};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isWindow=void 0,t.isWindow=function(e){return null!=e&&e===e.window;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.watch=t.getPropertyDescriptor=void 0;var r=o(145),n=o(159),i=o(172),a=o(175),s=o(169),l=o(176),c=o(167),u=o(161);function d(e,t){var o;do{o=Object.getOwnPropertyDescriptor(e,t),e=Object.getPrototypeOf(e);}while(!o&&e);return o;}function p(e,t){return function(o,p){if(!(0,n.isFunction)(o[p]))throw(0,u.error)("Handler must be a Function");var f=function(l){var u=function(e){for(var t,o=[],n=1;arguments.length>n;n++)o[n-1]=arguments[n];if(!l.isInDestruct)return(t=l)[p].apply(t,r.__spreadArray([e],r.__read(o),!1));};(0,c.splitArray)(e).forEach(function(e){if(/:/.test(e)){var c=r.__read(e.split(":"),2),p=c[0],f=c[1],h=t,m=(0,a.isViewObject)(l)?l:l.jodit;return p.length&&(h=l.get(p)),(0,n.isFunction)(h)&&(h=h(l)),m.events.on(h||l,f,u),h||m.events.on(f,u),void l.hookStatus("beforeDestruct",function(){m.events.off(h||l,f,u).off(f,u);});}var v=e.split("."),g=r.__read(v,1)[0],y=v.slice(1),b=l[g];(0,i.isPlainObject)(b)&&(0,s.observable)(b).on("change.".concat(y.join(".")),u);var _=d(o,g);Object.defineProperty(l,g,{configurable:!0,set:function(e){var t=b;t!==e&&(b=e,_&&_.set&&_.set.call(l,e),(0,i.isPlainObject)(b)&&(b=(0,s.observable)(b)).on("change.".concat(y.join(".")),u),u(g,t,b));},get:function(){return _&&_.get?_.get.call(l):b;}});});};(0,n.isFunction)(o.hookStatus)?o.hookStatus(l.STATUSES.ready,f):f(o);};}t.getPropertyDescriptor=d,t.watch=p,t.default=p;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isViewObject=void 0;var r=o(159);t.isViewObject=function(e){return Boolean(e&&e instanceof Object&&(0,r.isFunction)(e.constructor)&&e.isView);};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.STATUSES=void 0,t.STATUSES={beforeInit:"beforeInit",ready:"ready",beforeDestruct:"beforeDestruct",destructed:"destructed"};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),o(145).__exportStar(o(178),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Async=void 0;var r=o(145),n=o(179),i=o(159),a=o(172),s=o(181),l=o(156),c=o(182),u=function(){function e(){var e,t,o,r,n=this;this.timers=new Map(),this.promisesRejections=new Set(),this.requestsIdle=new Set(),this.requestsRaf=new Set(),this.requestIdleCallbackNative=null!==(t=null===(e=window.requestIdleCallback)||void 0===e?void 0:e.bind(window))&&void 0!==t?t:function(e,t){var o,r=Date.now();return n.setTimeout(function(){e({didTimeout:!1,timeRemaining:function(){return Math.max(0,50-(Date.now()-r));}});},null!==(o=null==t?void 0:t.timeout)&&void 0!==o?o:1);},this.cancelIdleCallbackNative=null!==(r=null===(o=window.cancelIdleCallback)||void 0===o?void 0:o.bind(window))&&void 0!==r?r:function(e){n.clearTimeout(e);},this.isDestructed=!1;}return e.prototype.delay=function(e){var t=this;return this.promise(function(o){return t.setTimeout(o,e);});},e.prototype.setTimeout=function(e,t){for(var o=[],i=2;arguments.length>i;i++)o[i-2]=arguments[i];if(this.isDestructed)return 0;var a={};(0,c.isNumber)(t)||(t=(a=t).timeout||0),a.label&&this.clearLabel(a.label);var s=n.setTimeout.apply(void 0,r.__spreadArray([e,t],r.__read(o),!1)),l=a.label||s;return this.timers.set(l,s),s;},e.prototype.clearLabel=function(e){e&&this.timers.has(e)&&((0,n.clearTimeout)(this.timers.get(e)),this.timers.delete(e));},e.prototype.clearTimeout=function(e){if((0,l.isString)(e))return this.clearLabel(e);(0,n.clearTimeout)(e),this.timers.delete(e);},e.prototype.debounce=function(e,t,o){var l=this;void 0===o&&(o=!1);var c=0,u=!1,d=[],p=function(){for(var t=[],o=0;arguments.length>o;o++)t[o]=arguments[o];if(!u){c=0;var n=e.apply(void 0,r.__spreadArray([],r.__read(t),!1));if(u=!0,d.length){var i=function(){d.forEach(function(e){return e();}),d.length=0;};(0,s.isPromise)(n)?n.finally(i):i();}}},f=function(){for(var a=[],s=0;arguments.length>s;s++)a[s]=arguments[s];u=!1,t?(!c&&o&&p.apply(void 0,r.__spreadArray([],r.__read(a),!1)),(0,n.clearTimeout)(c),c=l.setTimeout(function(){return p.apply(void 0,r.__spreadArray([],r.__read(a),!1));},(0,i.isFunction)(t)?t():t),l.timers.set(e,c)):p.apply(void 0,r.__spreadArray([],r.__read(a),!1));};return(0,a.isPlainObject)(t)&&t.promisify?function(){for(var e=[],t=0;arguments.length>t;t++)e[t]=arguments[t];var o=l.promise(function(e){d.push(e);});return f.apply(void 0,r.__spreadArray([],r.__read(e),!1)),o;}:f;},e.prototype.throttle=function(e,t,o){var n=this;void 0===o&&(o=!1);var a,s,l,c=null;return function(){for(var o=[],u=0;arguments.length>u;u++)o[u]=arguments[u];a=!0,l=o,t?c||(s=function(){a?(e.apply(void 0,r.__spreadArray([],r.__read(l),!1)),a=!1,c=n.setTimeout(s,(0,i.isFunction)(t)?t():t),n.timers.set(s,c)):c=null;})():e.apply(void 0,r.__spreadArray([],r.__read(l),!1));};},e.prototype.promise=function(e){var t=this,o=function(){},r=new Promise(function(r,n){return t.promisesRejections.add(n),o=n,e(r,n);});return r.finally||(r.finally=function(e){return r.then(e).catch(e),r;}),r.finally(function(){t.promisesRejections.delete(o);}).catch(function(){return null;}),r.rejectCallback=o,r;},e.prototype.promiseState=function(e){var t=this;if(e.status)return e.status;if(!Promise.race)return new Promise(function(o){e.then(function(e){return o("fulfilled"),e;},function(e){throw o("rejected"),e;}),t.setTimeout(function(){o("pending");},100);});var o={};return Promise.race([e,o]).then(function(e){return e===o?"pending":"fulfilled";},function(){return"rejected";});},e.prototype.requestIdleCallback=function(e,t){var o=this.requestIdleCallbackNative(e,t);return this.requestsIdle.add(o),o;},e.prototype.requestIdlePromise=function(e){var t=this;return this.promise(function(o){var r=t.requestIdleCallback(function(){return o(r);},e);});},e.prototype.cancelIdleCallback=function(e){return this.requestsIdle.delete(e),this.cancelIdleCallbackNative(e);},e.prototype.requestAnimationFrame=function(e){var t=requestAnimationFrame(e);return this.requestsRaf.add(t),t;},e.prototype.cancelAnimationFrame=function(e){this.requestsRaf.delete(e),cancelAnimationFrame(e);},e.prototype.clear=function(){var e=this;this.requestsIdle.forEach(function(t){return e.cancelIdleCallback(t);}),this.requestsRaf.forEach(function(t){return e.cancelAnimationFrame(t);}),this.timers.forEach(function(t){return(0,n.clearTimeout)(e.timers.get(t));}),this.timers.clear(),this.promisesRejections.forEach(function(e){return e();}),this.promisesRejections.clear();},e.prototype.destruct=function(){this.clear(),this.isDestructed=!0;},e;}();t.Async=u;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),o(145).__exportStar(o(180),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.clearTimeout=t.setTimeout=void 0;var r=o(145);t.setTimeout=function(e,t){for(var o=[],n=2;arguments.length>n;n++)o[n-2]=arguments[n];return t?window.setTimeout.apply(window,r.__spreadArray([e,t],r.__read(o),!1)):(e.call.apply(e,r.__spreadArray([null],r.__read(o),!1)),0);},t.clearTimeout=function(e){window.clearTimeout(e);};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isPromise=void 0,t.isPromise=function(e){return e&&"function"==typeof e.then;};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isNumber=void 0,t.isNumber=function(e){return"number"==typeof e&&!isNaN(e)&&isFinite(e);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(184),t),r.__exportStar(o(301),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Ajax=void 0;var r=o(145),n=o(146),i=o(185),a=o(161),s=o(301);o(302);var l=function(){function e(e,t){var o=this;this.jodit=e,this.isFulfilled=!1,this.activated=!1,this.options=(0,i.ConfigProto)(t||{},n.Config.prototype.defaultAjaxOptions),this.xhr=this.o.xhr?this.o.xhr():new XMLHttpRequest(),e&&e.e&&e.e.on("beforeDestruct",function(){return o.destruct();});}return e.prototype.__buildParams=function(e,t){return(0,i.isFunction)(this.o.queryBuild)?this.o.queryBuild.call(this,e,t):(0,i.isString)(e)||this.j.ow.FormData&&e instanceof this.j.ow.FormData?e:(0,i.buildQuery)(e);},Object.defineProperty(e.prototype,"o",{get:function(){return this.options;},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"j",{get:function(){return this.jodit;},enumerable:!1,configurable:!0}),e.prototype.abort=function(){if(this.isFulfilled)return this;try{this.isFulfilled=!0,this.xhr.abort();}catch(e){}return this;},e.prototype.send=function(){var e=this;this.activated=!0;var t=this.xhr,o=this.o,r=this.prepareRequest();return this.j.async.promise(function(n,i){var l,c=function(){e.isFulfilled=!0,i(a.connection("Connection error"));},u=function(){e.isFulfilled=!0,n(new s.Response(r,t.status,t.statusText,t.responseType?t.response:t.responseText));};t.onload=u,t.onabort=function(){e.isFulfilled=!0,i(a.abort("Abort connection"));},t.onerror=c,t.ontimeout=c,o.responseType&&(t.responseType=o.responseType),t.onprogress=function(t){var o,r,n=0;t.lengthComputable&&(n=t.loaded/t.total*100),null===(r=(o=e.options).onProgress)||void 0===r||r.call(o,n);},t.onreadystatechange=function(){var r,n;null===(n=(r=e.options).onProgress)||void 0===n||n.call(r,10),t.readyState===XMLHttpRequest.DONE&&(o.successStatuses.includes(t.status)?u():t.statusText&&(e.isFulfilled=!0,i(a.connection(t.statusText))));},t.withCredentials=null!==(l=o.withCredentials)&&void 0!==l&&l;var d=r.data;t.open(r.method,r.url,!0),o.contentType&&t.setRequestHeader&&t.setRequestHeader("Content-type",o.contentType);var p=o.headers;p&&t.setRequestHeader&&Object.keys(p).forEach(function(e){t.setRequestHeader(e,p[e]);}),e.j.async.setTimeout(function(){t.send(d?e.__buildParams(d):void 0);},0);});},e.prototype.prepareRequest=function(){if(!this.o.url)throw a.error("Need URL for AJAX request");var t=this.o.url,o=this.o.data,n=(this.o.method||"get").toLowerCase();if("get"===n&&o&&(0,i.isPlainObject)(o)){var s=t.indexOf("?");if(-1!==s){var l=(0,i.parseQuery)(t);t=t.substring(0,s)+"?"+(0,i.buildQuery)(r.__assign(r.__assign({},l),o));}else t+="?"+(0,i.buildQuery)(this.o.data);}var c={url:t,method:n,data:o};return e.log.splice(100),e.log.push(c),c;},e.prototype.destruct=function(){this.activated&&!this.isFulfilled&&(this.abort(),this.isFulfilled=!0);},e.log=[],e;}();t.Ajax=l;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(186),t),r.__exportStar(o(271),t),r.__exportStar(o(179),t),r.__exportStar(o(220),t),r.__exportStar(o(273),t),r.__exportStar(o(274),t),r.__exportStar(o(282),t),r.__exportStar(o(295),t),r.__exportStar(o(287),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(152),t),r.__exportStar(o(187),t),r.__exportStar(o(188),t),r.__exportStar(o(155),t),r.__exportStar(o(197),t),r.__exportStar(o(198),t),r.__exportStar(o(199),t),r.__exportStar(o(200),t),r.__exportStar(o(202),t),r.__exportStar(o(203),t),r.__exportStar(o(201),t),r.__exportStar(o(204),t),r.__exportStar(o(206),t),r.__exportStar(o(190),t),r.__exportStar(o(209),t),r.__exportStar(o(189),t),r.__exportStar(o(210),t),r.__exportStar(o(205),t),r.__exportStar(o(211),t),r.__exportStar(o(208),t),r.__exportStar(o(212),t),r.__exportStar(o(264),t),r.__exportStar(o(161),t),r.__exportStar(o(270),t),r.__exportStar(o(154),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.markDeprecated=t.cns=void 0;var r=o(145);t.cns=console,t.markDeprecated=function(e,o,n){return void 0===o&&(o=[""]),void 0===n&&(n=null),function(){for(var i=[],a=0;arguments.length>a;a++)i[a]=arguments[a];return t.cns.warn('Method "'.concat(o[0],'" deprecated.')+(o[1]?' Use "'.concat(o[1],'" instead'):"")),e.call.apply(e,r.__spreadArray([n],r.__read(i),!1));};};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.memorizeExec=t.keys=t.loadImage=t.callPromise=t.markOwner=t.attr=t.call=void 0;var r=o(145),n=o(159),i=o(181),a=o(158),s=o(172),l=o(156),c=o(189),u=o(190),d=o(194);function p(e,t,o){if(!e||!(0,n.isFunction)(e.getAttribute))return null;if(!(0,l.isString)(t))return Object.keys(t).forEach(function(o){var r=t[o];(0,s.isPlainObject)(r)&&"style"===o?(0,u.css)(e,r):("className"===o&&(o="class"),p(e,o,r));}),null;var r=(0,d.CamelCaseToKebabCase)(t);if(/^-/.test(r)){var i=p(e,"data".concat(r));if(i)return i;r=r.substr(1);}if(void 0!==o){if(null!=o)return e.setAttribute(r,o.toString()),o.toString();e.hasAttribute(r)&&e.removeAttribute(r);}return e.getAttribute(r);}t.call=function(e){for(var t=[],o=1;arguments.length>o;o++)t[o-1]=arguments[o];return e.apply(void 0,r.__spreadArray([],r.__read(t),!1));},t.attr=p,t.markOwner=function(e,t){p(t,"data-editor_id",e.id),!t.component&&Object.defineProperty(t,"jodit",{value:e});},t.callPromise=function(e,t){return(0,i.isPromise)(e)?e.finally(t):t();},t.loadImage=function(e,t){return t.async.promise(function(o,r){var n=new Image(),i=function(){t.e.off(n),null==r||r();},a=function(){t.e.off(n),o(n);};t.e.one(n,"load",a).one(n,"error",i).one(n,"abort",i),n.src=e,n.complete&&a();});},t.keys=function(e,t){if(void 0===t&&(t=!0),t)return Object.keys(e);var o=[];for(var r in e)o.push(r);return o;},t.memorizeExec=function(e,t,o,r){var n,i=o.control,s="button".concat(i.command),l=null!==(n=i.args&&i.args[0])&&void 0!==n?n:(0,c.dataBind)(e,s);if((0,a.isVoid)(l))return!1;(0,c.dataBind)(e,s,l),r&&(l=r(l)),e.execCommand(i.command,!1,null!=l?l:void 0);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.dataBind=void 0;var r=o(175),n=new WeakMap();t.dataBind=function(e,t,o){var i=n.get(e);if(!i){n.set(e,i={});var a=null;(0,r.isViewObject)(e.j)&&(a=e.j.e),(0,r.isViewObject)(e)&&(a=e.e),a&&a.on("beforeDestruct",function(){n.delete(e);});}return void 0===o?i[t]:(i[t]=o,o);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.clearCenterAlign=t.css=void 0;var r=o(172),n=o(191),i=o(158),a=o(192),s=o(193),l=o(196),c=o(194);function u(e,t,o,d){void 0===d&&(d=!1);var p=/^(left|top|bottom|right|width|min|max|height|margin|padding|fontsize|font-size)/i;if((0,a.isBoolean)(o)&&(d=o,o=void 0),(0,r.isPlainObject)(t)||void 0!==o){var f=function(e,t,o){!(0,i.isVoid)(o)&&p.test(t)&&(0,n.isNumeric)(o.toString())&&(o=parseInt(o.toString(),10)+"px"),void 0===o||null!=o&&u(e,t,!0)===(0,s.normalizeCssValue)(t,o)||(e.style[t]=o);};if((0,r.isPlainObject)(t))for(var h=Object.keys(t),m=0;h.length>m;m+=1)f(e,(0,l.camelCase)(h[m]),t[h[m]]);else f(e,(0,l.camelCase)(t),o);return"";}var v=(0,c.kebabCase)(t),g=e.ownerDocument||document,y=!!g&&(g.defaultView||g.parentWindow),b=e.style[t],_="";return void 0!==b&&""!==b?_=b:y&&!d&&(_=y.getComputedStyle(e).getPropertyValue(v)),p.test(t)&&/^[-+]?[0-9.]+px$/.test(_.toString())&&(_=parseInt(_.toString(),10)),(0,s.normalizeCssValue)(t,_);}t.css=u,t.clearCenterAlign=function(e){"block"===u(e,"display")&&u(e,"display","");var t=e.style;"auto"===t.marginLeft&&"auto"===t.marginRight&&(t.marginLeft="",t.marginRight="");};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isNumeric=void 0;var r=o(156);t.isNumeric=function(e){if((0,r.isString)(e)){if(!e.match(/^([+-])?[0-9]+(\.?)([0-9]+)?(e[0-9]+)?$/))return!1;e=parseFloat(e);}return"number"==typeof e&&!isNaN(e)&&isFinite(e);};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isBoolean=void 0,t.isBoolean=function(e){return"boolean"==typeof e;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.normalizeCssValue=void 0;var r=o(191),n=o(194),i=o(195);t.normalizeCssValue=function(e,t){if("font-weight"===(0,n.kebabCase)(e)){switch(t.toString().toLowerCase()){case"700":case"bold":return 700;case"400":case"normal":return 400;case"900":case"heavy":return 900;}return(0,r.isNumeric)(t)?Number(t):t;}return /color/i.test(e)&&/^rgb/i.test(t.toString())&&(0,i.colorToHex)(t.toString())||t;};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CamelCaseToKebabCase=t.kebabCase=void 0,t.kebabCase=function(e){return e.replace(/([A-Z])([A-Z])([a-z])/g,"$1-$2$3").replace(/([a-z])([A-Z])/g,"$1-$2").replace(/[\s_]+/g,"-").toLowerCase();},t.CamelCaseToKebabCase=function(e){return e.replace(/([A-Z])([A-Z])([a-z])/g,"$1-$2$3").replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.colorToHex=void 0,t.colorToHex=function(e){if("rgba(0, 0, 0, 0)"===e||""===e)return!1;if(!e)return"#000000";if("#"===e.substr(0,1))return e;var t=/([\s\n\t\r]*?)rgb\((\d+), (\d+), (\d+)\)/.exec(e)||/([\s\n\t\r]*?)rgba\((\d+), (\d+), (\d+), ([\d.]+)\)/.exec(e);if(!t)return"#000000";for(var o=parseInt(t[2],10),r=parseInt(t[3],10),n=(parseInt(t[4],10)|r<<8|o<<16).toString(16).toUpperCase();6>n.length;)n="0"+n;return t[1]+"#"+n;};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.camelCase=void 0,t.camelCase=function(e){return e.replace(/([-_])(.)/g,function(e,t,o){return o.toUpperCase();});};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.set=void 0;var r=o(156),n=o(191),i=o(157),a=o(172);t.set=function(e,t,o){if((0,r.isString)(e)&&e.length){for(var s=e.split("."),l=o,c=s[0],u=0;s.length-1>u;u+=1)(0,i.isArray)(l[c=s[u]])||(0,a.isPlainObject)(l[c])||(l[c]=(0,n.isNumeric)(s[u+1])?[]:{}),l=l[c];l&&(l[s[s.length-1]]=t);}};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getClassName=t.keepNames=void 0;var r=o(159);t.keepNames=new Map(),t.getClassName=function(e){var o;if((0,r.isFunction)(e.className))return e.className();var n=(null===(o=e.constructor)||void 0===o?void 0:o.originalConstructor)||e.constructor;if(t.keepNames.has(n))return t.keepNames.get(n);if(n.name)return n.name;var i=new RegExp(/^\s*function\s*(\S*)\s*\(/),a=n.toString().match(i);return a?a[1]:"";};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.LimitedStack=void 0;var o=function(){function e(e){this.limit=e,this.stack=[];}return e.prototype.push=function(e){return this.stack.push(e),this.stack.length>this.limit&&this.stack.shift(),this;},e.prototype.pop=function(){return this.stack.pop();},e.prototype.find=function(e){return this.stack.find(e);},e;}();t.LimitedStack=o;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.loadNextStyle=t.loadNext=t.appendStyleAsync=t.appendScriptAsync=t.appendScript=void 0;var r=o(145),n=o(201),i=o(159),a=o(156),s=new Map(),l=function(e){return function(t,o){return r.__awaiter(void 0,void 0,Promise,function(){var n;return r.__generator(this,function(r){return s.has(o)?[2,s.get(o)]:(n=e(t,o),s.set(o,n),[2,n]);});});};};t.appendScript=function(e,t,o){var r=e.c.element("script");return r.type="text/javascript",r.async=!0,(0,i.isFunction)(o)&&!e.isInDestruct&&e.e.on(r,"load",o),r.src||(r.src=(0,n.completeUrl)(t)),e.od.body.appendChild(r),{callback:o,element:r};},t.appendScriptAsync=l(function(e,o){return new Promise(function(r,n){var i=(0,t.appendScript)(e,o,r).element;!e.isInDestruct&&e.e.on(i,"error",n);});}),t.appendStyleAsync=l(function(e,t){return new Promise(function(o,r){var i=e.c.element("link");i.rel="stylesheet",i.media="all",i.crossOrigin="anonymous",!e.isInDestruct&&e.e.on(i,"load",function(){return o(i);}).on(i,"error",r),i.href=(0,n.completeUrl)(t),e.o.shadowRoot?e.o.shadowRoot.appendChild(i):e.od.body.appendChild(i);});}),t.loadNext=function(e,o,r){return void 0===r&&(r=0),(0,a.isString)(o[r])?(0,t.appendScriptAsync)(e,o[r]).then(function(){return(0,t.loadNext)(e,o,r+1);}):Promise.resolve();},t.loadNextStyle=function(e,o,r){return void 0===r&&(r=0),(0,a.isString)(o[r])?(0,t.appendStyleAsync)(e,o[r]).then(function(){return(0,t.loadNextStyle)(e,o,r+1);}):Promise.resolve();};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.completeUrl=void 0,t.completeUrl=function(e){return"file:"===window.location.protocol&&/^\/\//.test(e)&&(e="https:"+e),e;};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.browser=void 0,t.browser=function(e){var t=navigator.userAgent.toLowerCase(),o=/(firefox)[\s/]([\w.]+)/.exec(t)||/(chrome)[\s/]([\w.]+)/.exec(t)||/(webkit)[\s/]([\w.]+)/.exec(t)||/(opera)(?:.*version)[\s/]([\w.]+)/.exec(t)||/(msie)[\s]([\w.]+)/.exec(t)||/(trident)\/([\w.]+)/.exec(t)||0>t.indexOf("compatible")||[];return"version"===e?o[2]:"webkit"===e?"chrome"===o[1]||"webkit"===o[1]:"ff"===e?"firefox"===o[1]:"msie"===e?"trident"===o[1]||"msie"===o[1]:o[1]===e;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.buildQuery=void 0;var r=o(172);t.buildQuery=function(e,o){var n=[],i=encodeURIComponent;for(var a in e)if(Object.prototype.hasOwnProperty.call(e,a)){var s=o?o+"["+a+"]":a,l=e[a];n.push((0,r.isPlainObject)(l)?(0,t.buildQuery)(l,s):i(s)+"="+i(l));}return n.join("&");};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ConfigFlatten=t.ConfigProto=void 0;var r=o(145),n=o(205),i=o(157),a=o(172),s=o(156),l=o(158),c=o(146),u=o(188);t.ConfigProto=function e(t,o,u){if(void 0===u&&(u=0),Object.getPrototypeOf(t)!==Object.prototype)return t;var d=c.Config.defaultOptions;if((0,s.isString)(t.preset)){if(void 0!==d.presets[t.preset]){var p=d.presets[t.preset];Object.keys(p).forEach(function(e){(0,l.isVoid)(t[e])&&(t[e]=p[e]);});}delete t.preset;}var f={};return Object.keys(t).forEach(function(s){var l=t[s],c=o?o[s]:null;f[s]=(0,a.isPlainObject)(l)&&(0,a.isPlainObject)(c)&&!(0,n.isAtom)(l)?e(l,c,u+1):0!==u&&(0,i.isArray)(l)&&!(0,n.isAtom)(l)&&(0,i.isArray)(c)?r.__spreadArray(r.__spreadArray([],r.__read(l),!1),r.__read(c.slice(l.length)),!1):l;}),Object.setPrototypeOf(f,o),f;},t.ConfigFlatten=function(e){return(0,u.keys)(e,!1).reduce(function(t,o){return t[o]=e[o],t;},{});};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.fastClone=t.markAsAtomic=t.isAtom=void 0;var r=o(171);t.isAtom=function(e){return e&&e.isAtom;},t.markAsAtomic=function(e){return Object.defineProperty(e,"isAtom",{enumerable:!1,value:!0,configurable:!1}),e;},t.fastClone=function(e){return JSON.parse((0,r.stringify)(e));};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.convertMediaUrlToVideoEmbed=void 0;var r=o(207),n=o(208);t.convertMediaUrlToVideoEmbed=function(e,t,o){if(void 0===t&&(t=400),void 0===o&&(o=345),!(0,r.isURL)(e))return e;var i=document.createElement("a"),a=/(?:http?s?:\/\/)?(?:www\.)?(?:vimeo\.com)\/?(.+)/g;i.href=e,t||(t=400),o||(o=345);var s=i.protocol||"";switch(i.hostname){case"www.vimeo.com":case"vimeo.com":return a.test(e)?e.replace(a,'<iframe width="'+t+'" height="'+o+'" src="'+s+'//player.vimeo.com/video/$1" frameborder="0" allowfullscreen></iframe>'):e;case"youtube.com":case"www.youtube.com":case"youtu.be":case"www.youtu.be":var l=i.search?(0,n.parseQuery)(i.search):{v:i.pathname.substr(1)};return l.v?'<iframe width="'+t+'" height="'+o+'" src="'+s+"//www.youtube.com/embed/"+l.v+'" frameborder="0" allowfullscreen></iframe>':e;}return e;};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isURL=void 0,t.isURL=function(e){if(e.includes(" "))return!1;if("undefined"!=typeof URL)try{var t=new URL(e);return["https:","http:","ftp:","file:","rtmp:"].includes(t.protocol);}catch(e){return!1;}var o=document.createElement("a");return o.href=e,Boolean(o.hostname);};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.parseQuery=void 0,t.parseQuery=function(e){for(var t={},o=e.substr(1).split("&"),r=0;o.length>r;r+=1){var n=o[r].split("=");t[decodeURIComponent(n[0])]=decodeURIComponent(n[1]||"");}return t;};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ctrlKey=void 0,t.ctrlKey=function(e){if("undefined"!=typeof navigator&&-1!==navigator.userAgent.indexOf("Mac OS X")){if(e.metaKey&&!e.altKey)return!0;}else if(e.ctrlKey&&!e.altKey)return!0;return!1;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defaultLanguage=void 0;var r=o(156);t.defaultLanguage=function(e,t){return void 0===t&&(t="en"),"auto"!==e&&(0,r.isString)(e)?e:document.documentElement&&document.documentElement.lang?document.documentElement.lang:navigator.language?navigator.language.substr(0,2):t;};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.humanSizeToBytes=void 0,t.humanSizeToBytes=function(e){if(/^[0-9.]+$/.test(e.toString()))return parseFloat(e);var t=e.substr(-2,2).toUpperCase(),o=["KB","MB","GB","TB"],r=parseFloat(e.substr(0,e.length-2));return-1!==o.indexOf(t)?r*Math.pow(1024,o.indexOf(t)+1):parseInt(e,10);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.scrollIntoViewIfNeeded=t.inView=void 0;var r=o(213);t.inView=function(e,t,o){var r=e.getBoundingClientRect(),n=e,i=r.top,a=r.height;do{if(n&&n.parentNode){if((r=(n=n.parentNode).getBoundingClientRect()).bottom<i)return!1;if(r.top>=i+a)return!1;}}while(n&&n!==t&&n.parentNode);return(o.documentElement&&o.documentElement.clientHeight||0)>=i;},t.scrollIntoViewIfNeeded=function(e,o,n){r.Dom.isHTMLElement(e)&&!(0,t.inView)(e,o,n)&&(o.clientHeight!==o.scrollHeight&&(o.scrollTop=e.offsetTop),(0,t.inView)(e,o,n)||e.scrollIntoView());};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Dom=void 0;var r=o(145),n=o(147),i=o(185),a=o(214),s=o(147),l=function(){function e(){}return e.detach=function(e){for(;e.firstChild;)e.removeChild(e.firstChild);},e.wrapInline=function(t,o,r){var n,a=t,s=t;r.s.save();var l=!1;do{l=!1,(n=a.previousSibling)&&!e.isBlock(n)&&(l=!0,a=n);}while(l);do{l=!1,(n=s.nextSibling)&&!e.isBlock(n)&&(l=!0,s=n);}while(l);var c=(0,i.isString)(o)?r.createInside.element(o):o;a.parentNode&&a.parentNode.insertBefore(c,a);for(var u=a;u&&(u=a.nextSibling,c.appendChild(a),a!==s&&u);)a=u;return r.s.restore(),c;},e.wrap=function(t,o,r){var n=(0,i.isString)(o)?r.element(o):o;if(e.isNode(t)){if(!t.parentNode)throw(0,i.error)("Element should be in DOM");t.parentNode.insertBefore(n,t),n.appendChild(t);}else{var a=t.extractContents();t.insertNode(n),n.appendChild(a);}return n;},e.unwrap=function(t){var o=t.parentNode;if(o){for(;t.firstChild;)o.insertBefore(t.firstChild,t);e.safeRemove(t);}},e.between=function(e,t,o){for(var r=e;r&&r!==t&&(e===r||!o(r));){var n=r.firstChild||r.nextSibling;if(!n){for(;r&&!r.nextSibling;)r=r.parentNode;n=null==r?void 0:r.nextSibling;}r=n;}},e.replace=function(e,t,o,r,n){void 0===r&&(r=!1),void 0===n&&(n=!1),(0,i.isHTML)(t)&&(t=o.fromHTML(t));var a=(0,i.isString)(t)?o.element(t):t;if(!n)for(;e.firstChild;)a.appendChild(e.firstChild);return r&&(0,i.toArray)(e.attributes).forEach(function(e){a.setAttribute(e.name,e.value);}),e.parentNode&&e.parentNode.replaceChild(a,e),a;},e.isEmptyTextNode=function(t){return e.isText(t)&&(!t.nodeValue||0===t.nodeValue.replace(n.INVISIBLE_SPACE_REG_EXP(),"").trim().length);},e.isEmptyContent=function(t){return e.each(t,function(t){return e.isEmptyTextNode(t);});},e.isContentEditable=function(t,o){return e.isNode(t)&&!e.closest(t,function(t){return e.isElement(t)&&"false"===t.getAttribute("contenteditable");},o);},e.isEmpty=function(t,o){return void 0===o&&(o=/^(img|svg|canvas|input|textarea|form)$/),!t||(e.isText(t)?null==t.nodeValue||0===(0,i.trim)(t.nodeValue).length:!o.test(t.nodeName.toLowerCase())&&e.each(t,function(t){if(e.isText(t)&&null!=t.nodeValue&&0!==(0,i.trim)(t.nodeValue).length||e.isElement(t)&&o.test(t.nodeName.toLowerCase()))return!1;}));},e.isNode=function(e){return Boolean(e&&(0,i.isString)(e.nodeName)&&"number"==typeof e.nodeType&&e.childNodes&&(0,i.isFunction)(e.appendChild));},e.isCell=function(t){return e.isNode(t)&&/^(td|th)$/i.test(t.nodeName);},e.isImage=function(t){return e.isNode(t)&&/^(img|svg|picture|canvas)$/i.test(t.nodeName);},e.isBlock=function(t){return!(0,i.isVoid)(t)&&"object"==typeof t&&e.isNode(t)&&n.IS_BLOCK.test(t.nodeName);},e.isText=function(e){return Boolean(e&&e.nodeType===Node.TEXT_NODE);},e.isElement=function(t){var o;if(!e.isNode(t))return!1;var r=null===(o=t.ownerDocument)||void 0===o?void 0:o.defaultView;return Boolean(r&&t.nodeType===Node.ELEMENT_NODE);},e.isFragment=function(t){var o;if(!e.isNode(t))return!1;var r=null===(o=t.ownerDocument)||void 0===o?void 0:o.defaultView;return Boolean(r&&t.nodeType===Node.DOCUMENT_FRAGMENT_NODE);},e.isHTMLElement=function(t){var o;if(!e.isNode(t))return!1;var r=null===(o=t.ownerDocument)||void 0===o?void 0:o.defaultView;return Boolean(r&&t instanceof r.HTMLElement);},e.isInlineBlock=function(t){return e.isElement(t)&&!/^(BR|HR)$/i.test(t.tagName)&&-1!==["inline","inline-block"].indexOf((0,i.css)(t,"display").toString());},e.canSplitBlock=function(t){return!(0,i.isVoid)(t)&&e.isHTMLElement(t)&&e.isBlock(t)&&!/^(TD|TH|CAPTION|FORM)$/.test(t.nodeName)&&void 0!==t.style&&!/^(fixed|absolute)/i.test(t.style.position);},e.last=function(e,t){var o=null==e?void 0:e.lastChild;if(!o)return null;do{if(t(o))return o;var r=o.lastChild;if(r||(r=o.previousSibling),!r&&o.parentNode!==e){do{o=o.parentNode;}while(o&&!(null==o?void 0:o.previousSibling)&&o.parentNode!==e);r=null==o?void 0:o.previousSibling;}o=r;}while(o);return null;},e.prev=function(t,o,r,n){return void 0===n&&(n=!0),e.find(t,o,r,!1,n);},e.next=function(t,o,r,n){return void 0===n&&(n=!0),e.find(t,o,r,!0,n);},e.prevWithClass=function(t,o){return e.prev(t,function(t){return e.isElement(t)&&t.classList.contains(o);},t.parentNode);},e.nextWithClass=function(t,o){return e.next(t,function(t){return e.isElement(t)&&t.classList.contains(o);},t.parentNode);},e.find=function(e,t,o,r,n){void 0===r&&(r=!0),void 0===n&&(n=!0);for(var i=this.nextGen(e,o,r,n),a=i.next();!a.done;){if(t(a.value))return a.value;a=i.next();}return null;},e.nextGen=function(e,t,o,n){var i,a,s;return void 0===o&&(o=!0),void 0===n&&(n=!0),r.__generator(this,function(l){switch(l.label){case 0:i=[],a=e,l.label=1;case 1:for(s=o?a.nextSibling:a.previousSibling;s;)i.unshift(s),s=o?s.nextSibling:s.previousSibling;return[5,r.__values(this.runInStack(e,i,o,n))];case 2:l.sent(),a=a.parentNode,l.label=3;case 3:if(a&&a!==t)return[3,1];l.label=4;case 4:return[2,null];}});},e.each=function(e,t,o){void 0===o&&(o=!0);for(var r=this.eachGen(e,o),n=r.next();!n.done;){if(!1===t(n.value))return!1;n=r.next();}return!0;},e.eachGen=function(e,t){return void 0===t&&(t=!0),this.runInStack(e,[e],t);},e.runInStack=function(e,t,o,n){var i,a;return void 0===n&&(n=!0),r.__generator(this,function(r){switch(r.label){case 0:if(!t.length)return[3,3];if(i=t.pop(),n)for(a=o?i.lastChild:i.firstChild;a;)t.push(a),a=o?a.previousSibling:a.nextSibling;return e===i?[3,2]:[4,i];case 1:r.sent(),r.label=2;case 2:return[3,0];case 3:return[2];}});},e.findWithCurrent=function(t,o,r,n,i){void 0===n&&(n="nextSibling"),void 0===i&&(i="firstChild");var a=t;do{if(o(a))return a||null;if(i&&a&&a[i]){var s=e.findWithCurrent(a[i],o,a,n,i);if(s)return s;}for(;a&&!a[n]&&a!==r;)a=a.parentNode;a&&a[n]&&a!==r&&(a=a[n]);}while(a&&a!==r);return null;},e.findSibling=function(t,o,r){void 0===o&&(o=!0),void 0===r&&(r=function(t){return!e.isEmptyTextNode(t);});for(var n=e.sibling(t,o);n&&!r(n);)n=e.sibling(n,o);return n&&r(n)?n:null;},e.sibling=function(e,t){return t?e.previousSibling:e.nextSibling;},e.up=function(e,t,o,r){void 0===r&&(r=!1);var n=e;if(!n)return null;do{if(t(n))return n;if(n===o||!n.parentNode)break;n=n.parentNode;}while(n&&n!==o);return n===o&&r&&t(n)?n:null;},e.closest=function(t,o,r){var n;return n=(0,i.isFunction)(o)?o:(0,i.isArray)(o)?function(e){return Boolean(e&&o.includes(e.nodeName.toLowerCase()));}:function(e){return Boolean(e&&o===e.nodeName.toLowerCase());},e.up(t,n,r);},e.furthest=function(e,t,o){for(var r=null,n=null==e?void 0:e.parentElement;n&&n!==o&&t(n);)r=n,n=null==n?void 0:n.parentElement;return r;},e.appendChildFirst=function(e,t){var o=e.firstChild;o?o!==t&&e.insertBefore(t,o):e.appendChild(t);},e.after=function(e,t){var o=e.parentNode;o&&(o.lastChild===e?o.appendChild(t):o.insertBefore(t,e.nextSibling));},e.before=function(e,t){var o=e.parentNode;o&&o.insertBefore(t,e);},e.prepend=function(e,t){e.insertBefore(t,e.firstChild);},e.append=function(e,t){var o=this;(0,i.isArray)(t)?t.forEach(function(t){o.append(e,t);}):e.appendChild(t);},e.moveContent=function(e,t,o){void 0===o&&(o=!1);var r=(e.ownerDocument||document).createDocumentFragment();(0,i.toArray)(e.childNodes).forEach(function(e){r.appendChild(e);}),o&&t.firstChild?t.insertBefore(r,t.firstChild):t.appendChild(r);},e.isOrContains=function(e,t,o){return void 0===o&&(o=!1),e===t?!o:Boolean(t&&e&&this.up(t,function(t){return t===e;},e,!0));},e.safeRemove=function(){for(var t=[],o=0;arguments.length>o;o++)t[o]=arguments[o];t.forEach(function(t){return e.isNode(t)&&t.parentNode&&t.parentNode.removeChild(t);});},e.hide=function(e){e&&((0,i.dataBind)(e,"__old_display",e.style.display),e.style.display="none");},e.show=function(e){if(e){var t=(0,i.dataBind)(e,"__old_display");"none"===e.style.display&&(e.style.display=t||"");}},e.isTag=function(e,t){for(var o=(0,i.asArray)(t).map(String),r=0;o.length>r;r+=1)if(this.isElement(e)&&e.tagName.toLowerCase()===o[r].toLowerCase())return!0;return!1;},e.markTemporary=function(e,t){return t&&(0,i.attr)(e,t),(0,i.attr)(e,s.TEMP_ATTR,!0),e;},e.isTemporary=function(t){return!!e.isElement(t)&&(a.Select.isMarker(t)||"true"===(0,i.attr)(t,s.TEMP_ATTR));},e.replaceTemporaryFromString=function(e){return e.replace(/<([a-z]+)[^>]+data-jodit-temp[^>]+>(.+?)<\/\1>/gi,"$2");},e.temporaryList=function(e){return(0,i.$$)("[".concat(s.TEMP_ATTR,"]"),e);},e;}();t.Dom=l;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(215),t),r.__exportStar(o(248),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CommitStyle=t.REPLACE=t.INITIAL=t.UNSET=t.CHANGE=t.UNWRAP=t.WRAP=void 0;var r=o(147),n=o(216);t.WRAP="wrap",t.UNWRAP="unwrap",t.CHANGE="change",t.UNSET="unset",t.INITIAL="initial",t.REPLACE="replace";var i=function(){function e(e){this.options=e;}return Object.defineProperty(e.prototype,"elementIsList",{get:function(){return Boolean(this.options.element&&["ul","ol"].includes(this.options.element));},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"element",{get:function(){return this.options.element||this.defaultTag;},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"elementIsBlock",{get:function(){return Boolean(this.options.element&&r.IS_BLOCK.test(this.options.element));},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isElementCommit",{get:function(){return Boolean(this.options.element&&this.options.element!==this.options.defaultTag);},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"defaultTag",{get:function(){return this.options.defaultTag?this.options.defaultTag:this.elementIsBlock?"p":"span";},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"elementIsDefault",{get:function(){return this.element===this.defaultTag;},enumerable:!1,configurable:!0}),e.prototype.apply=function(e){(0,n.ApplyStyle)(e,this);},e;}();t.CommitStyle=i;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ApplyStyle=void 0;var r=o(185),n=o(217),i=o(215),a=o(229),s=o(217);t.ApplyStyle=function(e,t){var o=e.s,l=e.editor,c=new s.FiniteStateMachine("start",{start:{start:function(){o.save(),(0,r.normalizeNode)(l.firstChild),this.setState("generator");}},generator:{initGenerator:function(){return e.s.wrapInTagGen();},nextFont:function(e){var t=e.next();if(t.done)this.setState("end");else if(!(0,n.isInsideInvisibleElement)(t.value,l)&&!a.Dom.isEmptyContent(t.value))return this.setState("check"),t.value;}},check:{work:function(o){var r=(0,n.getSuitParent)(t,o,e.editor)||(0,n.getSuitChild)(t,o);return r?(this.setState("wholeElement"),r):((r=a.Dom.closest(o,function(e){return(0,s.isSuitElement)(t,e,!0);},e.editor))&&(t.elementIsBlock||(0,s.extractSelectedPart)(r,o,e)),t.elementIsList&&a.Dom.isTag(r,["ul","ol"])?(this.setState("orderList"),o):r?(this.setState("wholeElement"),r):(0,n.unwrapChildren)(t,o)?(this.setState("endProcess"),null):(this.setState("wrap"),o));}},wholeElement:{toggleStyles:function(o){var r=i.INITIAL;r=(0,n.toggleCommitStyles)(t,o)?i.UNWRAP:(0,s.toggleCSS)(t,o,e,r),this.setState("generator",r);}},orderList:{toggleStyles:function(o){var r=i.INITIAL,n=a.Dom.closest(o,"li",e.editor);n&&a.Dom.closest(o,["ul","ol"],e.editor)?(r=(0,s.toggleOrderedList)(t,n,e,r),this.setState(r!==i.REPLACE&&r!==i.UNWRAP&&r!==i.CHANGE?"generator":"endWhile")):this.setState("generator");}},wrap:{toggleStyles:function(o){if("unwrap"!==this.getSubState()){var r=(0,s.wrapAndCommitStyle)(t,o,e);(0,s.toggleCSS)(t,r,e,i.WRAP);}this.setState("generator");}},endWhile:{nextFont:function(e){e.next().done&&this.setState("end");}},endProcess:{toggleStyles:function(){this.setState("generator");}},end:{finalize:function(){o.restore();}}});c.dispatch("start");for(var u=c.dispatch("initGenerator");"end"!==c.getState();){var d=c.dispatch("nextFont",u);if(d){var p=c.dispatch("work",d);c.dispatch("toggleStyles",p);}}c.dispatch("finalize",u);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(218),t),r.__exportStar(o(246),t),r.__exportStar(o(252),t),r.__exportStar(o(247),t),r.__exportStar(o(253),t),r.__exportStar(o(254),t),r.__exportStar(o(257),t),r.__exportStar(o(258),t),r.__exportStar(o(255),t),r.__exportStar(o(256),t),r.__exportStar(o(259),t),r.__exportStar(o(260),t),r.__exportStar(o(261),t),r.__exportStar(o(263),t),r.__exportStar(o(262),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.toggleCSS=void 0;var r=o(186),n=o(190),i=o(189),a=o(194),s=o(193),l=o(219),c=o(229),u=o(215),d=o(237);function p(e,t,o){return(0,r.attr)(t,"style")||((0,r.attr)(t,"style",null),t.tagName.toLowerCase()===e.defaultTag&&(c.Dom.unwrap(t),o=u.UNWRAP)),o;}t.toggleCSS=function(e,t,o,r,f){void 0===f&&(f=!1);var h=e.options,m=h.style,v=h.className;return m&&(0,l.size)(m)>0&&Object.keys(m).forEach(function(l){if(""!==t.style.getPropertyValue((0,a.kebabCase)(l))||null!=m[l]){if(function(e,t,o){var r=e.create.element(t.tagName.toLowerCase());r.style.cssText=t.style.cssText,function(e){var t;if(void 0!==(0,i.dataBind)(e,"shadowRoot"))return(0,i.dataBind)(e,"shadowRoot");var o=(0,d.getContainer)(e),r=document.createElement("iframe");(0,n.css)(r,{width:0,height:0,position:"absolute",border:0}),r.src="about:blank",o.appendChild(r);var a=null===(t=r.contentWindow)||void 0===t?void 0:t.document,s=a?a.body:e.od.body;return(0,i.dataBind)(e,"shadowRoot",s),s;}(e).appendChild(r);var a=(0,n.css)(r,o);return c.Dom.safeRemove(r),a;}(o,t,l)===(0,s.normalizeCssValue)(l,m[l]))return!f&&(0,n.css)(t,l,null),void(r=p(e,t,r=u.UNSET));r=u.CHANGE,!f&&(0,n.css)(t,l,m[l]),f||(r=p(e,t,r));}}),v&&(t.classList.contains(v)?(t.classList.remove(v),r=u.UNSET):(t.classList.add(v),r=u.CHANGE)),r;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.size=void 0;var r=o(220);t.size=function(e){return(0,r.isString)(e)||(0,r.isArray)(e)?e.length:(0,r.isPlainObject)(e)?Object.keys(e).length:0;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(221),t),r.__exportStar(o(157),t),r.__exportStar(o(192),t),r.__exportStar(o(170),t),r.__exportStar(o(159),t),r.__exportStar(o(222),t),r.__exportStar(o(223),t),r.__exportStar(o(224),t),r.__exportStar(o(225),t),r.__exportStar(o(226),t),r.__exportStar(o(175),t),r.__exportStar(o(227),t),r.__exportStar(o(160),t),r.__exportStar(o(182),t),r.__exportStar(o(191),t),r.__exportStar(o(172),t),r.__exportStar(o(181),t),r.__exportStar(o(156),t),r.__exportStar(o(207),t),r.__exportStar(o(228),t),r.__exportStar(o(158),t),r.__exportStar(o(173),t);},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.hasBrowserColorPicker=void 0,t.hasBrowserColorPicker=function(){var e=!0;try{var t=document.createElement("input");t.type="color",e="color"===t.type&&"number"!=typeof t.selectionStart;}catch(t){e=!1;}return e;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isHTML=void 0;var r=o(156);t.isHTML=function(e){return(0,r.isString)(e)&&/<([A-Za-z][A-Za-z0-9]*)\b[^>]*>(.*?)<\/\1>/m.test(e.replace(/[\r\n]/g,""));};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isHtmlFromWord=void 0,t.isHtmlFromWord=function(e){return-1!==e.search(/<meta.*?Microsoft Excel\s[\d].*?>/)||-1!==e.search(/<meta.*?Microsoft Word\s[\d].*?>/)||-1!==e.search(/style="[^"]*mso-/)&&-1!==e.search(/<font/);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.hasContainer=t.isDestructable=t.isInitable=void 0;var r=o(159),n=o(213),i=o(158);t.isInitable=function(e){return!(0,i.isVoid)(e)&&(0,r.isFunction)(e.init);},t.isDestructable=function(e){return!(0,i.isVoid)(e)&&(0,r.isFunction)(e.destruct);},t.hasContainer=function(e){return!(0,i.isVoid)(e)&&n.Dom.isElement(e.container);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isInt=void 0;var r=o(191),n=o(156);t.isInt=function(e){return(0,n.isString)(e)&&(0,r.isNumeric)(e)&&(e=parseFloat(e)),"number"==typeof e&&Number.isFinite(e)&&!(e%1);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isJoditObject=void 0;var r=o(159);t.isJoditObject=function(e){return Boolean(e&&e instanceof Object&&(0,r.isFunction)(e.constructor)&&("undefined"!=typeof Jodit&&e instanceof Jodit||e.isJodit));};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isLicense=void 0;var r=o(156);t.isLicense=function(e){return(0,r.isString)(e)&&23===e.length&&/^[a-z0-9]{5}-[a-z0-9]{5}-[a-z0-9]{5}-[a-z0-9]{5}$/i.test(e);};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isValidName=void 0,t.isValidName=function(e){return!!e.length&&!/[^0-9A-Za-zа-яА-ЯЁё\w\-_.]/.test(e);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(213),t),r.__exportStar(o(230),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.LazyWalker=void 0;var r=o(145),n=o(168),i=o(231),a=o(213),s=function(e){function t(t,o){void 0===o&&(o={});var r=e.call(this)||this;return r.async=t,r.options=o,r.workNodes=null,r.hadAffect=!1,r.isWorked=!1,r.isFinished=!1,r.idleId=0,r;}return r.__extends(t,e),t.prototype.setWork=function(e){return this.isWorked&&this.break(),this.workNodes=a.Dom.eachGen(e,!this.options.reverse),this.isFinished=!1,this.startIdleRequest(),this;},t.prototype.startIdleRequest=function(){var e;this.idleId=this.async.requestIdleCallback(this.workPerform,{timeout:null!==(e=this.options.timeout)&&void 0!==e?e:10});},t.prototype.break=function(e){this.isWorked&&(this.stop(),this.emit("break",e));},t.prototype.end=function(){this.isWorked&&(this.stop(),this.emit("end",this.hadAffect),this.hadAffect=!1);},t.prototype.stop=function(){this.isWorked=!1,this.isFinished=!0,this.workNodes=null,this.async.cancelIdleCallback(this.idleId);},t.prototype.destruct=function(){this.stop();},t.prototype.workPerform=function(e){var t;if(this.workNodes){this.isWorked=!0;for(var o=0,r=null!==(t=this.options.timeoutChunkSize)&&void 0!==t?t:50;!this.isFinished&&(e.timeRemaining()>0||e.didTimeout&&r>=o);){var n=this.workNodes.next();if(o+=1,this.visitNode(n.value)&&(this.hadAffect=!0),n.done)return void this.end();}}else this.end();this.isFinished||this.startIdleRequest();},t.prototype.visitNode=function(e){var t;return!(!e||void 0!==this.options.whatToShow&&e.nodeType!==this.options.whatToShow)&&null!==(t=this.emit("visit",e))&&void 0!==t&&t;},r.__decorate([i.autobind],t.prototype,"workPerform",null),t;}(n.Eventify);t.LazyWalker=s;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.autobind=void 0;var r=o(145);r.__exportStar(o(232),t),r.__exportStar(o(233),t),r.__exportStar(o(234),t),r.__exportStar(o(240),t),r.__exportStar(o(241),t),r.__exportStar(o(242),t),r.__exportStar(o(243),t),r.__exportStar(o(244),t),r.__exportStar(o(174),t);var n=o(245);Object.defineProperty(t,"autobind",{enumerable:!0,get:function(){return n.default;}});},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.cache=void 0;var r=o(185);t.cache=function(e,t,o){var n=o.get;if(!n)throw(0,r.error)("Getter property descriptor expected");o.get=function(){var e=n.call(this);return e&&!0===e.noCache||Object.defineProperty(this,t,{configurable:o.configurable,enumerable:o.enumerable,writable:!1,value:e}),e;};};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.component=void 0;var r=o(145);t.component=function(e){var t=function(e){function t(){for(var o=[],n=0;arguments.length>n;n++)o[n]=arguments[n];var i=e.apply(this,r.__spreadArray([],r.__read(o),!1))||this,a=i.constructor===t;return a&&(i instanceof t||Object.setPrototypeOf(i,t.prototype),i.setStatus("ready")),i;}return r.__extends(t,e),t;}(e);return t;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.throttle=t.debounce=void 0;var r=o(220),n=o(235),i=o(161),a=o(185);function s(e,t,o){return void 0===t&&(t=!1),void 0===o&&(o="debounce"),function(s,l){var c=s[l];if(!(0,r.isFunction)(c))throw(0,i.error)("Handler must be a Function");return s.hookStatus(n.STATUSES.ready,function(n){var i=n.async;(0,a.assert)(null!=i,"Component ".concat(n.componentName||n.constructor.name,' should have "async:IAsync" field'));var s=(0,r.isFunction)(e)?e(n):e;Object.defineProperty(n,l,{configurable:!0,value:i[o](n[l].bind(n),(0,r.isNumber)(s)||(0,r.isPlainObject)(s)?s:n.defaultTimeout,t)});}),{configurable:!0,get:function(){return c.bind(this);}};};}t.debounce=s,t.throttle=function(e,t){return void 0===t&&(t=!1),s(e,t,"throttle");};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(176),t),r.__exportStar(o(236),t),r.__exportStar(o(239),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Component=void 0;var r=o(185),n=o(237),i=o(176),a=o(177),s=new Map(),l=function(){function e(){this.async=new a.Async(),this.ownerWindow=window,this.__componentStatus=i.STATUSES.beforeInit,this.uid="jodit-uid-"+(0,n.uniqueUid)();}return Object.defineProperty(e.prototype,"componentName",{get:function(){return this.__componentName||(this.__componentName="jodit-"+(0,r.kebabCase)(((0,r.isFunction)(this.className)?this.className():"")||(0,r.getClassName)(this))),this.__componentName;},enumerable:!1,configurable:!0}),e.prototype.getFullElName=function(e,t,o){var n=[this.componentName];return e&&(e=e.replace(/[^a-z0-9-]/gi,"-"),n.push("__".concat(e))),t&&(n.push("_",t),n.push("_",(0,r.isVoid)(o)?"true":o.toString())),n.join("");},Object.defineProperty(e.prototype,"ownerDocument",{get:function(){return this.ow.document;},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"od",{get:function(){return this.ownerDocument;},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ow",{get:function(){return this.ownerWindow;},enumerable:!1,configurable:!0}),e.prototype.get=function(e,t){return(0,r.get)(e,t||this);},Object.defineProperty(e.prototype,"isReady",{get:function(){return this.componentStatus===i.STATUSES.ready;},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isDestructed",{get:function(){return this.componentStatus===i.STATUSES.destructed;},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isInDestruct",{get:function(){return i.STATUSES.beforeDestruct===this.componentStatus||i.STATUSES.destructed===this.componentStatus;},enumerable:!1,configurable:!0}),e.prototype.bindDestruct=function(e){var t=this;return e.hookStatus(i.STATUSES.beforeDestruct,function(){return!t.isInDestruct&&t.destruct();}),this;},e.prototype.destruct=function(){this.setStatus(i.STATUSES.destructed),this.async.destruct(),s.get(this)&&s.delete(this);},Object.defineProperty(e.prototype,"componentStatus",{get:function(){return this.__componentStatus;},set:function(e){this.setStatus(e);},enumerable:!1,configurable:!0}),e.prototype.setStatus=function(e){return this.setStatusComponent(e,this);},e.prototype.setStatusComponent=function(e,t){if(e!==this.__componentStatus){t===this&&(this.__componentStatus=e);var o=Object.getPrototypeOf(this);o&&(0,r.isFunction)(o.setStatusComponent)&&o.setStatusComponent(e,t);var n=s.get(this),i=null==n?void 0:n[e];i&&i.length&&i.forEach(function(e){return e(t);});}},e.prototype.hookStatus=function(e,t){var o=s.get(this);o||s.set(this,o={}),o[e]||(o[e]=[]),o[e].push(t);},e.isInstanceOf=function(e,t){return e instanceof t;},e.STATUSES=i.STATUSES,e;}();t.Component=l;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.eventEmitter=t.getContainer=t.extendLang=t.modules=t.pluginSystem=t.uniqueUid=t.instances=void 0;var r=o(238),n=o(229),i=o(149),a=o(226),s=o(175),l=o(198),c=o(194),u=o(147);t.instances={};var d=1,p=new Set();t.uniqueUid=function(){function e(){return d+=10*(Math.random()+1),Math.round(d).toString(16);}for(var t=e();p.has(t);)t=e();return p.add(t),t;},t.pluginSystem=new r.PluginSystem(),t.modules={},t.extendLang=function(e){Object.keys(e).forEach(function(t){u.lang[t]?Object.assign(u.lang[t],e[t]):u.lang[t]=e[t];});};var f=new WeakMap();t.getContainer=function(e,t,o,r){void 0===o&&(o="div"),void 0===r&&(r=!1);var i=t?(0,l.getClassName)(t.prototype):"jodit-utils",u=f.get(e)||{},d=i+o,p=(0,s.isViewObject)(e)?e:e.j;if(!u[d]){var h=p.c,m=(0,a.isJoditObject)(e)&&e.o.shadowRoot?e.o.shadowRoot:e.od.body;if(r&&(0,a.isJoditObject)(e)&&e.od!==e.ed){h=e.createInside;var v="style"===o?e.ed.head:e.ed.body;m=(0,a.isJoditObject)(e)&&e.o.shadowRoot?e.o.shadowRoot:v;}var g=h.element(o,{className:"jodit jodit-".concat((0,c.kebabCase)(i),"-container jodit-box")});g.classList.add("jodit_theme_".concat(p.o.theme||"default")),m.appendChild(g),u[d]=g,e.hookStatus("beforeDestruct",function(){n.Dom.safeRemove(g),delete u[d],Object.keys(u).length&&f.delete(e);}),f.set(e,u);}return u[d].classList.remove("jodit_theme_default","jodit_theme_dark"),u[d].classList.add("jodit_theme_".concat(p.o.theme||"default")),u[d];},t.eventEmitter=new i.EventEmitter();},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.PluginSystem=void 0;var r=o(145),n=o(185),i=function(){function e(){this._items=new Map();}return e.prototype.normalizeName=function(e){return(0,n.kebabCase)(e).toLowerCase();},e.prototype.items=function(e){var t=[];return this._items.forEach(function(e,o){t.push([o,e]);}),t.filter(function(t){var o=r.__read(t,1);return!e||e.includes(o[0]);});},e.prototype.add=function(e,t){this._items.set(this.normalizeName(e),t);},e.prototype.get=function(e){return this._items.get(this.normalizeName(e));},e.prototype.remove=function(e){this._items.delete(this.normalizeName(e));},e.prototype.init=function(t){var o=this,i=t.o.extraPlugins.map(function(e){return(0,n.isString)(e)?{name:e}:e;}),a=(0,n.splitArray)(t.o.disablePlugins).map(function(e){return o.normalizeName(e);}),s=[],l={},c=[],u={},d=function(i){var d=r.__read(i,2),p=d[0],f=d[1];if(!(a.includes(p)||s.includes(p)||l[p])){var h=null==f?void 0:f.requires;if(!(h&&(0,n.isArray)(h)&&o.hasDisabledRequires(a,h))){var m=e.makePluginInstance(t,f);m&&(o.initOrWait(t,p,m,s,l),c.push(m),u[p]=m);}}},p=this.loadExtras(t,i);return(0,n.callPromise)(p,function(){t.isInDestruct||(o.items(t.o.safeMode?t.o.safePluginsList.concat(i.map(function(e){return e.name;})):null).forEach(d),o.addListenerOnBeforeDestruct(t,c),t.__plugins=u);});},e.prototype.hasDisabledRequires=function(e,t){return Boolean((null==t?void 0:t.length)&&e.some(function(e){return t.includes(e);}));},e.makePluginInstance=function(e,t){try{return(0,n.isFunction)(t)?new t(e):t;}catch(e){}return null;},e.prototype.initOrWait=function(t,o,r,i,a){var s=function(o,r){if((0,n.isInitable)(r)){var s=r.requires;if((null==s?void 0:s.length)&&!s.every(function(e){return i.includes(e);}))return a[o]=r,!1;try{r.init(t);}catch(e){}i.push(o);}else i.push(o);return r.hasStyle&&e.loadStyle(t,o),!0;};s(o,r),Object.keys(a).forEach(function(e){var t=a[e];t&&s(e,t)&&(a[e]=void 0,delete a[e]);});},e.prototype.addListenerOnBeforeDestruct=function(e,t){e.e.on("beforeDestruct",function(){t.forEach(function(t){(0,n.isDestructable)(t)&&t.destruct(e);}),t.length=0,delete e.__plugins;});},e.prototype.load=function(t,o){return Promise.all(o.map(function(o){var r=o.url||e.getFullUrl(t,o.name,!0);return(0,n.appendScriptAsync)(t,r).then(function(e){return{v:e,status:"fulfilled"};},function(e){return{e:e,status:"rejected"};});}));},e.loadStyle=function(t,o){return r.__awaiter(this,void 0,Promise,function(){var i;return r.__generator(this,function(r){return i=e.getFullUrl(t,o,!1),this.styles.has(i)?[2]:(this.styles.add(i),[2,(0,n.appendStyleAsync)(t,i)]);});});},e.getFullUrl=function(e,t,o){return t=(0,n.kebabCase)(t),e.basePath+"plugins/"+t+"/"+t+"."+(o?"js":"css");},e.prototype.loadExtras=function(e,t){var o=this;if(t&&t.length)try{var r=t.filter(function(e){return!o._items.has(o.normalizeName(e.name));});if(r.length)return this.load(e,r);}catch(e){}},e.styles=new Set(),e;}();t.PluginSystem=i;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ViewComponent=void 0;var r=o(145),n=function(e){function t(t){var o=e.call(this)||this;return o.setParentView(t),o;}return r.__extends(t,e),Object.defineProperty(t.prototype,"j",{get:function(){return this.jodit;},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"defaultTimeout",{get:function(){return this.j.defaultTimeout;},enumerable:!1,configurable:!0}),t.prototype.i18n=function(e){for(var t,o=[],n=1;arguments.length>n;n++)o[n-1]=arguments[n];return(t=this.j).i18n.apply(t,r.__spreadArray([e],r.__read(o),!1));},t.prototype.setParentView=function(e){return this.jodit=e,e.components.add(this),this;},t.prototype.destruct=function(){return this.j.components.delete(this),e.prototype.destruct.call(this);},t;}(o(236).Component);t.ViewComponent=n;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.idle=void 0;var r=o(145),n=o(235),i=o(185);t.idle=function(){return function(e,t){if(!(0,i.isFunction)(e[t]))throw(0,i.error)("Handler must be a Function");e.hookStatus(n.STATUSES.ready,function(e){var o=e.async,n=e[t];e[t]=function(){for(var t=[],i=0;arguments.length>i;i++)t[i]=arguments[i];return o.requestIdleCallback(n.bind.apply(n,r.__spreadArray([e],r.__read(t),!1)));};});};};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.hook=void 0;var r=o(220),n=o(161);t.hook=function(e){return function(t,o){if(!(0,r.isFunction)(t[o]))throw(0,n.error)("Handler must be a Function");t.hookStatus(e,function(e){e[o].call(e);});};};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.nonenumerable=void 0,t.nonenumerable=function(e,t){!1!==(Object.getOwnPropertyDescriptor(e,t)||{}).enumerable&&Object.defineProperty(e,t,{enumerable:!1,set:function(e){Object.defineProperty(this,t,{enumerable:!1,writable:!0,value:e});}});};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.persistent=void 0;var r=o(235),n=o(175);t.persistent=function(e,t){e.hookStatus(r.STATUSES.ready,function(e){var o=(0,n.isViewObject)(e)?e:e.jodit,r="".concat(o.options.namespace).concat(e.componentName,"_prop_").concat(t),i=e[t];Object.defineProperty(e,t,{get:function(){var e;return null!==(e=o.storage.get(r))&&void 0!==e?e:i;},set:function(e){o.storage.set(r,e);}});});};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.wait=void 0;var r=o(145),n=o(185),i=o(235);t.wait=function(e){return function(t,o){if(!(0,n.isFunction)(t[o]))throw(0,n.error)("Handler must be a Function");t.hookStatus(i.STATUSES.ready,function(t){var n=t.async,i=t[o],a=0;Object.defineProperty(t,o,{configurable:!0,value:function o(){for(var s=[],l=0;arguments.length>l;l++)s[l]=arguments[l];n.clearTimeout(a),e(t)?i.apply(t,s):a=n.setTimeout(function(){return o.apply(void 0,r.__spreadArray([],r.__read(s),!1));},10);}});});};};},function(e,t){"use strict";function o(e){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e;}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e;},o(e);}function r(e,t,r){var n=r.value;if("function"!=typeof n)throw new TypeError("@boundMethod decorator can only be applied to methods not: ".concat(o(n)));var i=!1;return{configurable:!0,get:function(){if(i||this===e.prototype||this.hasOwnProperty(t)||"function"!=typeof n)return n;var o=n.bind(this);return i=!0,Object.defineProperty(this,t,{configurable:!0,get:function(){return o;},set:function(e){n=e,delete this[t];}}),i=!1,o;},set:function(e){n=e;}};}function n(e){var t;return"undefined"!=typeof Reflect&&"function"==typeof Reflect.ownKeys?t=Reflect.ownKeys(e.prototype):(t=Object.getOwnPropertyNames(e.prototype),"function"==typeof Object.getOwnPropertySymbols&&(t=t.concat(Object.getOwnPropertySymbols(e.prototype)))),t.forEach(function(t){if("constructor"!==t){var o=Object.getOwnPropertyDescriptor(e.prototype,t);"function"==typeof o.value&&Object.defineProperty(e.prototype,t,r(e,t,o));}}),e;}Object.defineProperty(t,"__esModule",{value:!0}),t.boundClass=t.boundMethod=void 0,t.boundMethod=r,t.boundClass=n,t.default=function(){return 1===arguments.length?n.apply(void 0,arguments):r.apply(void 0,arguments);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.toggleOrderedList=void 0;var r=o(229),n=o(247),i=o(215),a=o(218);t.toggleOrderedList=function(e,t,o,s){if(!t)return s;var l=t.parentElement;if(!l)return s;if(l.tagName.toLowerCase()!==e.element){var c=r.Dom.replace(l,e.element,o.createInside);return(0,a.toggleCSS)(e,c,o,s),i.REPLACE;}return(0,a.toggleCSS)(e,t.parentElement,o,i.INITIAL,!0)===i.CHANGE?(0,a.toggleCSS)(e,t.parentElement,o,s):((0,n.extractSelectedPart)(l,t,o),r.Dom.unwrap(t.parentElement),r.Dom.replace(t,o.o.enter,o.createInside),s);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.extractSelectedPart=void 0;var r=o(248),n=o(185),i=o(229);function a(e,t,o){var r=t.extractContents();r.textContent&&(0,n.trim)(r.textContent).length||!r.firstChild||i.Dom.unwrap(r.firstChild),e.parentNode&&(0,n.call)(o?i.Dom.before:i.Dom.after,e,r);}t.extractSelectedPart=function(e,t,o){var n=o.s.createRange(),i=r.Select.isMarker(t.previousSibling)?t.previousSibling:t;n.setStartBefore(e),n.setEndBefore(i),a(e,n,!0);var s=r.Select.isMarker(t.nextSibling)?t.nextSibling:t;n.setStartAfter(s),n.setEndAfter(e),a(e,n,!1);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Select=void 0;var r=o(145),n=o(147),i=o(147),a=o(229),s=o(185),l=o(215),c=o(231),u=o(249),d=function(){function e(e){var t=this;this.jodit=e,e.e.on("removeMarkers",function(){t.removeMarkers();});}return Object.defineProperty(e.prototype,"j",{get:function(){return this.jodit;},enumerable:!1,configurable:!0}),e.prototype.errorNode=function(e){if(!a.Dom.isNode(e))throw(0,s.error)("Parameter node must be instance of Node");},Object.defineProperty(e.prototype,"area",{get:function(){return this.j.editor;},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"win",{get:function(){return this.j.ew;},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"doc",{get:function(){return this.j.ed;},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"sel",{get:function(){return this.j.o.shadowRoot&&(0,s.isFunction)(this.j.o.shadowRoot.getSelection)?this.j.o.shadowRoot.getSelection():this.win.getSelection();},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"range",{get:function(){var e=this.sel;return e&&e.rangeCount?e.getRangeAt(0):this.createRange();},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"isInsideArea",{get:function(){var e=this.sel,t=(null==e?void 0:e.rangeCount)?e.getRangeAt(0):null;return!(!t||!a.Dom.isOrContains(this.area,t.startContainer));},enumerable:!1,configurable:!0}),e.prototype.createRange=function(e){void 0===e&&(e=!1);var t=this.doc.createRange();return e&&this.selectRange(t),t;},e.prototype.remove=function(){var e=this.sel,t=this.current();if(e&&t)for(var o=0;e.rangeCount>o;o+=1)e.getRangeAt(o).deleteContents(),e.getRangeAt(o).collapse(!0);},e.prototype.clear=function(){var e,t;(null===(e=this.sel)||void 0===e?void 0:e.rangeCount)&&(null===(t=this.sel)||void 0===t||t.removeAllRanges());},e.prototype.removeNode=function(e){if(!a.Dom.isOrContains(this.j.editor,e,!0))throw(0,s.error)("Selection.removeNode can remove only editor's children");a.Dom.safeRemove(e),this.j.e.fire("afterRemoveNode",e);},e.prototype.insertCursorAtPoint=function(e,t){var o=this;this.removeMarkers();try{var r=this.createRange();return function(){if(o.doc.caretPositionFromPoint&&(n=o.doc.caretPositionFromPoint(e,t)))r.setStart(n.offsetNode,n.offset);else if(o.doc.caretRangeFromPoint){var n=o.doc.caretRangeFromPoint(e,t);r.setStart(n.startContainer,n.startOffset);}}(),r.collapse(!0),this.selectRange(r),!0;}catch(e){}return!1;},e.isMarker=function(e){return a.Dom.isNode(e)&&a.Dom.isTag(e,"span")&&e.hasAttribute("data-"+n.MARKER_CLASS);},Object.defineProperty(e.prototype,"hasMarkers",{get:function(){return Boolean(this.markers.length);},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"markers",{get:function(){return(0,s.$$)("span[data-"+n.MARKER_CLASS+"]",this.area);},enumerable:!1,configurable:!0}),e.prototype.removeMarkers=function(){a.Dom.safeRemove.apply(null,this.markers);},e.prototype.marker=function(e,t){void 0===e&&(e=!1);var o=null;t&&(o=t.cloneRange()).collapse(e);var r=this.j.createInside.span();return r.id=n.MARKER_CLASS+"_"+Number(new Date())+"_"+String(Math.random()).slice(2),r.style.lineHeight="0",r.style.display="none",r.setAttribute("data-"+n.MARKER_CLASS,e?"start":"end"),r.appendChild(this.j.createInside.text(n.INVISIBLE_SPACE)),o&&a.Dom.isOrContains(this.area,e?o.startContainer:o.endContainer)&&o.insertNode(r),r;},e.prototype.restore=function(){var e=!1,t=function(e){return"span[data-".concat(n.MARKER_CLASS,"=").concat(e?"start":"end","]");},o=this.area.querySelector(t(!0)),r=this.area.querySelector(t(!1));if(o){if(e=this.createRange(),r)e.setStartAfter(o),a.Dom.safeRemove(o),e.setEndBefore(r),a.Dom.safeRemove(r);else{var i=o.previousSibling;a.Dom.isText(i)?e.setStart(i,i.nodeValue?i.nodeValue.length:0):e.setStartBefore(o),a.Dom.safeRemove(o),e.collapse(!0);}e&&this.selectRange(e);}},e.prototype.save=function(e){if(void 0===e&&(e=!1),this.hasMarkers)return[];var t=this.sel;if(!t||!t.rangeCount)return[];for(var o=[],r=t.rangeCount,n=[],i=0;r>i;i+=1)if(n[i]=t.getRangeAt(i),n[i].collapsed){var a=this.marker(!0,n[i]);o[i]={startId:a.id,collapsed:!0,startMarker:a.outerHTML};}else{a=this.marker(!0,n[i]);var s=this.marker(!1,n[i]);o[i]={startId:a.id,endId:s.id,collapsed:!1,startMarker:a.outerHTML,endMarker:s.outerHTML};}if(!e)for(t.removeAllRanges(),i=r-1;i>=0;--i){var l=this.doc.getElementById(o[i].startId);if(l)if(o[i].collapsed)n[i].setStartAfter(l),n[i].collapse(!0);else if(n[i].setStartBefore(l),o[i].endId){var c=this.doc.getElementById(o[i].endId);c&&n[i].setEndAfter(c);}try{t.addRange(n[i].cloneRange());}catch(e){}}return o;},e.prototype.focus=function(e){var t,o;if(void 0===e&&(e={preventScroll:!0}),!this.isFocused()){var r=(0,s.getScrollParent)(this.j.container),n=null==r?void 0:r.scrollTop;this.j.iframe&&"complete"===this.doc.readyState&&this.j.iframe.focus(e),this.win.focus(),this.area.focus(e),n&&(null==r?void 0:r.scrollTo)&&r.scrollTo(0,n);var i=this.sel,l=(null==i?void 0:i.rangeCount)?null==i?void 0:i.getRangeAt(0):null;if(!l||!a.Dom.isOrContains(this.area,l.startContainer)){var c=this.createRange();c.setStart(this.area,0),c.collapse(!0),this.selectRange(c,!1);}return this.j.editorIsActive||null===(o=null===(t=this.j)||void 0===t?void 0:t.events)||void 0===o||o.fire("focus"),!0;}return!1;},e.prototype.isCollapsed=function(){for(var e=this.sel,t=0;e&&e.rangeCount>t;t+=1)if(!e.getRangeAt(t).collapsed)return!1;return!0;},e.prototype.isFocused=function(){return this.doc.hasFocus&&this.doc.hasFocus()&&this.area===this.doc.activeElement;},e.prototype.current=function(e){if(void 0===e&&(e=!0),this.j.getRealMode()===n.MODE_WYSIWYG){var t=this.sel;if(!t||0===t.rangeCount)return null;var o=t.getRangeAt(0),r=o.startContainer,i=!1,s=function(e){return i?e.lastChild:e.firstChild;};if(a.Dom.isTag(r,"br")&&t.isCollapsed)return r;if(!a.Dom.isText(r)){if((r=o.startContainer.childNodes[o.startOffset])||(r=o.startContainer.childNodes[o.startOffset-1],i=!0),r&&t.isCollapsed&&!a.Dom.isText(r))if(!i&&a.Dom.isText(r.previousSibling))r=r.previousSibling;else if(e)for(var l=s(r);l;){if(l&&a.Dom.isText(l)){r=l;break;}l=s(l);}if(r&&!t.isCollapsed&&!a.Dom.isText(r)){var c=r,u=r;do{c=c.firstChild,u=u.lastChild;}while(c&&u&&!a.Dom.isText(c));c===u&&c&&a.Dom.isText(c)&&(r=c);}}if(r&&a.Dom.isOrContains(this.area,r))return r;}return null;},e.prototype.insertNode=function(e,t,o){var r;void 0===t&&(t=!0),void 0===o&&(o=!0),this.errorNode(e),this.j.e.fire("safeHTML",e),!this.isFocused()&&this.j.isEditorMode()&&(this.focus(),this.restore());var n=this.sel;if(this.isCollapsed()||this.j.execCommand("Delete"),n&&n.rangeCount){var s=n.getRangeAt(0);a.Dom.isOrContains(this.area,s.commonAncestorContainer)?a.Dom.isTag(s.startContainer,i.INSEPARABLE_TAGS)&&s.collapsed?null===(r=s.startContainer.parentNode)||void 0===r||r.insertBefore(e,s.startContainer):(s.deleteContents(),s.insertNode(e)):this.area.appendChild(e);}else this.area.appendChild(e);t&&(e.nodeType===Node.DOCUMENT_FRAGMENT_NODE?e.lastChild&&this.setCursorAfter(e.lastChild):this.setCursorAfter(e)),o&&this.j.events&&this.j.e.fire("synchro"),this.j.events&&this.j.e.fire("afterInsertNode",e);},e.prototype.insertHTML=function(e,t){if(void 0===t&&(t=!0),""!==e){var o,r=this.j.createInside.div(),n=this.j.createInside.fragment();if(!this.isFocused()&&this.j.isEditorMode()&&(this.focus(),this.restore()),a.Dom.isNode(e)?r.appendChild(e):r.innerHTML=e.toString(),(this.j.isEditorMode()||!1!==this.j.e.fire("insertHTML",r.innerHTML))&&(o=r.lastChild)){for(;r.firstChild;)o=r.firstChild,n.appendChild(r.firstChild);this.insertNode(n,!1,!1),t&&(o?this.setCursorAfter(o):this.setCursorIn(n)),this.j.synchronizeValues();}}},e.prototype.insertImage=function(e,t,o){void 0===t&&(t=null),void 0===o&&(o=null);var r=(0,s.isString)(e)?this.j.createInside.element("img"):e;if((0,s.isString)(e)&&r.setAttribute("src",e),null!=o){var n=o.toString();n&&"auto"!==n&&0>String(n).indexOf("px")&&0>String(n).indexOf("%")&&(n+="px"),(0,s.call)(this.j.o.resizer.forImageChangeAttributes?s.attr:s.css,r,"width",n);}t&&"object"==typeof t&&(0,s.css)(r,t);var i=function(){(r.offsetHeight>r.naturalHeight||r.offsetWidth>r.naturalWidth)&&(r.style.width="",r.style.height=""),r.removeEventListener("load",i);};this.j.e.on(r,"load",i),r.complete&&i(),this.insertNode(r),this.j.e.fire("afterInsertImage",r);},e.prototype.eachSelection=function(t){var o,r=this,n=this.sel;if(n&&n.rangeCount){var l=n.getRangeAt(0),c=l.commonAncestorContainer;a.Dom.isHTMLElement(c)||(c=c.parentElement);var u=[],d=l.startOffset,p=c.childNodes.length,f=l.startContainer===this.area?c.childNodes[p>d?d:p-1]:l.startContainer,h=l.endContainer===this.area?c.childNodes[l.endOffset-1]:l.endContainer;a.Dom.isText(f)&&f===l.startContainer&&l.startOffset===(null===(o=f.nodeValue)||void 0===o?void 0:o.length)&&f.nextSibling&&(f=f.nextSibling),a.Dom.isText(h)&&h===l.endContainer&&0===l.endOffset&&h.previousSibling&&(h=h.previousSibling);var m=function(t){!t||t===c||a.Dom.isEmptyTextNode(t)||e.isMarker(t)||u.push(t);};m(f),f!==h&&a.Dom.isOrContains(c,f,!0)&&a.Dom.find(f,function(e){return m(e),e===h||e&&e.contains&&e.contains(h);},c,!0,!1);var v=function(e){if(a.Dom.isOrContains(r.j.editor,e,!0)){if(e.nodeName.match(/^(UL|OL)$/))return(0,s.toArray)(e.childNodes).forEach(v);if(a.Dom.isTag(e,"li"))if(e.firstChild)e=e.firstChild;else{var o=r.j.createInside.text(i.INVISIBLE_SPACE);e.appendChild(o),e=o;}t(e);}};0===u.length&&a.Dom.isEmptyTextNode(f)&&u.push(f),0===u.length&&f.firstChild&&u.push(f.firstChild),u.forEach(v);}},e.prototype.cursorInTheEdge=function(e,t){var o,r,n=!e,l=null===(o=this.sel)||void 0===o?void 0:o.getRangeAt(0),c=this.current(!1);if(!l||!c||!a.Dom.isOrContains(t,c,!0))return null;var u=e?l.startContainer:l.endContainer,d=e?l.startOffset:l.endOffset,p=function(e){return Boolean(e&&!a.Dom.isTag(e,"br")&&!a.Dom.isEmptyTextNode(e));};if(a.Dom.isText(u)){var f=(null===(r=u.nodeValue)||void 0===r?void 0:r.length)?u.nodeValue:"";if(n&&f.replace((0,i.INVISIBLE_SPACE_REG_EXP_END)(),"").length>d)return!1;var h=(0,i.INVISIBLE_SPACE_REG_EXP_START)().exec(f);if(e&&(h&&d>h[0].length||!h&&d>0))return!1;}else{var m=(0,s.toArray)(u.childNodes);if(n){if(m.slice(d).some(p))return!1;}else if(m.slice(0,d).some(p))return!1;}return!(0,s.call)(e?a.Dom.prev:a.Dom.next,c,p,t);},e.prototype.cursorOnTheLeft=function(e){return this.cursorInTheEdge(!0,e);},e.prototype.cursorOnTheRight=function(e){return this.cursorInTheEdge(!1,e);},e.prototype.setCursorAfter=function(e){return this.setCursorNearWith(e,!1);},e.prototype.setCursorBefore=function(e){return this.setCursorNearWith(e,!0);},e.prototype.setCursorNearWith=function(e,t){var o,r,i=this;if(this.errorNode(e),!a.Dom.up(e,function(e){return e===i.area||e&&e.parentNode===i.area;},this.area))throw(0,s.error)("Node element must be in editor");var l=this.createRange(),c=null;return a.Dom.isText(e)?t?l.setStart(e,0):l.setEnd(e,null!==(r=null===(o=e.nodeValue)||void 0===o?void 0:o.length)&&void 0!==r?r:0):(c=this.j.createInside.text(n.INVISIBLE_SPACE),t?l.setStartBefore(e):l.setEndAfter(e),l.collapse(t),l.insertNode(c),l.selectNode(c)),l.collapse(t),this.selectRange(l),c;},e.prototype.setCursorIn=function(e,t){var o=this;if(void 0===t&&(t=!1),this.errorNode(e),!a.Dom.up(e,function(e){return e===o.area||e&&e.parentNode===o.area;},this.area))throw(0,s.error)("Node element must be in editor");var r=this.createRange(),i=e,l=e;do{if(a.Dom.isText(i))break;l=i,i=t?i.firstChild:i.lastChild;}while(i);if(!i){var c=this.j.createInside.text(n.INVISIBLE_SPACE);/^(img|br|input)$/i.test(l.nodeName)?i=l:(l.appendChild(c),l=c);}return r.selectNodeContents(i||l),r.collapse(t),this.selectRange(r),l;},e.prototype.selectRange=function(e,t){void 0===t&&(t=!0);var o=this.sel;return t&&!this.isFocused()&&this.focus(),o&&(o.removeAllRanges(),o.addRange(e)),this.j.e.fire("changeSelection"),this;},e.prototype.select=function(e,t){var o=this;if(void 0===t&&(t=!1),this.errorNode(e),!a.Dom.up(e,function(e){return e===o.area||e&&e.parentNode===o.area;},this.area))throw(0,s.error)("Node element must be in editor");var r=this.createRange();return r[t?"selectNodeContents":"selectNode"](e),this.selectRange(r);},Object.defineProperty(e.prototype,"html",{get:function(){var e=this.sel;if(e&&e.rangeCount>0){var t=e.getRangeAt(0).cloneContents(),o=this.j.createInside.div();return o.appendChild(t),o.innerHTML;}return"";},enumerable:!1,configurable:!0}),e.prototype.wrapInTagGen=function(){var t,o,n,l,c,u,d,p,f,h,m;return r.__generator(this,function(v){switch(v.label){case 0:return this.isCollapsed()?(u=this.jodit.createInside.element("font",i.INVISIBLE_SPACE),this.insertNode(u,!1,!1),t=r.__read(this.markers,1),(o=t[0])?u.appendChild(o):(this.setCursorIn(u),this.save()),[4,u]):[3,2];case 1:return v.sent(),a.Dom.unwrap(u),[2];case 2:(0,s.$$)("*[style*=font-size]",this.area).forEach(function(e){return(0,s.attr)(e,"data-font-size",e.style.fontSize.toString());}),this.isCollapsed()?(u=this.j.createInside.element("font"),(0,s.attr)(u,"size",7),this.insertNode(u,!1,!1)):this.j.nativeExecCommand("fontsize",!1,"7"),(0,s.$$)("*[data-font-size]",this.area).forEach(function(e){var t=(0,s.attr)(e,"data-font-size");t&&(e.style.fontSize=t,(0,s.attr)(e,"data-font-size",null));}),n=(0,s.$$)('font[size="7"]',this.area),v.label=3;case 3:v.trys.push([3,8,9,10]),l=r.__values(n),c=l.next(),v.label=4;case 4:return c.done?[3,7]:(p=(u=c.value).lastChild,(d=u.firstChild)&&d===p&&e.isMarker(d)?(a.Dom.unwrap(u),[3,6]):(d&&e.isMarker(d)&&a.Dom.before(u,d),p&&e.isMarker(p)&&a.Dom.after(u,p),[4,u]));case 5:v.sent(),a.Dom.unwrap(u),v.label=6;case 6:return c=l.next(),[3,4];case 7:return[3,10];case 8:return f=v.sent(),h={error:f},[3,10];case 9:try{c&&!c.done&&(m=l.return)&&m.call(l);}finally{if(h)throw h.error;}return[7];case 10:return[2];}});},e.prototype.wrapInTag=function(t){var o,n,i=[];try{for(var l=r.__values(this.wrapInTagGen()),c=l.next();!c.done;c=l.next()){var u=c.value;try{if(u.firstChild&&u.firstChild===u.lastChild&&e.isMarker(u.firstChild))continue;(0,s.isFunction)(t)?t(u):i.push(a.Dom.replace(u,t,this.j.createInside));}finally{var d=u.parentNode;d&&(a.Dom.unwrap(u),a.Dom.isEmpty(d)&&a.Dom.unwrap(d));}}}catch(e){o={error:e};}finally{try{c&&!c.done&&(n=l.return)&&n.call(l);}finally{if(o)throw o.error;}}return i;},e.prototype.applyStyle=function(e,t){void 0===t&&(t={}),new l.CommitStyle({style:e,element:t.element,className:t.className,defaultTag:t.defaultTag}).apply(this.j);},e.prototype.splitSelection=function(e){if(!this.isCollapsed())return null;var t=this.createRange(),o=this.range;t.setStartBefore(e);var r=this.cursorOnTheRight(e),n=this.cursorOnTheLeft(e),s=this.j.createInside.element("br"),l=this.j.createInside.text(i.INVISIBLE_SPACE),c=l.cloneNode();try{if(r||n){o.insertNode(s);var u=function(e,t){for(var o=t(e);o;){var r=t(o);if(!o||!a.Dom.isTag(o,"br")&&!a.Dom.isEmptyTextNode(o))break;a.Dom.safeRemove(o),o=r;}};u(s,function(e){return e.nextSibling;}),u(s,function(e){return e.previousSibling;}),a.Dom.after(s,c),a.Dom.before(s,l),r?(t.setEndBefore(s),o.setEndBefore(s)):(t.setEndAfter(s),o.setEndAfter(s));}else t.setEnd(o.startContainer,o.startOffset);var d=t.extractContents();if(e.parentNode)try{if(e.parentNode.insertBefore(d,e),r&&(null==s?void 0:s.parentNode)){var p=this.createRange();p.setStartBefore(s),this.selectRange(p);}}catch(e){}var f=function(e){var t,o,r;(null===(t=null==e?void 0:e.parentNode)||void 0===t?void 0:t.firstChild)===(null===(o=null==e?void 0:e.parentNode)||void 0===o?void 0:o.lastChild)&&(null===(r=null==e?void 0:e.parentNode)||void 0===r||r.appendChild(s.cloneNode()));};f(l),f(c);}finally{a.Dom.safeRemove(l),a.Dom.safeRemove(c);}return e.previousElementSibling;},e.prototype.expandSelection=function(){var e=this;if(this.isCollapsed())return this;var t=this.range,o=t.cloneRange();if(!a.Dom.isOrContains(this.j.editor,t.commonAncestorContainer,!0))return this;var r=function(o){var r=e.j.createInside.fake(),n=t.cloneRange();return n.collapse(o),n.insertNode(r),(0,u.moveTheNodeAlongTheEdgeOutward)(r,o,e.j.editor),r;},n=r(!0),i=r(!1);o.setStartAfter(n),o.setEndBefore(i);var s=a.Dom.findSibling(n,!1),l=a.Dom.findSibling(i,!0);if(s!==l){var c=a.Dom.isElement(s)&&a.Dom.isOrContains(s,i),d=!c&&a.Dom.isElement(l)&&a.Dom.isOrContains(l,n);if(c||d){for(var p=c?s:l,f=p;a.Dom.isElement(p);)(p=c?p.firstElementChild:p.lastElementChild)&&a.Dom.isOrContains(p,c?i:n)&&(f=p);c?o.setStart(f,0):o.setEnd(f,f.childNodes.length);}}return this.selectRange(o),a.Dom.safeRemove(n,i),this;},r.__decorate([c.autobind],e.prototype,"createRange",null),r.__decorate([c.autobind],e.prototype,"focus",null),r.__decorate([c.autobind],e.prototype,"setCursorAfter",null),r.__decorate([c.autobind],e.prototype,"setCursorBefore",null),r.__decorate([c.autobind],e.prototype,"setCursorIn",null),e;}();t.Select=d;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(250),t),r.__exportStar(o(251),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.moveNodeInsideStart=void 0;var r=o(229),n=o(147);t.moveNodeInsideStart=function(e,t,o){for(var i=r.Dom.findSibling(t,o),a=r.Dom.findSibling(t,!o);r.Dom.isElement(i)&&!r.Dom.isTag(i,n.INSEPARABLE_TAGS)&&r.Dom.isContentEditable(i,e.editor)&&(!a||!r.Dom.closest(t,r.Dom.isElement,e.editor));)o||!i.firstChild?i.appendChild(t):r.Dom.before(i.firstChild,t),i=r.Dom.sibling(t,o),a=r.Dom.sibling(t,!o);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.moveTheNodeAlongTheEdgeOutward=void 0;var r=o(229);t.moveTheNodeAlongTheEdgeOutward=function(e,t,o){for(var n=e;n&&n!==o;){if(r.Dom.findSibling(n,t))return;(n=n.parentElement)&&n!==o&&(t?r.Dom.before(n,e):r.Dom.after(n,e));}};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.elementHasSameStyleKeys=t.elementHasSameStyle=void 0;var r=o(190),n=o(158),i=o(193),a=o(229);t.elementHasSameStyle=function(e,t){return Boolean(!a.Dom.isTag(e,"font")&&a.Dom.isHTMLElement(e)&&Object.keys(t).every(function(o){var a=(0,r.css)(e,o,!0);return!(0,n.isVoid)(a)&&""!==a&&!(0,n.isVoid)(t[o])&&(0,i.normalizeCssValue)(o,t[o]).toString().toLowerCase()===a.toString().toLowerCase();}));},t.elementHasSameStyleKeys=function(e,t){return Boolean(!a.Dom.isTag(e,"font")&&a.Dom.isHTMLElement(e)&&Object.keys(t).every(function(t){return!(0,n.isVoid)((0,r.css)(e,t,!0));}));};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.FiniteStateMachine=void 0;var r=o(145),n=function(){function e(e,t){this.state=e,this.transitions=t,this.subState="",this.silent=!0;}return e.prototype.setState=function(e,t){this.state=e,null!=t&&(this.subState=t);},e.prototype.getState=function(){return this.state;},e.prototype.getSubState=function(){return this.subState;},e.prototype.disableSilent=function(){this.silent=!1;},e.prototype.dispatch=function(e){for(var t=[],o=1;arguments.length>o;o++)t[o-1]=arguments[o];var n=this.transitions[this.state][e];if(n){var i=n.call.apply(n,r.__spreadArray([this],r.__read(t),!1));return i;}if(!this.silent)throw new Error("invalid action: "+this.state+"."+e);},e;}();t.FiniteStateMachine=n;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getSuitChild=void 0;var r=o(229),n=o(255),i=o(256);t.getSuitChild=function(e,t){for(var o=t.firstChild;o&&!(0,n.isNormalNode)(o);)if(!(o=o.nextSibling))return null;return o&&!r.Dom.next(o,n.isNormalNode,t)&&(0,i.isSuitElement)(e,o,!1)?o:null;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isNormalNode=void 0;var r=o(229);t.isNormalNode=function(e){return Boolean(e&&!r.Dom.isEmptyTextNode(e)&&!r.Dom.isTemporary(e));};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isSameStyleChild=t.isSuitElement=void 0;var r=o(255),n=o(252),i=o(229);t.isSuitElement=function(e,t,o){if(!t)return!1;var a=e.element,s=e.elementIsDefault,l=e.options,c=Boolean(l.style&&(0,n.elementHasSameStyle)(t,l.style)),u=t.nodeName.toLowerCase()===a||i.Dom.isTag(t,["ul","ol"])&&e.elementIsList;return!!((!s||!o)&&u||c&&(0,r.isNormalNode)(t))||Boolean(!u&&!o&&s&&i.Dom.isInlineBlock(t));},t.isSameStyleChild=function(e,t){var o=e.element,i=e.options;if(!t||!(0,r.isNormalNode)(t))return!1;var a=t.nodeName.toLowerCase()===o,s=Boolean(i.style&&(0,n.elementHasSameStyleKeys)(t,i.style));return a&&s;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getSuitParent=void 0;var r=o(229),n=o(255),i=o(256);t.getSuitParent=function e(t,o,a){var s=o.parentNode;return s===a||!r.Dom.isHTMLElement(s)||r.Dom.next(o,n.isNormalNode,s)||r.Dom.prev(o,n.isNormalNode,s)?null:t.isElementCommit&&t.elementIsBlock&&!r.Dom.isBlock(s)?e(t,s,a):!(0,i.isSuitElement)(t,s,!1)||r.Dom.isBlock(s)&&!t.elementIsBlock?null:s;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isInsideInvisibleElement=void 0;var r=o(229);t.isInsideInvisibleElement=function(e,t){return Boolean(r.Dom.closest(e,["style","script"],t));};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.toggleCommitStyles=void 0;var r=o(229);t.toggleCommitStyles=function(e,t){return!!(e.elementIsBlock||r.Dom.isTag(t,e.element)&&!e.elementIsDefault)&&(r.Dom.unwrap(t),!0);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.unwrapChildren=void 0;var r=o(229),n=o(256),i=o(185),a=o(252);t.unwrapChildren=function(e,t){var o,s=[],l=[],c=e.options.style;if(t.firstChild)for(var u=r.Dom.eachGen(t),d=u.next(),p=function(){var t=d.value;!(0,n.isSuitElement)(e,t,!0)||c&&!(0,a.elementHasSameStyleKeys)(t,c)?c&&(0,n.isSameStyleChild)(e,t)?(void 0===o&&(o=!1),l.push(function(){(0,i.css)(t,Object.keys(c).reduce(function(e,t){return e[t]=null,e;},{})),(0,i.attr)(t,"style")||(0,i.attr)(t,"style",null),(0,i.attr)(t,"style")||t.nodeName.toLowerCase()!==e.element||s.push(t);})):r.Dom.isEmptyTextNode(t)||void 0===o&&(o=!1):(void 0===o&&(o=!0),s.push(t)),d=u.next();};!d.done;)p();return l.forEach(function(e){return e();}),s.forEach(r.Dom.unwrap),Boolean(o);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.wrapAndCommitStyle=void 0;var r=o(229),n=o(262),i=o(185),a=o(263);t.wrapAndCommitStyle=function(e,t,o){var s=function(e,t,o){if(e.elementIsBlock){var a=r.Dom.up(t,function(e){return r.Dom.isBlock(e)&&!r.Dom.isTag(e,["td","th","tr","tbody","table","li","ul","ol"]);},o.editor);if(a)return a;}return e.elementIsBlock?(0,n.wrapUnwrappedText)(e,t,o,o.s.createRange):((0,i.attr)(t,"size",null),t);}(e,t,o);return e.elementIsList?(0,a.wrapOrderedList)(e,s,o):r.Dom.replace(s,e.element,o.createInside,!0);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.wrapUnwrappedText=void 0;var r=o(229);t.wrapUnwrappedText=function(e,t,o,n){var i=o.editor,a=o.createInside,s=function(e,t){void 0===t&&(t="previousSibling");for(var n=e,a=e;a&&!r.Dom.isTag(a,o.o.enter)&&(n=a,a=a[t]?a[t]:a.parentNode&&!r.Dom.isBlock(a.parentNode)&&a.parentNode!==i?a.parentNode:null,!r.Dom.isBlock(a)););return n;},l=s(t),c=s(t,"nextSibling"),u=n();u.setStartBefore(l),u.setEndAfter(c);var d=u.extractContents(),p=a.element(e.element);return p.appendChild(d),u.insertNode(p),e.elementIsBlock&&r.Dom.isEmpty(p)&&!r.Dom.isTag(p.firstElementChild,"br")&&p.appendChild(a.element("br")),p;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.wrapOrderedList=void 0;var r=o(229);t.wrapOrderedList=function(e,t,o){var n=r.Dom.replace(t,"li",o.createInside),i=n.previousElementSibling||n.nextElementSibling;return r.Dom.isTag(i,["ul","ol"])||(i=o.createInside.element(e.element),r.Dom.before(n,i)),n.previousElementSibling===i?r.Dom.append(i,n):r.Dom.prepend(i,n),i;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.resolveElement=t.cssPath=t.refs=t.getXPathByElement=t.$$=void 0;var r=o(147),n=o(156),i=o(186),a=o(213),s=o(196),l=o(153),c=o(265),u=o(236),d=1;function p(e,t){var o;if(!/:scope/.test(e)||!r.IS_IE||t&&t.nodeType===Node.DOCUMENT_NODE)o=t.querySelectorAll(e);else{var n=t.id,i=n||"_selector_id_"+String(Math.random()).slice(2)+ ++d;e=e.replace(/:scope/g,"#"+i),!n&&t.setAttribute("id",i),o=t.parentNode.querySelectorAll(e),n||t.removeAttribute("id");}return[].slice.call(o);}t.$$=p,t.getXPathByElement=function(e,o){if(!e||e.nodeType!==Node.ELEMENT_NODE)return"";if(!e.parentNode||o===e)return"";if(e.id)return"//*[@id='"+e.id+"']";var r=[].filter.call(e.parentNode.childNodes,function(t){return t.nodeName===e.nodeName;});return(0,t.getXPathByElement)(e.parentNode,o)+"/"+e.nodeName.toLowerCase()+(r.length>1?"["+((0,l.toArray)(r).indexOf(e)+1)+"]":"");},t.refs=function(e){return u.Component.isInstanceOf(e,c.UIElement)&&(e=e.container),p("[ref],[data-ref]",e).reduce(function(e,t){var o=(0,i.attr)(t,"-ref");return o&&(0,n.isString)(o)&&(e[(0,s.camelCase)(o)]=t,e[o]=t),e;},{});},t.cssPath=function(e){if(!a.Dom.isElement(e))return null;for(var t=[],o=e;o&&o.nodeType===Node.ELEMENT_NODE;){var r=o.nodeName.toLowerCase();if(o.id){t.unshift(r+="#"+o.id);break;}var n=o,i=1;do{(n=n.previousElementSibling)&&n.nodeName.toLowerCase()===r&&i++;}while(n);t.unshift(r+=":nth-of-type("+i+")"),o=o.parentNode;}return t.join(" > ");},t.resolveElement=function(e,t){var o=e;if((0,n.isString)(e))try{o=t.querySelector(e);}catch(t){throw(0,i.error)('String "'+e+'" should be valid HTML selector');}if(!o||"object"!=typeof o||!a.Dom.isElement(o)||!o.cloneNode)throw(0,i.error)('Element "'+e+'" should be string or HTMLElement instance');return o;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.UIElement=void 0;var r=o(145),n=o(235),i=o(213),a=o(266),s=o(156),l=o(269),c=function(e){function t(t,o){var r=e.call(this,t)||this;return r.name="",r.__parentElement=null,r.mods={},r.container=r.createContainer(o),Object.defineProperty(r.container,"component",{value:r,configurable:!0}),r;}return r.__extends(t,e),Object.defineProperty(t.prototype,"parentElement",{get:function(){return this.__parentElement;},set:function(e){var t=this;this.__parentElement=e,e&&e.hookStatus("beforeDestruct",function(){return t.destruct();}),this.updateParentElement(this);},enumerable:!1,configurable:!0}),t.prototype.bubble=function(e){for(var t=this.parentElement;t;)e(t),t=t.parentElement;return this;},t.prototype.updateParentElement=function(e){var t;return null===(t=this.__parentElement)||void 0===t||t.updateParentElement(e),this;},t.prototype.get=function(t,o){return e.prototype.get.call(this,t,o)||this.getElm(t);},t.prototype.closest=function(e){for(var o="object"==typeof e?function(t){return t===e;}:function(t){return n.Component.isInstanceOf(t,e);},r=this.__parentElement;r;){if(o(r))return r;r=!r.parentElement&&r.container.parentElement?t.closestElement(r.container.parentElement,t):r.parentElement;}return null;},t.closestElement=function(e,t){var o=i.Dom.up(e,function(e){if(e){var o=e.component;return o&&n.Component.isInstanceOf(o,t);}return!1;});return o?null==o?void 0:o.component:null;},t.prototype.setMod=function(e,t,o){return void 0===o&&(o=this.container),a.Mods.setMod.call(this,e,t,o),this;},t.prototype.getMod=function(e){return a.Mods.getMod.call(this,e);},t.prototype.getElm=function(e){return a.Elms.getElm.call(this,e);},t.prototype.getElms=function(e){return a.Elms.getElms.call(this,e);},t.prototype.update=function(){},t.prototype.appendTo=function(e){return e.appendChild(this.container),this;},t.prototype.clearName=function(e){return e.replace(/[^a-zA-Z0-9]/g,"_");},t.prototype.render=function(e){return this.j.c.div(this.componentName);},t.prototype.createContainer=function(e){var t=this,o=this.render(e);if((0,s.isString)(o)){var r=this.j.c.fromHTML(o.replace(/\*([^*]+?)\*/g,function(e,t){return l.Icon.get(t)||"";}).replace(/&__/g,this.componentName+"__").replace(/~([^~]+?)~/g,function(e,o){return t.i18n(o);}));return r.classList.add(this.componentName),r;}return o;},t.prototype.destruct=function(){return i.Dom.safeRemove(this.container),this.parentElement=null,e.prototype.destruct.call(this);},t;}(n.ViewComponent);t.UIElement=c;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(267),t),r.__exportStar(o(268),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Elms=void 0;var r=o(153),n=function(){function e(){}return e.getElm=function(e){return this.container.querySelector(".".concat(this.getFullElName(e)));},e.getElms=function(e){return(0,r.toArray)(this.container.querySelectorAll(".".concat(this.getFullElName(e))));},e;}();t.Elms=n;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Mods=void 0;var r=o(153),n=o(158),i=function(){function e(){}return e.setMod=function(e,t,o){if(e=e.toLowerCase(),this.mods[e]!==t){var i="".concat(this.componentName,"_").concat(e),a=(o||this.container).classList;(0,r.toArray)(a).forEach(function(e){0===e.indexOf(i)&&a.remove(e);}),!(0,n.isVoid)(t)&&""!==t&&a.add("".concat(i,"_").concat(t.toString().toLowerCase())),this.mods[e]=t;}},e.getMod=function(e){var t;return null!==(t=this.mods[e])&&void 0!==t?t:null;},e;}();t.Mods=i;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Icon=void 0;var r=o(190),n=function(){function e(){}return e.getIcon=function(t){return /<svg/i.test(t)?t:e.icons[t]||e.icons[t.replace(/-/g,"_")]||e.icons[t.replace(/_/g,"-")]||e.icons[t.toLowerCase()];},e.exists=function(e){return void 0!==this.getIcon(e);},e.get=function(e,t){return void 0===t&&(t="<span></span>"),this.getIcon(e)||t;},e.set=function(e,t){return this.icons[e.replace("_","-")]=t,this;},e.makeIcon=function(t,o){var n,i;if(o){var a=o.name.replace(/[^a-zA-Z0-9]/g,"_");if(o.iconURL)i=t.c.span(),(0,r.css)(i,"backgroundImage","url("+o.iconURL.replace("{basePath}",(null==t?void 0:t.basePath)||"")+")");else{var s=t.e.fire("getIcon",o.name,o,a)||e.get(o.name,"")||(null===(n=t.o.extraIcons)||void 0===n?void 0:n[o.name]);s&&(i=t.c.fromHTML(s.trim()),/^<svg/i.test(o.name)||i.classList.add("jodit-icon_"+a));}}return i&&(i.classList.add("jodit-icon"),i.style.fill=o.fill),i;},e.icons={},e;}();t.Icon=n;},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.val=void 0,t.val=function(e,t,o){var r=e.querySelector(t);return r?(o&&(r.value=o),r.value):"";};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.toArray=t.splitArray=t.asArray=void 0;var r=o(272);Object.defineProperty(t,"asArray",{enumerable:!0,get:function(){return r.asArray;}});var n=o(167);Object.defineProperty(t,"splitArray",{enumerable:!0,get:function(){return n.splitArray;}});var i=o(153);Object.defineProperty(t,"toArray",{enumerable:!0,get:function(){return i.toArray;}});},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.asArray=void 0;var r=o(157);t.asArray=function(e){return(0,r.isArray)(e)?e:[e];};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),o(145).__exportStar(o(195),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(275),t),r.__exportStar(o(277),t),r.__exportStar(o(278),t),r.__exportStar(o(279),t),r.__exportStar(o(280),t),r.__exportStar(o(281),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.applyStyles=void 0;var r=o(213),n=o(186),i=o(276);function a(e){return e.replace(/mso-[a-z-]+:[\s]*[^;]+;/gi,"").replace(/mso-[a-z-]+:[\s]*[^";']+$/gi,"").replace(/border[a-z-]*:[\s]*[^;]+;/gi,"").replace(/([0-9.]+)(pt|cm)/gi,function(e,t,o){switch(o.toLowerCase()){case"pt":return(1.328*parseFloat(t)).toFixed(0)+"px";case"cm":return(.02645833*parseFloat(t)).toFixed(0)+"px";}return e;});}t.applyStyles=function(e){if(-1===e.indexOf("<html "))return e;e=(e=e.substring(e.indexOf("<html "),e.length)).substring(0,e.lastIndexOf("</html>")+"</html>".length);var t=document.createElement("iframe");t.style.display="none",document.body.appendChild(t);var o="";try{var s=t.contentDocument||(t.contentWindow?t.contentWindow.document:null);if(s){s.open(),s.write(e),s.close();try{for(var l=function(e){for(var t=s.styleSheets[e].cssRules,o=function(e){if(""===t[e].selectorText)return"continue";(0,n.$$)(t[e].selectorText,s.body).forEach(function(o){o.style.cssText=a(t[e].style.cssText+";"+o.style.cssText);});},r=0;t.length>r;r+=1)o(r);},c=0;s.styleSheets.length>c;c+=1)l(c);}catch(e){}r.Dom.each(s.body,function(e){if(r.Dom.isElement(e)){var t=e,o=t.getAttribute("style");o&&(t.style.cssText=a(o)),t.hasAttribute("style")&&!t.getAttribute("style")&&t.removeAttribute("style");}}),o=s.firstChild?(0,i.trim)(s.body.innerHTML):"";}}catch(e){}finally{r.Dom.safeRemove(t);}return o&&(e=o),(0,i.trim)(e.replace(/<(\/)?(html|colgroup|col|o:p)[^>]*>/g,"").replace(/<!--[^>]*>/g,""));};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.trimInv=t.trim=void 0;var r=o(147);t.trim=function(e){return e.replace((0,r.SPACE_REG_EXP_END)(),"").replace((0,r.SPACE_REG_EXP_START)(),"");},t.trimInv=function(e){return e.replace((0,r.INVISIBLE_SPACE_REG_EXP_END)(),"").replace((0,r.INVISIBLE_SPACE_REG_EXP_START)(),"");};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.cleanFromWord=void 0;var r=o(213),n=o(276),i=o(153);t.cleanFromWord=function(e){-1!==e.indexOf("<html ")&&(e=(e=e.substring(e.indexOf("<html "),e.length)).substring(0,e.lastIndexOf("</html>")+"</html>".length));var t="";try{var o=document.createElement("div");o.innerHTML=e;var a=[];o.firstChild&&r.Dom.each(o,function(e){if(e)switch(e.nodeType){case Node.ELEMENT_NODE:switch(e.nodeName){case"STYLE":case"LINK":case"META":a.push(e);break;case"W:SDT":case"W:SDTPR":case"FONT":r.Dom.unwrap(e);break;default:(0,i.toArray)(e.attributes).forEach(function(t){-1===["src","href","rel","content"].indexOf(t.name.toLowerCase())&&e.removeAttribute(t.name);});}break;case Node.TEXT_NODE:break;default:a.push(e);}}),r.Dom.safeRemove.apply(null,a),t=o.innerHTML;}catch(e){}return t&&(e=t),(e=e.split(/(\n)/).filter(n.trim).join("\n")).replace(/<(\/)?(html|colgroup|col|o:p)[^>]*>/g,"").replace(/<!--[^>]*>/g,"");};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.htmlspecialchars=void 0,t.htmlspecialchars=function(e){var t=document.createElement("div");return t.textContent=e,t.innerHTML;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.stripTags=void 0;var r=o(156),n=o(186),i=o(276),a=o(213);t.stripTags=function(e,t){void 0===t&&(t=document);var o=t.createElement("div");return(0,r.isString)(e)?o.innerHTML=e:o.appendChild(e),(0,n.$$)("DIV, P, BR, H1, H2, H3, H4, H5, H6, HR",o).forEach(function(e){var o=e.parentNode;if(o){var r=e.nextSibling;a.Dom.isText(r)&&/^\s/.test(r.nodeValue||"")||r&&o.insertBefore(t.createTextNode(" "),r);}}),(0,i.trim)(o.innerText)||"";};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.sanitizeHTMLElement=t.safeHTML=void 0;var r=o(186),n=o(213);function i(e){if(!n.Dom.isElement(e))return!1;var t=!1;e.hasAttribute("onerror")&&((0,r.attr)(e,"onerror",null),t=!0);var o=e.getAttribute("href");return o&&0===o.trim().indexOf("javascript")&&((0,r.attr)(e,"href",location.protocol+"//"+o),t=!0),t;}t.safeHTML=function(e,t){(n.Dom.isElement(e)||n.Dom.isFragment(e))&&(t.removeOnError&&(i(e),(0,r.$$)("[onerror]",e).forEach(i)),t.safeJavaScriptLink&&(i(e),(0,r.$$)('a[href^="javascript"]',e).forEach(i)));},t.sanitizeHTMLElement=i;},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.nl2br=void 0,t.nl2br=function(e){return e.replace(/\r\n|\r|\n/g,"<br/>");};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(283),t),r.__exportStar(o(284),t),r.__exportStar(o(285),t),r.__exportStar(o(286),t),r.__exportStar(o(291),t),r.__exportStar(o(292),t),r.__exportStar(o(293),t),r.__exportStar(o(193),t),r.__exportStar(o(294),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.normalizeKeyAliases=void 0;var r=o(276),n=o(147);t.normalizeKeyAliases=function(e){var t={};return e.replace(/\+\+/g,"+add").split(/[\s]*\+[\s]*/).map(function(e){return(0,r.trim)(e.toLowerCase());}).map(function(e){return n.KEY_ALIASES[e]||e;}).sort().filter(function(e){return!t[e]&&""!==e&&(t[e]=!0);}).join("+");};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.normalizeLicense=void 0,t.normalizeLicense=function(e,t){void 0===t&&(t=8);for(var o=[];e.length;)o.push(e.substr(0,t)),e=e.substr(t);return o[1]=o[1].replace(/./g,"*"),o[2]=o[2].replace(/./g,"*"),o.join("-");};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.normalizeNode=void 0;var r=o(147),n=o(213);t.normalizeNode=function(e){if(e){if(n.Dom.isText(e)&&null!=e.nodeValue&&e.parentNode)for(;n.Dom.isText(e.nextSibling);)null!=e.nextSibling.nodeValue&&(e.nodeValue+=e.nextSibling.nodeValue),e.nodeValue=e.nodeValue.replace((0,r.INVISIBLE_SPACE_REG_EXP)(),""),n.Dom.safeRemove(e.nextSibling);else(0,t.normalizeNode)(e.firstChild);(0,t.normalizeNode)(e.nextSibling);}};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.normalizePath=void 0;var r=o(287);t.normalizePath=function(){for(var e=[],t=0;arguments.length>t;t++)e[t]=arguments[t];return e.filter(function(e){return(0,r.trim)(e).length;}).map(function(t,o){return t=t.replace(/([^:])[\\/]+/g,"$1/"),o&&(t=t.replace(/^\//,"")),o!==e.length-1&&(t=t.replace(/\/$/,"")),t;}).join("/");};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(196),t),r.__exportStar(o(288),t),r.__exportStar(o(289),t),r.__exportStar(o(194),t),r.__exportStar(o(171),t),r.__exportStar(o(276),t),r.__exportStar(o(290),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.fuzzySearchIndex=void 0;var r=o(147);t.fuzzySearchIndex=function(e,t,o,n){void 0===o&&(o=0),void 0===n&&(n=1);var i=0,a=0,s=-1,l=0,c=0;for(a=o;e.length>i&&t.length>a;)e[i].toLowerCase()===t[a].toLowerCase()?(i++,l++,c=0,-1===s&&(s=a)):i>0&&(n>c||t[a]===r.INVISIBLE_SPACE?(c++,l++):(i=0,s=-1,l=0,c=0,a--)),a++;return i===e.length?[s,l]:[-1,0];};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.i18n=t.sprintf=void 0;var r=o(146),n=o(186),i=o(156),a=o(290),s=o(147);t.sprintf=function(e,t){if(!t||!t.length)return e;for(var o=/%([sd])/g,r=o.exec(e),n=e,i=0;r&&void 0!==t[i];)n=n.replace(r[0],t[i].toString()),i+=1,r=o.exec(e);return n;},t.i18n=function(e,o,l){if(!(0,i.isString)(e))throw(0,n.error)("i18n: Need string in first argument");if(!e.length)return e;var c,u=Boolean(void 0!==l&&l.debugLanguage),d=function(e){return o&&o.length?(0,t.sprintf)(e,o):e;},p=(0,n.defaultLanguage)(r.Config.defaultOptions.language,r.Config.defaultOptions.language),f=(0,n.defaultLanguage)(null==l?void 0:l.language,p),h=function(t){if(t){if((0,i.isString)(t[e]))return d(t[e]);var o=e.toLowerCase();if((0,i.isString)(t[o]))return d(t[o]);var r=(0,a.ucfirst)(e);return(0,i.isString)(t[r])?d(t[r]):void 0;}};c=void 0!==s.lang[f]?s.lang[f]:void 0!==s.lang[p]?s.lang[p]:s.lang.en;var m=null==l?void 0:l.i18n;if(m&&m[f]){var v=h(m[f]);if(v)return v;}return h(c)||(s.lang.en&&(0,i.isString)(s.lang.en[e])&&s.lang.en[e]?d(s.lang.en[e]):u?"{"+e+"}":d(e));};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ucfirst=void 0,t.ucfirst=function(e){return e.length?e[0].toUpperCase()+e.substr(1):"";};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.normalizeRelativePath=void 0,t.normalizeRelativePath=function(e){return e.split("/").reduce(function(e,t){switch(t){case"":case".":break;case"..":e.pop();break;default:e.push(t);}return e;},[]).join("/")+(e.endsWith("/")?"/":"");};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.normalizeSize=void 0,t.normalizeSize=function(e){return /^[0-9]+$/.test(e.toString())?e+"px":e.toString();};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.normalizeUrl=void 0,t.normalizeUrl=function(){for(var e=[],t=0;arguments.length>t;t++)e[t]=arguments[t];return e.filter(function(e){return e.length;}).map(function(e){return e.replace(/\/$/,"");}).join("/").replace(/([^:])[\\/]+/g,"$1/");};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.normalizeColor=void 0;var r=o(273),n=o(287);t.normalizeColor=function(e){var t=["#"],o=(0,r.colorToHex)(e);if(!o)return!1;if(3===(o=(o=(0,n.trim)(o.toUpperCase())).substr(1)).length){for(var i=0;3>i;i+=1)t.push(o[i]),t.push(o[i]);return t.join("");}return o.length>6&&(o=o.substr(0,6)),"#"+o;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(296),t),r.__exportStar(o(297),t),r.__exportStar(o(298),t),r.__exportStar(o(299),t),r.__exportStar(o(300),t),r.__exportStar(o(219),t);},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getContentWidth=void 0,t.getContentWidth=function(e,t){var o=function(e){return parseInt(e,10);},r=t.getComputedStyle(e);return e.offsetWidth-o(r.getPropertyValue("padding-left")||"0")-o(r.getPropertyValue("padding-right")||"0");};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getScrollParent=void 0;var r=o(186),n=o(213);t.getScrollParent=function e(t){if(!t)return null;var o=n.Dom.isHTMLElement(t),i=o&&(0,r.css)(t,"overflowY");return o&&"visible"!==i&&"hidden"!==i&&t.scrollHeight>=t.clientHeight?t:e(t.parentNode)||document.scrollingElement||document.body;};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.innerWidth=void 0,t.innerWidth=function(e,t){var o=t.getComputedStyle(e);return e.clientWidth-(parseFloat(o.paddingLeft||"0")+parseFloat(o.paddingRight||"0"));};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.offset=void 0,t.offset=function(e,o,r,n){var i;void 0===n&&(n=!1);try{i=e.getBoundingClientRect();}catch(e){i={top:0,bottom:0,left:0,right:0,width:0,height:0};}var a,s,l=r.body,c=r.documentElement||{clientTop:0,clientLeft:0,scrollTop:0,scrollLeft:0},u=r.defaultView||r.parentWindow,d=u.pageYOffset||c.scrollTop||l.scrollTop,p=u.pageXOffset||c.scrollLeft||l.scrollLeft,f=c.clientTop||l.clientTop||0,h=c.clientLeft||l.clientLeft||0,m=o.iframe;if(!n&&o&&o.options&&o.o.iframe&&m){var v=(0,t.offset)(m,o,o.od,!0);a=i.top+v.top,s=i.left+v.left;}else a=i.top+d-f,s=i.left+p-h;return{top:Math.round(a),left:Math.round(s),width:i.width,height:i.height};};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.position=void 0;var r=o(226);t.position=function e(t,o,n){void 0===n&&(n=!1);var i=t.getBoundingClientRect(),a=i.left,s=i.top;if((0,r.isJoditObject)(o)&&o.iframe&&!n){var l=e(o.iframe,o,!0);a+=l.left,s+=l.top;}return{left:Math.round(a),top:Math.round(s),width:Math.round(t.offsetWidth),height:Math.round(t.offsetHeight)};};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Response=void 0;var r=o(145),n=function(){function e(e,t,o,r){this.request=e,this.status=t,this.statusText=o,this.body=r;}return Object.defineProperty(e.prototype,"url",{get:function(){return this.request.url;},enumerable:!1,configurable:!0}),e.prototype.json=function(){return r.__awaiter(this,void 0,Promise,function(){return r.__generator(this,function(e){return[2,JSON.parse(this.body)];});});},e.prototype.text=function(){return Promise.resolve(this.body);},e.prototype.blob=function(){return r.__awaiter(this,void 0,Promise,function(){return r.__generator(this,function(e){return[2,this.body];});});},e;}();t.Response=n;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),o(146).Config.prototype.defaultAjaxOptions={successStatuses:[200,201,202],dataType:"json",method:"GET",url:"",data:null,contentType:"application/x-www-form-urlencoded; charset=UTF-8",headers:{"X-REQUESTED-WITH":"XMLHttpRequest"},withCredentials:!1,xhr:function(){return new XMLHttpRequest();}};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ContextMenu=void 0;var r=o(145);o(304);var n=o(305),i=o(308),a=o(220),s=o(233),l=function(e){function t(){return null!==e&&e.apply(this,arguments)||this;}return r.__extends(t,e),t.prototype.className=function(){return"ContextMenu";},t.prototype.show=function(e,t,o){var r=this,n=this,s=this.j.c.div(this.getFullElName("actions"));(0,a.isArray)(o)&&(o.forEach(function(e){if(e){var t=(0,i.Button)(r.jodit,e.icon||"empty",e.title);r.jodit&&t.setParentView(r.jodit),t.setMod("context","menu"),t.onAction(function(t){var o;return null===(o=e.exec)||void 0===o||o.call(n,t),n.close(),!1;}),s.appendChild(t.container);}}),this.setContent(s).open(function(){return{left:e,top:t,width:0,height:0};},!0));},r.__decorate([s.component],t);}(n.Popup);t.ContextMenu=l;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),o(145).__exportStar(o(306),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Popup=void 0;var r=o(145);o(307);var n=o(213),i=o(185),a=o(265),s=o(231),l=o(236),c=o(237),u=function(e){function t(t,o){void 0===o&&(o=!0);var r=e.call(this,t)||this;return r.smart=o,r.isOpened=!1,r.strategy="leftBottom",r.viewBound=function(){return{left:0,top:0,width:r.ow.innerWidth,height:r.ow.innerHeight};},r.childrenPopups=new Set(),(0,i.attr)(r.container,"role","popup"),r;}return r.__extends(t,e),t.prototype.className=function(){return"Popup";},t.prototype.updateParentElement=function(o){var r=this;return o!==this&&l.Component.isInstanceOf(o,t)&&(this.childrenPopups.forEach(function(e){!o.closest(e)&&e.isOpened&&e.close();}),this.childrenPopups.has(o)||this.j.e.on(o,"beforeClose",function(){r.childrenPopups.delete(o);}),this.childrenPopups.add(o)),e.prototype.updateParentElement.call(this,o);},t.prototype.setContent=function(e){n.Dom.detach(this.container);var t,o=this.j.c.div("".concat(this.componentName,"__content"));return l.Component.isInstanceOf(e,a.UIElement)?(t=e.container,e.parentElement=this):t=(0,i.isString)(e)?this.j.c.fromHTML(e):e,o.appendChild(t),this.container.appendChild(o),this.updatePosition(),this;},t.prototype.open=function(e,o,r){if(void 0===o&&(o=!1),(0,i.markOwner)(this.jodit,this.container),this.calculateZIndex(),this.isOpened=!0,this.addGlobalListeners(),this.targetBound=o?this.getKeepBound(e):e,r)r.appendChild(this.container);else{var n=(0,c.getContainer)(this.jodit,t);r!==this.container.parentElement&&n.appendChild(this.container);}return this.updatePosition(),this.j.e.fire(this,"afterOpen"),this;},t.prototype.calculateZIndex=function(){var e=this;if(!this.container.style.zIndex){var t=function(t){var o=t.container.style.zIndex||t.o.zIndex;return!!o&&(e.setZIndex(1+parseInt(o.toString(),10)),!0);},o=this.j;if(!t(o))for(var r=this.parentElement;r;){if(t(o))return;if(r.container.style.zIndex)return void this.setZIndex(1+parseInt(r.container.style.zIndex.toString(),10));if(!r.parentElement&&r.container.parentElement){var n=a.UIElement.closestElement(r.container.parentElement,a.UIElement);if(n){r=n;continue;}}r=r.parentElement;}}},t.prototype.getKeepBound=function(e){var t=this,o=e(),a=this.od.elementFromPoint(o.left,o.top);if(!a)return e;var s=n.Dom.isHTMLElement(a)?a:a.parentElement,l=(0,i.position)(s,this.j);return function(){var o=e(),n=(0,i.position)(s,t.j);return r.__assign(r.__assign({},o),{top:o.top+(n.top-l.top),left:o.left+(n.left-l.left)});};},t.prototype.updatePosition=function(){if(!this.isOpened)return this;var e=r.__read(this.calculatePosition(this.targetBound(),this.viewBound(),(0,i.position)(this.container,this.j)),2),t=e[0];return this.setMod("strategy",e[1]),(0,i.css)(this.container,{left:t.left,top:t.top}),this.childrenPopups.forEach(function(e){return e.updatePosition();}),this;},t.prototype.throttleUpdatePosition=function(){this.updatePosition();},t.prototype.calculatePosition=function(e,o,n,a){void 0===a&&(a=this.strategy);var s={left:e.left,right:e.left-(n.width-e.width)},l={bottom:e.top+e.height,top:e.top-n.height},c=Object.keys(s).reduce(function(e,t){return e.concat(Object.keys(l).map(function(e){return"".concat(t).concat((0,i.ucfirst)(e));}));},[]),u=function(e){var t=r.__read((0,i.kebabCase)(e).split("-"),2);return{left:s[t[0]],top:l[t[1]],width:n.width,height:n.height};},d=function(e){return t.boxInView(u(a),e)?a:c.find(function(o){if(t.boxInView(u(o),e))return o;})||null;},p=d((0,i.position)(this.j.container,this.j));return p&&t.boxInView(u(p),o)||(p=d(o)||p||a),[u(p),p];},t.boxInView=function(e,t){return!(-2>e.top-t.top||-2>e.left-t.left||-2>t.top+t.height-(e.top+e.height)||-2>t.left+t.width-(e.left+e.width));},t.prototype.close=function(){return this.isOpened?(this.isOpened=!1,this.childrenPopups.forEach(function(e){return e.close();}),this.j.e.fire(this,"beforeClose"),this.j.e.fire("beforePopupClose",this),this.removeGlobalListeners(),n.Dom.safeRemove(this.container),this):this;},t.prototype.closeOnOutsideClick=function(e){this.isOpened&&!this.isOwnClick(e)&&this.close();},t.prototype.isOwnClick=function(e){var o=(0,i.isFunction)(e.composedPath)&&e.composedPath()[0]||e.target;if(!o)return!1;var r=a.UIElement.closestElement(o,t);return Boolean(r&&(this===r||r.closest(this)));},t.prototype.addGlobalListeners=function(){var e=this,t=this.throttleUpdatePosition,o=this.ow;c.eventEmitter.on("closeAllPopups",this.close),this.smart&&this.j.e.on("escape",this.close).on("mousedown touchstart",this.closeOnOutsideClick).on(o,"mousedown touchstart",this.closeOnOutsideClick),this.j.e.on("closeAllPopups",this.close).on("resize",t).on(this.container,"scroll mousewheel",t).on(o,"scroll",t).on(o,"resize",t),n.Dom.up(this.j.container,function(o){o&&e.j.e.on(o,"scroll mousewheel",t);});},t.prototype.removeGlobalListeners=function(){var e=this,t=this.throttleUpdatePosition,o=this.ow;c.eventEmitter.off("closeAllPopups",this.close),this.smart&&this.j.e.off("escape",this.close).off("mousedown touchstart",this.closeOnOutsideClick).off(o,"mousedown touchstart",this.closeOnOutsideClick),this.j.e.off("closeAllPopups",this.close).off("resize",t).off(this.container,"scroll mousewheel",t).off(o,"scroll",t).off(o,"resize",t),(0,i.assert)(this.j.container.isConnected,"The container must be built into the DOM"),n.Dom.up(this.j.container,function(o){o&&e.j.e.off(o,"scroll mousewheel",t);});},t.prototype.setZIndex=function(e){this.container.style.zIndex=e.toString();},t.prototype.destruct=function(){return this.close(),e.prototype.destruct.call(this);},r.__decorate([s.autobind],t.prototype,"updatePosition",null),r.__decorate([(0,s.throttle)(10),s.autobind],t.prototype,"throttleUpdatePosition",null),r.__decorate([s.autobind],t.prototype,"close",null),r.__decorate([s.autobind],t.prototype,"closeOnOutsideClick",null),t;}(a.UIElement);t.Popup=u;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(309),t),r.__exportStar(o(320),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Button=t.UIButton=t.UIButtonState=void 0;var r=o(145);o(310);var n=o(265),i=o(213),a=o(186),s=o(156),l=o(159),c=o(269),u=o(311),d=o(231),p=o(176);t.UIButtonState=function(){return{size:"middle",type:"button",name:"",value:"",variant:"initial",disabled:!1,activated:!1,icon:{name:"empty",fill:"",iconURL:""},tooltip:"",text:"",tabIndex:void 0};};var f=function(e){function o(o,r){var n=e.call(this,o)||this;return n.isButton=!0,n.state=(0,t.UIButtonState)(),n.actionHandlers=[],n.updateSize(),n.onChangeSize(),n.onChangeStatus(),r&&n.hookStatus(p.STATUSES.ready,function(){n.setState(r);}),n;}return r.__extends(o,e),o.prototype.className=function(){return"UIButton";},o.prototype.setState=function(e){return Object.assign(this.state,e),this;},o.prototype.onChangeSize=function(){this.setMod("size",this.state.size);},o.prototype.onChangeType=function(){(0,a.attr)(this.container,"type",this.state.type);},o.prototype.updateSize=function(){var e=this.closest(u.UIList);e&&(this.state.size=e.buttonSize);},o.prototype.onChangeStatus=function(){this.setMod("variant",this.state.variant);},o.prototype.onChangeText=function(){this.text.textContent=this.jodit.i18n(this.state.text);},o.prototype.onChangeTextSetMode=function(){this.setMod("text-icons",Boolean(this.state.text.trim().length));},o.prototype.onChangeDisabled=function(){(0,a.attr)(this.container,"disabled",this.state.disabled||null);},o.prototype.onChangeActivated=function(){(0,a.attr)(this.container,"aria-pressed",this.state.activated);},o.prototype.onChangeName=function(){this.container.classList.add("".concat(this.componentName,"_").concat(this.clearName(this.state.name))),this.name=this.state.name,(0,a.attr)(this.container,"data-ref",this.state.name),(0,a.attr)(this.container,"ref",this.state.name);},o.prototype.onChangeTooltip=function(){this.get("j.o.useNativeTooltip")&&(0,a.attr)(this.container,"title",this.state.tooltip),(0,a.attr)(this.container,"aria-label",this.state.tooltip);},o.prototype.onChangeTabIndex=function(){(0,a.attr)(this.container,"tabindex",this.state.tabIndex);},o.prototype.onChangeIcon=function(){var e=this.get("j.o.textIcons");if(!(!0===e||(0,l.isFunction)(e)&&e(this.state.name))){i.Dom.detach(this.icon);var t=c.Icon.makeIcon(this.j,this.state.icon);t&&this.icon.appendChild(t);}},o.prototype.focus=function(){this.container.focus();},o.prototype.isFocused=function(){var e=this.od.activeElement;return Boolean(e&&i.Dom.isOrContains(this.container,e));},o.prototype.createContainer=function(){var e=this.componentName,t=this.j.c.element("button",{class:e,type:"button",role:"button",ariaPressed:!1});return this.icon=this.j.c.span(e+"__icon"),this.text=this.j.c.span(e+"__text"),t.appendChild(this.icon),t.appendChild(this.text),this.j.e.on(t,"click",this.onActionFire),t;},o.prototype.destruct=function(){return this.j.e.off(this.container),e.prototype.destruct.call(this);},o.prototype.onAction=function(e){return this.actionHandlers.push(e),this;},o.prototype.onActionFire=function(e){var t=this;e.buffer={actionTrigger:this},this.actionHandlers.forEach(function(o){return o.call(t,e);});},r.__decorate([(0,d.watch)("state.size")],o.prototype,"onChangeSize",null),r.__decorate([(0,d.watch)("state.type")],o.prototype,"onChangeType",null),r.__decorate([(0,d.watch)("parentElement")],o.prototype,"updateSize",null),r.__decorate([(0,d.watch)("state.variant")],o.prototype,"onChangeStatus",null),r.__decorate([(0,d.watch)("state.text")],o.prototype,"onChangeText",null),r.__decorate([(0,d.watch)("state.text")],o.prototype,"onChangeTextSetMode",null),r.__decorate([(0,d.watch)("state.disabled")],o.prototype,"onChangeDisabled",null),r.__decorate([(0,d.watch)("state.activated")],o.prototype,"onChangeActivated",null),r.__decorate([(0,d.watch)("state.name")],o.prototype,"onChangeName",null),r.__decorate([(0,d.watch)("state.tooltip")],o.prototype,"onChangeTooltip",null),r.__decorate([(0,d.watch)("state.tabIndex")],o.prototype,"onChangeTabIndex",null),r.__decorate([(0,d.watch)("state.icon")],o.prototype,"onChangeIcon",null),r.__decorate([d.autobind],o.prototype,"onActionFire",null),r.__decorate([d.component],o);}(n.UIElement);t.UIButton=f,t.Button=function(e,t,o,r){var n=new f(e);return n.state.tabIndex=e.o.allowTabNavigation?0:-1,(0,s.isString)(t)?(n.state.icon.name=t,n.state.name=t,r&&(n.state.variant=r),o&&(n.state.text=o)):n.setState(t),n;};},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.UIList=void 0;var r=o(145);o(312);var n=o(313),i=o(231),a=o(315),s=o(317),l=o(318),c=o(309),u=o(319),d=o(314),p=o(167),f=o(236),h=function(e){function t(t){var o=e.call(this,t)||this;return o.mode="horizontal",o.removeButtons=[],o.onChangeMode(),o;}return r.__extends(t,e),t.prototype.className=function(){return"UIList";},t.prototype.onChangeMode=function(){this.setMod("mode",this.mode);},t.prototype.makeGroup=function(){return new a.UIGroup(this.jodit);},Object.defineProperty(t.prototype,"buttons",{get:function(){return this.allChildren.filter(function(e){return f.Component.isInstanceOf(e,c.UIButton);});},enumerable:!1,configurable:!0}),t.prototype.getButtonsNames=function(){return this.buttons.map(function(e){return e instanceof c.UIButton&&e.state.name||"";}).filter(function(e){return""!==e;});},t.prototype.setRemoveButtons=function(e){return this.removeButtons=e||[],this;},t.prototype.build=function(e,t){var o=this;void 0===t&&(t=null),e=(0,p.splitArray)(e),this.clear();var r,i=!1,a=this.makeGroup();this.append(a),a.setMod("line",!0);var c=function(e){var n=null;switch(e.name){case"\n":(a=o.makeGroup()).setMod("line",!0),r=o.makeGroup(),a.append(r),o.append(a);break;case"|":i||(i=!0,n=new s.UISeparator(o.j));break;case"---":r.setMod("before-spacer",!0);var c=new l.UISpacer(o.j);a.append(c),r=o.makeGroup(),a.append(r),i=!1;break;default:i=!1,n=o.makeButton(e,t);}n&&(r||(r=o.makeGroup(),a.append(r)),r.append(n));},f=function(e){return!o.removeButtons.includes(e.name);};return e.forEach(function(e){if((0,u.isButtonGroup)(e)){var t=e.buttons.filter(function(e){return e;});t.length&&((r=o.makeGroup()).setMod("separated",!0).setMod("group",e.group),a.append(r),(0,n.getStrongControlTypes)(t,o.j.o.controls).filter(f).forEach(c));}else{r||(r=o.makeGroup(),a.append(r));var i=(0,d.getControlType)(e,o.j.o.controls);f(i)&&c(i);}}),this.update(),this;},t.prototype.makeButton=function(e,t){return new c.UIButton(this.j);},r.__decorate([(0,i.watch)("mode")],t.prototype,"onChangeMode",null),r.__decorate([i.component],t);}(a.UIGroup);t.UIList=h;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getStrongControlTypes=void 0;var r=o(314),n=o(146),i=o(157),a=o(186);t.getStrongControlTypes=function(e,t){return((0,i.isArray)(e)?e:(0,a.keys)(e,!1).map(function(t){return(0,a.ConfigProto)({name:t},e[t]||{});})).map(function(e){return(0,r.getControlType)(e,t||n.Config.defaultOptions.controls);});};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.findControlType=t.getControlType=void 0;var r=o(145),n=o(185),i=o(146);function a(e,t){var o=r.__read(e.split(/\./),2),i=o[0],a=o[1],s=t;return null!=a?void 0!==t[i]&&(s=t[i]):a=i,s[a]?r.__assign({name:a},(0,n.ConfigFlatten)(s[a])):void 0;}t.getControlType=function(e,t){var o;return t||(t=i.Config.defaultOptions.controls),(0,n.isString)(e)?o=a(e,t)||{name:e,command:e,tooltip:e}:void 0!==t[(o=r.__assign({name:"empty"},(0,n.ConfigFlatten)(e))).name]&&(o=r.__assign(r.__assign({},(0,n.ConfigFlatten)(t[o.name])),(0,n.ConfigFlatten)(o))),o;},t.findControlType=a;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.UIGroup=void 0;var r=o(145);o(316);var n=o(265),i=o(231),a=o(185),s=o(213),l=o(236),c=function(e){function t(t,o,r){var n=e.call(this,t,r)||this;return n.options=r,n.syncMod=!1,n.elements=[],n.buttonSize="middle",null==o||o.forEach(function(e){return e&&n.append(e);}),(null==r?void 0:r.name)&&(n.name=r.name),n;}var o;return r.__extends(t,e),o=t,t.prototype.className=function(){return"UIGroup";},Object.defineProperty(t.prototype,"allChildren",{get:function(){for(var e=[],t=r.__spreadArray([],r.__read(this.elements),!1);t.length;){var n=t.shift();(0,a.isArray)(n)?t.push.apply(t,r.__spreadArray([],r.__read(n),!1)):l.Component.isInstanceOf(n,o)?t.push.apply(t,r.__spreadArray([],r.__read(n.elements),!1)):n&&e.push(n);}return e;},enumerable:!1,configurable:!0}),t.prototype.update=function(){this.elements.forEach(function(e){return e.update();}),this.setMod("size",this.buttonSize);},t.prototype.append=function(e,t){var o=this;if((0,a.isArray)(e))return e.forEach(function(e){return o.append(e,t);}),this;if(this.elements.push(e),e.name&&e.container.classList.add(this.getFullElName(e.name)),t){var r=this.getElm(t);(0,a.assert)(null!=r,"Element does not exist"),r.appendChild(e.container);}else this.appendChildToContainer(e.container);return e.parentElement=this,e.update(),this;},t.prototype.setMod=function(t,o){return this.syncMod&&this.elements.forEach(function(e){return e.setMod(t,o);}),e.prototype.setMod.call(this,t,o);},t.prototype.appendChildToContainer=function(e){this.container.appendChild(e);},t.prototype.remove=function(e){var t=this.elements.indexOf(e);return-1!==t&&(this.elements.splice(t,1),s.Dom.safeRemove(e.container),e.parentElement=null),this;},t.prototype.clear=function(){return this.elements.forEach(function(e){return e.destruct();}),this.elements.length=0,this;},t.prototype.destruct=function(){return this.clear(),e.prototype.destruct.call(this);},r.__decorate([(0,i.watch)("buttonSize")],t.prototype,"update",null),o=r.__decorate([i.component],t);}(n.UIElement);t.UIGroup=c;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.UISeparator=void 0;var r=o(145),n=o(265),i=o(233),a=function(e){function t(){return null!==e&&e.apply(this,arguments)||this;}return r.__extends(t,e),t.prototype.className=function(){return"UISeparator";},r.__decorate([i.component],t);}(n.UIElement);t.UISeparator=a;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.UISpacer=void 0;var r=o(145),n=o(265),i=o(233),a=function(e){function t(){return null!==e&&e.apply(this,arguments)||this;}return r.__extends(t,e),t.prototype.className=function(){return"UISpacer";},r.__decorate([i.component],t);}(n.UIElement);t.UISpacer=a;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.flatButtonsSet=t.isButtonGroup=void 0;var r=o(145),n=o(157);t.isButtonGroup=function(e){return(0,n.isArray)(e.buttons);},t.flatButtonsSet=function(e,o){var n=o.getRegisteredButtonGroups();return new Set(e.reduce(function(e,o){var i;return(0,t.isButtonGroup)(o)?e=e.concat(r.__spreadArray(r.__spreadArray([],r.__read(o.buttons),!1),r.__read(null!==(i=n[o.group])&&void 0!==i?i:[]),!1)):e.push(o),e;},[]));};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.UIButtonGroup=void 0;var r=o(145);o(321);var n=o(315),i=o(233),a=o(309),s=o(152),l=function(e){function t(t,o){void 0===o&&(o={radio:!0});var r,n,i=this;return(i=e.call(this,t,null===(r=o.options)||void 0===r?void 0:r.map(function(e){var o=new a.UIButton(t,{text:e.text,value:e.value,variant:"primary"});return o.onAction(function(){i.select(e.value);}),o;}),o)||this).options=o,i.select(null!==(n=o.value)&&void 0!==n?n:0),i;}return r.__extends(t,e),t.prototype.className=function(){return"UIButtonGroup";},t.prototype.render=function(e){return'<div>\n\t\t\t<div class="&__label">~'.concat(e.label,'~</div>\n\t\t\t<div class="&__options"></div>\n\t\t</div>');},t.prototype.appendChildToContainer=function(e){var t=this.getElm("options");(0,s.assert)(null!=t,"Options does not exist"),t.appendChild(e);},t.prototype.select=function(e){var t,o,r=this;this.elements.forEach(function(t,o){o===e||t.state.value===e?t.state.activated=!0:r.options.radio&&(t.state.activated=!1);});var n=this.elements.filter(function(e){return e.state.activated;}).map(function(e){return{text:e.state.text,value:e.state.value};});this.jodit.e.fire(this,"select",n),null===(o=(t=this.options).onChange)||void 0===o||o.call(t,n);},r.__decorate([i.component],t);}(n.UIGroup);t.UIButtonGroup=l;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Confirm=t.Prompt=t.Alert=t.Dialog=void 0;var r=o(323);Object.defineProperty(t,"Dialog",{enumerable:!0,get:function(){return r.Dialog;}});var n=o(362);Object.defineProperty(t,"Alert",{enumerable:!0,get:function(){return n.Alert;}});var i=o(363);Object.defineProperty(t,"Prompt",{enumerable:!0,get:function(){return i.Prompt;}});var a=o(364);Object.defineProperty(t,"Confirm",{enumerable:!0,get:function(){return a.Confirm;}});},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Dialog=void 0;var r=o(145);o(324);var n=o(146),i=o(147),a=o(185),s=o(325),l=o(229),c=o(235),u=o(237),d=o(231),p=o(327),f=o(335);n.Config.prototype.dialog={namespace:"",extraButtons:[],resizable:!0,draggable:!0,buttons:["dialog.close"],removeButtons:[]},n.Config.prototype.controls.dialog={close:{icon:"cancel",exec:function(e){e.close(),e.toggleFullSizeBox(!1);}}};var h=function(e){function t(t){var o=e.call(this,t)||this;o.destroyAfterClose=!1,o.moved=!1,o.iSetMaximization=!1,o.resizable=!1,o.draggable=!1,o.startX=0,o.startY=0,o.startPoint={x:0,y:0,w:0,h:0},o.lockSelect=function(){o.setMod("moved",!0);},o.unlockSelect=function(){o.setMod("moved",!1);},o.onResize=function(){o.options&&o.o.resizable&&!o.moved&&o.isOpened&&!o.offsetX&&!o.offsetY&&o.setPosition();},o.isModal=!1,o.isOpened=!1;var r=o;r.options=(0,a.ConfigProto)(null!=t?t:{},(0,a.ConfigProto)({toolbarButtonSize:"middle"},(0,a.ConfigProto)(n.Config.prototype.dialog,p.View.defaultOptions))),l.Dom.safeRemove(r.container);var i=o.getFullElName.bind(o);r.container=o.c.fromHTML('<div style="z-index:'.concat(r.o.zIndex,'" class="jodit jodit-dialog ').concat(o.componentName,'">\n\t\t\t\t<div class="').concat(i("overlay"),'"></div>\n\t\t\t\t<div class="').concat(o.getFullElName("panel"),'">\n\t\t\t\t\t<div class="').concat(i("header"),'">\n\t\t\t\t\t\t<div class="').concat(i("header-title"),'"></div>\n\t\t\t\t\t\t<div class="').concat(i("header-toolbar"),'"></div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class="').concat(i("content"),'"></div>\n\t\t\t\t\t<div class="').concat(i("footer"),'"></div>\n\t\t\t\t\t<div class="').concat(i("resizer"),'">').concat(f.Icon.get("resize_handler"),"</div>\n\t\t\t\t</div>\n\t\t\t</div>")),(0,a.attr)(r.container,"role","dialog"),Object.defineProperty(r.container,"component",{value:o}),r.setMod("theme",r.o.theme||"default").setMod("resizable",Boolean(r.o.resizable));var s=r.getElm("panel");(0,a.assert)(null!=s,"Panel element does not exist");var c=r.getElm("resizer");(0,a.assert)(null!=c,"Resizer element does not exist");var d=r.getElm("header-title");(0,a.assert)(null!=d,"header-title element does not exist");var h=r.getElm("content");(0,a.assert)(null!=h,"Content element does not exist");var m=r.getElm("footer");(0,a.assert)(null!=m,"Footer element does not exist");var v=r.getElm("header-toolbar");(0,a.assert)(null!=v,"header-toolbar element does not exist"),r.dialog=s,r.resizer=c,r.dialogbox_header=d,r.dialogbox_content=h,r.dialogbox_footer=m,r.dialogbox_toolbar=v,(0,a.css)(r.dialog,{maxWidth:r.options.maxWidth,minHeight:r.options.minHeight,minWidth:r.options.minWidth});var g=r.getElm("header");g&&r.e.on(g,"pointerdown touchstart",r.onHeaderMouseDown),r.e.on(r.resizer,"mousedown touchstart",r.onResizerMouseDown);var y=u.pluginSystem.get("fullsize");return(0,a.isFunction)(y)&&y(r),o.e.on(r.container,"close_dialog",r.close).on(o.ow,"keydown",o.onEsc).on(o.ow,"resize",o.onResize),o;}return r.__extends(t,e),t.prototype.className=function(){return"Dialog";},Object.defineProperty(t.prototype,"destination",{get:function(){return this.od.body;},enumerable:!1,configurable:!0}),t.prototype.setElements=function(e,t){var o=this,r=[];(0,a.asArray)(t).forEach(function(t){if((0,a.isArray)(t)){var n=o.c.div(o.getFullElName("column"));return r.push(n),e.appendChild(n),o.setElements(n,t);}var i;i=(0,a.isString)(t)?o.c.fromHTML(t):(0,a.hasContainer)(t)?t.container:t,r.push(i),i.parentNode!==e&&e.appendChild(i);}),(0,a.toArray)(e.childNodes).forEach(function(t){-1===r.indexOf(t)&&e.removeChild(t);});},t.prototype.onMouseUp=function(){(this.draggable||this.resizable)&&(this.removeGlobalResizeListeners(),this.draggable=!1,this.resizable=!1,this.unlockSelect(),this.e&&(this.removeGlobalResizeListeners(),this.e.fire(this,"endResize endMove")));},t.prototype.onHeaderMouseDown=function(e){var t=e.target;!this.o.draggable||t&&t.nodeName.match(/^(INPUT|SELECT)$/)||(this.draggable=!0,this.startX=e.clientX,this.startY=e.clientY,this.startPoint.x=(0,a.css)(this.dialog,"left"),this.startPoint.y=(0,a.css)(this.dialog,"top"),this.setMaxZIndex(),e.cancelable&&e.preventDefault(),this.lockSelect(),this.addGlobalResizeListeners(),this.e&&this.e.fire(this,"startMove"));},t.prototype.onMouseMove=function(e){this.draggable&&this.o.draggable&&(this.setPosition(this.startPoint.x+e.clientX-this.startX,this.startPoint.y+e.clientY-this.startY),this.e&&this.e.fire(this,"move",e.clientX-this.startX,e.clientY-this.startY),e.stopImmediatePropagation()),this.resizable&&this.o.resizable&&(this.setSize(this.startPoint.w+e.clientX-this.startX,this.startPoint.h+e.clientY-this.startY),this.e&&this.e.fire(this,"resizeDialog",e.clientX-this.startX,e.clientY-this.startY));},t.prototype.onEsc=function(e){if(this.isOpened&&e.key===i.KEY_ESC&&!0!==this.getMod("static")){var t=this.getMaxZIndexDialog();t?t.close():this.close(),e.stopImmediatePropagation();}},t.prototype.onResizerMouseDown=function(e){this.resizable=!0,this.startX=e.clientX,this.startY=e.clientY,this.startPoint.w=this.dialog.offsetWidth,this.startPoint.h=this.dialog.offsetHeight,this.lockSelect(),this.addGlobalResizeListeners(),this.e&&this.e.fire(this,"startResize");},t.prototype.addGlobalResizeListeners=function(){var e=this;e.e.on(e.ow,"pointermove touchmove",e.onMouseMove).on(e.ow,"pointerup touchend",e.onMouseUp);},t.prototype.removeGlobalResizeListeners=function(){var e=this;e.e.off(e.ow,"mousemove pointermove",e.onMouseMove).off(e.ow,"mouseup pointerup",e.onMouseUp);},t.prototype.setSize=function(e,t){return null==e&&(e=this.dialog.offsetWidth),null==t&&(t=this.dialog.offsetHeight),(0,a.css)(this.dialog,{width:e,height:t}),this;},t.prototype.calcAutoSize=function(){return this.setSize("auto","auto"),this.setSize(),this;},t.prototype.setPosition=function(e,t){var o=this.ow.innerWidth/2-this.dialog.offsetWidth/2,r=this.ow.innerHeight/2-this.dialog.offsetHeight/2;return 0>o&&(o=0),0>r&&(r=0),void 0!==e&&void 0!==t&&(this.offsetX=e,this.offsetY=t,this.moved=Math.abs(e-o)>100||Math.abs(t-r)>100),this.dialog.style.left=(e||o)+"px",this.dialog.style.top=(t||r)+"px",this;},t.prototype.setHeader=function(e){return this.setElements(this.dialogbox_header,e),this;},t.prototype.setContent=function(e){return this.setElements(this.dialogbox_content,e),this;},t.prototype.setFooter=function(e){return this.setElements(this.dialogbox_footer,e),this.setMod("footer",Boolean(e)),this;},t.prototype.getZIndex=function(){return parseInt((0,a.css)(this.container,"zIndex"),10)||0;},t.prototype.getMaxZIndexDialog=function(){var e,t,o=0,r=this;return(0,a.$$)(".jodit-dialog",this.destination).forEach(function(n){e=n.component,t=parseInt((0,a.css)(n,"zIndex"),10),e.isOpened&&!isNaN(t)&&t>o&&(r=e,o=t);}),r;},t.prototype.setMaxZIndex=function(){var e=20000004,t=0;(0,a.$$)(".jodit-dialog",this.destination).forEach(function(o){t=parseInt((0,a.css)(o,"zIndex"),10),e=Math.max(isNaN(t)?0:t,e);}),this.container.style.zIndex=(e+1).toString();},t.prototype.maximization=function(e){return(0,a.isVoid)(e)&&(e=!this.getMod("fullsize")),this.setMod("fullsize",e),this.toggleFullSizeBox(e),this.iSetMaximization=e,e;},t.prototype.toggleFullSizeBox=function(e){[this.destination,this.destination.parentNode].forEach(function(t){t&&t.classList&&t.classList.toggle("jodit_fullsize-box_true",e);});},t.prototype.open=function(e,t,o,r){if(u.eventEmitter.fire("closeAllPopups hideHelpers"),!1===this.e.fire(this,"beforeOpen"))return this;(0,a.isBoolean)(e)&&(o=e),(0,a.isBoolean)(t)&&(r=t),this.destroyAfterClose=!0===o;var n=(0,a.isBoolean)(e)?void 0:e,i=(0,a.isBoolean)(t)?void 0:t;return void 0!==i&&this.setHeader(i),n&&this.setContent(n),this.setMod("active",!0),this.isOpened=!0,this.setModal(r),this.destination.appendChild(this.container),this.setPosition(this.offsetX,this.offsetY),this.setMaxZIndex(),this.o.fullsize&&this.maximization(!0),this.e.fire("afterOpen",this),this;},t.prototype.setModal=function(e){return this.isModal=Boolean(e),this.setMod("modal",this.isModal),this;},t.prototype.close=function(e){var t,o;return this.isDestructed||!this.isOpened||!0===this.getMod("static")||(e&&(e.stopImmediatePropagation(),e.preventDefault()),this.e&&!1===this.e.fire("beforeClose",this)||(this.setMod("active",!1),this.isOpened=!1,this.e.fire("toggleFullSize",!1),this.iSetMaximization&&this.maximization(!1),l.Dom.safeRemove(this.container),this.removeGlobalResizeListeners(),this.destroyAfterClose&&this.destruct(),null===(t=this.e)||void 0===t||t.fire(this,"afterClose"),null===(o=this.e)||void 0===o||o.fire(this.ow,"joditCloseDialog"))),this;},t.prototype.buildToolbar=function(){this.o.buttons&&this.toolbar.build((0,a.splitArray)(this.o.buttons)).setMod("mode","header").appendTo(this.dialogbox_toolbar);},t.prototype.destruct=function(){this.isInDestruct||(this.setStatus(c.STATUSES.beforeDestruct),this.isOpened&&this.close(),this.events&&(this.removeGlobalResizeListeners(),this.events.off(this.container,"close_dialog",self.close).off(this.ow,"keydown",this.onEsc).off(this.ow,"resize",this.onResize)),e.prototype.destruct.call(this));},r.__decorate([d.autobind],t.prototype,"onMouseUp",null),r.__decorate([d.autobind],t.prototype,"onHeaderMouseDown",null),r.__decorate([d.autobind],t.prototype,"onMouseMove",null),r.__decorate([d.autobind],t.prototype,"onEsc",null),r.__decorate([d.autobind],t.prototype,"onResizerMouseDown",null),r.__decorate([d.autobind],t.prototype,"close",null),r.__decorate([(0,d.hook)("ready")],t.prototype,"buildToolbar",null),r.__decorate([d.component],t);}(s.ViewWithToolbar);t.Dialog=h;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ViewWithToolbar=void 0;var r=o(145);o(326);var n=o(327),i=o(185),a=o(229),s=o(332),l=o(235),c=o(319),u=o(231),d=function(e){function t(t,o){void 0===o&&(o=!1);var r=e.call(this,t,o)||this;return r.toolbar=(0,s.makeCollection)(r),r.defaultToolbarContainer=r.c.div("jodit-toolbar__box"),r.registeredButtons=new Set(),r.groupToButtons={},r.isJodit=!1,r.isJodit=o,r.e.on("beforeToolbarBuild",r.beforeToolbarBuild),r;}return r.__extends(t,e),Object.defineProperty(t.prototype,"toolbarContainer",{get:function(){return this.o.fullsize||!(0,i.isString)(this.o.toolbar)&&!a.Dom.isHTMLElement(this.o.toolbar)?(this.o.toolbar&&a.Dom.appendChildFirst(this.container,this.defaultToolbarContainer),this.defaultToolbarContainer):(0,i.resolveElement)(this.o.toolbar,this.o.shadowRoot||this.od);},enumerable:!1,configurable:!0}),t.prototype.setPanel=function(e){this.o.toolbar=e,this.buildToolbar();},t.prototype.buildToolbar=function(){if(this.o.toolbar){var e=this.o.buttons?(0,i.splitArray)(this.o.buttons):[];this.toolbar.setRemoveButtons(this.o.removeButtons).build(e.concat(this.o.extraButtons||[])).appendTo(this.toolbarContainer);}},t.prototype.getRegisteredButtonGroups=function(){return this.groupToButtons;},t.prototype.registerButton=function(e){var t;this.registeredButtons.add(e);var o=null!==(t=e.group)&&void 0!==t?t:"other";return this.groupToButtons[o]||(this.groupToButtons[o]=[]),null!=e.position?this.groupToButtons[o][e.position]=e.name:this.groupToButtons[o].push(e.name),this;},t.prototype.unregisterButton=function(e){var t;this.registeredButtons.delete(e);var o=null!==(t=e.group)&&void 0!==t?t:"other",r=this.groupToButtons[o];if(r){var n=r.indexOf(e.name);-1!==n&&r.splice(n,1),0===r.length&&delete this.groupToButtons[o];}return this;},t.prototype.beforeToolbarBuild=function(e){var t=this;if(Object.keys(this.groupToButtons).length)return e.map(function(e){return(0,c.isButtonGroup)(e)&&e.group&&t.groupToButtons[e.group]?{group:e.group,buttons:r.__spreadArray(r.__spreadArray([],r.__read(e.buttons),!1),r.__read(t.groupToButtons[e.group]),!1)}:e;});},t.prototype.destruct=function(){this.isDestructed||(this.setStatus(l.STATUSES.beforeDestruct),this.e.off("beforeToolbarBuild",this.beforeToolbarBuild),this.toolbar.destruct(),e.prototype.destruct.call(this));},r.__decorate([u.autobind],t.prototype,"beforeToolbarBuild",null),t;}(n.View);t.ViewWithToolbar=d;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.View=void 0;var r=o(145),n=o(328),i=o(185),a=o(147),s=o(148),l=o(237),c=o(231),u=o(266),d=o(149),p=function(e){function t(o,r){void 0===r&&(r=!1);var i=e.call(this)||this;return i.isJodit=r,i.isView=!0,i.mods={},i.components=new Set(),i.version="3.18.5",i.buffer=n.Storage.makeStorage(),i.storage=n.Storage.makeStorage(!0,i.componentName),i.OPTIONS=t.defaultOptions,i.__isFullSize=!1,i.__whoLocked="",i.isLockedNotBy=function(e){return i.isLocked&&i.__whoLocked!==e;},i.__modulesInstances=new Map(),i.id=new Date().getTime().toString(),i.buffer=n.Storage.makeStorage(),i.initOptions(o),i.initOwners(),i.events=new d.EventEmitter(i.od),i.create=new s.Create(i.od),i.container=i.c.div(),i.container.classList.add("jodit"),i.progressbar=new s.ProgressBar(i),i;}return r.__extends(t,e),t.prototype.setMod=function(){for(var e=[],t=0;arguments.length>t;t++)e[t]=arguments[t];var o=r.__read(e,2),n=o[0],i=o[1];return u.Mods.setMod.call(this,n,i),this;},t.prototype.getMod=function(e){return u.Mods.getMod.call(this,e);},t.prototype.getElm=function(e){return u.Elms.getElm.call(this,e);},t.prototype.getElms=function(e){return u.Elms.getElms.call(this,e);},Object.defineProperty(t.prototype,"basePath",{get:function(){return this.o.basePath?this.o.basePath:a.BASE_PATH;},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"defaultTimeout",{get:function(){return(0,i.isVoid)(this.o.defaultTimeout)?100:this.o.defaultTimeout;},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"c",{get:function(){return this.create;},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"container",{get:function(){return this.__container;},set:function(e){this.__container=e;},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"e",{get:function(){return this.events;},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"options",{get:function(){return this.__options;},set:function(e){this.__options=e;},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"o",{get:function(){return this.options;},enumerable:!1,configurable:!0}),t.prototype.i18n=function(e){for(var t=[],o=1;arguments.length>o;o++)t[o-1]=arguments[o];return(0,i.i18n)(e,t,this.options);},t.prototype.toggleFullSize=function(e){void 0===e&&(e=!this.__isFullSize),e!==this.__isFullSize&&(this.__isFullSize=e,this.events&&this.e.fire("toggleFullSize",e));},Object.defineProperty(t.prototype,"isLocked",{get:function(){return""!==this.__whoLocked;},enumerable:!1,configurable:!0}),t.prototype.lock=function(e){return void 0===e&&(e="any"),!this.isLocked&&(this.__whoLocked=e,!0);},t.prototype.unlock=function(){return!!this.isLocked&&(this.__whoLocked="",!0);},Object.defineProperty(t.prototype,"isFullSize",{get:function(){return this.__isFullSize;},enumerable:!1,configurable:!0}),t.prototype.getVersion=function(){return"3.18.5";},t.getVersion=function(){return"3.18.5";},t.prototype.initOptions=function(e){this.options=(0,i.ConfigProto)(e||{},(0,i.ConfigProto)(this.options||{},t.defaultOptions));},t.prototype.initOwners=function(){var e;this.ownerWindow=null!==(e=this.o.ownerWindow)&&void 0!==e?e:window;},t.prototype.attachEvents=function(e){var t=this;if(e){var o=null==e?void 0:e.events;o&&Object.keys(o).forEach(function(e){return t.e.on(e,o[e]);});}},t.prototype.getInstance=function(e,t){var o=this.e.fire((0,i.camelCase)("getInstance_"+e),t);if(o)return o;var r=l.modules[e],n=this.__modulesInstances;if(!(0,i.isFunction)(r))throw(0,i.error)("Need real module name");if(!n.has(e)){var a=r.prototype instanceof s.ViewComponent?new r(this,t):new r(t);this.components.add(a),n.set(e,a);}return n.get(e);},t.prototype.addDisclaimer=function(e){this.container.appendChild(e);},t.prototype.beforeDestruct=function(){this.e.fire(s.STATUSES.beforeDestruct,this),this.components.forEach(function(e){(0,i.isDestructable)(e)&&!e.isInDestruct&&e.destruct();}),this.components.clear();},t.prototype.destruct=function(){this.isDestructed||(this.async&&this.async.destruct(),this.events&&this.e.destruct(),this.buffer&&this.buffer.clear(),s.Dom.safeRemove(this.container),e.prototype.destruct.call(this));},t.esNext=!1,r.__decorate([(0,c.hook)(s.STATUSES.beforeDestruct)],t.prototype,"beforeDestruct",null),t;}(s.Component);t.View=p,p.defaultOptions={extraButtons:[],textIcons:!1,namespace:"",removeButtons:[],zIndex:100002,defaultTimeout:100,fullsize:!1,showTooltip:!0,useNativeTooltip:!1,buttons:[],globalFullSize:!0};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(329),t),r.__exportStar(o(330),t),r.__exportStar(o(331),t);},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.MemoryStorageProvider=void 0;var o=function(){function e(){this.data=new Map();}return e.prototype.set=function(e,t){return this.data.set(e,t),this;},e.prototype.delete=function(e){return this.data.delete(e),this;},e.prototype.get=function(e){return this.data.get(e);},e.prototype.exists=function(e){return this.data.has(e);},e.prototype.clear=function(){return this.data.clear(),this;},e;}();t.MemoryStorageProvider=o;},function(e,t){"use strict";var o;Object.defineProperty(t,"__esModule",{value:!0}),t.LocalStorageProvider=t.canUsePersistentStorage=void 0,t.canUsePersistentStorage=function(){return void 0===o&&(o=function(){var e="___Jodit___"+Math.random().toString();try{localStorage.setItem(e,"1");var t="1"===localStorage.getItem(e);return localStorage.removeItem(e),t;}catch(e){}return!1;}()),o;};var r=function(){function e(e){this.rootKey=e;}return e.prototype.set=function(e,t){try{var o=localStorage.getItem(this.rootKey),r=o?JSON.parse(o):{};r[e]=t,localStorage.setItem(this.rootKey,JSON.stringify(r));}catch(e){}return this;},e.prototype.delete=function(e){try{localStorage.removeItem(this.rootKey);}catch(e){}return this;},e.prototype.get=function(e){try{var t=localStorage.getItem(this.rootKey),o=t?JSON.parse(t):{};return void 0!==o[e]?o[e]:null;}catch(e){}},e.prototype.exists=function(e){return null!=this.get(e);},e.prototype.clear=function(){try{localStorage.removeItem(this.rootKey);}catch(e){}return this;},e;}();t.LocalStorageProvider=r;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Storage=t.StorageKey=void 0;var r=o(185),n=o(330),i=o(329);t.StorageKey="Jodit_";var a=function(){function e(e,o){this.provider=e,this.prefix=t.StorageKey,o&&(this.prefix+=o);}return e.prototype.set=function(e,t){return this.provider.set((0,r.camelCase)(this.prefix+e),t),this;},e.prototype.delete=function(e){return this.provider.delete((0,r.camelCase)(this.prefix+e)),this;},e.prototype.get=function(e){return this.provider.get((0,r.camelCase)(this.prefix+e));},e.prototype.exists=function(e){return this.provider.exists((0,r.camelCase)(this.prefix+e));},e.prototype.clear=function(){return this.provider.clear(),this;},e.makeStorage=function(o,r){var a;return void 0===o&&(o=!1),o&&(0,n.canUsePersistentStorage)()&&(a=new n.LocalStorageProvider(t.StorageKey+r)),a||(a=new i.MemoryStorageProvider()),new e(a,r);},e;}();t.Storage=a;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.makeButton=t.makeCollection=void 0;var r=o(185),n=o(333),i=o(357),a=o(358),s=o(360);t.makeCollection=function(e,t){var o=(0,r.isJoditObject)(e)?new i.ToolbarEditorCollection(e):new n.ToolbarCollection(e);return e.o.textIcons&&o.container.classList.add("jodit_text_icons"),t&&(o.parentElement=t),e.o.toolbarButtonSize&&(o.buttonSize=e.o.toolbarButtonSize),o;},t.makeButton=function(e,t,o){if(void 0===o&&(o=null),(0,r.isFunction)(t.getContent))return new s.ToolbarContent(e,t,o);var n=new a.ToolbarButton(e,t,o);return n.state.tabIndex=e.o.allowTabNavigation?0:-1,n;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ToolbarCollection=void 0;var r=o(145);o(334);var n=o(185),i=o(335),a=o(332),s=o(231),l=function(e){function t(t){var o=e.call(this,t)||this;return o.listenEvents="updateToolbar changeStack mousedown mouseup keydown change afterInit readonly afterResize selectionchange changeSelection focus afterSetMode touchstart focus blur",o.update=o.j.async.debounce(o.immediateUpdate,function(){return o.j.defaultTimeout;}),o.initEvents(),o;}return r.__extends(t,e),t.prototype.className=function(){return"ToolbarCollection";},Object.defineProperty(t.prototype,"firstButton",{get:function(){return r.__read(this.buttons,1)[0]||null;},enumerable:!1,configurable:!0}),t.prototype.makeButton=function(e,t){return void 0===t&&(t=null),(0,a.makeButton)(this.j,e,t);},t.prototype.shouldBeActive=function(e){},t.prototype.shouldBeDisabled=function(e){},t.prototype.getTarget=function(e){return e.target||null;},t.prototype.immediateUpdate=function(){this.isDestructed||this.j.isLocked||(e.prototype.update.call(this),this.j.e.fire("afterUpdateToolbar"));},t.prototype.setDirection=function(e){this.container.style.direction=e,this.container.setAttribute("dir",e);},t.prototype.initEvents=function(){this.j.e.on(this.listenEvents,this.update).on("afterSetMode focus",this.immediateUpdate);},t.prototype.hide=function(){this.container.remove();},t.prototype.show=function(){this.appendTo(this.j.toolbarContainer);},t.prototype.showInline=function(e){throw(0,n.error)("The method is not implemented for this class.");},t.prototype.build=function(t,o){void 0===o&&(o=null);var r=this.j.e.fire("beforeToolbarBuild",t);return r&&(t=r),e.prototype.build.call(this,t,o),this;},t.prototype.destruct=function(){this.isDestructed||(this.j.e.off(this.listenEvents,this.update).off("afterSetMode focus",this.immediateUpdate),e.prototype.destruct.call(this));},r.__decorate([s.autobind],t.prototype,"immediateUpdate",null),r.__decorate([s.component],t);}(i.UIList);t.ToolbarCollection=l;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(265),t),r.__exportStar(o(308),t),r.__exportStar(o(305),t),r.__exportStar(o(336),t),r.__exportStar(o(337),t),r.__exportStar(o(269),t),r.__exportStar(o(355),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(315),t),r.__exportStar(o(311),t),r.__exportStar(o(317),t),r.__exportStar(o(318),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(338),t),r.__exportStar(o(346),t),r.__exportStar(o(353),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.UIForm=void 0;var r=o(145),n=o(315),i=o(339),a=o(344),s=o(186),l=o(233),c=o(236),u=function(e){function t(){for(var t=[],o=0;arguments.length>o;o++)t[o]=arguments[o];var n,i,a=this;return(null===(n=(a=e.apply(this,r.__spreadArray([],r.__read(t),!1))||this).options)||void 0===n?void 0:n.className)&&a.container.classList.add(null===(i=a.options)||void 0===i?void 0:i.className),a;}return r.__extends(t,e),t.prototype.className=function(){return"UIForm";},t.prototype.submit=function(){this.j.e.fire(this.container,"submit");},t.prototype.validate=function(){var e,t,o,n,s=this.allChildren.filter(function(e){return c.Component.isInstanceOf(e,i.UIInput);});try{for(var l=r.__values(s),u=l.next();!u.done;u=l.next())if(!u.value.validate())return!1;}catch(t){e={error:t};}finally{try{u&&!u.done&&(t=l.return)&&t.call(l);}finally{if(e)throw e.error;}}var d=this.allChildren.filter(function(e){return c.Component.isInstanceOf(e,a.UISelect);});try{for(var p=r.__values(d),f=p.next();!f.done;f=p.next())if(!f.value.validate())return!1;}catch(e){o={error:e};}finally{try{f&&!f.done&&(n=p.return)&&n.call(p);}finally{if(o)throw o.error;}}return!0;},t.prototype.onSubmit=function(e){var t=this;this.j.e.on(this.container,"submit",function(){var o=t.allChildren.filter(function(e){return c.Component.isInstanceOf(e,i.UIInput);});return!!t.validate()&&(e(o.reduce(function(e,t){return e[t.state.name]=t.value,e;},{})),!1);});},t.prototype.createContainer=function(){var e=this.j.c.element("form");return e.classList.add(this.componentName),(0,s.attr)(e,"dir",this.j.o.direction||"auto"),e;},r.__decorate([l.component],t);}(n.UIGroup);t.UIForm=u;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.UIInput=void 0;var r=o(145);o(340);var n=o(265),i=o(186),a=o(153),s=o(213),l=o(231),c=o(269),u=o(341),d=function(e){function t(t,n){var i=e.call(this,t,n)||this;return i.label=i.j.c.span(i.getFullElName("label")),i.icon=i.j.c.span(i.getFullElName("icon")),i.clearButton=i.j.c.span(i.getFullElName("clear"),c.Icon.get("cancel")),i.state=r.__assign({},o.defaultState),i.__errorBox=i.j.c.span(i.getFullElName("error")),i.validators=new Set([]),void 0!==(null==n?void 0:n.value)&&(n.value=n.value.toString()),Object.assign(i.state,n),void 0!==i.state.clearButton&&(i.j.e.on(i.clearButton,"click",function(e){e.preventDefault(),i.nativeInput.value="",i.j.e.fire(i.nativeInput,"input"),i.focus();}).on(i.nativeInput,"input",function(){i.state.clearButton=Boolean(i.value.length);}),i.state.clearButton=Boolean(i.value.length)),i.j.e.on(i.nativeInput,"focus blur",function(){i.onChangeFocus();}).on(i.nativeInput,"input change",i.onChangeValue),i.onChangeState(),i.onChangeClassName(),i.onChangeStateValue(),i;}var o;return r.__extends(t,e),o=t,t.prototype.className=function(){return"UIInput";},t.prototype.onChangeClear=function(){this.state.clearButton?s.Dom.after(this.nativeInput,this.clearButton):s.Dom.safeRemove(this.clearButton);},t.prototype.onChangeClassName=function(e,t){t&&this.container.classList.remove(t),this.state.className&&this.container.classList.add(this.state.className);},t.prototype.onChangeState=function(){this.name=this.state.name;var e=this.nativeInput,t=this.state,o=t.name,r=t.icon,n=t.type,a=t.ref,l=t.required,u=t.placeholder,d=t.autocomplete,p=t.label;(0,i.attr)(e,"name",o),(0,i.attr)(e,"type",n),(0,i.attr)(e,"data-ref",a||o),(0,i.attr)(e,"ref",a||o),(0,i.attr)(e,"required",l||null),(0,i.attr)(e,"autocomplete",d?null:"off"),(0,i.attr)(e,"placeholder",u?this.j.i18n(u):""),r&&c.Icon.exists(r)?(s.Dom.before(e,this.icon),this.icon.innerHTML=c.Icon.get(r)):s.Dom.safeRemove(this.icon),p?(s.Dom.before(this.wrapper,this.label),this.label.innerText=this.j.i18n(p)):s.Dom.safeRemove(this.label),this.updateValidators();},t.prototype.updateValidators=function(){var e,t=this;this.validators.clear(),this.state.required&&this.validators.add(u.inputValidators.required),null===(e=this.state.validators)||void 0===e||e.forEach(function(e){var o=u.inputValidators[e];o&&t.validators.add(o);});},Object.defineProperty(t.prototype,"error",{set:function(e){this.setMod("has-error",Boolean(e)),e?(this.__errorBox.innerText=this.j.i18n(e,this.j.i18n(this.state.label||"")),this.container.appendChild(this.__errorBox)):s.Dom.safeRemove(this.__errorBox);},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"value",{get:function(){return this.nativeInput.value;},set:function(e){this.value!==e&&(this.nativeInput.value=e,this.onChangeValue());},enumerable:!1,configurable:!0}),t.prototype.onChangeStateValue=function(){var e=this.state.value.toString();e!==this.value&&(this.value=e);},t.prototype.onChangeValue=function(){var e,t,o=this.value;this.state.value!==o&&(this.state.value=o,this.j.e.fire(this,"change",o),null===(t=(e=this.state).onChange)||void 0===t||t.call(e,o));},t.prototype.validate=function(){var e=this;return this.error="",(0,a.toArray)(this.validators).every(function(t){return t(e);});},t.prototype.createContainer=function(t){var o=e.prototype.createContainer.call(this);this.wrapper=this.j.c.div(this.getFullElName("wrapper")),this.nativeInput||(this.nativeInput=this.createNativeInput());var r=this.nativeInput;return r.classList.add(this.getFullElName("input")),this.wrapper.appendChild(r),o.appendChild(this.wrapper),(0,i.attr)(r,"dir",this.j.o.direction||"auto"),o;},t.prototype.createNativeInput=function(e){return this.j.create.element("input");},t.prototype.focus=function(){this.nativeInput.focus();},Object.defineProperty(t.prototype,"isFocused",{get:function(){return this.nativeInput===this.j.od.activeElement;},enumerable:!1,configurable:!0}),t.prototype.onChangeFocus=function(){this.setMod("focused",this.isFocused);},t.defaultState={className:"",autocomplete:!0,name:"",value:"",icon:"",label:"",ref:"",type:"text",placeholder:"",required:!1,validators:[]},r.__decorate([(0,l.watch)("state.clearButton")],t.prototype,"onChangeClear",null),r.__decorate([(0,l.watch)("state.className")],t.prototype,"onChangeClassName",null),r.__decorate([(0,l.watch)(["state.name","state.type","state.label","state.placeholder","state.autocomplete","state.icon"]),(0,l.debounce)()],t.prototype,"onChangeState",null),r.__decorate([(0,l.watch)("state.value")],t.prototype,"onChangeStateValue",null),r.__decorate([l.autobind],t.prototype,"onChangeValue",null),o=r.__decorate([l.component],t);}(n.UIElement);t.UIInput=d;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.selectValidators=t.inputValidators=void 0,t.inputValidators=o(342),t.selectValidators=o(343);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.url=t.required=void 0;var r=o(207),n=o(276);t.required=function(e){return!!(0,n.trim)(e.value).length||(e.error="Please fill out this field",!1);},t.url=function(e){return!!(0,r.isURL)((0,n.trim)(e.value))||(e.error="Please enter a web address",!1);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.required=void 0;var r=o(276);t.required=function(e){return!!(0,r.trim)(e.value).length||(e.error="Please fill out this field",!1);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.UISelect=void 0;var r=o(145);o(345);var n=o(188),i=o(233),a=o(339),s=o(341),l=function(e){function t(t,n){var i=e.call(this,t,n)||this;return i.state=r.__assign({},o.defaultState),Object.assign(i.state,n),i;}var o;return r.__extends(t,e),o=t,t.prototype.className=function(){return"UISelect";},t.prototype.createContainer=function(t){var o,r=e.prototype.createContainer.call(this,t),i=this.j,a=this.nativeInput,s=function(){return i.create.element("option");};if(void 0!==t.placeholder){var l=s();l.value="",l.text=i.i18n(t.placeholder),a.add(l);}return null===(o=t.options)||void 0===o||o.forEach(function(e){var t=s();t.value=e.value.toString(),t.text=i.i18n(e.text),a.add(t);}),t.size&&t.size>0&&(0,n.attr)(a,"size",t.size),t.multiple&&(0,n.attr)(a,"multiple",""),r;},t.prototype.createNativeInput=function(){return this.j.create.element("select");},t.prototype.updateValidators=function(){e.prototype.updateValidators.call(this),this.state.required&&(this.validators.delete(s.inputValidators.required),this.validators.add(s.selectValidators.required));},t.defaultState=r.__assign(r.__assign({},a.UIInput.defaultState),{options:[],size:1,multiple:!1}),o=r.__decorate([i.component],t);}(a.UIInput);t.UISelect=l;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(339),t),r.__exportStar(o(347),t),r.__exportStar(o(349),t),r.__exportStar(o(344),t),r.__exportStar(o(351),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.UITextArea=void 0;var r=o(145);o(348);var n=o(339),i=o(233),a=function(e){function t(t,n){var i=e.call(this,t,n)||this;return i.state=r.__assign({},o.defaultState),Object.assign(i.state,n),!1===i.state.resizable&&(i.nativeInput.style.resize="none"),i;}var o;return r.__extends(t,e),o=t,t.prototype.className=function(){return"UITextArea";},t.prototype.createContainer=function(t){return this.nativeInput=this.j.create.element("textarea"),e.prototype.createContainer.call(this,t);},t.defaultState=r.__assign(r.__assign({},n.UIInput.defaultState),{size:5,resizable:!0}),o=r.__decorate([i.component],t);}(n.UIInput);t.UITextArea=a;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.UICheckbox=void 0;var r=o(145);o(350);var n=o(339),i=o(231),a=o(213),s=function(e){function t(t,n){var i=e.call(this,t,r.__assign(r.__assign({},n),{type:"checkbox"}))||this;return i.state=r.__assign({},o.defaultState),Object.assign(i.state,n),i;}var o;return r.__extends(t,e),o=t,t.prototype.className=function(){return"UICheckbox";},t.prototype.render=function(){return this.j.c.element("label",{className:this.componentName});},t.prototype.onChangeChecked=function(){this.value=this.state.checked.toString(),this.nativeInput.checked=this.state.checked,this.setMod("checked",this.state.checked);},t.prototype.onChangeNativeCheckBox=function(){this.state.checked=this.nativeInput.checked;},t.prototype.onChangeSwitch=function(){this.setMod("switch",this.state.switch);var e=this.getElm("switch-slider");this.state.switch?(e||(e=this.j.c.div(this.getFullElName("switch-slider"))),a.Dom.after(this.nativeInput,e)):a.Dom.safeRemove(e);},t.defaultState=r.__assign(r.__assign({},n.UIInput.defaultState),{checked:!1,switch:!1}),r.__decorate([(0,i.watch)("state.checked"),(0,i.hook)("ready")],t.prototype,"onChangeChecked",null),r.__decorate([(0,i.watch)("nativeInput:change")],t.prototype,"onChangeNativeCheckBox",null),r.__decorate([(0,i.watch)("state.switch"),(0,i.hook)("ready")],t.prototype,"onChangeSwitch",null),o=r.__decorate([i.component],t);}(n.UIInput);t.UICheckbox=s;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.UIFileInput=void 0;var r=o(145);o(352);var n=o(339),i=o(233),a=o(309),s=function(e){function t(t,o){var i=e.call(this,t,r.__assign({type:"file"},o))||this;return i.state=r.__assign(r.__assign({},n.UIInput.defaultState),{type:"file",onlyImages:!0}),i;}return r.__extends(t,e),t.prototype.className=function(){return"UIFileInput";},t.prototype.createContainer=function(e){this.button=new a.UIButton(this.j,{icon:{name:"plus"}});var t=this.button.container;this.nativeInput||(this.nativeInput=this.createNativeInput(e));var o=this.nativeInput;return o.classList.add(this.getFullElName("input")),t.classList.add(this.componentName),t.appendChild(o),t;},t.prototype.createNativeInput=function(e){return this.j.create.fromHTML('<input\n\t\t\ttype="file"\n\t\t\taccept="'.concat(e.onlyImages?"image/*":"*",'"\n\t\t\ttabindex="-1"\n\t\t\tdir="auto"\n\t\t\tmultiple=""\n\t\t/>'));},r.__decorate([i.component],t);}(n.UIInput);t.UIFileInput=s;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.UIBlock=void 0;var r=o(145);o(354);var n=o(315),i=o(186),a=o(233),s=function(e){function t(t,o,r){void 0===r&&(r={align:"left"});var n=e.call(this,t,o)||this;return n.options=r,n.setMod("align",n.options.align||"left"),n.setMod("width",n.options.width||""),n.options.mod&&n.setMod(n.options.mod,!0),n.options.className&&n.container.classList.add(n.options.className),(0,i.attr)(n.container,"data-ref",r.ref),(0,i.attr)(n.container,"ref",r.ref),n;}return r.__extends(t,e),t.prototype.className=function(){return"UIBlock";},r.__decorate([a.component],t);}(n.UIGroup);t.UIBlock=s;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ProgressBar=void 0;var r=o(145);o(356);var n=o(213),i=function(e){function t(){return null!==e&&e.apply(this,arguments)||this;}return r.__extends(t,e),t.prototype.className=function(){return"ProgressBar";},t.prototype.render=function(){return"<div><div></div></div>";},t.prototype.show=function(){return(this.j.workplace||this.j.container).appendChild(this.container),this;},t.prototype.hide=function(){return n.Dom.safeRemove(this.container),this;},t.prototype.progress=function(e){return this.container.style.width=e.toFixed(2)+"%",this;},t.prototype.destruct=function(){return this.hide(),e.prototype.destruct.call(this);},t;}(o(265).UIElement);t.ProgressBar=i;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ToolbarEditorCollection=void 0;var r=o(145),n=o(333),i=o(147),a=o(229),s=o(185),l=o(231),c=function(e){function t(t){var o=e.call(this,t)||this;return o.checkActiveStatus=function(e,t){var r=0,n=0;return Object.keys(e).forEach(function(i){var a=e[i];(0,s.isFunction)(a)?a(o.j,(0,s.css)(t,i).toString())&&(r+=1):-1!==a.indexOf((0,s.css)(t,i).toString())&&(r+=1),n+=1;}),n===r;},o.prependInvisibleInput(o.container),o;}return r.__extends(t,e),t.prototype.className=function(){return"ToolbarEditorCollection";},t.prototype.shouldBeDisabled=function(t){var o=e.prototype.shouldBeDisabled.call(this,t);if(void 0!==o)return o;var r=void 0===t.control.mode?i.MODE_WYSIWYG:t.control.mode;return!(r===i.MODE_SPLIT||r===this.j.getRealMode());},t.prototype.shouldBeActive=function(t){var o=this,r=e.prototype.shouldBeActive.call(this,t);if(void 0!==r)return r;var n=this.j.selection?this.j.s.current():null;if(!n)return!1;if(t.control.tags){var i=t.control.tags;if(a.Dom.up(n,function(e){if(e&&-1!==i.indexOf(e.nodeName.toLowerCase()))return!0;},this.j.editor))return!0;}if(t.control.css){var s=t.control.css;if(a.Dom.up(n,function(e){if(e&&!a.Dom.isText(e))return o.checkActiveStatus(s,e);},this.j.editor))return!0;}return!1;},t.prototype.getTarget=function(e){return e.target||this.j.s.current()||null;},t.prototype.prependInvisibleInput=function(e){var t=this.j.create.element("input",{tabIndex:-1,disabled:!0,style:"width: 0; height:0; position: absolute; visibility: hidden;"});a.Dom.appendChildFirst(e,t);},t.prototype.showInline=function(e){this.jodit.e.fire("showInlineToolbar",e);},t.prototype.hide=function(){this.jodit.e.fire("hidePopup"),e.prototype.hide.call(this),this.jodit.e.fire("toggleToolbar");},t.prototype.show=function(){e.prototype.show.call(this),this.jodit.e.fire("toggleToolbar");},r.__decorate([l.component],t);}(n.ToolbarCollection);t.ToolbarEditorCollection=c;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ToolbarButton=void 0;var r=o(145);o(359);var n=o(308),i=o(231),a=o(229),s=o(306),l=o(332),c=o(185),u=o(269),d=o(333),p=o(176),f=o(314),h=function(e){function t(t,o,i){void 0===i&&(i=null);var a=e.call(this,t)||this;return a.control=o,a.target=i,a.state=r.__assign(r.__assign({},(0,n.UIButtonState)()),{theme:"toolbar",currentValue:"",hasTrigger:!1}),a.openedPopup=null,t.e.on([a.button,a.trigger],"mousedown",function(e){return e.preventDefault();}),a.onAction(a.onClick),a.hookStatus(p.STATUSES.ready,function(){a.initFromControl(),a.initTooltip(),a.update();}),a;}return r.__extends(t,e),t.prototype.className=function(){return"ToolbarButton";},Object.defineProperty(t.prototype,"toolbar",{get:function(){return this.closest(d.ToolbarCollection);},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"button",{get:function(){return this.container.querySelector("button.".concat(this.componentName,"__button"));},enumerable:!1,configurable:!0}),t.prototype.update=function(){var t=this.control,o=this.state,r=this.closest(d.ToolbarCollection);o.disabled=this.calculateDisabledStatus(r),o.activated=this.calculateActivatedStatus(r),(0,c.isFunction)(t.update)&&r&&t.update(this,r.jodit),e.prototype.update.call(this);},t.prototype.calculateActivatedStatus=function(e){return!((0,c.isJoditObject)(this.j)&&!this.j.editorIsActive)&&(!(!(0,c.isFunction)(this.control.isActive)||!this.control.isActive(this.j,this.control,this))||Boolean(e&&e.shouldBeActive(this)));},t.prototype.calculateDisabledStatus=function(e){return!!this.j.o.disabled||!(!this.j.o.readonly||this.j.o.activeButtonsInReadOnly&&this.j.o.activeButtonsInReadOnly.includes(this.control.name))||!(!(0,c.isFunction)(this.control.isDisabled)||!this.control.isDisabled(this.j,this.control,this))||Boolean(e&&e.shouldBeDisabled(this));},t.prototype.onChangeActivated=function(){(0,c.attr)(this.button,"aria-pressed",this.state.activated),e.prototype.onChangeActivated.call(this);},t.prototype.onChangeText=function(){(0,c.isFunction)(this.control.template)?this.text.innerHTML=this.control.template(this.j,this.control.name,this.j.i18n(this.state.text)):e.prototype.onChangeText.call(this),this.setMod("text-icons",Boolean(this.text.innerText.trim().length));},t.prototype.onChangeTabIndex=function(){(0,c.attr)(this.button,"tabindex",this.state.tabIndex);},t.prototype.onChangeTooltip=function(){(0,c.attr)(this.button,"aria-label",this.state.tooltip),e.prototype.onChangeTooltip.call(this);},t.prototype.createContainer=function(){var t=this.componentName,o=this.j.c.span(t),r=e.prototype.createContainer.call(this);return(0,c.attr)(o,"role","listitem"),r.classList.remove(t),r.classList.add(t+"__button"),Object.defineProperty(r,"component",{value:this}),o.appendChild(r),this.trigger=this.j.c.fromHTML('<span role="trigger" class="'.concat(t,'__trigger">').concat(u.Icon.get("chevron"),"</span>")),o;},t.prototype.focus=function(){var e;null===(e=this.container.querySelector("button"))||void 0===e||e.focus();},t.prototype.onChangeHasTrigger=function(){this.state.hasTrigger?this.container.appendChild(this.trigger):a.Dom.safeRemove(this.trigger),this.setMod("with-trigger",this.state.hasTrigger||null);},t.prototype.onChangeDisabled=function(){var e=this.state.disabled?"disabled":null;(0,c.attr)(this.trigger,"disabled",e),(0,c.attr)(this.button,"disabled",e),(0,c.attr)(this.container,"disabled",e);},t.prototype.initTooltip=function(){var e=this;this.j.o.textIcons||!this.j.o.showTooltip||this.j.o.useNativeTooltip||this.j.e.off(this.container,"mouseenter mouseleave").on(this.container,"mousemove",function(t){e.state.tooltip&&!e.state.disabled&&e.j.e.fire("delayShowTooltip",function(){return{x:t.clientX+10,y:t.clientY+10};},e.state.tooltip);}).on(this.container,"mouseleave",function(){e.j.e.fire("hideTooltip");});},t.prototype.initFromControl=function(){var e,t=this.control,o=this.state;this.updateSize(),o.name=t.name;var r=this.j.o.textIcons;if(!0===r||(0,c.isFunction)(r)&&r(t.name)||t.template)o.icon=(0,n.UIButtonState)().icon,o.text=t.text||t.name;else{if(t.iconURL)o.icon.iconURL=t.iconURL;else{var i=t.icon||t.name;o.icon.name=u.Icon.exists(i)||(null===(e=this.j.o.extraIcons)||void 0===e?void 0:e[i])?i:"";}t.iconURL||o.icon.name||(o.text=t.text||t.name);}t.tooltip&&(o.tooltip=this.j.i18n((0,c.isFunction)(t.tooltip)?t.tooltip(this.j,t,this):t.tooltip)),o.hasTrigger=Boolean(t.list||t.popup&&t.exec);},t.prototype.onTriggerClick=function(e){var t,o,r,n=this;if(this.openedPopup)this.closePopup();else{var i=this.control;if(e.buffer={actionTrigger:this},i.list)return this.openControlList(i);if((0,c.isFunction)(i.popup)){var a=this.openPopup();if(a.parentElement=this,!1!==this.j.e.fire((0,c.camelCase)("before-".concat(i.name,"-open-popup")),this.target,i,a)){var s=null!==(r=null!==(o=null===(t=this.toolbar)||void 0===t?void 0:t.getTarget(this))&&void 0!==o?o:this.target)&&void 0!==r?r:null,l=i.popup(this.j,s,i,this.closePopup,this);l&&a.setContent((0,c.isString)(l)?this.j.c.fromHTML(l):l).open(function(){return(0,c.position)(n.container);},!1,this.j.o.allowTabNavigation?this.container:void 0);}this.j.e.fire((0,c.camelCase)("after-".concat(i.name,"-open-popup")),a.container);}}},t.prototype.openControlList=function(e){var t,o=this,n=null!==(t=this.jodit.options.controls)&&void 0!==t?t:{},i=function(e){return(0,f.findControlType)(e,n);},a=e.list,s=this.openPopup(),u=(0,l.makeCollection)(this.j);s.parentElement=this,u.parentElement=s,u.mode="vertical";var d=function(t,o){if((0,c.isString)(o)&&i(o))return r.__assign({name:o.toString()},i(o));if((0,c.isString)(t)&&i(t))return r.__assign(r.__assign({name:t.toString()},i(t)),"object"==typeof o?o:{});var n={name:t.toString(),template:e.childTemplate,exec:e.exec,data:e.data,command:e.command,isActive:e.isChildActive,isDisabled:e.isChildDisabled,mode:e.mode,args:r.__spreadArray(r.__spreadArray([],r.__read(e.args?e.args:[]),!1),[t,o],!1)};return(0,c.isString)(o)&&(n.text=o),n;};u.build((0,c.isArray)(a)?a.map(d):(0,c.keys)(a,!1).map(function(e){return d(e,a[e]);}),this.target),s.setContent(u.container).open(function(){return(0,c.position)(o.container);},!1,this.j.o.allowTabNavigation?this.container:void 0),this.state.activated=!0;},t.prototype.onOutsideClick=function(e){this.openedPopup&&(e&&a.Dom.isNode(e.target)&&(a.Dom.isOrContains(this.container,e.target)||this.openedPopup.isOwnClick(e))||this.closePopup());},t.prototype.openPopup=function(){return this.closePopup(),this.openedPopup=new s.Popup(this.j,!1),this.j.e.on(this.ow,"mousedown touchstart",this.onOutsideClick).on("escape closeAllPopups",this.onOutsideClick),this.openedPopup;},t.prototype.closePopup=function(){this.openedPopup&&(this.j.e.off(this.ow,"mousedown touchstart",this.onOutsideClick).off("escape closeAllPopups",this.onOutsideClick),this.state.activated=!1,this.openedPopup.close(),this.openedPopup.destruct(),this.openedPopup=null);},t.prototype.onClick=function(e){var t,o,r,n,i,a,s,l=this.control;if((0,c.isFunction)(l.exec)){var u=null!==(r=null!==(o=null===(t=this.toolbar)||void 0===t?void 0:t.getTarget(this))&&void 0!==o?o:this.target)&&void 0!==r?r:null,d=l.exec(this.j,u,{control:l,originalEvent:e,button:this});if(!1!==d&&!0!==d&&(null===(i=null===(n=this.j)||void 0===n?void 0:n.e)||void 0===i||i.fire("synchro"),this.parentElement&&this.parentElement.update(),null===(s=null===(a=this.j)||void 0===a?void 0:a.e)||void 0===s||s.fire("closeAllPopups afterExec")),!1!==d)return;}return l.list?this.openControlList(l):(0,c.isFunction)(l.popup)?this.onTriggerClick(e):void((l.command||l.name)&&((0,c.call)((0,c.isJoditObject)(this.j)?this.j.execCommand.bind(this.j):this.j.od.execCommand.bind(this.j.od),l.command||l.name,!1,l.args&&l.args[0]),this.j.e.fire("closeAllPopups")));},t.prototype.destruct=function(){return this.closePopup(),e.prototype.destruct.call(this);},r.__decorate([(0,i.watch)("state.tooltip")],t.prototype,"onChangeTooltip",null),r.__decorate([(0,i.watch)("state.hasTrigger")],t.prototype,"onChangeHasTrigger",null),r.__decorate([(0,i.watch)("trigger:click")],t.prototype,"onTriggerClick",null),r.__decorate([i.autobind],t.prototype,"onOutsideClick",null),r.__decorate([i.autobind],t.prototype,"closePopup",null),r.__decorate([i.component],t);}(n.UIButton);t.ToolbarButton=h;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ToolbarContent=void 0;var r=o(145);o(361);var n=o(308),i=o(229),a=o(185),s=o(231),l=function(e){function t(t,o,r){void 0===r&&(r=null);var n=e.call(this,t)||this;return n.control=o,n.target=r,n.container.classList.add("".concat(n.componentName,"_").concat(n.clearName(o.name))),(0,a.attr)(n.container,"role","content"),n;}return r.__extends(t,e),t.prototype.className=function(){return"ToolbarContent";},t.prototype.update=function(){var t=this.control.getContent(this.j,this.control,this);((0,a.isString)(t)||t.parentNode!==this.container)&&(i.Dom.detach(this.container),this.container.appendChild((0,a.isString)(t)?this.j.create.fromHTML(t):t)),e.prototype.update.call(this);},t.prototype.createContainer=function(){return this.j.c.span(this.componentName);},r.__decorate([s.component],t);}(n.UIButton);t.ToolbarContent=l;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Alert=void 0;var r=o(323),n=o(185),i=o(229),a=o(335);t.Alert=function(e,t,o,s){void 0===s&&(s="jodit-dialog_alert"),(0,n.isFunction)(t)&&(o=t,t=void 0);var l=new r.Dialog(),c=l.c.div(s),u=(0,a.Button)(l,"ok","Ok");return(0,n.asArray)(e).forEach(function(e){c.appendChild(i.Dom.isNode(e)?e:l.c.fromHTML(e));}),u.onAction(function(){o&&(0,n.isFunction)(o)&&!1===o(l)||l.close();}),l.setFooter([u]),l.open(c,t||"&nbsp;",!0,!0),u.focus(),l;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Prompt=void 0;var r=o(322),n=o(335),i=o(185);t.Prompt=function(e,t,o,a,s){var l=new r.Dialog(),c=(0,n.Button)(l,"cancel","Cancel"),u=(0,n.Button)(l,"ok","Ok"),d=l.c.element("form",{class:"jodit-dialog_prompt"}),p=l.c.element("input",{autofocus:!0,class:"jodit-input"}),f=l.c.element("label");(0,i.isFunction)(t)&&(o=t,t=void 0),a&&(0,i.attr)(p,"placeholder",a),f.appendChild(l.c.text(e)),d.appendChild(f),d.appendChild(p),c.onAction(l.close);var h=function(){o&&(0,i.isFunction)(o)&&!1===o(p.value)||l.close();};return u.onAction(h),l.e.on(d,"submit",function(){return h(),!1;}),l.setFooter([u,c]),l.open(d,t||"&nbsp;",!0,!0),p.focus(),void 0!==s&&s.length&&(p.value=s,p.select()),l;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Confirm=void 0;var r=o(322),n=o(185),i=o(335);t.Confirm=function(e,t,o){var a=new r.Dialog(),s=a.c.fromHTML('<form class="jodit-dialog_prompt"></form>'),l=a.c.element("label");(0,n.isFunction)(t)&&(o=t,t=void 0),l.appendChild(a.c.fromHTML(e)),s.appendChild(l);var c=function(e){return function(){o&&!1===o(e)||a.close();};},u=(0,i.Button)(a,"cancel","Cancel"),d=(0,i.Button)(a,"ok","Yes");return u.onAction(c(!1)),d.onAction(c(!0)),a.e.on(s,"submit",function(){return c(!0)(),!1;}),a.setFooter([d,u]),a.open(s,t||"&nbsp;",!0,!0),d.focus(),a;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(238),t),r.__exportStar(o(366),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Plugin=void 0;var r=o(145),n=o(235),i=o(231),a=o(185),s=function(e){function t(t){var o=e.call(this,t)||this;return o.requires=[],o.buttons=[],o.hasStyle=!1,t.e.on("afterPluginSystemInit",function(){var e;(0,a.isJoditObject)(t)&&(null===(e=o.buttons)||void 0===e||e.forEach(function(e){t.registerButton(e);}));}).on("afterInit",function(){o.setStatus(n.STATUSES.ready),o.afterInit(t);}).on("beforeDestruct",o.destruct),o;}return r.__extends(t,e),t.prototype.className=function(){return"";},t.prototype.init=function(e){},t.prototype.destruct=function(){var t,o,r;if(!this.isInDestruct){this.setStatus(n.STATUSES.beforeDestruct);var i=this.j;(0,a.isJoditObject)(i)&&(null===(t=this.buttons)||void 0===t||t.forEach(function(e){null==i||i.unregisterButton(e);})),null===(r=null===(o=this.j)||void 0===o?void 0:o.events)||void 0===r||r.off("beforeDestruct",this.destruct),this.beforeDestruct(this.j),e.prototype.destruct.call(this);}},r.__decorate([i.autobind],t.prototype,"destruct",null),t;}(n.ViewComponent);t.Plugin=s;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),o(145).__exportStar(o(368),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Create=void 0;var r=o(185),n=o(229),i=o(147),a=function(){function e(e,t){this.document=e,this.createAttributes=t;}return Object.defineProperty(e.prototype,"doc",{get:function(){return(0,r.isFunction)(this.document)?this.document():this.document;},enumerable:!1,configurable:!0}),e.prototype.element=function(e,t,o){var n=this,i=this.doc.createElement(e.toLowerCase());return this.applyCreateAttributes(i),t&&((0,r.isPlainObject)(t)?(0,r.attr)(i,t):o=t),o&&(0,r.asArray)(o).forEach(function(e){return i.appendChild((0,r.isString)(e)?n.fromHTML(e):e);}),i;},e.prototype.div=function(e,t,o){var r=this.element("div",t,o);return e&&(r.className=e),r;},e.prototype.span=function(e,t,o){var r=this.element("span",t,o);return e&&(r.className=e),r;},e.prototype.a=function(e,t,o){var r=this.element("a",t,o);return e&&(r.className=e),r;},e.prototype.text=function(e){return this.doc.createTextNode(e);},e.prototype.fake=function(){return this.text(i.INVISIBLE_SPACE);},e.prototype.fragment=function(){return this.doc.createDocumentFragment();},e.prototype.fromHTML=function(e,t){var o=this.div();o.innerHTML=e.toString();var i=o.firstChild===o.lastChild&&o.firstChild?o.firstChild:o;if(n.Dom.safeRemove(i),t){var a=(0,r.refs)(i);Object.keys(t).forEach(function(e){var o=a[e];o&&!1===t[e]&&n.Dom.hide(o);});}return i;},e.prototype.applyCreateAttributes=function(e){if(this.createAttributes){var t=this.createAttributes;if(t&&t[e.tagName.toLowerCase()]){var o=t[e.tagName.toLowerCase()];(0,r.isFunction)(o)?o(e):(0,r.isPlainObject)(o)&&(0,r.attr)(e,o);}}},e;}();t.Create=a;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),o(145).__exportStar(o(370),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isFileBrowserFilesItem=t.FileBrowser=void 0;var r=o(145);o(371);var n=o(146),i=o(147),a=o(322),s=o(328),l=o(185),c=o(325);o(372);var u=o(229),d=o(373),p=o(376),f=o(380),h=o(387),m=o(374),v=o(231),g=o(388),y=o(149),b=o(378),_=o(379),w=o(235),S=function(e){function t(t){var o,r=this;(r=e.call(this,t)||this).browser=r.c.div(r.componentName),r.status_line=r.c.div(r.getFullElName("status")),r.tree=new g.FileBrowserTree(r),r.files=new g.FileBrowserFiles(r),r.state=(0,y.observable)({currentPath:"",currentSource:m.DEFAULT_SOURCE_NAME,currentBaseUrl:"",activeElements:[],elements:[],messages:[],sources:[],view:"tiles",sortBy:"changed-desc",filterWord:"",onlyImages:!1}),r.errorHandler=function(e){(0,l.isAbort)(e)||(e instanceof Error?r.status(r.i18n(e.message)):r.status(r.dataProvider.getMessage(e)));},r.close=function(){r.dialog.close();},r.attachEvents(t);var i=r;i.options=(0,l.ConfigProto)(t||{},n.Config.defaultOptions.filebrowser),i.storage=s.Storage.makeStorage(Boolean(r.o.saveStateInStorage),r.componentName),i.dataProvider=(0,d.makeDataProvider)(i,i.options),i.dialog=new a.Dialog({fullsize:i.o.fullsize,ownerWindow:i.ownerWindow,theme:i.o.theme,globalFullSize:i.o.globalFullSize,language:r.o.language,minWidth:Math.min(700,screen.width),minHeight:300,buttons:null!==(o=r.o.headerButtons)&&void 0!==o?o:["fullsize","dialog.close"]}),r.proxyDialogEvents(i),i.browser.component=r,i.container=i.browser,i.o.showFoldersPanel&&i.browser.appendChild(i.tree.container),i.browser.appendChild(i.files.container),i.browser.appendChild(i.status_line),h.selfListeners.call(i),f.nativeListeners.call(i),p.stateListeners.call(i),i.dialog.setSize(i.o.width,i.o.height),["getLocalFileByUrl","crop","resize","create","fileMove","folderMove","fileRename","folderRename","fileRemove","folderRemove","folder","items","permissions"].forEach(function(e){null!=r.options[e]&&(r.options[e]=(0,l.ConfigProto)(r.options[e],r.o.ajax));});var c=r.o.saveStateInStorage||{storeLastOpenedFolder:!1,storeView:!1,storeSortBy:!1},u=c.storeSortBy,v=c.storeLastOpenedFolder,b=c.storeView&&r.storage.get("view");i.state.view=b&&null==r.o.view?"list"===b?"list":"tiles":"list"===i.o.view?"list":"tiles",i.files.setMod("view",i.state.view);var _=u&&i.storage.get("sortBy");if(_){var S=_.split("-");i.state.sortBy=["changed","name","size"].includes(S[0])?_:"changed-desc";}else i.state.sortBy=i.o.sortBy||"changed-desc";if(v){var C=i.storage.get("currentPath"),k=i.storage.get("currentSource");i.state.currentPath=null!=C?C:"",i.state.currentSource=null!=k?k:"";}return i.initUploader(i),i.setStatus(w.STATUSES.ready),r;}return r.__extends(t,e),t.prototype.className=function(){return"Filebrowser";},t.prototype.onSelect=function(e){var t=this;return function(){if(t.state.activeElements.length){var o=[],r=[];t.state.activeElements.forEach(function(e){var t=e.fileURL;t&&(o.push(t),r.push(e.isImage||!1));}),t.close();var n={baseurl:"",files:o,isImages:r};(0,l.isFunction)(e)&&e(n),t.close();}return!1;};},Object.defineProperty(t.prototype,"isOpened",{get:function(){return this.dialog.isOpened&&"none"!==this.browser.style.display;},enumerable:!1,configurable:!0}),t.prototype.status=function(e,t){var o=this;if(e&&!(0,l.isAbort)(e)&&((0,l.isString)(e)||(e=e.message),(0,l.isString)(e)&&(0,l.trim)(e).length)){var r=this.getFullElName("status","success",!0),n=this.getFullElName("status","active",!0);this.status_line.classList.remove(r),this.status_line.classList.add(n);var i=this.c.div();i.textContent=e,this.status_line.appendChild(i),t&&this.status_line.classList.add(r),this.async.setTimeout(function(){o.status_line.classList.remove(n),u.Dom.detach(o.status_line);},{timeout:this.o.howLongShowMsg,label:"fileBrowser.status"});}},t.prototype.open=function(e,t){var o=this;return void 0===e&&(e=this.o.defaultCallback),void 0===t&&(t=!1),this.state.onlyImages=t,this.async.promise(function(t,r){var n;if(!o.o.items||!o.o.items.url)throw(0,l.error)("Need set options.filebrowser.ajax.url");var a=0;o.e.off(o.files.container,"dblclick").on(o.files.container,"dblclick",o.onSelect(e)).on(o.files.container,"touchstart",function(){var t=new Date().getTime();i.EMULATE_DBLCLICK_TIMEOUT>t-a&&o.onSelect(e)(),a=t;}).off("select.filebrowser").on("select.filebrowser",o.onSelect(e));var s=o.c.div();o.toolbar.build(null!==(n=o.o.buttons)&&void 0!==n?n:[]).appendTo(s),o.dialog.open(o.browser,s),o.e.fire("sort.filebrowser",o.state.sortBy),(0,b.loadTree)(o).then(t,r);});},t.prototype.initUploader=function(e){var t,o=this,r=this,i=null===(t=null==e?void 0:e.options)||void 0===t?void 0:t.uploader,a=(0,l.ConfigProto)(i||{},n.Config.defaultOptions.uploader),s=function(){return(0,_.loadItems)(o);};r.uploader=r.getInstance("Uploader",a),r.uploader.setPath(r.state.currentPath).setSource(r.state.currentSource).bind(r.browser,s,r.errorHandler),this.state.on(["change.currentPath","change.currentSource"],function(){o.uploader.setPath(o.state.currentPath).setSource(o.state.currentSource);}),r.e.on("bindUploader.filebrowser",function(e){r.uploader.bind(e,s,r.errorHandler);});},t.prototype.proxyDialogEvents=function(e){var t=this;["afterClose","beforeOpen"].forEach(function(o){e.dialog.events.on(e.dialog,o,function(){t.e.fire(o);});});},t.prototype.destruct=function(){this.isInDestruct||(e.prototype.destruct.call(this),this.dialog.destruct(),this.events&&this.e.off(".filebrowser"),this.uploader&&this.uploader.destruct());},r.__decorate([v.autobind],t.prototype,"status",null),r.__decorate([v.autobind],t.prototype,"open",null),t;}(c.ViewWithToolbar);t.FileBrowser=S,t.isFileBrowserFilesItem=function(e){return u.Dom.isElement(e)&&e.classList.contains(g.FileBrowserFiles.prototype.getFullElName("item"));};},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145),n=o(146),i=o(185),a=o(335);n.Config.prototype.filebrowser={namespace:"",extraButtons:[],filter:function(e,t){return t=t.toLowerCase(),(0,i.isString)(e)?-1!==e.toLowerCase().indexOf(t):(0,i.isString)(e.name)?-1!==e.name.toLowerCase().indexOf(t):!(0,i.isString)(e.file)||-1!==e.file.toLowerCase().indexOf(t);},sortBy:"changed-desc",sort:function(e,t,o){var n=r.__read(o.toLowerCase().split("-"),2),a=n[0],s="asc"===n[1],l=function(e,t){return t>e?s?-1:1:e>t?s?1:-1:0;};if((0,i.isString)(e))return l(e.toLowerCase(),t.toLowerCase());if(void 0===e[a]||"name"===a)return(0,i.isString)(e.name)?l(e.name.toLowerCase(),t.name.toLowerCase()):(0,i.isString)(e.file)?l(e.file.toLowerCase(),t.file.toLowerCase()):0;switch(a){case"changed":var c=new Date(e.changed).getTime(),u=new Date(t.changed).getTime();return s?c-u:u-c;case"size":return c=(0,i.humanSizeToBytes)(e.size),u=(0,i.humanSizeToBytes)(t.size),s?c-u:u-c;}return 0;},editImage:!0,preview:!0,showPreviewNavigation:!0,showSelectButtonInPreview:!0,contextMenu:!0,howLongShowMsg:3e3,createNewFolder:!0,deleteFolder:!0,renameFolder:!0,moveFolder:!0,moveFile:!0,showFoldersPanel:!0,storeLastOpenedFolder:!0,width:859,height:400,buttons:["filebrowser.upload","filebrowser.remove","filebrowser.update","filebrowser.select","filebrowser.edit","|","filebrowser.tiles","filebrowser.list","|","filebrowser.filter","|","filebrowser.sort"],removeButtons:[],fullsize:!1,showTooltip:!0,view:null,isSuccess:function(e){return e.success;},getMessage:function(e){return void 0!==e.data.messages&&(0,i.isArray)(e.data.messages)?e.data.messages.join(" "):"";},showFileName:!0,showFileSize:!0,showFileChangeTime:!0,saveStateInStorage:{storeLastOpenedFolder:!0,storeView:!0,storeSortBy:!0},pixelOffsetLoadNewChunk:200,getThumbTemplate:function(e,t,o){var r=this.options,n=this.files.getFullElName("item"),i=r.showFileName,a=r.showFileSize&&e.size,s=r.showFileChangeTime&&e.time,l="";void 0!==e.file&&(l=e.file);var c='<div class="'.concat(n,'-info">').concat(i?'<span class="'.concat(n,'-info-filename">').concat(l,"</span>"):"").concat(a?'<span class="'.concat(n,'-info-filesize">').concat(e.size,"</span>"):"").concat(s?'<span class="'.concat(n,'-info-filechanged">').concat(s,"</span>"):"","</div>");return'<a\n\t\t\tdata-jodit-filebrowser-item="true"\n\t\t\tdata-is-file="'.concat(e.isImage?0:1,'"\n\t\t\tdraggable="true"\n\t\t\tclass="').concat(n,'"\n\t\t\thref="').concat(e.fileURL,'"\n\t\t\tdata-source="').concat(o,'"\n\t\t\tdata-path="').concat(e.path,'"\n\t\t\tdata-name="').concat(l,'"\n\t\t\ttitle="').concat(l,'"\n\t\t\tdata-url="').concat(e.fileURL,'">\n\t\t\t\t<img\n\t\t\t\t\tdata-is-file="').concat(e.isImage?0:1,'"\n\t\t\t\t\tdata-src="').concat(e.fileURL,'"\n\t\t\t\t\tsrc="').concat(e.imageURL,'"\n\t\t\t\t\talt="').concat(l,'"\n\t\t\t\t\tloading="lazy"\n\t\t\t\t/>\n\t\t\t\t').concat(i||a||s?c:"","\n\t\t\t</a>");},ajax:r.__assign(r.__assign({},n.Config.prototype.defaultAjaxOptions),{url:"",async:!0,data:{},cache:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",method:"POST",processData:!0,dataType:"json",headers:{},prepareData:function(e){return e;},process:function(e){return e;}}),create:{data:{action:"folderCreate"}},getLocalFileByUrl:{data:{action:"getLocalFileByUrl"}},resize:{data:{action:"imageResize"}},crop:{data:{action:"imageCrop"}},fileMove:{data:{action:"fileMove"}},folderMove:{data:{action:"folderMove"}},fileRename:{data:{action:"fileRename"}},folderRename:{data:{action:"folderRename"}},fileRemove:{data:{action:"fileRemove"}},folderRemove:{data:{action:"folderRemove"}},items:{data:{action:"files"}},folder:{data:{action:"folders"}},permissions:{data:{action:"permissions"}}},n.Config.prototype.controls.filebrowser={upload:{icon:"plus",isInput:!0,isDisabled:function(e){return!e.dataProvider.canI("FileUpload");},getContent:function(e){var t=new a.UIFileInput(e,{onlyImages:e.state.onlyImages});return e.e.fire("bindUploader.filebrowser",t.container),t.container;}},remove:{icon:"bin",isDisabled:function(e){return!e.state.activeElements.length||!e.dataProvider.canI("FileRemove");},exec:function(e){e.e.fire("fileRemove.filebrowser");}},update:{exec:function(e){e.e.fire("update.filebrowser");}},select:{icon:"check",isDisabled:function(e){return!e.state.activeElements.length;},exec:function(e){e.e.fire("select.filebrowser");}},edit:{icon:"pencil",isDisabled:function(e){var t=e.state.activeElements;return 1!==t.length||!t[0].isImage||!(e.dataProvider.canI("ImageCrop")||e.dataProvider.canI("ImageResize"));},exec:function(e){e.e.fire("edit.filebrowser");}},tiles:{icon:"th",isActive:function(e){return"tiles"===e.state.view;},exec:function(e){e.e.fire("view.filebrowser","tiles");}},list:{icon:"th-list",isActive:function(e){return"list"===e.state.view;},exec:function(e){e.e.fire("view.filebrowser","list");}},filter:{isInput:!0,getContent:function(e,t,o){var r=o.container.querySelector(".jodit-input");if(r)return r;var n=e.c.element("input",{class:"jodit-input",placeholder:e.i18n("Filter")});return n.value=e.state.filterWord,e.e.on(n,"keydown mousedown",e.async.debounce(function(){e.e.fire("filter.filebrowser",n.value);},e.defaultTimeout)),n;}},sort:{isInput:!0,getContent:function(e){var t=e.c.fromHTML('<select class="jodit-input jodit-select">'+'<option value="changed-asc">'.concat(e.i18n("Sort by changed")," (⬆)</option>")+'<option value="changed-desc">'.concat(e.i18n("Sort by changed")," (⬇)</option>")+'<option value="name-asc">'.concat(e.i18n("Sort by name")," (⬆)</option>")+'<option value="name-desc">'.concat(e.i18n("Sort by name")," (⬇)</option>")+'<option value="size-asc">'.concat(e.i18n("Sort by size")," (⬆)</option>")+'<option value="size-desc">'.concat(e.i18n("Sort by size")," (⬇)</option>")+"</select>");return t.value=e.state.sortBy,e.e.on("sort.filebrowser",function(e){t.value!==e&&(t.value=e);}).on(t,"change",function(){e.e.fire("sort.filebrowser",t.value);}),t;}}};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.makeContextMenu=t.makeDataProvider=void 0;var r=o(374),n=o(303);t.makeDataProvider=function(e,t){return new r.default(e,t);},t.makeContextMenu=function(e){return new n.ContextMenu(e);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.DEFAULT_SOURCE_NAME=void 0;var r=o(145),n=o(185),i=o(183),a=o(231),s=o(375);t.DEFAULT_SOURCE_NAME="default";var l=function(){function e(e,t){this.parent=e,this.options=t,this.__currentPermissions=null,this.ajaxInstances=new Map(),this.progressHandler=function(e){};}return Object.defineProperty(e.prototype,"o",{get:function(){return this.options;},enumerable:!1,configurable:!0}),e.prototype.get=function(e){var t=this,o=this.ajaxInstances;if(o.has(e)){var r=o.get(e);null==r||r.abort(),o.delete(e);}var a=(0,n.ConfigProto)(void 0!==this.options[e]?this.options[e]:{},(0,n.ConfigProto)({onProgress:this.progressHandler},this.o.ajax));a.prepareData&&(a.data=a.prepareData.call(this,a.data));var s=new i.Ajax(this.parent,a);o.set(e,s);var l=s.send();return l.finally(function(){s.destruct(),o.delete(e),t.progressHandler(100);}).catch(function(){return null;}),l.then(function(e){return e.json();}).then(function(e){if(e&&!t.isSuccess(e))throw new Error(t.getMessage(e));return e;});},e.prototype.onProgress=function(e){this.progressHandler=e;},e.prototype.permissions=function(e,t){return r.__awaiter(this,void 0,Promise,function(){var o=this;return r.__generator(this,function(r){return this.o.permissions?(this.o.permissions.data.path=e,this.o.permissions.data.source=t,this.o.permissions.url?[2,this.get("permissions").then(function(e){var t=o.o.permissions.process;if(t||(t=o.o.ajax.process),t){var r=t.call(self,e);r.data.permissions&&(o.__currentPermissions=r.data.permissions);}return o.__currentPermissions;})]:[2,null]):[2,null];});});},e.prototype.canI=function(e){var t="allow"+e;return null==this.__currentPermissions||void 0===this.__currentPermissions[t]||this.__currentPermissions[t];},e.prototype.items=function(e,t,o){var r=this;void 0===o&&(o={});var n=this.options;return n.items?(n.items.data.path=e,n.items.data.source=t,n.items.data.mods=o,this.get("items").then(function(e){var t=r.o.items.process;return t||(t=r.o.ajax.process),t&&(e=t.call(self,e)),r.generateItemsList(e.data.sources,o);})):Promise.reject("Set Items api options");},e.prototype.generateItemsList=function(e,t){var o=this;void 0===t&&(t={});var i=[];return e.forEach(function(e){if(e.files&&e.files.length){var a=o.o.sort;(0,n.isFunction)(a)&&t.sortBy&&e.files.sort(function(e,o){return a(e,o,t.sortBy);}),e.files.forEach(function(n){(function(e){var r;return!(null===(r=t.filterWord)||void 0===r?void 0:r.length)||void 0===o.o.filter||o.o.filter(e,t.filterWord);})(n)&&function(e){return!t.onlyImages||void 0===e.isImage||e.isImage;}(n)&&i.push(s.FileBrowserItem.create(r.__assign(r.__assign({},n),{sourceName:e.name,source:e})));});}}),i;},e.prototype.tree=function(e,t){return r.__awaiter(this,void 0,Promise,function(){var o=this;return r.__generator(this,function(r){switch(r.label){case 0:return e=(0,n.normalizeRelativePath)(e),this.o.folder?[4,this.permissions(e,t)]:[2,Promise.reject("Set Folder Api options")];case 1:return r.sent(),this.o.folder.data.path=e,this.o.folder.data.source=t,[2,this.get("folder").then(function(e){var t=o.o.folder.process;return t||(t=o.o.ajax.process),t&&(e=t.call(self,e)),e.data.sources;})];}});});},e.prototype.getPathByUrl=function(e){var t=this;return(0,n.set)("options.getLocalFileByUrl.data.url",e,this),this.get("getLocalFileByUrl").then(function(e){if(t.isSuccess(e))return e.data;throw(0,n.error)(t.getMessage(e));});},e.prototype.createFolder=function(e,t,o){var r=this,i=this.o.create;if(!i)throw(0,n.error)("Set Create api options");return i.data.source=o,i.data.path=t,i.data.name=e,this.get("create").then(function(e){if(r.isSuccess(e))return!0;throw(0,n.error)(r.getMessage(e));});},e.prototype.move=function(e,t,o,r){var i=this,a=r?"fileMove":"folderMove",s=this.options[a];if(!s)throw(0,n.error)("Set Move api options");return s.data.from=e,s.data.path=t,s.data.source=o,this.get(a).then(function(e){if(i.isSuccess(e))return!0;throw(0,n.error)(i.getMessage(e));});},e.prototype.remove=function(e,t,o,r){var i=this,a=this.o[e];if(!a)throw(0,n.error)('Set "'.concat(e,'" api options'));return a.data.path=t,a.data.name=o,a.data.source=r,this.get(e).then(function(e){return a.process&&(e=a.process.call(i,e)),i.getMessage(e);});},e.prototype.fileRemove=function(e,t,o){return this.remove("fileRemove",e,t,o);},e.prototype.folderRemove=function(e,t,o){return this.remove("folderRemove",e,t,o);},e.prototype.rename=function(e,t,o,r,i){var a=this,s=this.o[e];if(!s)throw(0,n.error)('Set "'.concat(e,'" api options'));return s.data.path=t,s.data.name=o,s.data.newname=r,s.data.source=i,this.get(e).then(function(e){return s.process&&(e=s.process.call(self,e)),a.getMessage(e);});},e.prototype.folderRename=function(e,t,o,r){return this.rename("folderRename",e,t,o,r);},e.prototype.fileRename=function(e,t,o,r){return this.rename("fileRename",e,t,o,r);},e.prototype.changeImage=function(e,t,o,r,n,i){this.o[e]||(this.o[e]={data:{}});var a=this.o[e];return void 0===a.data&&(a.data={action:e}),a.data.newname=n||r,i&&(a.data.box=i),a.data.path=t,a.data.name=r,a.data.source=o,this.get(e).then(function(){return!0;});},e.prototype.crop=function(e,t,o,r,n){return this.changeImage("crop",e,t,o,r,n);},e.prototype.resize=function(e,t,o,r,n){return this.changeImage("resize",e,t,o,r,n);},e.prototype.getMessage=function(e){return this.options.getMessage(e);},e.prototype.isSuccess=function(e){return this.options.isSuccess(e);},e.prototype.destruct=function(){this.ajaxInstances.forEach(function(e){return e.destruct();}),this.ajaxInstances.clear();},r.__decorate([a.autobind],e);}();t.default=l;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.FileBrowserItem=void 0;var r=o(185),n=function(){function e(e){var t=this;this.data=e,Object.keys(e).forEach(function(o){t[o]=e[o];});}return e.create=function(t){return t instanceof e?t:new e(t);},Object.defineProperty(e.prototype,"path",{get:function(){return(0,r.normalizePath)(this.data.source.path?this.data.source.path+"/":"/");},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"imageURL",{get:function(){var e=new Date().getTime().toString(),t=this.data,o=t.source,n=t.thumb||t.file;return t.thumbIsAbsolute&&n?n:(0,r.normalizeUrl)(o.baseurl,o.path,n||"")+"?_tmst="+e;},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"fileURL",{get:function(){var e=this.data.name,t=this.data,o=t.file,n=t.source;return void 0!==o&&(e=o),t.fileIsAbsolute&&e?e:(0,r.normalizeUrl)(n.baseurl,n.path,e||"");},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"time",{get:function(){var e=this.data.changed;return e&&("number"==typeof e?new Date(e).toLocaleString():e)||"";},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"uniqueHashKey",{get:function(){var e=this.data;return[e.sourceName,e.name,e.file,this.time,e.thumb].join("_").toLowerCase().replace(/[^0-9a-z\-.]/g,"-");},enumerable:!1,configurable:!0}),e.prototype.toJSON=function(){return this.data;},e;}();t.FileBrowserItem=n;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.stateListeners=void 0;var r=o(229),n=o(282),i=o(335),a=o(377),s=o(378);t.stateListeners=function(){var e=this,t=(0,a.elementsMap)(this),o=this,l=o.state,c=o.files,u=o.create,d=o.options;l.on(["change.currentPath","change.currentSource"],this.async.debounce(function(){e.o.saveStateInStorage&&e.o.saveStateInStorage.storeLastOpenedFolder&&e.storage.set("currentPath",e.state.currentPath).set("currentSource",e.state.currentSource),(0,s.loadTree)(e).catch(e.status);},this.defaultTimeout)).on("beforeChange.activeElements",function(){l.activeElements.forEach(function(e){var o=t[e.uniqueHashKey].elm;o&&o.classList.remove(c.getFullElName("item","active",!0));});}).on("change.activeElements",function(){e.e.fire("changeSelection"),l.activeElements.forEach(function(e){var o=t[e.uniqueHashKey].elm;o&&o.classList.add(c.getFullElName("item","active",!0));});}).on("change.view",function(){c.setMod("view",l.view),e.o.saveStateInStorage&&e.o.saveStateInStorage.storeView&&e.storage.set("view",l.view);}).on("change.sortBy",function(){e.o.saveStateInStorage&&e.o.saveStateInStorage.storeSortBy&&e.storage.set("sortBy",l.sortBy);}).on("change.elements",this.async.debounce(function(){r.Dom.detach(c.container),l.elements.length?l.elements.forEach(function(o){e.files.container.appendChild(function(o){var r=o.uniqueHashKey;if(t[r])return t[r].elm;var n=u.fromHTML(d.getThumbTemplate.call(e,o,o.source,o.sourceName.toString()));return n.dataset.key=r,t[r]={item:o,elm:n},t[r].elm;}(o));}):c.container.appendChild(u.div(e.componentName+"_no-files_true",e.i18n("There are no files")));},this.defaultTimeout)).on("change.sources",this.async.debounce(function(){r.Dom.detach(e.tree.container),l.sources.forEach(function(t){var o=t.name;if(o&&"default"!==o&&e.tree.container.appendChild(u.div(e.tree.getFullElName("source-title"),o)),t.folders.forEach(function(r){var a,s=u.a(e.tree.getFullElName("item"),{draggable:"draggable",href:"#","data-path":(0,n.normalizePath)(t.path,r+"/"),"data-name":r,"data-source":o,"data-source-path":t.path},u.span(e.tree.getFullElName("item-title"),r)),l=function(i){return function(a){e.e.fire("".concat(i,".filebrowser"),{name:r,path:(0,n.normalizePath)(t.path+"/"),source:o}),a.stopPropagation(),a.preventDefault();};};e.e.on(s,"click",l("openFolder")),e.tree.container.appendChild(s),".."!==r&&"."!==r&&(d.renameFolder&&e.dataProvider.canI("FolderRename")&&((a=(0,i.Button)(e,{icon:{name:"pencil"},name:"rename",tooltip:"Rename",size:"tiny"})).onAction(l("renameFolder")),s.appendChild(a.container)),d.deleteFolder&&e.dataProvider.canI("FolderRemove")&&((a=(0,i.Button)(e,{icon:{name:"cancel"},name:"remove",tooltip:"Delete",size:"tiny"})).onAction(l("removeFolder")),s.appendChild(a.container)));}),d.createNewFolder&&e.dataProvider.canI("FolderCreate")){var r=(0,i.Button)(e,"plus","Add folder","secondary");r.onAction(function(){e.e.fire("addFolder",{path:(0,n.normalizePath)(t.path+"/"),source:o});}),e.tree.append(r);}});},this.defaultTimeout));};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.elementsMap=void 0;var o=new WeakMap();t.elementsMap=function(e){var t=o.get(e);return t||o.set(e,t={}),t;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.loadTree=void 0;var r=o(145),n=o(229),i=o(379);t.loadTree=function(e){return r.__awaiter(this,void 0,Promise,function(){var t,o;return r.__generator(this,function(r){return e.tree.setMod("active",!0),n.Dom.detach(e.tree.container),t=(0,i.loadItems)(e),e.o.showFoldersPanel?(e.tree.setMod("loading",!0),o=e.dataProvider.tree(e.state.currentPath,e.state.currentSource).then(function(t){e.state.sources=t;}).catch(e.status).finally(function(){return e.tree.setMod("loading",!1);}),[2,Promise.all([o,t])]):(e.tree.setMod("active",!1),[2,t]);});});};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.loadItems=void 0,t.loadItems=function(e){return e.files.setMod("active",!0),e.files.setMod("loading",!0),e.dataProvider.items(e.state.currentPath,e.state.currentSource,{sortBy:e.state.sortBy,onlyImages:e.state.onlyImages,filterWord:e.state.filterWord}).then(function(t){t&&(e.state.elements=t,e.state.activeElements=[]);}).catch(e.status).finally(function(){return e.files.setMod("loading",!1);});};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.nativeListeners=t.elementToItem=t.getItem=void 0;var r=o(145),n=o(185),i=o(381),a=o(229),s=o(377),l=o(378);t.getItem=function(e,t,o){return void 0===o&&(o="a"),a.Dom.closest(e,function(e){return a.Dom.isTag(e,o);},t);},t.elementToItem=function(e,t){return t[e.dataset.key||""].item;},t.nativeListeners=function(){var e=this,o=!1,a=(0,s.elementsMap)(this),c=this;c.e.on(c.tree.container,"dragstart",function(e){var r=(0,t.getItem)(e.target,c.container);r&&c.o.moveFolder&&(o=r);}).on(c.tree.container,"drop",function(r){if((c.o.moveFile||c.o.moveFolder)&&o){var i=(0,n.attr)(o,"-path")||"";if(!c.o.moveFolder&&o.classList.contains(e.tree.getFullElName("item")))return!1;if(o.classList.contains(e.files.getFullElName("item"))&&(i+=(0,n.attr)(o,"-name"),!c.o.moveFile))return!1;var a=(0,t.getItem)(r.target,c.container);if(!a)return;c.dataProvider.move(i,(0,n.attr)(a,"-path")||"",(0,n.attr)(a,"-source")||"",o.classList.contains(e.files.getFullElName("item"))).then(function(){return(0,l.loadTree)(e);}).catch(c.status),o=!1;}}).on(c.files.container,"contextmenu",(0,i.default)(c)).on(c.files.container,"click",function(t){(0,n.ctrlKey)(t)||(e.state.activeElements=[]);}).on(c.files.container,"click",function(e){var o=(0,t.getItem)(e.target,c.container);if(o){var i=(0,t.elementToItem)(o,a);if(i)return c.state.activeElements=(0,n.ctrlKey)(e)?r.__spreadArray(r.__spreadArray([],r.__read(c.state.activeElements),!1),[i],!1):[i],e.stopPropagation(),!1;}}).on(c.files.container,"dragstart",function(e){if(c.o.moveFile){var r=(0,t.getItem)(e.target,c.container);if(!r)return;o=r;}}).on(c.container,"drop",function(e){return e.preventDefault();});};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145),n=o(322),i=o(229),a=o(185),s=o(373),l=o(335),c=o(380),u=o(382),d=o(377),p=o(378),f=o(386),h="jodit-filebrowser-preview",m=function(e,t){return void 0===e&&(e="next"),void 0===t&&(t="right"),'<div class="'.concat(h,"__navigation ").concat(h,"__navigation_arrow_").concat(e,'">')+""+l.Icon.get("angle-"+t)+"</a>";};t.default=function(e){if(!e.o.contextMenu)return function(){};var t=(0,s.makeContextMenu)(e);return function(o){var s=(0,c.getItem)(o.target,e.container);if(s){var l=s,v=e.options,g=function(e){return(0,a.attr)(l,e)||"";};return e.async.setTimeout(function(){var y=(0,c.elementToItem)(s,(0,d.elementsMap)(e));y&&(e.state.activeElements=[y],t.show(o.clientX,o.clientY,[!("1"===g("data-is-file")||!v.editImage||!e.dataProvider.canI("ImageResize")&&!e.dataProvider.canI("ImageCrop"))&&{icon:"pencil",title:"Edit",exec:function(){return u.openImageEditor.call(e,g("href"),g("data-name"),g("data-path"),g("data-source"));}},!!e.dataProvider.canI("FileRename")&&{icon:"italic",title:"Rename",exec:function(){e.e.fire("fileRename.filebrowser",g("data-name"),g("data-path"),g("data-source"));}},!!e.dataProvider.canI("FileRemove")&&{icon:"bin",title:"Delete",exec:function(){return r.__awaiter(void 0,void 0,Promise,function(){var t;return r.__generator(this,function(o){switch(o.label){case 0:return o.trys.push([0,2,,3]),[4,(0,f.deleteFile)(e,g("data-name"),g("data-source"))];case 1:return o.sent(),[3,3];case 2:return t=o.sent(),[2,e.status(t)];case 3:return e.state.activeElements=[],[2,(0,p.loadTree)(e).catch(e.status)];}});});}},!!v.preview&&{icon:"eye",title:"Preview",exec:function(){var t=new n.Dialog({fullsize:e.o.fullsize,language:e.o.language,buttons:["fullsize","dialog.close"]}),o=e.c.div(h,'<div class="jodit-icon_loader"></div>'),r=e.c.div(h+"__box"),s=e.c.fromHTML(m()),c=e.c.fromHTML(m("prev","left")),u=function(n){var a=e.c.element("img");a.setAttribute("src",n);var u=function(){var n;e.isInDestruct||(e.e.off(a,"load"),i.Dom.detach(o),v.showPreviewNavigation&&(i.Dom.prevWithClass(l,e.files.getFullElName("item"))&&o.appendChild(c),i.Dom.nextWithClass(l,e.files.getFullElName("item"))&&o.appendChild(s)),o.appendChild(r),r.appendChild(a),t.setPosition(),null===(n=null==e?void 0:e.events)||void 0===n||n.fire("previewOpenedAndLoaded"));};e.e.on(a,"load",u),a.complete&&u();};e.e.on([s,c],"click",function(){if(!(l=this===s?i.Dom.nextWithClass(l,e.files.getFullElName("item")):i.Dom.prevWithClass(l,e.files.getFullElName("item"))))throw(0,a.error)("Need element");i.Dom.detach(o),i.Dom.detach(r),o.innerHTML='<div class="jodit-icon_loader"></div>',u(g("href"));}),e.e.on("beforeDestruct",function(){t.destruct();}),t.container.classList.add(h+"__dialog"),t.setContent(o),t.setPosition(),t.open(),u(g("href")),e.events.on("beforeDestruct",function(){t.destruct();}).fire("previewOpened");}},{icon:"upload",title:"Download",exec:function(){var t=g("href");t&&e.ow.open(t);}}]));},e.defaultTimeout),e.e.on("beforeClose",function(){return t.close();}).on("beforeDestruct",function(){return t.destruct();}),o.stopPropagation(),o.preventDefault(),!1;}};};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.openImageEditor=t.ImageEditor=void 0;var r=o(145);o(383);var n=o(146),i=o(235),a=o(322),s=o(185),l=o(229),c=o(308),u=o(384),d=o(231);o(385);var p="jodit-image-editor",f="resize",h="crop",m=function(e){function t(t){var r=e.call(this,t)||this;r.resizeUseRatio=!0,r.cropUseRatio=!0,r.clicked=!1,r.start_x=0,r.start_y=0,r.top_x=0,r.top_y=0,r.width=0,r.height=0,r.activeTab=f,r.naturalWidth=0,r.naturalHeight=0,r.ratio=0,r.new_h=0,r.new_w=0,r.diff_x=0,r.diff_y=0,r.cropBox={x:0,y:0,w:0,h:0},r.resizeBox={w:0,h:0},r.calcCropBox=function(){var e=r.crop_box.parentNode,t=.8*e.offsetWidth,o=.8*e.offsetHeight,n=t,i=o,a=r.naturalWidth,l=r.naturalHeight;t>a&&o>l?(n=a,i=l):r.ratio>t/o?(n=t,i=l*(t/a)):(n=a*(o/l),i=o),(0,s.css)(r.crop_box,{width:n,height:i});},r.showCrop=function(){if(r.cropImage){r.calcCropBox();var e=r.cropImage.offsetWidth||r.image.offsetWidth||r.image.naturalWidth;r.new_w=o.calcValueByPercent(e,r.o.cropDefaultWidth);var t=r.cropImage.offsetHeight||r.image.offsetHeight||r.image.naturalHeight;r.new_h=r.cropUseRatio?r.new_w/r.ratio:o.calcValueByPercent(t,r.o.cropDefaultHeight),(0,s.css)(r.cropHandler,{backgroundImage:"url("+(0,s.attr)(r.cropImage,"src")+")",width:r.new_w,height:r.new_h,left:e/2-r.new_w/2,top:t/2-r.new_h/2}),r.j.e.fire(r.cropHandler,"updatesize");}},r.updateCropBox=function(){if(r.cropImage){var e=r.cropImage.offsetWidth/r.naturalWidth,t=r.cropImage.offsetHeight/r.naturalHeight;r.cropBox.x=(0,s.css)(r.cropHandler,"left")/e,r.cropBox.y=(0,s.css)(r.cropHandler,"top")/t,r.cropBox.w=r.cropHandler.offsetWidth/e,r.cropBox.h=r.cropHandler.offsetHeight/t,r.sizes.textContent=r.cropBox.w.toFixed(0)+"x"+r.cropBox.h.toFixed(0);}},r.updateResizeBox=function(){r.resizeBox.w=r.image.offsetWidth||r.naturalWidth,r.resizeBox.h=r.image.offsetHeight||r.naturalHeight;},r.setHandlers=function(){var e=r,t=(0,s.refs)(r.editor),o=t.widthInput,n=t.heightInput;e.j.e.on([e.editor.querySelector(".jodit_bottomright"),e.cropHandler],"mousedown.".concat(p),r.onResizeHandleMouseDown).on(r.j.ow,"resize.".concat(p),function(){r.j.e.fire(e.resizeHandler,"updatesize"),e.showCrop(),r.j.e.fire(e.cropHandler,"updatesize");}),e.j.e.on((0,s.toArray)(r.editor.querySelectorAll(".".concat(p,"__slider-title"))),"click",r.onTitleModeClick).on([o,n],"input",r.onChangeSizeInput);var i=(0,s.refs)(r.editor),l=i.keepAspectRatioResize,c=i.keepAspectRatioCrop;l&&l.addEventListener("change",function(){r.resizeUseRatio=l.checked;}),c&&c.addEventListener("change",function(){r.cropUseRatio=c.checked;}),e.j.e.on(e.resizeHandler,"updatesize",function(){(0,s.css)(e.resizeHandler,{top:0,left:0,width:e.image.offsetWidth||e.naturalWidth,height:e.image.offsetHeight||e.naturalHeight}),r.updateResizeBox();}).on(e.cropHandler,"updatesize",function(){if(e.cropImage){var t=(0,s.css)(e.cropHandler,"left"),o=(0,s.css)(e.cropHandler,"top"),r=e.cropHandler.offsetWidth,n=e.cropHandler.offsetHeight;0>t&&(t=0),0>o&&(o=0),t+r>e.cropImage.offsetWidth&&(r=e.cropImage.offsetWidth-t,e.cropUseRatio&&(n=r/e.ratio)),o+n>e.cropImage.offsetHeight&&(n=e.cropImage.offsetHeight-o,e.cropUseRatio&&(r=n*e.ratio)),(0,s.css)(e.cropHandler,{width:r,height:n,left:t,top:o,backgroundPosition:-t-1+"px "+(-o-1)+"px",backgroundSize:e.cropImage.offsetWidth+"px "+e.cropImage.offsetHeight+"px"}),e.updateCropBox();}}),Object.values(e.buttons).forEach(function(t){t.onAction(function(){var i={action:e.activeTab,box:e.activeTab===f?e.resizeBox:e.cropBox};switch(t){case e.buttons.saveas:(0,a.Prompt)(e.j.i18n("Enter new name"),e.j.i18n("Save in new file"),function(t){if(!(0,s.trim)(t))return(0,a.Alert)(e.j.i18n("The name should not be empty")).bindDestruct(r.j),!1;e.onSave(t,i,e.hide,function(t){(0,a.Alert)(t.message).bindDestruct(e.j);});}).bindDestruct(r.j);break;case e.buttons.save:e.onSave(void 0,i,e.hide,function(t){(0,a.Alert)(t.message).bindDestruct(e.j);});break;case e.buttons.reset:e.activeTab===f?((0,s.css)(e.image,{width:null,height:null}),o.value=e.naturalWidth.toString(),n.value=e.naturalHeight.toString(),e.j.e.fire(e.resizeHandler,"updatesize")):e.showCrop();}});});},r.options=t&&t.o&&t.o.imageeditor?t.o.imageeditor:n.Config.defaultOptions.imageeditor;var i=r.options;r.resizeUseRatio=i.resizeUseRatio,r.cropUseRatio=i.cropUseRatio,r.buttons={reset:(0,c.Button)(r.j,"update","Reset"),save:(0,c.Button)(r.j,"save","Save"),saveas:(0,c.Button)(r.j,"save","Save as ...")},r.activeTab=i.resize?f:h,r.editor=(0,u.form)(r.j,r.options);var l=(0,s.refs)(r.editor),d=l.cropBox;return r.resize_box=l.resizeBox,r.crop_box=d,r.sizes=r.editor.querySelector(".".concat(p,"__area.").concat(p,"__area_crop .jodit-image-editor__sizes")),r.resizeHandler=r.editor.querySelector(".".concat(p,"__resizer")),r.cropHandler=r.editor.querySelector(".".concat(p,"__croper")),r.dialog=new a.Dialog({fullsize:r.j.o.fullsize,globalFullSize:r.j.o.globalFullSize,language:r.j.o.language,buttons:["fullsize","dialog.close"]}),r.dialog.setContent(r.editor),r.dialog.setSize(r.o.width,r.o.height),r.dialog.setHeader([r.buttons.reset,r.buttons.save,r.buttons.saveas]),r.setHandlers(),r;}var o;return r.__extends(t,e),o=t,t.prototype.className=function(){return"ImageEditor";},t.prototype.onTitleModeClick=function(e){var t=this,o=e.target,r=null==o?void 0:o.parentElement;if(r){(0,s.$$)(".".concat(p,"__slider,.").concat(p,"__area"),t.editor).forEach(function(e){return e.classList.remove("".concat(p,"_active"));}),r.classList.add("".concat(p,"_active")),this.activeTab=(0,s.attr)(r,"-area")||f;var n=t.editor.querySelector(".".concat(p,"__area.").concat(p,"__area_")+t.activeTab);n&&n.classList.add("".concat(p,"_active")),t.activeTab===h&&t.showCrop();}},t.prototype.onChangeSizeInput=function(e){var t,o=this,r=e.target,n=(0,s.refs)(this.editor),i=n.widthInput,a=n.heightInput,l="widthInput"===(0,s.attr)(r,"data-ref"),c=parseInt(r.value,10),u=l?o.o.min_height:o.o.min_width;c>(l?o.o.min_width:o.o.min_height)&&((0,s.css)(o.image,l?"width":"height",c),o.resizeUseRatio&&(t=l?Math.round(c/o.ratio):Math.round(c*o.ratio))>u&&((0,s.css)(o.image,l?"height":"width",t),l?a.value=t.toString():i.value=t.toString())),this.j.e.fire(o.resizeHandler,"updatesize");},t.prototype.onResizeHandleMouseDown=function(e){var t=this;t.target=e.target,e.preventDefault(),e.stopImmediatePropagation(),t.clicked=!0,t.start_x=e.clientX,t.start_y=e.clientY,t.activeTab===h?(t.top_x=(0,s.css)(t.cropHandler,"left"),t.top_y=(0,s.css)(t.cropHandler,"top"),t.width=t.cropHandler.offsetWidth,t.height=t.cropHandler.offsetHeight):(t.width=t.image.offsetWidth,t.height=t.image.offsetHeight),t.j.e.on(this.j.ow,"mousemove",this.onGlobalMouseMove).one(this.j.ow,"mouseup",this.onGlobalMouseUp);},t.prototype.onGlobalMouseUp=function(e){this.clicked&&(this.clicked=!1,e.stopImmediatePropagation(),this.j.e.off(this.j.ow,"mousemove",this.onGlobalMouseMove));},t.prototype.onGlobalMouseMove=function(e){var t=this;if(t.clicked){var o=(0,s.refs)(this.editor),r=o.widthInput,n=o.heightInput;t.diff_x=e.clientX-t.start_x,t.diff_y=e.clientY-t.start_y,t.activeTab===f&&t.resizeUseRatio||t.activeTab===h&&t.cropUseRatio?t.diff_x?(t.new_w=t.width+t.diff_x,t.new_h=Math.round(t.new_w/t.ratio)):(t.new_h=t.height+t.diff_y,t.new_w=Math.round(t.new_h*t.ratio)):(t.new_w=t.width+t.diff_x,t.new_h=t.height+t.diff_y),t.activeTab===f?(t.new_w>t.o.resizeMinWidth&&((0,s.css)(t.image,"width",t.new_w+"px"),r.value=t.new_w.toString()),t.new_h>t.o.resizeMinHeight&&((0,s.css)(t.image,"height",t.new_h+"px"),n.value=t.new_h.toString()),this.j.e.fire(t.resizeHandler,"updatesize")):(t.target!==t.cropHandler?(t.top_x+t.new_w>t.cropImage.offsetWidth&&(t.new_w=t.cropImage.offsetWidth-t.top_x),t.top_y+t.new_h>t.cropImage.offsetHeight&&(t.new_h=t.cropImage.offsetHeight-t.top_y),(0,s.css)(t.cropHandler,{width:t.new_w,height:t.new_h})):(t.top_x+t.diff_x+t.cropHandler.offsetWidth>t.cropImage.offsetWidth&&(t.diff_x=t.cropImage.offsetWidth-t.top_x-t.cropHandler.offsetWidth),(0,s.css)(t.cropHandler,"left",t.top_x+t.diff_x),t.top_y+t.diff_y+t.cropHandler.offsetHeight>t.cropImage.offsetHeight&&(t.diff_y=t.cropImage.offsetHeight-t.top_y-t.cropHandler.offsetHeight),(0,s.css)(t.cropHandler,"top",t.top_y+t.diff_y)),this.j.e.fire(t.cropHandler,"updatesize"));}},Object.defineProperty(t.prototype,"o",{get:function(){return this.options;},enumerable:!1,configurable:!0}),t.prototype.hide=function(){this.dialog.close();},t.prototype.open=function(e,t){var o=this;return this.j.async.promise(function(r){var n=new Date().getTime();o.image=o.j.c.element("img"),(0,s.$$)("img,.jodit-icon_loader",o.resize_box).forEach(l.Dom.safeRemove),(0,s.$$)("img,.jodit-icon_loader",o.crop_box).forEach(l.Dom.safeRemove),(0,s.css)(o.cropHandler,"background","transparent"),o.onSave=t,o.resize_box.appendChild(o.j.c.element("i",{class:"jodit-icon_loader"})),o.crop_box.appendChild(o.j.c.element("i",{class:"jodit-icon_loader"})),/\?/.test(e)?e+="&_tst="+n:e+="?_tst="+n,o.image.setAttribute("src",e),o.dialog.open();var i=(0,s.refs)(o.editor),a=i.widthInput,c=i.heightInput,u=function(){o.isDestructed||(o.image.removeEventListener("load",u),o.naturalWidth=o.image.naturalWidth,o.naturalHeight=o.image.naturalHeight,a.value=o.naturalWidth.toString(),c.value=o.naturalHeight.toString(),o.ratio=o.naturalWidth/o.naturalHeight,o.resize_box.appendChild(o.image),o.cropImage=o.image.cloneNode(!0),o.crop_box.appendChild(o.cropImage),l.Dom.safeRemove.apply(null,(0,s.$$)(".jodit-icon_loader",o.editor)),o.activeTab===h&&o.showCrop(),o.j.e.fire(o.resizeHandler,"updatesize"),o.j.e.fire(o.cropHandler,"updatesize"),o.dialog.setPosition(),o.j.e.fire("afterImageEditor"),r(o.dialog));};o.image.addEventListener("load",u),o.image.complete&&u();});},t.prototype.destruct=function(){this.isDestructed||(this.dialog&&!this.dialog.isInDestruct&&this.dialog.destruct(),l.Dom.safeRemove(this.editor),this.j.e&&this.j.e.off(this.j.ow,"mousemove",this.onGlobalMouseMove).off(this.j.ow,"mouseup",this.onGlobalMouseUp).off(this.ow,".".concat(p)).off(".".concat(p)),e.prototype.destruct.call(this));},t.calcValueByPercent=function(e,t){var o,r=t.toString(),n=parseFloat(e.toString());return(o=/^[-+]?[0-9]+(px)?$/.exec(r))?parseInt(r,10):(o=/^([-+]?[0-9.]+)%$/.exec(r))?Math.round(n*(parseFloat(o[1])/100)):n||0;},r.__decorate([d.autobind],t.prototype,"onTitleModeClick",null),r.__decorate([(0,d.debounce)(),d.autobind],t.prototype,"onChangeSizeInput",null),r.__decorate([d.autobind],t.prototype,"onResizeHandleMouseDown",null),r.__decorate([d.autobind],t.prototype,"onGlobalMouseUp",null),r.__decorate([(0,d.throttle)(10)],t.prototype,"onGlobalMouseMove",null),r.__decorate([d.autobind],t.prototype,"hide",null),r.__decorate([d.autobind],t.prototype,"open",null),o=r.__decorate([d.component],t);}(i.ViewComponent);t.ImageEditor=m,t.openImageEditor=function(e,t,o,r,n,i){var a=this;return this.getInstance("ImageEditor",this.o).open(e,function(e,l,c,u){return(0,s.call)("resize"===l.action?a.dataProvider.resize:a.dataProvider.crop,o,r,t,e,l.box).then(function(e){e&&(c(),n&&n());}).catch(function(e){u(e),i&&i(e);});});};},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.form=void 0;var r=o(335),n="jodit-image-editor",i=r.Icon.get.bind(r.Icon),a=function(e,t){return void 0===t&&(t="jodti-image-editor_active"),e?t:"";};t.form=function(e,t){var o=e.i18n.bind(e),r=function(e,t,r){return void 0===r&&(r=!0),'<div class="jodit-form__group">\n\t\t\t<label>'.concat(o(e),"</label>\n\n\t\t\t<label class='jodit-switcher'>\n\t\t\t\t<input ").concat(a(r,"checked"),' data-ref="').concat(t,'" type="checkbox"/>\n\t\t\t\t<span class="jodit-switcher__slider"></span>\n\t\t\t</label>\n\t</div>');};return e.create.fromHTML('<form class="'.concat(n,' jodit-properties">\n\t\t<div class="jodit-grid jodit-grid_xs-column">\n\t\t\t<div class="jodit_col-lg-3-4 jodit_col-sm-5-5">\n\t\t\t').concat(t.resize?'<div class="'.concat(n,"__area ").concat(n,"__area_resize ").concat(n,'_active">\n\t\t\t\t\t\t\t<div data-ref="resizeBox" class="').concat(n,'__box"></div>\n\t\t\t\t\t\t\t<div class="').concat(n,'__resizer">\n\t\t\t\t\t\t\t\t<i class="jodit_bottomright"></i>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</div>'):"","\n\t\t\t").concat(t.crop?'<div class="'.concat(n,"__area ").concat(n,"__area_crop ").concat(a(!t.resize),'">\n\t\t\t\t\t\t\t<div data-ref="cropBox" class="').concat(n,'__box">\n\t\t\t\t\t\t\t\t<div class="').concat(n,'__croper">\n\t\t\t\t\t\t\t\t\t<i class="jodit_bottomright"></i>\n\t\t\t\t\t\t\t\t\t<i class="').concat(n,'__sizes"></i>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</div>'):"",'\n\t\t\t</div>\n\t\t\t<div class="jodit_col-lg-1-4 jodit_col-sm-5-5">\n\t\t\t').concat(t.resize?'<div data-area="resize" class="'.concat(n,"__slider ").concat(n,'_active">\n\t\t\t\t\t\t\t<div class="').concat(n,'__slider-title">\n\t\t\t\t\t\t\t\t').concat(i("resize"),"\n\t\t\t\t\t\t\t\t").concat(o("Resize"),'\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<div class="').concat(n,'__slider-content">\n\t\t\t\t\t\t\t\t<div class="jodit-form__group">\n\t\t\t\t\t\t\t\t\t<label>\n\t\t\t\t\t\t\t\t\t\t').concat(o("Width"),'\n\t\t\t\t\t\t\t\t\t</label>\n\t\t\t\t\t\t\t\t\t<input type="number" data-ref="widthInput" class="jodit-input"/>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t<div class="jodit-form__group">\n\t\t\t\t\t\t\t\t\t<label>\n\t\t\t\t\t\t\t\t\t\t').concat(o("Height"),'\n\t\t\t\t\t\t\t\t\t</label>\n\t\t\t\t\t\t\t\t\t<input type="number" data-ref="heightInput" class="jodit-input"/>\n\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t').concat(r("Keep Aspect Ratio","keepAspectRatioResize"),"\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</div>"):"","\n\t\t\t").concat(t.crop?'<div data-area="crop" class="'.concat(n,"__slider ").concat(a(!t.resize),'\'">\n\t\t\t\t\t\t\t<div class="').concat(n,'__slider-title">\n\t\t\t\t\t\t\t\t').concat(i("crop"),"\n\t\t\t\t\t\t\t\t").concat(o("Crop"),'\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<div class="').concat(n,'__slider-content">\n\t\t\t\t\t\t\t\t').concat(r("Keep Aspect Ratio","keepAspectRatioCrop"),"\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</div>"):"","\n\t\t\t</div>\n\t\t</div>\n\t</form>"));};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),o(146).Config.prototype.imageeditor={min_width:20,min_height:20,closeAfterSave:!1,width:"85%",height:"85%",crop:!0,resize:!0,resizeUseRatio:!0,resizeMinWidth:20,resizeMinHeight:20,cropUseRatio:!0,cropDefaultWidth:"70%",cropDefaultHeight:"70%"};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.deleteFile=void 0,t.deleteFile=function(e,t,o){return e.dataProvider.fileRemove(e.state.currentPath,t,o).then(function(o){e.status(o||e.i18n('File "%s" was deleted',t),!0);}).catch(e.status);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.selfListeners=void 0;var r=o(145),n=o(322),i=o(220),a=o(185),s=o(374),l=o(382),c=o(378),u=o(379),d=o(386);t.selfListeners=function(){var e=this,t=this.state,o=this.dataProvider,p=this;p.e.on("view.filebrowser",function(e){e!==t.view&&(t.view=e);}).on("sort.filebrowser",function(e){e!==t.sortBy&&(t.sortBy=e,(0,u.loadItems)(p));}).on("filter.filebrowser",function(e){e!==t.filterWord&&(t.filterWord=e,(0,u.loadItems)(p));}).on("openFolder.filebrowser",function(e){var t;t=".."===e.name?e.path.split("/").filter(function(e){return e.length;}).slice(0,-1).join("/"):(0,a.normalizePath)(e.path,e.name),p.state.currentPath=t,p.state.currentSource="."===e.name?s.DEFAULT_SOURCE_NAME:e.source;}).on("removeFolder.filebrowser",function(e){(0,n.Confirm)(p.i18n("Are you sure?"),p.i18n("Delete"),function(t){t&&o.folderRemove(e.path,e.name,e.source).then(function(e){return p.status(e,!0),(0,c.loadTree)(p);}).catch(p.status);}).bindDestruct(p);}).on("renameFolder.filebrowser",function(e){(0,n.Prompt)(p.i18n("Enter new name"),p.i18n("Rename"),function(t){if(!(0,i.isValidName)(t))return p.status(p.i18n("Enter new name")),!1;o.folderRename(e.path,e.name,t,e.source).then(function(e){return p.state.activeElements=[],p.status(e,!0),(0,c.loadTree)(p);}).catch(p.status);},p.i18n("type name"),e.name).bindDestruct(p);}).on("addFolder.filebrowser",function(e){(0,n.Prompt)(p.i18n("Enter Directory name"),p.i18n("Create directory"),function(t){o.createFolder(t,e.path,e.source).then(function(){return(0,c.loadTree)(p);}).catch(p.status);},p.i18n("type name")).bindDestruct(p);}).on("fileRemove.filebrowser",function(){p.state.activeElements.length&&(0,n.Confirm)(p.i18n("Are you sure?"),"",function(e){if(e){var t=[];p.state.activeElements.forEach(function(e){t.push((0,d.deleteFile)(p,e.file||e.name||"",e.sourceName));}),p.state.activeElements=[],Promise.all(t).then(function(){return(0,c.loadTree)(p).catch(p.status);},p.status);}}).bindDestruct(p);}).on("edit.filebrowser",function(){if(1===p.state.activeElements.length){var t=r.__read(e.state.activeElements,1)[0];l.openImageEditor.call(p,t.fileURL,t.file||"",t.path,t.sourceName);}}).on("fileRename.filebrowser",function(t,r,a){1===p.state.activeElements.length&&(0,n.Prompt)(p.i18n("Enter new name"),p.i18n("Rename"),function(e){if(!(0,i.isValidName)(e))return p.status(p.i18n("Enter new name")),!1;o.fileRename(r,t,e,a).then(function(e){p.state.activeElements=[],p.status(e,!0),(0,u.loadItems)(p);}).catch(p.status);},p.i18n("type name"),t).bindDestruct(e);}).on("update.filebrowser",function(){(0,c.loadTree)(e).then(e.status,e.status);});};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(389),t),r.__exportStar(o(391),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.FileBrowserFiles=void 0;var r=o(145);o(390);var n=function(e){function t(){return null!==e&&e.apply(this,arguments)||this;}return r.__extends(t,e),t.prototype.className=function(){return"FilebrowserFiles";},t;}(o(335).UIGroup);t.FileBrowserFiles=n;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.FileBrowserTree=void 0;var r=o(145);o(392);var n=function(e){function t(){return null!==e&&e.apply(this,arguments)||this;}return r.__extends(t,e),t.prototype.className=function(){return"FilebrowserTree";},t;}(o(335).UIGroup);t.FileBrowserTree=n;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.History=void 0;var r=o(145),n=o(146),i=o(235),a=o(394),s=o(395),l=o(396),c=o(231);n.Config.prototype.history={enable:!0,maxHistoryLength:1/0,timeout:1e3},n.Config.prototype.observer=n.Config.prototype.history;var u=function(e){function t(t,o,r){void 0===o&&(o=new s.Stack(t.o.history.maxHistoryLength)),void 0===r&&(r=new a.Snapshot(t));var n=e.call(this,t)||this;return n.updateTick=0,n.stack=o,n.snapshot=r,t.o.history.enable&&t.e.on("afterAddPlace.history",function(){n.isInDestruct||(n.startValue=n.snapshot.make(),t.events.on("internalChange internalUpdate",function(){n.startValue=n.snapshot.make();}).on(t.editor,["changeSelection","selectionstart","selectionchange","mousedown","mouseup","keydown","keyup"].map(function(e){return e+".history";}).join(" "),function(){n.startValue.html===n.j.getNativeEditorValue()&&(n.startValue=n.snapshot.make());}).on(n,"change.history",n.onChange));}),n;}return r.__extends(t,e),t.prototype.className=function(){return"History";},Object.defineProperty(t.prototype,"startValue",{get:function(){return this.__startValue;},set:function(e){this.__startValue=e;},enumerable:!1,configurable:!0}),t.prototype.upTick=function(){this.updateTick+=1;},t.prototype.onChange=function(){this.processChanges();},t.prototype.processChanges=function(){this.snapshot.isBlocked||this.updateStack();},t.prototype.updateStack=function(e){void 0===e&&(e=!1);var t=this.snapshot.make();if(!a.Snapshot.equal(t,this.startValue)){var o=new l.Command(this.startValue,t,this,this.updateTick);if(e){var r=this.stack.current();r&&this.updateTick===r.tick&&this.stack.replace(o);}else this.stack.push(o);this.startValue=t,this.fireChangeStack();}},t.prototype.redo=function(){this.stack.redo()&&(this.startValue=this.snapshot.make(),this.fireChangeStack());},t.prototype.canRedo=function(){return this.stack.canRedo();},t.prototype.undo=function(){this.stack.undo()&&(this.startValue=this.snapshot.make(),this.fireChangeStack());},t.prototype.canUndo=function(){return this.stack.canUndo();},t.prototype.clear=function(){this.startValue=this.snapshot.make(),this.stack.clear(),this.fireChangeStack();},Object.defineProperty(t.prototype,"length",{get:function(){return this.stack.length;},enumerable:!1,configurable:!0}),t.prototype.fireChangeStack=function(){var e;this.j&&!this.j.isInDestruct&&(null===(e=this.j.events)||void 0===e||e.fire("changeStack"));},t.prototype.destruct=function(){this.isInDestruct||(this.j.events&&this.j.e.off(".history"),this.snapshot.destruct(),e.prototype.destruct.call(this));},r.__decorate([(0,c.debounce)()],t.prototype,"onChange",null),t;}(i.ViewComponent);t.History=u;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Snapshot=void 0;var r=o(145),n=o(235),i=o(229),a=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.isBlocked=!1,t;}return r.__extends(t,e),t.prototype.className=function(){return"Snapshot";},t.equal=function(e,t){return e.html===t.html&&JSON.stringify(e.range)===JSON.stringify(t.range);},t.countNodesBeforeInParent=function(e){if(!e.parentNode)return 0;var t,o=e.parentNode.childNodes,r=0,n=null;for(t=0;o.length>t;t+=1){if(!n||i.Dom.isText(o[t])&&""===o[t].textContent||i.Dom.isText(n)&&i.Dom.isText(o[t])||(r+=1),o[t]===e)return r;n=o[t];}return 0;},t.strokeOffset=function(e,t){for(;i.Dom.isText(e);)i.Dom.isText(e=e.previousSibling)&&null!=e.textContent&&(t+=e.textContent.length);return t;},t.prototype.calcHierarchyLadder=function(e){var o=[];if(!e||!e.parentNode||!i.Dom.isOrContains(this.j.editor,e))return[];for(;e&&e!==this.j.editor;)e&&o.push(t.countNodesBeforeInParent(e)),e=e.parentNode;return o.reverse();},t.prototype.getElementByLadder=function(e){var t,o=this.j.editor;for(t=0;o&&e.length>t;t+=1)o=o.childNodes[e[t]];return o;},t.prototype.make=function(){var e={html:"",range:{startContainer:[],startOffset:0,endContainer:[],endOffset:0}};e.html=this.j.getNativeEditorValue();var o=this.j.s.sel;if(o&&o.rangeCount){var r=o.getRangeAt(0),n=this.calcHierarchyLadder(r.startContainer),i=this.calcHierarchyLadder(r.endContainer),a=t.strokeOffset(r.startContainer,r.startOffset),s=t.strokeOffset(r.endContainer,r.endOffset);n.length||r.startContainer===this.j.editor||(a=0),i.length||r.endContainer===this.j.editor||(s=0),e.range={startContainer:n,startOffset:a,endContainer:i,endOffset:s};}return e;},t.prototype.restore=function(e){this.isBlocked=!0;var t=this.storeScrollState();this.j.getNativeEditorValue()!==e.html&&(this.j.value=e.html),this.restoreOnlySelection(e),this.restoreScrollState(t),this.isBlocked=!1;},t.prototype.storeScrollState=function(){return[this.j.ow.scrollY,this.j.editor.scrollTop];},t.prototype.restoreScrollState=function(e){var t=this.j,o=t.ow;o.scrollTo(o.scrollX,e[0]),t.editor.scrollTop=e[1];},t.prototype.restoreOnlySelection=function(e){try{if(e.range){var t=this.j.ed.createRange();t.setStart(this.getElementByLadder(e.range.startContainer),e.range.startOffset),t.setEnd(this.getElementByLadder(e.range.endContainer),e.range.endOffset),this.j.s.selectRange(t);}}catch(e){this.j.editor.lastChild&&this.j.s.setCursorAfter(this.j.editor.lastChild);}},t.prototype.destruct=function(){this.isBlocked=!1,e.prototype.destruct.call(this);},t;}(n.ViewComponent);t.Snapshot=a;},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Stack=void 0;var o=function(){function e(e){this.size=e,this.commands=[],this.stackPosition=-1;}return Object.defineProperty(e.prototype,"length",{get:function(){return this.commands.length;},enumerable:!1,configurable:!0}),e.prototype.clearRedo=function(){this.commands.length=this.stackPosition+1;},e.prototype.clear=function(){this.commands.length=0,this.stackPosition=-1;},e.prototype.push=function(e){this.clearRedo(),this.commands.push(e),this.stackPosition+=1,this.commands.length>this.size&&(this.commands.shift(),this.stackPosition-=1);},e.prototype.replace=function(e){this.commands[this.stackPosition]=e;},e.prototype.current=function(){return this.commands[this.stackPosition];},e.prototype.undo=function(){return!!this.canUndo()&&(this.commands[this.stackPosition]&&this.commands[this.stackPosition].undo(),this.stackPosition-=1,!0);},e.prototype.redo=function(){return!!this.canRedo()&&(this.stackPosition+=1,this.commands[this.stackPosition]&&this.commands[this.stackPosition].redo(),!0);},e.prototype.canUndo=function(){return this.stackPosition>=0;},e.prototype.canRedo=function(){return this.commands.length-1>this.stackPosition;},e;}();t.Stack=o;},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Command=void 0;var o=function(){function e(e,t,o,r){this.oldValue=e,this.newValue=t,this.history=o,this.tick=r;}return e.prototype.undo=function(){this.history.snapshot.restore(this.oldValue);},e.prototype.redo=function(){this.history.snapshot.restore(this.newValue);},e;}();t.Command=o;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.StatusBar=void 0;var r=o(145);o(398);var n=o(235),i=o(229),a=o(266),s=o(231),l=function(e){function t(t,o){var r=e.call(this,t)||this;return r.target=o,r.mods={},r.container=t.c.div("jodit-status-bar"),o.appendChild(r.container),r.hide(),r;}return r.__extends(t,e),t.prototype.className=function(){return"StatusBar";},t.prototype.hide=function(){this.container.classList.add("jodit_hidden");},t.prototype.show=function(){this.container.classList.remove("jodit_hidden");},Object.defineProperty(t.prototype,"isShown",{get:function(){return!this.container.classList.contains("jodit_hidden");},enumerable:!1,configurable:!0}),t.prototype.setMod=function(e,t){return a.Mods.setMod.call(this,e,t),this;},t.prototype.getMod=function(e){return a.Mods.getMod.call(this,e);},t.prototype.getHeight=function(){var e,t;return null!==(t=null===(e=this.container)||void 0===e?void 0:e.offsetHeight)&&void 0!==t?t:0;},t.prototype.findEmpty=function(e){void 0===e&&(e=!1);for(var t=a.Elms.getElms.call(this,e?"item-right":"item"),o=0;t.length>o;o+=1)if(!t[o].innerHTML.trim().length)return t[o];},t.prototype.append=function(e,t){var o;void 0===t&&(t=!1);var r=this.findEmpty(t)||this.j.c.div(this.getFullElName("item"));t&&r.classList.add(this.getFullElName("item-right")),r.appendChild(e),null===(o=this.container)||void 0===o||o.appendChild(r),this.j.o.statusbar&&this.show(),this.j.e.fire("resize");},t.prototype.destruct=function(){this.isInDestruct||(this.setStatus(n.STATUSES.beforeDestruct),i.Dom.safeRemove(this.container),e.prototype.destruct.call(this));},r.__decorate([s.component],t);}(n.ViewComponent);t.StatusBar=l;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Table=void 0;var r=o(145),n=o(147),i=o(229),a=o(185),s=o(235),l=o(237),c=o(231),u=new WeakMap(),d=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.selected=new Set(),t;}return r.__extends(t,e),t.prototype.className=function(){return"Table";},t.prototype.recalculateStyles=function(){var e=(0,l.getContainer)(this.j,t,"style",!0),o=[];this.selected.forEach(function(e){var t=(0,a.cssPath)(e);t&&o.push(t);}),e.innerHTML=o.length?o.join(",")+"{".concat(this.jodit.options.table.selectionCellStyle,"}"):"";},t.prototype.addSelection=function(e){this.selected.add(e),this.recalculateStyles();var o=i.Dom.closest(e,"table",this.j.editor);if(o){var r=t.selectedByTable.get(o)||new Set();r.add(e),t.selectedByTable.set(o,r);}},t.prototype.removeSelection=function(e){this.selected.delete(e),this.recalculateStyles();var o=i.Dom.closest(e,"table",this.j.editor);if(o){var r=t.selectedByTable.get(o);r&&(r.delete(e),r.size||t.selectedByTable.delete(o));}},t.prototype.getAllSelectedCells=function(){return(0,a.toArray)(this.selected);},t.getSelectedCellsByTable=function(e){var o=t.selectedByTable.get(e);return o?(0,a.toArray)(o):[];},t.prototype.destruct=function(){return this.selected.clear(),e.prototype.destruct.call(this);},t.getRowsCount=function(e){return e.rows.length;},t.getColumnsCount=function(e){return t.formalMatrix(e).reduce(function(e,t){return Math.max(e,t.length);},0);},t.formalMatrix=function(e,t){for(var o=[[]],r=(0,a.toArray)(e.rows),n=function(e,r){void 0===o[r]&&(o[r]=[]);for(var n,i,a=e.colSpan,s=e.rowSpan,l=0;o[r][l];)l+=1;for(i=0;s>i;i+=1)for(n=0;a>n;n+=1){if(void 0===o[r+i]&&(o[r+i]=[]),t&&!1===t(e,r+i,l+n,a,s))return!1;o[r+i][l+n]=e;}},i=0;r.length>i;i+=1)for(var s=(0,a.toArray)(r[i].cells),l=0;s.length>l;l+=1)if(!1===n(s[l],i))return o;return o;},t.formalCoordinate=function(e,o,r){void 0===r&&(r=!1);var n=0,i=0,a=1,s=1;return t.formalMatrix(e,function(e,t,l,c,u){if(o===e)return n=t,i=l,a=c||1,s=u||1,r&&(i+=(c||1)-1,n+=(u||1)-1),!1;}),[n,i,a,s];},t.appendRow=function(e,o,r,n){var i,s;if(o)s=o.cloneNode(!0),(0,a.$$)("td,th",o).forEach(function(e){var t=(0,a.attr)(e,"rowspan");if(t&&parseInt(t,10)>1){var o=parseInt(t,10)-1;(0,a.attr)(e,"rowspan",o>1?o:null);}}),(0,a.$$)("td,th",s).forEach(function(e){e.innerHTML="";});else{var l=t.getColumnsCount(e);s=n.element("tr");for(var c=0;l>c;c+=1)s.appendChild(n.element("td"));}r&&o&&o.nextSibling?o.parentNode&&o.parentNode.insertBefore(s,o.nextSibling):!r&&o?o.parentNode&&o.parentNode.insertBefore(s,o):((null===(i=e.getElementsByTagName("tbody"))||void 0===i?void 0:i[0])||e).appendChild(s);},t.removeRow=function(e,o){var r,n=t.formalMatrix(e),s=e.rows[o];n[o].forEach(function(t,l){if(r=!1,0>o-1||n[o-1][l]!==t){if(n[o+1]&&n[o+1][l]===t){if(t.parentNode===s&&t.parentNode.nextSibling){r=!0;for(var c=l+1;n[o+1][c]===t;)c+=1;var u=i.Dom.next(t.parentNode,function(e){return i.Dom.isTag(e,"tr");},e);u&&(n[o+1][c]?u.insertBefore(t,n[o+1][c]):u.appendChild(t));}}else i.Dom.safeRemove(t);}else r=!0;if(r&&(t.parentNode===s||t!==n[o][l-1])){var d=t.rowSpan;(0,a.attr)(t,"rowspan",d-1>1?d-1:null);}}),i.Dom.safeRemove(s);},t.appendColumn=function(e,o,r,n){var s,l=t.formalMatrix(e);for((void 0===o||0>o)&&(o=t.getColumnsCount(e)-1),s=0;l.length>s;s+=1){var c=n.element("td"),u=l[s][o],d=!1;r?(l[s]&&u&&o+1>=l[s].length||u!==l[s][o+1])&&(u.nextSibling?i.Dom.before(u.nextSibling,c):u.parentNode&&u.parentNode.appendChild(c),d=!0):(0>o-1||l[s][o]!==l[s][o-1]&&l[s][o].parentNode)&&(i.Dom.before(l[s][o],c),d=!0),d||(0,a.attr)(l[s][o],"colspan",parseInt((0,a.attr)(l[s][o],"colspan")||"1",10)+1);}},t.removeColumn=function(e,o){var r,n=t.formalMatrix(e);n.forEach(function(e,t){var s=e[o];if(r=!1,0>o-1||n[t][o-1]!==s?e.length>o+1&&n[t][o+1]===s?r=!0:i.Dom.safeRemove(s):r=!0,r&&(0>t-1||s!==n[t-1][o])){var l=s.colSpan;(0,a.attr)(s,"colspan",l-1>1?(l-1).toString():null);}});},t.getSelectedBound=function(e,o){var r,n,i,a=[[1/0,1/0],[0,0]],s=t.formalMatrix(e);for(r=0;s.length>r;r+=1)for(n=0;s[r]&&s[r].length>n;n+=1)o.includes(s[r][n])&&(a[0][0]=Math.min(r,a[0][0]),a[0][1]=Math.min(n,a[0][1]),a[1][0]=Math.max(r,a[1][0]),a[1][1]=Math.max(n,a[1][1]));for(r=a[0][0];a[1][0]>=r;r+=1)for(i=1,n=a[0][1];a[1][1]>=n;n+=1){for(;s[r]&&s[r][n-i]&&s[r][n]===s[r][n-i];)a[0][1]=Math.min(n-i,a[0][1]),a[1][1]=Math.max(n-i,a[1][1]),i+=1;for(i=1;s[r]&&s[r][n+i]&&s[r][n]===s[r][n+i];)a[0][1]=Math.min(n+i,a[0][1]),a[1][1]=Math.max(n+i,a[1][1]),i+=1;for(i=1;s[r-i]&&s[r][n]===s[r-i][n];)a[0][0]=Math.min(r-i,a[0][0]),a[1][0]=Math.max(r-i,a[1][0]),i+=1;for(i=1;s[r+i]&&s[r][n]===s[r+i][n];)a[0][0]=Math.min(r+i,a[0][0]),a[1][0]=Math.max(r+i,a[1][0]),i+=1;}return a;},t.normalizeTable=function(e){var o,r,n,i,s=[],l=t.formalMatrix(e);for(r=0;l[0].length>r;r+=1){for(n=1e6,i=!1,o=0;l.length>o;o+=1)if(void 0!==l[o][r]){if(2>l[o][r].colSpan){i=!0;break;}n=Math.min(n,l[o][r].colSpan);}if(!i)for(o=0;l.length>o;o+=1)void 0!==l[o][r]&&t.mark(l[o][r],"colspan",l[o][r].colSpan-n+1,s);}for(o=0;l.length>o;o+=1){for(n=1e6,i=!1,r=0;l[o].length>r;r+=1)if(void 0!==l[o][r]){if(2>l[o][r].rowSpan){i=!0;break;}n=Math.min(n,l[o][r].rowSpan);}if(!i)for(r=0;l[o].length>r;r+=1)void 0!==l[o][r]&&t.mark(l[o][r],"rowspan",l[o][r].rowSpan-n+1,s);}for(o=0;l.length>o;o+=1)for(r=0;l[o].length>r;r+=1)void 0!==l[o][r]&&(l[o][r].hasAttribute("rowspan")&&1===l[o][r].rowSpan&&(0,a.attr)(l[o][r],"rowspan",null),l[o][r].hasAttribute("colspan")&&1===l[o][r].colSpan&&(0,a.attr)(l[o][r],"colspan",null),l[o][r].hasAttribute("class")&&!(0,a.attr)(l[o][r],"class")&&(0,a.attr)(l[o][r],"class",null));t.unmark(s);},t.mergeSelected=function(e,o){var r,s=[],l=t.getSelectedBound(e,t.getSelectedCellsByTable(e)),c=0,u=null,d=0,f=0,h=0,m=new Set(),v=[];l&&(l[0][0]-l[1][0]||l[0][1]-l[1][1])&&(t.formalMatrix(e,function(e,n,i,g,y){if(!(l[0][0]>n||n>l[1][0]||l[0][1]>i||i>l[1][1])){if(m.has(r=e))return;m.add(r),n===l[0][0]&&r.style.width&&(c+=r.offsetWidth),""!==(0,a.trim)(e.innerHTML.replace(/<br(\/)?>/g,""))&&s.push(e.innerHTML),g>1&&(f+=g-1),y>1&&(h+=y-1),u?(t.mark(r,"remove",1,v),p(o).removeSelection(r)):(u=e,d=i);}}),f=l[1][1]-l[0][1]+1,h=l[1][0]-l[0][0]+1,u&&(f>1&&t.mark(u,"colspan",f,v),h>1&&t.mark(u,"rowspan",h,v),c&&(t.mark(u,"width",(c/e.offsetWidth*100).toFixed(n.ACCURACY)+"%",v),d&&t.setColumnWidthByDelta(e,d,0,!0,v)),u.innerHTML=s.join("<br/>"),p(o).addSelection(u),m.delete(u),t.unmark(v),t.normalizeTable(e),(0,a.toArray)(e.rows).forEach(function(e,t){e.cells.length||i.Dom.safeRemove(e);})));},t.splitHorizontal=function(e,o){var r,n,a,s,l,c=[];t.getSelectedCellsByTable(e).forEach(function(u){(n=o.createInside.element("td")).appendChild(o.createInside.element("br")),a=o.createInside.element("tr"),r=t.formalCoordinate(e,u),2>u.rowSpan?(t.formalMatrix(e,function(e,o,n){r[0]===o&&r[1]!==n&&e!==u&&t.mark(e,"rowspan",e.rowSpan+1,c);}),i.Dom.after(i.Dom.closest(u,"tr",e),a),a.appendChild(n)):(t.mark(u,"rowspan",u.rowSpan-1,c),t.formalMatrix(e,function(t,o,n){o>r[0]&&r[0]+u.rowSpan>o&&r[1]>n&&t.parentNode.rowIndex===o&&(l=t),o>r[0]&&t===u&&(s=e.rows[o]);}),l?i.Dom.after(l,n):s.insertBefore(n,s.firstChild)),u.colSpan>1&&t.mark(n,"colspan",u.colSpan,c),t.unmark(c),p(o).removeSelection(u);}),this.normalizeTable(e);},t.splitVertical=function(e,o){var r,a,s,l=[];t.getSelectedCellsByTable(e).forEach(function(c){r=t.formalCoordinate(e,c),2>c.colSpan?t.formalMatrix(e,function(e,o,n){r[1]===n&&r[0]!==o&&e!==c&&t.mark(e,"colspan",e.colSpan+1,l);}):t.mark(c,"colspan",c.colSpan-1,l),(a=o.createInside.element("td")).appendChild(o.createInside.element("br")),c.rowSpan>1&&t.mark(a,"rowspan",c.rowSpan,l);var u=c.offsetWidth;i.Dom.after(c,a),t.mark(c,"width",(100*(s=u/e.offsetWidth/2)).toFixed(n.ACCURACY)+"%",l),t.mark(a,"width",(100*s).toFixed(n.ACCURACY)+"%",l),t.unmark(l),p(o).removeSelection(c);}),t.normalizeTable(e);},t.setColumnWidthByDelta=function(e,o,r,i,a){for(var s=t.formalMatrix(e),l=0,c=0;s.length>c;c+=1)if(1>=(u=s[c][o]).colSpan||1>=s.length){t.mark(u,"width",((u.offsetWidth+r)/e.offsetWidth*100).toFixed(n.ACCURACY)+"%",a),l=c;break;}for(c=l+1;s.length>c;c+=1){var u;t.mark(u=s[c][o],"width",null,a);}i||t.unmark(a);},t.mark=function(e,t,o,r){var n;r.push(e);var i=null!==(n=u.get(e))&&void 0!==n?n:{};i[t]=void 0===o?1:o,u.set(e,i);},t.unmark=function(e){e.forEach(function(e){var t=u.get(e);t&&(Object.keys(t).forEach(function(o){var r=t[o];switch(o){case"remove":i.Dom.safeRemove(e);break;case"rowspan":(0,a.attr)(e,"rowspan",(0,a.isNumber)(r)&&r>1?r:null);break;case"colspan":(0,a.attr)(e,"colspan",(0,a.isNumber)(r)&&r>1?r:null);break;case"width":null==r?(e.style.removeProperty("width"),(0,a.attr)(e,"style")||(0,a.attr)(e,"style",null)):e.style.width=r.toString();}delete t[o];}),u.delete(e));});},t.selectedByTable=new WeakMap(),r.__decorate([(0,c.debounce)()],t.prototype,"recalculateStyles",null),t;}(s.ViewComponent);t.Table=d;var p=function(e){return e.getInstance("Table",e.o);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(358),t),r.__exportStar(o(360),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Uploader=void 0;var r=o(145);o(402);var n=o(146),i=o(147),a=o(185),s=o(235),l=o(403);o(409);var c=function(e){function t(t,o){var r=e.call(this,t)||this;return r.path="",r.source="default",r.options=(0,a.ConfigProto)(o||{},(0,a.ConfigProto)(n.Config.defaultOptions.uploader,(0,a.isJoditObject)(t)?t.o.uploader:{})),r;}return r.__extends(t,e),Object.defineProperty(t.prototype,"j",{get:function(){return this.jodit;},enumerable:!1,configurable:!0}),t.prototype.className=function(){return"Uploader";},Object.defineProperty(t.prototype,"o",{get:function(){return this.options;},enumerable:!1,configurable:!0}),t.prototype.setPath=function(e){return this.path=e,this;},t.prototype.setSource=function(e){return this.source=e,this;},t.prototype.bind=function(e,t,o){var r=function(){e.classList.remove("jodit_drag_hover");},n=this,a=function(e){var a,s,c,u=e.clipboardData,d=function(e){s&&(e.append("extension",c),e.append("mimetype",s.type));};if(!i.IS_IE&&(0,l.hasFiles)(u))return(0,l.sendFiles)(n,u.files,t,o).finally(r),!1;if(i.IS_IE)return(0,l.processOldBrowserDrag)(n,u,t,o,r);if((0,l.hasItems)(u)){var p=u.items;for(a=0;p.length>a;a+=1)if("file"===p[a].kind&&"image/png"===p[a].type){if(s=p[a].getAsFile()){var f=s.type.match(/\/([a-z0-9]+)/i);c=f[1]?f[1].toLowerCase():"",(0,l.sendFiles)(n,[s],t,o,d).finally(r);}e.preventDefault();break;}}};n.j&&n.j.editor!==e?n.j.e.on(e,"paste",a):n.j.e.on("beforePaste",a),this.attachEvents(e,t,o,r);},t.prototype.attachEvents=function(e,t,o,r){var n=this;n.j.e.on(e,"dragend dragover dragenter dragleave drop",function(e){e.preventDefault();}).on(e,"dragover",function(t){((0,l.hasFiles)(t.dataTransfer)||(0,l.hasItems)(t.dataTransfer))&&(e.classList.add("jodit_drag_hover"),t.preventDefault());}).on(e,"dragend dragleave",function(t){e.classList.remove("jodit_drag_hover"),(0,l.hasFiles)(t.dataTransfer)&&t.preventDefault();}).on(e,"drop",function(i){e.classList.remove("jodit_drag_hover"),(0,l.hasFiles)(i.dataTransfer)&&(i.preventDefault(),i.stopImmediatePropagation(),(0,l.sendFiles)(n,i.dataTransfer.files,t,o).finally(r));});var i=e.querySelector("input[type=file]");i&&n.j.e.on(i,"change",function(){(0,l.sendFiles)(n,i.files,t,o).then(function(){i.value="",/safari/i.test(navigator.userAgent)||(i.type="",i.type="file");}).finally(r);});},t.prototype.uploadRemoteImage=function(e,t,o){var r=this,n=r.o,i=(0,a.isFunction)(o)?o:n.defaultHandlerError;(0,l.send)(r,{action:"fileUploadRemote",url:e}).then(function(e){n.isSuccess.call(r,e)?((0,a.isFunction)(t)?t:n.defaultHandlerSuccess).call(r,n.process.call(r,e)):i.call(r,(0,a.error)(n.getMessage.call(r,e)));}).catch(function(e){return i.call(r,e);});},t.prototype.destruct=function(){this.setStatus(s.STATUSES.beforeDestruct);var t=l.ajaxInstances.get(this);t&&(t.forEach(function(e){try{e.destruct();}catch(e){}}),t.clear()),e.prototype.destruct.call(this);},t;}(s.ViewComponent);t.Uploader=c;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.hasItems=t.hasFiles=void 0;var r=o(145);r.__exportStar(o(404),t),r.__exportStar(o(405),t),r.__exportStar(o(406),t),r.__exportStar(o(407),t),r.__exportStar(o(408),t),t.hasFiles=function(e){return Boolean(e&&e.files&&e.files.length>0);},t.hasItems=function(e){return Boolean(e&&e.items&&e.items.length>0);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.processOldBrowserDrag=void 0;var r=o(147),n=o(237),i=o(185),a=o(229),s=o(403);t.processOldBrowserDrag=function(e,t,o,l,c){if(t&&(!t.types.length||t.types[0]!==r.TEXT_PLAIN)){var u=e.j.c.div("",{tabindex:-1,style:"left: -9999px; top: 0; width: 0; height: 100%;line-height: 140%; overflow: hidden; position: fixed; z-index: 2147483647; word-break: break-all;",contenteditable:!0});(0,n.getContainer)(e.j,e.constructor).appendChild(u);var d=(0,i.isJoditObject)(e.j)?e.j.s.save():null;u.focus(),e.j.async.setTimeout(function(){var t=u.firstChild;if(a.Dom.safeRemove(u),t&&t.hasAttribute("src")){var r=(0,i.attr)(t,"src")||"";d&&(0,i.isJoditObject)(e.j)&&e.j.s.restore(),(0,s.sendFiles)(e,[(0,s.dataURItoBlob)(r)],o,l).finally(c);}},e.j.defaultTimeout);}};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.dataURItoBlob=void 0,t.dataURItoBlob=function(e){for(var t=atob(e.split(",")[1]),o=e.split(",")[0].split(":")[1].split(";")[0],r=new ArrayBuffer(t.length),n=new Uint8Array(r),i=0;t.length>i;i+=1)n[i]=t.charCodeAt(i);return new Blob([n],{type:o});};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.buildData=void 0;var r=o(185);t.buildData=function(e,t){if((0,r.isFunction)(e.o.buildData))return e.o.buildData.call(e,t);var o=e.ow.FormData;if(void 0!==o){if(t instanceof o)return t;if((0,r.isString)(t))return t;var n=new o();return Object.keys(t).forEach(function(e){n.append(e,t[e]);}),n;}return t;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.send=t.ajaxInstances=void 0;var r=o(183),n=o(185),i=o(406);t.ajaxInstances=new WeakMap(),t.send=function(e,o){var a=(0,i.buildData)(e,o),s=function(o){var i=new r.Ajax(e.j,{xhr:function(){var t=new XMLHttpRequest();return void 0!==e.j.ow.FormData&&t.upload?(e.j.progressbar.show().progress(10),t.upload.addEventListener("progress",function(t){if(t.lengthComputable){var o=t.loaded/t.total;o*=100,e.j.progressbar.show().progress(o),100>o||e.j.progressbar.hide();}},!1)):e.j.progressbar.hide(),t;},method:e.o.method||"POST",data:o,url:(0,n.isFunction)(e.o.url)?e.o.url(o):e.o.url,headers:e.o.headers,queryBuild:e.o.queryBuild,contentType:e.o.contentType.call(e,o),dataType:e.o.format||"json",withCredentials:e.o.withCredentials||!1}),a=t.ajaxInstances.get(e);return a||(a=new Set(),t.ajaxInstances.set(e,a)),a.add(i),i.send().then(function(e){return e.json();}).catch(function(t){e.o.error.call(e,t);}).finally(function(){null==a||a.delete(i);});};return(0,n.isPromise)(a)?a.then(s).catch(function(t){e.o.error.call(e,t);}):s(a);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.sendFiles=void 0;var r=o(145),n=o(185),i=o(407);t.sendFiles=function(e,t,o,a,s){if(!t)return Promise.reject((0,n.error)("Need files"));var l=e.o,c=(0,n.toArray)(t);if(!c.length)return Promise.reject((0,n.error)("Need files"));var u=[];if(l.insertImageAsBase64URI){var d,p=void 0,f=function(){if((d=c[p])&&d.type){var t=d.type.match(/\/([a-z0-9]+)/i),r=t[1]?t[1].toLowerCase():"";if(l.imagesExtensions.includes(r)){var i=new FileReader();u.push(e.j.async.promise(function(t,r){i.onerror=r,i.onloadend=function(){var r={baseurl:"",files:[i.result],isImages:[!0]};((0,n.isFunction)(o)?o:l.defaultHandlerSuccess).call(e,r),t(r);},i.readAsDataURL(d);})),c[p]=null;}}};for(p=0;c.length>p;p+=1)f();}if((c=c.filter(function(e){return e;})).length){var h=new FormData();h.append(l.pathVariableName,e.path),h.append("source",e.source);var m=void 0;for(p=0;c.length>p;p+=1)if(m=c[p]){var v=/\.[\d\w]+$/.test(m.name),g=m.type.match(/\/([a-z0-9]+)/i),y=g&&g[1]?g[1].toLowerCase():"",b=c[p].name||Math.random().toString().replace(".","");if(!v&&y){var _=y;["jpeg","jpg"].includes(_)&&(_="jpeg|jpg"),new RegExp(".("+_+")$","i").test(b)||(b+="."+y);}var w=r.__read(l.processFileName.call(e,l.filesVariableName(p),c[p],b),3);h.append(w[0],w[1],w[2]);}s&&s(h),l.data&&(0,n.isPlainObject)(l.data)&&Object.keys(l.data).forEach(function(e){h.append(e,l.data[e]);}),l.prepareData.call(e,h),u.push((0,i.send)(e,h).then(function(t){return l.isSuccess.call(e,t)?(((0,n.isFunction)(o)?o:l.defaultHandlerSuccess).call(e,l.process.call(e,t)),t):(((0,n.isFunction)(a)?a:l.defaultHandlerError).call(e,(0,n.error)(l.getMessage.call(e,t))),t);}).then(function(){e.j.events&&e.j.e.fire("filesWereUploaded");}));}return Promise.all(u);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145),n=o(146),i=o(157),a=o(226);n.Config.prototype.enableDragAndDropFileToEditor=!0,n.Config.prototype.uploader={url:"",insertImageAsBase64URI:!1,imagesExtensions:["jpg","png","jpeg","gif"],headers:null,data:null,filesVariableName:function(e){return"files[".concat(e,"]");},withCredentials:!1,pathVariableName:"path",format:"json",method:"POST",prepareData:function(e){return e;},isSuccess:function(e){return e.success;},getMessage:function(e){return void 0!==e.data.messages&&(0,i.isArray)(e.data.messages)?e.data.messages.join(" "):"";},processFileName:function(e,t,o){return[e,t,o];},process:function(e){return e.data;},error:function(e){this.j.e.fire("errorMessage",e.message,"error",4e3);},defaultHandlerSuccess:function(e){var t=this.j||this;(0,a.isJoditObject)(t)&&e.files&&e.files.length&&e.files.forEach(function(o,n){var i=r.__read(e.isImages&&e.isImages[n]?["img","src"]:["a","href"],2),a=i[0],s=i[1],l=t.createInside.element(a);l.setAttribute(s,e.baseurl+o),"a"===a&&(l.textContent=e.baseurl+o),"img"===a?t.s.insertImage(l,null,t.o.imageDefaultWidth):t.s.insertNode(l);});},defaultHandlerError:function(e){this.j.e.fire("errorMessage",e.message);},contentType:function(e){return(void 0===this.ow.FormData||"string"==typeof e)&&"application/x-www-form-urlencoded; charset=UTF-8";}};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(220),n=o(411),i={en:n},a=o(412),s=o(413),l=o(414),c=o(415),u=o(416),d=o(417),p=o(418),f=o(419),h=o(420),m=o(421),v=o(422),g=o(423),y=o(424),b=o(425),_=o(426),w=o(427),S=o(428),C=o(429);i={ar:a,cs_cz:s,de:l,en:n,es:c,fr:u,he:d,hu:p,id:f,it:h,ja:m,ko:v,nl:g,pl:y,pt_br:b,ru:_,tr:w,zh_cn:S,zh_tw:C};var k=function(e){return e.default||e;},j={};(0,r.isArray)(k(n))&&k(n).forEach(function(e,t){j[t]=e;}),Object.keys(i).forEach(function(e){var t=k(i[e]);(0,r.isArray)(t)&&(i[e]={},t.forEach(function(t,o){i[e][j[o]]=t;}));}),t.default=i;},function(e){e.exports={"Type something":"Start writing...",pencil:"Edit",Quadrate:"Square"};},function(e){e.exports={"Type something":"إبدأ في الكتابة...","About Jodit":"حول جوديت","Jodit Editor":"محرر جوديت","Jodit User's Guide":"دليل مستخدم جوديت","contains detailed help for using":"يحتوي على مساعدة مفصلة للاستخدام","For information about the license, please go to our website:":"للحصول على معلومات حول الترخيص، يرجى الذهاب لموقعنا:","Buy full version":"شراء النسخة الكاملة","Copyright © XDSoft.net - Chupurnov Valeriy. All rights reserved.":"حقوق الطبع والنشر © XDSoft.net - Chupurnov Valeriy. كل الحقوق محفوظة.",Anchor:"مِرْساة","Open in new tab":"فتح في نافذة جديدة","Open editor in fullsize":"فتح المحرر في الحجم الكامل","Clear Formatting":"مسح التنسيق","Fill color or set the text color":"ملء اللون أو تعيين لون النص",Redo:"إعادة",Undo:"تراجع",Bold:"عريض",Italic:"مائل","Insert Unordered List":"إدراج قائمة غير مرتبة","Insert Ordered List":"إدراج قائمة مرتبة","Align Center":"محاذاة للوسط","Align Justify":"محاذاة مثبتة","Align Left":"محاذاة لليسار","Align Right":"محاذاة لليمين","Insert Horizontal Line":"إدراج خط أفقي","Insert Image":"إدراج صورة","Insert file":"ادخال الملف","Insert youtube/vimeo video":"إدراج فيديو يوتيوب/فيميو ","Insert link":"إدراج رابط","Font size":"حجم الخط","Font family":"نوع الخط","Insert format block":"إدراج كتلة تنسيق",Normal:"عادي","Heading 1":"عنوان 1","Heading 2":"عنوان 2","Heading 3":"عنوان 3","Heading 4":"عنوان 4",Quote:"إقتباس",Code:"كود",Insert:"إدراج","Insert table":"إدراج جدول","Decrease Indent":"تقليل المسافة البادئة","Increase Indent":"زيادة المسافة البادئة","Select Special Character":"تحديد أحرف خاصة","Insert Special Character":"إدراج حرف خاص","Paint format":"تنسيق الرسم","Change mode":"تغيير الوضع",Margins:"هوامش",top:"أعلى",right:"يمين",bottom:"أسفل",left:"يسار",Styles:"الأنماط",Classes:"الطبقات",Align:"محاذاة",Right:"اليمين",Center:"الوسط",Left:"اليسار","--Not Set--":"--غير مضبوط--",Src:"Src",Title:"العنوان",Alternative:"العنوان البديل",Link:"الرابط","Open link in new tab":"افتح الرابط في نافذة جديدة",Image:"الصورة",file:"ملف",Advanced:"متقدم","Image properties":"خصائص الصورة",Cancel:"إلغاء",Ok:"حسنا","File Browser":"متصفح الملفات","Error on load list":"حدث خطأ في تحميل القائمة ","Error on load folders":"حدث خطأ في تحميل المجلدات","Are you sure?":"هل أنت واثق؟","Enter Directory name":"أدخل اسم المجلد","Create directory":"إنشاء مجلد","type name":"أكتب إسم","Drop image":"إسقاط صورة","Drop file":"إسقاط الملف","or click":"أو أنقر","Alternative text":"النص البديل",Upload:"رفع",Browse:"تصفح",Background:"الخلفية",Text:"نص",Top:"أعلى",Middle:"الوسط",Bottom:"الأسفل","Insert column before":"إدراج عمود قبل","Insert column after":"إدراج عمود بعد","Insert row above":"إدراج صف أعلى","Insert row below":"إدراج صف أسفل","Delete table":"حذف الجدول","Delete row":"حذف الصف","Delete column":"حذف العمود","Empty cell":"خلية فارغة","Chars: %d":"%d حرف","Words: %d":"%d كلام","Strike through":"اضرب من خلال",Underline:"أكد",superscript:"حرف فوقي",subscript:"مخطوطة","Cut selection":"قطع الاختيار","Select all":"اختر الكل",Break:"استراحة","Search for":"البحث عن","Replace with":"استبدل ب",Replace:"محل",Paste:"معجون","Choose Content to Paste":"اختر محتوى للصق",source:"مصدر",bold:"بالخط العريض",italic:"مائل",brush:"شغل",link:"صلة",undo:"إلغاء",redo:"كرر",table:"طاولة",image:"صورة",eraser:"نظيف",paragraph:"فقرة",fontsize:"حجم الخط",video:"فيديو",font:"الخط",about:"حول المحرر",print:"طباعة",symbol:"رمز",underline:"أكد",strikethrough:"شطب",indent:"المسافة البادئة",outdent:"نتوء",fullsize:"ملء الشاشة",shrink:"الحجم التقليدي",copyformat:"نسخ التنسيق",hr:"الخط",ul:"قائمة",ol:"قائمة مرقمة",cut:"قطع",selectall:"اختر الكل","Embed code":"قانون","Open link":"فتح الرابط","Edit link":"تعديل الرابط","No follow":"سمة Nofollow",Unlink:"إزالة الرابط",Update:"تحديث",pencil:"لتحرير",Eye:"مراجعة"," URL":"URL",Edit:"تحرير","Horizontal align":"محاذاة أفقية",Filter:"فلتر","Sort by changed":"عن طريق التغيير","Sort by name":"بالاسم","Sort by size":"حسب الحجم","Add folder":"إضافة مجلد",Reset:"إعادة",Save:"احتفظ","Save as ...":"حفظ باسم",Resize:"تغيير الحجم",Crop:"حجم القطع",Width:"عرض",Height:"ارتفاع","Keep Aspect Ratio":"حافظ على النسب",Yes:"أن",No:"لا",Remove:"حذف",Select:"تميز","Select %s":"تميز %s","Vertical align":"محاذاة عمودية",Split:"انشق، مزق",Merge:"اذهب","Add column":"أضف العمود","Add row":"اضف سطر","License: %s":"رخصة %s",Delete:"حذف","Split vertical":"انقسام عمودي","Split horizontal":"تقسيم أفقي",Border:"الحدود","Your code is similar to HTML. Keep as HTML?":"يشبه الكود الخاص بك HTML. تبقي كما HTML؟","Paste as HTML":"الصق ك HTML",Keep:"احتفظ","Insert as Text":"إدراج كنص","Insert only Text":"إدراج النص فقط","You can only edit your own images. Download this image on the host?":"يمكنك فقط تحرير صورك الخاصة. تحميل هذه الصورة على المضيف؟","The image has been successfully uploaded to the host!":"تم تحميل الصورة بنجاح على الخادم!",palette:"لوحة","There are no files":"لا توجد ملفات في هذا الدليل.",Rename:"إعادة تسمية","Enter new name":"أدخل اسم جديد",preview:"معاينة",download:"تحميل","Paste from clipboard":"لصق من الحافظة","Your browser doesn't support direct access to the clipboard.":"متصفحك لا يدعم إمكانية الوصول المباشر إلى الحافظة.","Copy selection":"نسخ التحديد",copy:"نسخ","Border radius":"دائرة نصف قطرها الحدود","Show all":"عرض كل",Apply:"تطبيق","Please fill out this field":"يرجى ملء هذا المجال","Please enter a web address":"يرجى إدخال عنوان ويب",Default:"الافتراضي",Circle:"دائرة",Dot:"نقطة",Quadrate:"المربعة",Find:"البحث","Find Previous":"تجد السابقة","Find Next":"تجد التالي","The pasted content is coming from a Microsoft Word/Excel document. Do you want to keep the format or clean it up?":"للصق المحتوى قادم من Microsoft Word/Excel الوثيقة. هل تريد أن تبقي شكل أو تنظيفه ؟ ","Word Paste Detected":"كلمة لصق الكشف عن",Clean:"نظيفة","Insert className":"أدخل اسم الفصل","Line height":"ارتفاع الخط",Spellchecking:"التدقيق الإملائي"};},function(e){e.exports={"Type something":"Napiš něco","About Jodit":"O Jodit","Jodit Editor":"Editor Jodit","Free Non-commercial Version":"Verze pro nekomerční použití","Jodit User's Guide":"Jodit Uživatelská příručka","contains detailed help for using":"obsahuje detailní nápovědu","For information about the license, please go to our website:":"Pro informace o licenci, prosím, přejděte na naši stránku:","Buy full version":"Koupit plnou verzi","Copyright © XDSoft.net - Chupurnov Valeriy. All rights reserved.":"Copyright © XDSoft.net - Chupurnov Valeriy. Všechna práva vyhrazena.",Anchor:"Anchor","Open in new tab":"Otevřít v nové záložce","Open editor in fullsize":"Otevřít v celoobrazovkovém režimu","Clear Formatting":"Vyčistit formátování","Fill color or set the text color":"Barva výplně a písma",Redo:"Vpřed",Undo:"Zpět",Bold:"Tučné",Italic:"Kurzíva","Insert Unordered List":"Odrážky","Insert Ordered List":"Číslovaný seznam","Align Center":"Zarovnat na střed","Align Justify":"Zarovnat do bloku","Align Left":"Zarovnat vlevo","Align Right":"Zarovnat vpravo","Insert Horizontal Line":"Vložit horizontální linku","Insert Image":"Vložit obrázek","Insert file":"Vložit soubor","Insert youtube/vimeo video":"Vložit video (YT/Vimeo)","Insert link":"Vložit odkaz","Font size":"Velikost písma","Font family":"Typ písma","Insert format block":"Formátovat blok",Normal:"Normální text","Heading 1":"Nadpis 1","Heading 2":"Nadpis 2","Heading 3":"Nadpis 3","Heading 4":"Nadpis 4",Quote:"Citát",Code:"Kód",Insert:"Vložit","Insert table":"Vložit tabulku","Decrease Indent":"Zmenšit odsazení","Increase Indent":"Zvětšit odsazení","Select Special Character":"Vybrat speciální symbol","Insert Special Character":"Vložit speciální symbol","Paint format":"Použít formát","Change mode":"Změnit mód",Margins:"Okraje",top:"horní",right:"pravý",bottom:"spodní",left:"levý",Styles:"Styly",Classes:"Třídy",Align:"Zarovnání",Right:"Vpravo",Center:"Na střed",Left:"Vlevo","--Not Set--":"--nenastaveno--",Src:"src",Title:"Titulek",Alternative:"Alternativní text (alt)",Link:"Link","Open link in new tab":"Otevřít link v nové záložce",Image:"Obrázek",file:"soubor",Advanced:"Rozšířené","Image properties":"Vlastnosti obrázku",Cancel:"Zpět",Ok:"Ok","Your code is similar to HTML. Keep as HTML?":"Váš text se podobá HTML. Vložit ho jako HTML?","Paste as HTML":"Vložit jako HTML",Keep:"Ponechat originál",Clean:"Vyčistit","Insert as Text":"Vložit jako TEXT","Insert only Text":"Vložit pouze TEXT","Word Paste Detected":"Detekován fragment z Wordu nebo Excelu","The pasted content is coming from a Microsoft Word/Excel document. Do you want to keep the format or clean it up?":"Obsah, který vkládáte, je pravděpodobně z Microsoft Word / Excel. Chcete ponechat formát nebo vložit pouze text?","File Browser":"Prohlížeč souborů","Error on load list":"Chyba při načítání seznamu souborů","Error on load folders":"Chyba při načítání složek","Are you sure?":"Jste si jistý(á)?","Enter Directory name":"Název složky","Create directory":"Vytvořit složku","type name":"název","Drop image":"Přetáhněte sem obrázek","Drop file":"Přetáhněte sem soubor","or click":"nebo klikněte","Alternative text":"Alternativní text",Browse:"Server",Upload:"Nahrát",Background:"Pozadí",Text:"Text",Top:"Nahoru",Middle:"Na střed",Bottom:"Dolu","Insert column before":"Vložit sloupec před","Insert column after":"Vložit sloupec za","Insert row above":"Vložit řádek nad","Insert row below":"Vložit řádek pod","Delete table":"Vymazat tabulku","Delete row":"Vymazat řádku","Delete column":"Vymazat sloupec","Empty cell":"Vyčistit buňku",source:"HTML",bold:"tučně",italic:"kurzíva",brush:"štětec",link:"odkaz",undo:"zpět",redo:"vpřed",table:"tabulka",image:"obrázek",eraser:"guma",paragraph:"odstavec",fontsize:"velikost písma",video:"video",font:"písmo",about:"о editoru",print:"tisk",symbol:"symbol",underline:"podtrženo",strikethrough:"přeškrtnuto",indent:"zvětšit odsazení",outdent:"zmenšit odsazení",fullsize:"celoobrazovkový režim",shrink:"smrsknout",copyformat:"Kopírovat formát",hr:"Linka",ul:"Odrážka",ol:"Číslovaný seznam",cut:"Vyjmout",selectall:"Označit vše","Embed code":"Kód","Open link":"Otevřít odkaz","Edit link":"Upravit odkaz","No follow":"Atribut no-follow",Unlink:"Odstranit odkaz",Eye:"Zobrazit",pencil:"Chcete-li upravit",Update:"Aktualizovat"," URL":"URL",Edit:"Editovat","Horizontal align":"Horizontální zarovnání",Filter:"Filtr","Sort by changed":"Dle poslední změny","Sort by name":"Dle názvu","Sort by size":"Dle velikosti","Add folder":"Přidat složku",Reset:"Reset",Save:"Uložit","Save as ...":"Uložit jako...",Resize:"Změnit rozměr",Crop:"Ořezat",Width:"Šířka",Height:"Výška","Keep Aspect Ratio":"Ponechat poměr",Yes:"Ano",No:"Ne",Remove:"Vyjmout",Select:"Označit","Chars: %d":"Znaky: %d","Words: %d":"Slova: %d",All:"Vše","Select %s":"Označit %s","Select all":"Označit vše","Vertical align":"Vertikální zarovnání",Split:"Rozdělit","Split vertical":"Rozdělit vertikálně","Split horizontal":"Rozdělit horizontálně",Merge:"Spojit","Add column":"Přidat sloupec","Add row":"Přidat řádek",Delete:"Vymazat",Border:"Okraj","License: %s":"Licence: %s","Strike through":"Přeškrtnuto",Underline:"Podtrženo",superscript:"Horní index",subscript:"Dolní index","Cut selection":"Vyjmout označené",Break:"Zalomení","Search for":"Najdi","Replace with":"Nahradit za",Replace:"Vyměňte",Paste:"Vložit","Choose Content to Paste":"Vyber obsah pro vložení","You can only edit your own images. Download this image on the host?":"Můžete upravovat pouze své obrázky. Načíst obrázek?","The image has been successfully uploaded to the host!":"Obrázek byl úspěšně nahrán!",palette:"paleta","There are no files":"V tomto adresáři nejsou žádné soubory.",Rename:"přejmenovat","Enter new name":"Zadejte nový název",preview:"náhled",download:"Stažení","Paste from clipboard":"Vložit ze schránky","Your browser doesn't support direct access to the clipboard.":"Váš prohlížeč nepodporuje přímý přístup do schránky.","Copy selection":"Kopírovat výběr",copy:"kopírování","Border radius":"Border radius","Show all":"Zobrazit všechny",Apply:"Platí","Please fill out this field":"Prosím, vyplňte toto pole","Please enter a web address":"Prosím, zadejte webovou adresu",Default:"Výchozí",Circle:"Kruh",Dot:"Dot",Quadrate:"Quadrate",Find:"Najít","Find Previous":"Najít Předchozí","Find Next":"Najít Další","Insert className":"Vložte název třídy","Line height":"Výška čáry",Spellchecking:"Kontrola pravopisu"};},function(e){e.exports={"Type something":"Bitte geben Sie einen Text ein",Advanced:"Fortgeschritten","About Jodit":"Über Jodit","Jodit Editor":"Jodit Editor","Jodit User's Guide":"Das Jodit Benutzerhandbuch","contains detailed help for using":"beinhaltet ausführliche Informationen wie Sie den Editor verwenden können.","For information about the license, please go to our website:":"Für Informationen zur Lizenz, besuchen Sie bitte unsere Web-Präsenz:","Buy full version":"Vollversion kaufen","Copyright © XDSoft.net - Chupurnov Valeriy. All rights reserved.":"Copyright © XDSoft.net - Chupurnov Valeriy. Alle Rechte vorbehalten.",Anchor:"Anker","Open in new tab":"In neuer Registerkarte öffnen","Open editor in fullsize":"Editor in voller Größe öffnen","Clear Formatting":"Formatierung löschen","Fill color or set the text color":"Füllfarbe oder Textfarbe ändern",Redo:"Wiederholen",Undo:"Rückgängig machen",Bold:"Fett",Italic:"Kursiv","Insert Unordered List":"Unsortierte Liste einfügen","Insert Ordered List":"Nummerierte Liste einfügen","Align Center":"Mittig ausrichten","Align Justify":"Blocksatz","Align Left":"Links ausrichten","Align Right":"Rechts ausrichten","Insert Horizontal Line":"Horizontale Linie einfügen","Insert Image":"Bild einfügen","Insert file":"Datei einfügen","Insert youtube/vimeo video":"Youtube/vimeo Video einfügen","Insert link":"Link einfügen","Font size":"Schriftgröße","Font family":"Schriftfamilie","Insert format block":"Formatblock einfügen",Normal:"Normal","Heading 1":"Überschrift 1","Heading 2":"Überschrift 2","Heading 3":"Überschrift 3","Heading 4":"Überschrift 4",Quote:"Zitat",Code:"Code",Insert:"Einfügen","Insert table":"Tabelle einfügen","Decrease Indent":"Einzug verkleinern","Increase Indent":"Einzug vergrößern","Select Special Character":"Sonderzeichen auswählen","Insert Special Character":"Sonderzeichen einfügen","Paint format":"Format kopieren","Change mode":"Änderungsmodus",Margins:"Ränder",top:"Oben",right:"Rechts",bottom:"Unten",left:"Links",Styles:"CSS Stil",Classes:"CSS Klassen",Align:"Ausrichtung",Right:"Rechts",Center:"Zentriert",Left:"Links","--Not Set--":"Keine",Src:"Pfad",Title:"Titel",Alternative:"Alternativer Text",Link:"Link","Open link in new tab":"Link in neuem Tab öffnen",Image:"Bild",file:"Datei",Advansed:"Erweitert","Image properties":"Bildeigenschaften",Cancel:"Abbrechen",Ok:"OK","Your code is similar to HTML. Keep as HTML?":"Ihr Text ähnelt HTML-Code. Als HTML beibehalten?","Paste as HTML":"Als HTML einfügen?",Keep:"Original speichern",Clean:"Säubern","Insert as Text":"Als Text einfügen","Word Paste Detected":"In Word formatierter Text erkannt","The pasted content is coming from a Microsoft Word/Excel document. Do you want to keep the format or clean it up?":"Der Inhalt, den Sie einfügen, stammt aus einem Microsoft Word / Excel-Dokument. Möchten Sie das Format erhalten oder bereinigen?","Insert only Text":"Nur Text einfügen","File Browser":"Dateibrowser","Error on load list":"Fehler beim Laden der Liste","Error on load folders":"Fehler beim Laden der Ordner","Are you sure?":"Sind Sie sicher?","Enter Directory name":"Geben Sie den Verzeichnisnamen ein","Create directory":"Verzeichnis erstellen","type name":"Typname","Drop image":"Bild hier hinziehen","Drop file":"Datei löschen","or click":"oder hier klicken","Alternative text":"Alternativtext",Browse:"Auswählen",Upload:"Hochladen",Background:"Hintergrund",Text:"Text",Top:"Oben",Middle:"Mittig",Bottom:"Unten","Insert column before":"Spalte davor einfügen","Insert column after":"Spalte danach einfügen","Insert row above":"Zeile oberhalb einfügen","Insert row below":"Zeile unterhalb einfügen","Delete table":"Tabelle löschen","Delete row":"Zeile löschen","Delete column":"Spalte löschen","Empty cell":"Zelle leeren",Delete:"Löschen","Strike through":"Durchstreichen",Underline:"Unterstreichen",Break:"Pause","Search for":"Suche nach","Replace with":"Ersetzen durch",Replace:"Ersetzen",Edit:"Bearbeiten","Vertical align":"Vertikale Ausrichtung","Horizontal align":"Horizontale Ausrichtung",Filter:"Filter","Sort by changed":"Sortieren nach geändert","Sort by name":"Nach Name sortieren","Sort by size":"Nach Größe sortiert","Add folder":"Ordner hinzufügen","Split vertical":"Vertikal unterteilen","Split horizontal":"Horizontal unterteilen",Split:"Unterteilen",Merge:"Vereinen","Add column":"Spalte hinzufügen","Add row":"Zeile hinzufügen",Border:"Rand","Embed code":"Code einbetten",Update:"Aktualisieren",superscript:"Hochgestellen",subscript:"Tiefstellen","Cut selection":"Auswahl ausschneiden",Paste:"Einfügen","Choose Content to Paste":"Wählen Sie den Inhalt zum Einfügen aus","Chars: %d":"Zeichen: %d","Words: %d":"Wörter: %d",All:"Alles markieren","Select %s":"Markieren: %s","Select all":"Alles markieren",source:"HTML",bold:"Fett gedruckt",italic:"Kursiv",brush:"Bürste",link:"Verknüpfung",undo:"Rückgängig machen",redo:"Wiederholen",table:"Tabelle",image:"Bild",eraser:"Radiergummi",paragraph:"Absatz",fontsize:"Schriftgröße",video:"Video",font:"Schriftart",about:"Über",print:"Drucken",symbol:"Symbol",underline:"Unterstreichen",strikethrough:"Durchstreichen",indent:"Einzug",outdent:"Herausstellen",fullsize:"Vollgröße",shrink:"Schrumpfen",copyformat:"Format kopierenт",hr:"die Linie",ul:"Liste von",ol:"Nummerierte Liste","Lower Alpha":"Standard, Alphabet (klein)","Upper Alpha":"Standard, Alphabet (gross)","Lower Roman":"Römisch (klein)","Upper Roman":"Römisch (gross)","Lower Greek":"Griechisch",cut:"Schneiden",selectall:"Wählen Sie Alle aus","Open link":"Link öffnen","Edit link":"Link bearbeiten","No follow":"Nofollow-Attribut",Unlink:"Link entfernen",Eye:"Ansehen",pencil:"Bearbeiten"," URL":"URL",Reset:"Wiederherstellen",Save:"Speichern","Save as ...":"Speichern als",Resize:"Größe ändern",Crop:"Größe anpassen",Width:"Breite",Height:"Höhe","Keep Aspect Ratio":"Seitenverhältnis beibehalten",Yes:"Ja",No:"Nein",Remove:"Entfernen",Select:"Markieren","You can only edit your own images. Download this image on the host?":"Sie können nur Ihre eigenen Bilder bearbeiten. Dieses Bild auf den Host herunterladen?","The image has been successfully uploaded to the host!":"Das Bild wurde erfolgreich auf den Server hochgeladen!",palette:"Palette","There are no files":"In diesem Verzeichnis befinden sich keine Dateien.",Rename:"Umbenennen","Enter new name":"Geben Sie einen neuen Namen ein",preview:"Vorschau",download:"Herunterladen","Paste from clipboard":"Aus Zwischenablage einfügen","Your browser doesn't support direct access to the clipboard.":"Ihr Browser unterstützt keinen direkten Zugriff auf die Zwischenablage.","Copy selection":"Auswahl kopieren",copy:"Kopieren","Border radius":"Radius für abgerundete Ecken","Show all":"Alle anzeigen",Apply:"Anwenden","Please fill out this field":"Bitte füllen Sie dieses Feld aus","Please enter a web address":"Bitte geben Sie eine Web-Adresse ein",Default:"Standard",Circle:"Kreis",Dot:"Punkte",Quadrate:"Quadrate",Find:"Suchen","Find Previous":"Suche vorherige","Find Next":"Weitersuchen","Insert className":"className (CSS) einfügen","Line height":"Zeilenhöhe",Spellchecking:"Rechtschreibprüfung"};},function(e){e.exports={"Type something":"Escriba algo...",Advanced:"Avanzado","About Jodit":"Acerca de Jodit","Jodit Editor":"Jodit Editor","Jodit User's Guide":"Guía de usuario Jodit","contains detailed help for using":"contiene ayuda detallada para el uso.","For information about the license, please go to our website:":"Para información sobre la licencia, por favor visite nuestro sitio:","Buy full version":"Compre la versión completa","Copyright © XDSoft.net - Chupurnov Valeriy. All rights reserved.":"Copyright © XDSoft.net - Chupurnov Valeriy. Todos los derechos reservados.",Anchor:"Anclar","Open in new tab":"Abrir en nueva pestaña","Open editor in fullsize":"Abrir editor en pantalla completa","Clear Formatting":"Limpiar formato","Fill color or set the text color":"Color de relleno o de letra",Redo:"Rehacer",Undo:"Deshacer",Bold:"Negrita",Italic:"Cursiva","Insert Unordered List":"Insertar lista no ordenada","Insert Ordered List":"Insertar lista ordenada","Align Center":"Alinear Centrado","Align Justify":"Alinear Justificado","Align Left":"Alinear Izquierda","Align Right":"Alinear Derecha","Insert Horizontal Line":"Insertar línea horizontal","Insert Image":"Insertar imagen","Insert file":"Insertar archivo","Insert youtube/vimeo video":"Insertar video de Youtube/vimeo","Insert link":"Insertar vínculo","Font size":"Tamaño de letra","Font family":"Familia de letra","Insert format block":"Insertar bloque",Normal:"Normal","Heading 1":"Encabezado 1","Heading 2":"Encabezado 2","Heading 3":"Encabezado 3","Heading 4":"Encabezado 4",Quote:"Cita",Code:"Código",Insert:"Insertar","Insert table":"Insertar tabla","Decrease Indent":"Disminuir sangría","Increase Indent":"Aumentar sangría","Select Special Character":"Seleccionar caracter especial","Insert Special Character":"Insertar caracter especial","Paint format":"Copiar formato","Change mode":"Cambiar modo",Margins:"Márgenes",top:"arriba",right:"derecha",bottom:"abajo",left:"izquierda",Styles:"Estilos CSS",Classes:"Clases CSS",Align:"Alinear",Right:"Derecha",Center:"Centrado",Left:"Izquierda","--Not Set--":"--No Establecido--",Src:"Fuente",Title:"Título",Alternative:"Texto Alternativo",Link:"Vínculo","Open link in new tab":"Abrir vínculo en nueva pestaña",Image:"Imagen",file:"Archivo",Advansed:"Avanzado","Image properties":"Propiedades de imagen",Cancel:"Cancelar",Ok:"Aceptar","Your code is similar to HTML. Keep as HTML?":"El código es similar a HTML. ¿Mantener como HTML?","Paste as HTML":"Pegar como HTML?",Keep:"Mantener",Clean:"Limpiar","Insert as Text":"Insertar como texto","Word Paste Detected":"Pegado desde Word detectado","The pasted content is coming from a Microsoft Word/Excel document. Do you want to keep the format or clean it up?":"El contenido pegado proviene de un documento de Microsoft Word/Excel. ¿Desea mantener el formato o limpiarlo?","Insert only Text":"Insertar solo texto","File Browser":"Buscar archivo","Error on load list":"Error al cargar la lista","Error on load folders":"Error al cargar las carpetas","Are you sure?":"¿Está seguro?","Enter Directory name":"Entre nombre de carpeta","Create directory":"Crear carpeta","type name":"Entre el nombre","Drop image":"Soltar imagen","Drop file":"Soltar archivo","or click":"o click","Alternative text":"Texto alternativo",Browse:"Buscar",Upload:"Subir",Background:"Fondo",Text:"Texto",Top:"Arriba",Middle:"Centro",Bottom:"Abajo","Insert column before":"Insertar columna antes","Insert column after":"Interar columna después","Insert row above":"Insertar fila arriba","Insert row below":"Insertar fila debajo","Delete table":"Borrar tabla","Delete row":"Borrar fila","Delete column":"Borrar columna","Empty cell":"Vaciar celda",Delete:"Borrar","Strike through":"Tachado",Underline:"Subrayado",Break:"Pausa","Search for":"Buscar","Replace with":"Reemplazar con",Replace:"Reemplazar",Edit:"Editar","Vertical align":"Alineación vertical","Horizontal align":"Alineación horizontal",Filter:"filtrar","Sort by changed":"Ordenar por fecha modificación","Sort by name":"Ordenar por nombre","Sort by size":"Ordenar por tamaño","Add folder":"Agregar carpeta",Split:"Dividir","Split vertical":"Dividir vertical","Split horizontal":"Dividir horizontal",Merge:"Mezclar","Add column":"Agregar columna","Add row":"Agregar fila",Border:"Borde","Embed code":"Incluir código",Update:"Actualizar",superscript:"superíndice",subscript:"subíndice","Cut selection":"Cortar selección",Paste:"Pegar","Choose Content to Paste":"Seleccionar contenido para pegar","Chars: %d":"Caracteres: %d","Words: %d":"Palabras: %d",All:"Todo","Select %s":"Seleccionar: %s","Select all":"Seleccionar todo",source:"HTML",bold:"negrita",italic:"cursiva",brush:"Brocha",link:"Vínculo",undo:"deshacer",redo:"rehacer",table:"Tabla",image:"Imagen",eraser:"Borrar",paragraph:"Párrafo",fontsize:"Tamaño de letra",video:"Video",font:"Letra",about:"Acerca de",print:"Imprimir",symbol:"Símbolo",underline:"subrayar",strikethrough:"tachar",indent:"sangría",outdent:"quitar sangría",fullsize:"Tamaño completo",shrink:"encoger",copyformat:"Copiar formato",hr:"línea horizontal",ul:"lista sin ordenar",ol:"lista ordenada",cut:"Cortar",selectall:"Seleccionar todo","Open link":"Abrir vínculo","Edit link":"Editar vínculo","No follow":"No seguir",Unlink:"Desvincular",Eye:"Ver",pencil:"Para editar"," URL":"URL",Reset:"Resetear",Save:"Guardar","Save as ...":"Guardar como...",Resize:"Redimensionar",Crop:"Recortar",Width:"Ancho",Height:"Alto","Keep Aspect Ratio":"Mantener relación de aspecto",Yes:"Si",No:"No",Remove:"Quitar",Select:"Seleccionar","You can only edit your own images. Download this image on the host?":"Solo puedes editar tus propias imágenes. ¿Descargar esta imagen en el servidor?","The image has been successfully uploaded to the host!":"¡La imagen se ha subido correctamente al servidor!",palette:"paleta","There are no files":"No hay archivos en este directorio.",Rename:"renombrar","Enter new name":"Ingresa un nuevo nombre",preview:"avance",download:"Descargar","Paste from clipboard":"Pegar desde el portapapeles","Your browser doesn't support direct access to the clipboard.":"Su navegador no soporta el acceso directo en el portapapeles.","Copy selection":"Selección de copia",copy:"copia","Border radius":"Radio frontera","Show all":"Mostrar todos los",Apply:"Aplicar","Please fill out this field":"Por favor, rellene este campo","Please enter a web address":"Por favor, introduzca una dirección web",Default:"Predeterminado",Circle:"Círculo",Dot:"Punto",Quadrate:"Cuadro","Lower Alpha":"Letra Minúscula","Lower Greek":"Griego Minúscula","Lower Roman":"Romano Minúscula","Upper Alpha":"Letra Mayúscula","Upper Roman":"Romano Mayúscula",Find:"Encontrar","Find Previous":"Buscar Anterior","Find Next":"Buscar Siguiente","Insert className":"Insertar nombre de clase","Line height":"Altura de la línea",Spellchecking:"Corrección ortográfica"};},function(e){e.exports={"Type something":"Ecrivez ici","About Jodit":"A propos de Jodit","Jodit Editor":"Editeur Jodit","Jodit User's Guide":"Guide de l'utilisateur","contains detailed help for using":"Aide détaillée à l'utilisation","For information about the license, please go to our website:":"Consulter la licence sur notre site web:","Buy full version":"Acheter la version complète","Copyright © XDSoft.net - Chupurnov Valeriy. All rights reserved.":"Copyright © XDSoft.net - Chupurnov Valeriy. Tous droits réservés.",Anchor:"Ancre","Open in new tab":"Ouvrir dans un nouvel onglet","Open editor in fullsize":"Ouvrir l'éditeur en pleine page","Clear Formatting":"Supprimer le formattage","Fill color or set the text color":"Modifier la couleur du fond ou du texte",Redo:"Refaire",Undo:"Défaire",Bold:"Gras",Italic:"Italique","Insert Unordered List":"Liste non ordonnée","Insert Ordered List":"Liste ordonnée","Align Center":"Centrer","Align Justify":"Justifier","Align Left":"Aligner à gauche ","Align Right":"Aligner à droite","Insert Horizontal Line":"Insérer une ligne horizontale","Insert Image":"Insérer une image","Insert file":"Insérer un fichier","Insert youtube/vimeo video":"Insérer une vidéo","Insert link":"Insérer un lien","Font size":"Taille des caractères","Font family":"Famille des caractères","Insert format block":"Bloc formatté",Normal:"Normal","Heading 1":"Titre 1","Heading 2":"Titre 2","Heading 3":"Titre 3","Heading 4":"Titre 4",Quote:"Citation",Code:"Code",Insert:"Insérer","Insert table":"Insérer un tableau","Decrease Indent":"Diminuer le retrait","Increase Indent":"Retrait plus","Select Special Character":"Sélectionnez un caractère spécial","Insert Special Character":"Insérer un caractère spécial","Paint format":"Cloner le format","Change mode":"Mode wysiwyg <-> code html",Margins:"Marges",top:"haut",right:"droite",bottom:"Bas",left:"gauche",Styles:"Styles",Classes:"Classes",Align:"Alignement",Right:"Droite",Center:"Centre",Left:"Gauche","--Not Set--":"--Non disponible--",Src:"Source",Title:"Titre",Alternative:"Alternative",Filter:"Filtre",Link:"Lien","Open link in new tab":"Ouvrir le lien dans un nouvel onglet",Image:"Image",file:"fichier",Advanced:"Avancé","Image properties":"Propriétés de l'image",Cancel:"Annuler",Ok:"OK","Your code is similar to HTML. Keep as HTML?":"Votre texte que vous essayez de coller est similaire au HTML. Collez-le en HTML?","Paste as HTML":"Coller en HTML?",Keep:"Sauvegarder l'original",Clean:"Nettoyer","Insert as Text":"Coller en tant que texte","Word Paste Detected":"C'est peut-être un fragment de Word ou Excel","The pasted content is coming from a Microsoft Word/Excel document. Do you want to keep the format or clean it up?":"Le contenu que vous insérez provient d'un document Microsoft Word / Excel. Voulez-vous enregistrer le format ou l'effacer?","Insert only Text":"Coller le texte seulement","File Browser":"Explorateur de fichiers","Error on load list":"Erreur de liste de chargement","Error on load folders":"Erreur de dossier de chargement","Are you sure?":"Etes-vous sûrs ?","Enter Directory name":"Entrer le non de dossier","Create directory":"Créer un dossier","type name":"type de fichier","Drop image":"Coller une image","Drop file":"Déposer un fichier","or click":"ou cliquer","Alternative text":"Texte de remplacemement",Browse:"Chercher",Upload:"Charger",Background:"Arrière-plan",Text:"Texte",Top:"Haut",Middle:"Milieu",Bottom:"Bas","Insert column before":"Insérer une colonne avant","Insert column after":"Insérer une colonne après","Insert row above":"Insérer une ligne en dessus","Insert row below":"Insérer une ligne en dessous","Delete table":"Supprimer le tableau","Delete row":"Supprimer la ligne","Delete column":"Supprimer la colonne","Empty cell":"Vider la cellule","Chars: %d":"Symboles: %d","Words: %d":"Mots: %d",Split:"Split","Split vertical":"Split vertical","Split horizontal":"Split horizontal","Strike through":"Frapper à travers",Underline:"Souligner",superscript:"exposant",subscript:"indice","Cut selection":"Couper la sélection","Select all":"Tout sélectionner",Break:"Pause","Search for":"Rechercher","Replace with":"Remplacer par",Replace:"Remplacer",Paste:"Coller","Choose Content to Paste":"Choisissez le contenu à coller",source:"la source",bold:"graisseux",italic:"italique",brush:"verser",link:"lien",undo:"abolir",redo:"prêt",table:"graphique",image:"Image",eraser:"la gommen",paragraph:"clause",fontsize:"taille de police",video:"Video",font:"police",about:"à propos de l'éditeur",print:"impression",symbol:"caractère",underline:"souligné",strikethrough:"barré",indent:"indentation",outdent:"indifférent",fullsize:"taille réelle",shrink:"taille conventionnelle",copyformat:"Format de copie",hr:"la ligne",ul:"Liste des",ol:"Liste numérotée",cut:"Couper",selectall:"Sélectionner tout","Open link":"Ouvrir le lien","Edit link":"Modifier le lien","No follow":"Attribut Nofollow",Unlink:"Supprimer le lien",Eye:"Voir",pencil:"Pour éditer"," URL":"URL",Reset:"Restaurer",Save:"Sauvegarder","Save as ...":"Enregistrer sous",Resize:"Changer la taille",Crop:"Taille de garniture",Width:"Largeur",Height:"Hauteur","Keep Aspect Ratio":"Garder les proportions",Yes:"Oui",No:"Non",Remove:"Supprimer",Select:"Mettre en évidence","Select %s":"Mettre en évidence: %s",Update:"Mettre à jour","Vertical align":"Alignement vertical",Merge:"aller","Add column":"Ajouter une colonne","Add row":"Ajouter une rangée",Delete:"Effacer","Horizontal align":"Alignement horizontal","Sort by changed":"Trier par modifié","Sort by name":"Trier par nom","Sort by size":"Classer par taille","Add folder":"Ajouter le dossier","You can only edit your own images. Download this image on the host?":"Vous ne pouvez éditer que vos propres images. Téléchargez cette image sur l'hôte?","The image has been successfully uploaded to the host!":"L'image a été téléchargée avec succès sur le serveur!null",palette:"Palette","There are no files":"Il n'y a aucun fichier dans ce répertoire.",Rename:"renommer","Enter new name":"Entrez un nouveau nom",preview:"Aperçu",download:"Télécharger","Paste from clipboard":"Coller à partir du presse-papiers","Your browser doesn't support direct access to the clipboard.":"Votre navigateur ne prend pas en charge l'accès direct à la presse-papiers.","Copy selection":"Copier la sélection",copy:"copie","Border radius":"Rayon des frontières","Show all":"Afficher tous les",Apply:"Appliquer","Please fill out this field":"Veuillez remplir ce champ","Please enter a web address":"Veuillez entrer une adresse web",Default:"Par défaut",Circle:"Cercle",Dot:"Dot",Quadrate:"Quadrate",Find:"Trouver","Find Previous":"Trouvez Précédente","Find Next":"Suivant","Insert className":"Insérer un nom de classe","Line height":"Hauteur de ligne",Spellchecking:"Vérification Orthographique"};},function(e){e.exports={"Type something":"הקלד משהו...",Advanced:"מתקדם","About Jodit":"About Jodit","Jodit Editor":"Jodit Editor","Jodit User's Guide":"Jodit User's Guide","contains detailed help for using":"contains detailed help for using.","For information about the license, please go to our website:":"For information about the license, please go to our website:","Buy full version":"Buy full version","Copyright © XDSoft.net - Chupurnov Valeriy. All rights reserved.":"Copyright © XDSoft.net - Chupurnov Valeriy. All rights reserved.",Anchor:"מקום עיגון","Open in new tab":"פתח בכרטיסיה חדשה","Open editor in fullsize":"פתח את העורך בחלון חדש","Clear Formatting":"נקה עיצוב","Fill color or set the text color":"שנה צבע טקסט או רקע",Redo:"בצע שוב",Undo:"בטל",Bold:"מודגש",Italic:"נטוי","Insert Unordered List":"הכנס רשימת תבליטים","Insert Ordered List":"הכנס רשימה ממוספרת","Align Center":"מרכז","Align Justify":"ישר ","Align Left":"ישר לשמאל","Align Right":"ישר לימין","Insert Horizontal Line":"הכנס קו אופקי","Insert Image":"הכנס תמונה","Insert file":"הכנס קובץ","Insert youtube/vimeo video":"הכנס סרטון וידאו מYouTube/Vimeo","Insert link":"הכנס קישור","Font size":"גודל גופן","Font family":"גופן","Insert format block":"מעוצב מראש",Normal:"רגיל","Heading 1":"כותרת 1","Heading 2":"כותרת 2","Heading 3":"כותרת 3","Heading 4":"כותרת 4",Quote:"ציטוט",Code:"קוד",Insert:"הכנס","Insert table":"הכנס טבלה","Decrease Indent":"הקטן כניסה","Increase Indent":"הגדל כניסה","Select Special Character":"בחר תו מיוחד","Insert Special Character":"הכנס תו מיוחד","Paint format":"העתק עיצוב","Change mode":"החלף מצב",Margins:"ריווח",top:"עליון",right:"ימין",bottom:"תחתון",left:"שמאל",Styles:"עיצוב CSS",Classes:"מחלקת CSS",Align:"יישור",Right:"ימין",Center:"מרכז",Left:"שמאל","--Not Set--":"--לא נקבע--",Src:"מקור",Title:"כותרת",Alternative:"כיתוב חלופי",Link:"קישור","Open link in new tab":"פתח בכרטיסיה חדשה",Image:"תמונה",file:"קובץ",Advansed:"מתקדם","Image properties":"מאפייני תמונה",Cancel:"ביטול",Ok:"אישור","Your code is similar to HTML. Keep as HTML?":"הקוד דומה לHTML, האם להשאיר כHTML","Paste as HTML":"הדבק כHTML",Keep:"השאר",Clean:"נקה","Insert as Text":"הכנס כטקסט","Word Paste Detected":'זוהתה הדבקה מ"וורד"',"The pasted content is coming from a Microsoft Word/Excel document. Do you want to keep the format or clean it up?":"התוכן המודבק מגיע ממסמך וורד/אקסל. האם ברצונך להשאיר את העיצוב או לנקותו","Insert only Text":"הכנס טקסט בלבד","File Browser":"סייר הקבצים","Error on load list":"שגיאה  בזמן טעינת רשימה","Error on load folders":"שגיאה בזמן טעינת תקיות","Are you sure?":"האם אתה בטוח?","Enter Directory name":"הכנס שם תקיה","Create directory":"צור תקיה","type name":"סוג הקובץ","Drop image":"הסר תמונה","Drop file":"הסר קובץ","or click":"או לחץ","Alternative text":"כיתוב חלופי",Browse:"סייר",Upload:"העלה",Background:"רקע",Text:"טקסט",Top:"עליון",Middle:"מרכז",Bottom:"תחתון","Insert column before":"הכנס עמודה לפני","Insert column after":"הכנס עמודה אחרי","Insert row above":"הכנס שורה מעל","Insert row below":"הכנס שורה מתחת","Delete table":"מחק טבלה","Delete row":"מחק שורה","Delete column":"מחק עמודה","Empty cell":"רוקן תא",Delete:"מחק","Strike through":"קו חוצה",Underline:"קו תחתון",Break:"שבירת שורה","Search for":"חפש","Replace with":"החלף ב",Replace:"להחליף",Edit:"ערוך","Vertical align":"יישור אנכי","Horizontal align":"יישור אופקי",Filter:"סנן","Sort by changed":"מין לפי שינוי","Sort by name":"מיין לפי שם","Sort by size":"מיין לפי גודל","Add folder":"הוסף תקייה",Split:"פיצול","Split vertical":"פיצול אנכי","Split horizontal":"פיצול אופקי",Merge:"מזג","Add column":"הוסף עמודה","Add row":"הוסף שורה",Border:"מסגרת","Embed code":"הוסף קוד",Update:"עדכן",superscript:"superscript",subscript:"subscript","Cut selection":"גזור בחירה",Paste:"הדבק","Choose Content to Paste":"בחר תוכן להדבקה","Chars: %d":"תווים: %d","Words: %d":"מילים: %d",All:"הכל","Select %s":"נבחר: %s","Select all":"בחר הכל",source:"HTML",bold:"מודגש",italic:"נטוי",brush:"מברשת",link:"קישור",undo:"בטל",redo:"בצע שוב",table:"טבלה",image:"תמונה",eraser:"מחק",paragraph:"פסקה",fontsize:"גודל גופן",video:"וידאו",font:"גופן",about:"עלינו",print:"הדפס",symbol:"תו מיוחד",underline:"קו תחתון",strikethrough:"קו חוצה",indent:"הגדל כניסה",outdent:"הקטן כניסה",fullsize:"גודל מלא",shrink:"כווץ",copyformat:"העתק עיצוב",hr:"קו אופקי",ul:"רשימת תבליטים",ol:"רשימה ממוספרת",cut:"חתוך",selectall:"בחר הכל","Open link":"פתח קישור","Edit link":"ערוך קישור","No follow":"ללא מעקב",Unlink:"בטל קישור",Eye:"הצג",pencil:"כדי לערוך"," URL":"כתובת",Reset:"אפס",Save:"שמור","Save as ...":"שמור בשם...",Resize:"שנה גודל",Crop:"חתוך",Width:"רוחב",Height:"גובה","Keep Aspect Ratio":"שמור יחס",Yes:"כן",No:"לא",Remove:"הסר",Select:"בחר","You can only edit your own images. Download this image on the host?":"רק קבצים המשוייכים שלך ניתנים לעריכה. האם להוריד את הקובץ?","The image has been successfully uploaded to the host!":"התמונה עלתה בהצלחה!",palette:"לוח","There are no files":"אין קבצים בספריה זו.",Rename:"הונגרית","Enter new name":"הזן שם חדש",preview:"תצוגה מקדימה",download:"הורד","Paste from clipboard":"להדביק מהלוח","Your browser doesn't support direct access to the clipboard.":"הדפדפן שלך לא תומך גישה ישירה ללוח.","Copy selection":"העתק בחירה",copy:"העתק","Border radius":"רדיוס הגבול","Show all":"הצג את כל",Apply:"החל","Please fill out this field":"נא למלא שדה זה","Please enter a web address":"אנא הזן כתובת אינטרנט",Default:"ברירת המחדל",Circle:"מעגל",Dot:"נקודה",Quadrate:"הריבוע הזה",Find:"למצוא","Find Previous":"מצא את הקודם","Find Next":"חפש את הבא","Insert className":"הכנס את שם הכיתה","Line height":"גובה שורה",Spellchecking:"בדיקת איות"};},function(e){e.exports={"Type something":"Írjon be valamit",Advanced:"Haladó","About Jodit":"Joditról","Jodit Editor":"Jodit Editor","Free Non-commercial Version":"Ingyenes változat","Jodit User's Guide":"Jodit útmutató","contains detailed help for using":"további segítséget tartalmaz","For information about the license, please go to our website:":"További licence információkért látogassa meg a weboldalunkat:","Buy full version":"Teljes verzió megvásárlása","Copyright © XDSoft.net - Chupurnov Valeriy. All rights reserved.":"Copyright © XDSoft.net - Chupurnov Valeriy. Minden jog fenntartva.",Anchor:"Horgony","Open in new tab":"Megnyitás új lapon","Open editor in fullsize":"Megnyitás teljes méretben","Clear Formatting":"Formázás törlése","Fill color or set the text color":"Háttér/szöveg szín",Redo:"Újra",Undo:"Visszavon",Bold:"Félkövér",Italic:"Dőlt","Insert Unordered List":"Pontozott lista","Insert Ordered List":"Számozott lista","Align Center":"Középre zárt","Align Justify":"Sorkizárt","Align Left":"Balra zárt","Align Right":"Jobbra zárt","Insert Horizontal Line":"Vízszintes vonal beszúrása","Insert Image":"Kép beszúrás","Insert file":"Fájl beszúrás","Insert youtube/vimeo video":"Youtube videó beszúrása","Insert link":"Link beszúrás","Font size":"Betűméret","Font family":"Betűtípus","Insert format block":"Formázott blokk beszúrása",Normal:"Normál","Heading 1":"Fejléc 1","Heading 2":"Fejléc 2","Heading 3":"Fejléc 3","Heading 4":"Fejléc 4",Quote:"Idézet",Code:"Kód",Insert:"Beszúr","Insert table":"Táblázat beszúrása","Decrease Indent":"Behúzás csökkentése","Increase Indent":"Behúzás növelése","Select Special Character":"Speciális karakter kiválasztása","Insert Special Character":"Speciális karakter beszúrása","Paint format":"Kép formázása","Change mode":"Nézet váltása",Print:"Nyomtatás",Margins:"Szegélyek",top:"felső",right:"jobb",bottom:"alsó",left:"bal",Styles:"CSS stílusok",Classes:"CSS osztályok",Align:"Igazítás",Right:"Jobbra",Center:"Középre",Left:"Balra","--Not Set--":"Nincs",Src:"Forrás",Title:"Cím",Alternative:"Helyettesítő szöveg",Link:"Link","Open link in new tab":"Link megnyitása új lapon",Image:"Kép",file:"Fájl",Advansed:"További beállítás","Image properties":"Kép tulajdonságai",Cancel:"Mégsem",Ok:"OK","Your code is similar to HTML. Keep as HTML?":"A beillesztett szöveg HTML-nek tűnik. Megtartsuk HTML-ként?","Paste as HTML":"Beszúrás HTML-ként",Keep:"Megtartás",Clean:"Elvetés","Insert as Text":"Beszúrás szövegként","Word Paste Detected":"Word-ből másolt szöveg","The pasted content is coming from a Microsoft Word/Excel document. Do you want to keep the format or clean it up?":"A beillesztett tartalom Microsoft Word/Excel dokumentumból származik. Meg szeretné tartani a formátumát?","Insert only Text":"Csak szöveg beillesztése","File Browser":"Fájl tallózó","Error on load list":"Hiba a lista betöltése közben","Error on load folders":"Hiba a mappák betöltése közben","Are you sure?":"Biztosan ezt szeretné?","Enter Directory name":"Írjon be egy mappanevet","Create directory":"Mappa létrehozása","type name":"írjon be bevet","Drop image":"Húzza ide a képet","Drop file":"Húzza ide a fájlt","or click":"vagy kattintson","Alternative text":"Helyettesítő szöveg",Browse:"Tallóz",Upload:"Feltölt",Background:"Háttér",Text:"Szöveg",Top:"Fent",Middle:"Középen",Bottom:"Lent","Insert column before":"Oszlop beszúrás elé","Insert column after":"Oszlop beszúrás utána","Insert row above":"Sor beszúrás fölé","Insert row below":"Sor beszúrás alá","Delete table":"Táblázat törlése","Delete row":"Sor törlése","Delete column":"Oszlop törlése","Empty cell":"Cella tartalmának törlése",Delete:"Törlés","Strike through":"Áthúzott",Underline:"Aláhúzott",Break:"Szünet","Search for":"Keresés","Replace with":"Csere erre",Replace:"Cserélje ki",Edit:"Szerkeszt","Vertical align":"Függőleges igazítás","Horizontal align":"Vízszintes igazítás",Filter:"Szűrő","Sort by changed":"Rendezés módosítás szerint","Sort by name":"Rendezés név szerint","Sort by size":"Rendezés méret szerint","Add folder":"Mappa hozzáadás","Split vertical":"Függőleges felosztás","Split horizontal":"Vízszintes felosztás",Merge:"Összevonás","Add column":"Oszlop hozzáadás","Add row":"Sor hozzáadás",Border:"Szegély","Embed code":"Beágyazott kód",Update:"Frissít",superscript:"Felső index",subscript:"Alsó index","Cut selection":"Kivágás",Paste:"Beillesztés","Choose Content to Paste":"Válasszon tartalmat a beillesztéshez",Split:"Felosztás","Chars: %d":"Karakterek száma: %d","Words: %d":"Szavak száma: %d",All:"Összes","Select %s":"Kijelöl: %s","Select all":"Összes kijelölése",source:"HTML",bold:"Félkövér",italic:"Dőlt",brush:"Ecset",link:"Link",undo:"Visszavon",redo:"Újra",table:"Táblázat",image:"Kép",eraser:"Törlés",paragraph:"Paragráfus",fontsize:"Betűméret",video:"Videó",font:"Betű",about:"Rólunk",print:"Nyomtat",symbol:"Szimbólum",underline:"Aláhúzott",strikethrough:"Áthúzott",indent:"Behúzás",outdent:"Aussenseiter",fullsize:"Teljes méret",shrink:"Összenyom",copyformat:"Formátum másolás",hr:"Egyenes vonal",ul:"Lista",ol:"Számozott lista",cut:"Kivág",selectall:"Összes kijelölése","Open link":"Link megnyitása","Edit link":"Link szerkesztése","No follow":"Nincs követés",Unlink:"Link leválasztása",Eye:"felülvizsgálat",pencil:"Szerkesztés"," URL":"URL",Reset:"Visszaállít",Save:"Mentés","Save as ...":"Mentés másként...",Resize:"Átméretezés",Crop:"Kivág",Width:"Szélesség",Height:"Magasság","Keep Aspect Ratio":"Képarány megtartása",Yes:"Igen",No:"Nem",Remove:"Eltávolít",Select:"Kijelöl","You can only edit your own images. Download this image on the host?":"Csak a saját képeit tudja szerkeszteni. Letölti ezt a képet?","The image has been successfully uploaded to the host!":"Kép sikeresen feltöltve!",palette:"Palette","There are no files":"Er zijn geen bestanden in deze map.",Rename:"átnevezés","Enter new name":"Adja meg az új nevet",preview:"előnézet",download:"Letöltés","Paste from clipboard":"Illessze be a vágólap","Your browser doesn't support direct access to the clipboard.":"A böngésző nem támogatja a közvetlen hozzáférést biztosít a vágólapra.","Copy selection":"Másolás kiválasztása",copy:"másolás","Border radius":"Határ sugár","Show all":"Összes",Apply:"Alkalmazni","Please fill out this field":"Kérjük, töltse ki ezt a mezőt,","Please enter a web address":"Kérjük, írja be a webcímet",Default:"Alapértelmezett",Circle:"Kör",Dot:"Pont",Quadrate:"Quadrate",Find:"Találni","Find Previous":"Megtalálja Előző","Find Next":"Következő Keresése","Insert className":"Helyezze be az osztály nevét","Line height":"Vonal magassága",Spellchecking:"Helyesírás-ellenőrzés"};},function(e){e.exports={"Type something":"Ketik sesuatu","About Jodit":"Tentang Jodit","Jodit Editor":"Editor Jodit","Free Non-commercial Version":"Versi Bebas Non-komersil","Jodit User's Guide":"Panduan Pengguna Jodit","contains detailed help for using":"mencakup detail bantuan penggunaan","For information about the license, please go to our website:":"Untuk informasi tentang lisensi, silakan kunjungi website:","Buy full version":"Beli versi lengkap","Copyright © XDSoft.net - Chupurnov Valeriy. All rights reserved.":"Hak Cipta © XDSoft.net - Chupurnov Valeriy. Hak cipta dilindungi undang-undang.",Anchor:"Tautan","Open in new tab":"Buka di tab baru","Open editor in fullsize":"Buka editor dalam ukuran penuh","Clear Formatting":"Hapus Pemformatan","Fill color or set the text color":"Isi warna atau atur warna teks",Redo:"Ulangi",Undo:"Batalkan",Bold:"Tebal",Italic:"Miring","Insert Unordered List":"Sisipkan Daftar Tidak Berurut","Insert Ordered List":"Sisipkan Daftar Berurut","Align Center":"Tengah","Align Justify":"Penuh","Align Left":"Kiri","Align Right":"Kanan","Insert Horizontal Line":"Sisipkan Garis Horizontal","Insert Image":"Sisipkan Gambar","Insert file":"Sisipkan Berkas","Insert youtube/vimeo video":"Sisipkan video youtube/vimeo","Insert link":"Sisipkan tautan","Font size":"Ukuran font","Font family":"Keluarga font","Insert format block":"Sisipkan blok format",Normal:"Normal","Heading 1":"Heading 1","Heading 2":"Heading 2","Heading 3":"Heading 3","Heading 4":"Heading 4",Quote:"Kutip",Code:"Kode",Insert:"Sisipkan","Insert table":"Sisipkan tabel","Decrease Indent":"Kurangi Indentasi","Increase Indent":"Tambah Indentasi","Select Special Character":"Pilih Karakter Spesial","Insert Special Character":"Sisipkan Karakter Spesial","Paint format":"Formar warna","Change mode":"Ubah mode",Margins:"Batas",top:"atas",right:"kanan",bottom:"bawah",left:"kiri",Styles:"Gaya",Classes:"Class",Align:"Rata",Right:"Kanan",Center:"Tengah",Left:"Kiri","--Not Set--":"--Tidak diset--",Src:"Src",Title:"Judul",Alternative:"Teks alternatif",Link:"Tautan","Open link in new tab":"Buka tautan di tab baru",Image:"Gambar",file:"berkas",Advanced:"Lanjutan","Image properties":"Properti gambar",Cancel:"Batal",Ok:"Ya","Your code is similar to HTML. Keep as HTML?":"Kode Anda cenderung ke HTML. Biarkan sebagai HTML?","Paste as HTML":"Paste sebagai HTML",Keep:"Jaga",Clean:"Bersih","Insert as Text":"Sisipkan sebagai teks","Insert only Text":"Sisipkan hanya teks","Word Paste Detected":"Terdeteksi paste dari Word","The pasted content is coming from a Microsoft Word/Excel document. Do you want to keep the format or clean it up?":"Konten dipaste dari dokumen Microsoft Word/Excel. Apakah Anda ingin tetap menjaga format atau membersihkannya?","File Browser":"Penjelajah Berkas","Error on load list":"Error ketika memuat list","Error on load folders":"Error ketika memuat folder","Are you sure?":"Apakah Anda yakin?","Enter Directory name":"Masukkan nama Direktori","Create directory":"Buat direktori","type name":"ketik nama","Drop image":"Letakkan gambar","Drop file":"Letakkan berkas","or click":"atau klik","Alternative text":"Teks alternatif",Browse:"Jelajahi",Upload:"Unggah",Background:"Latar Belakang",Text:"Teks",Top:"Atas",Middle:"Tengah",Bottom:"Bawah","Insert column before":"Sisipkan kolom sebelumnya","Insert column after":"Sisipkan kolom setelahnya","Insert row above":"Sisipkan baris di atasnya","Insert row below":"Sisipkan baris di bawahnya","Delete table":"Hapus tabel","Delete row":"Hapus baris","Delete column":"Hapus kolom","Empty cell":"Kosongkan cell",source:"sumber",bold:"tebal",italic:"miring",brush:"sikat",link:"tautan",undo:"batalkan",redo:"ulangi",table:"tabel",image:"gambar",eraser:"penghapus",paragraph:"paragraf",fontsize:"ukuran font",video:"video",font:"font",about:"tentang",print:"cetak",symbol:"simbol",underline:"garis bawah",strikethrough:"coret",indent:"menjorok ke dalam",outdent:"menjorok ke luar",fullsize:"ukuran penuh",shrink:"menyusut",copyformat:"salin format",hr:"hr",ul:"ul",ol:"ol",cut:"potong",selectall:"Pilih semua","Embed code":"Kode embed","Open link":"Buka tautan","Edit link":"Edit tautan","No follow":"No follow",Unlink:"Hapus tautan",Eye:"Mata",pencil:"pensil",Update:"Perbarui"," URL":"URL",Edit:"Edit","Horizontal align":"Perataan horizontal",Filter:"Filter","Sort by changed":"Urutkan berdasarkan perubahan","Sort by name":"Urutkan berdasarkan nama","Sort by size":"Urutkan berdasarkan ukuran","Add folder":"Tambah folder",Reset:"Reset",Save:"Simpan","Save as ...":"Simpan sebagai...",Resize:"Ubah ukuran",Crop:"Crop",Width:"Lebar",Height:"Tinggi","Keep Aspect Ratio":"Jaga aspek rasio",Yes:"Ya",No:"Tidak",Remove:"Copot",Select:"Pilih","Chars: %d":"Karakter: %d","Words: %d":"Kata: %d",All:"Semua","Select %s":"Pilih %s","Select all":"Pilih semua","Vertical align":"Rata vertikal",Split:"Bagi","Split vertical":"Bagi secara vertikal","Split horizontal":"Bagi secara horizontal",Merge:"Gabungkan","Add column":"Tambah kolom","Add row":"tambah baris",Delete:"Hapus",Border:"Bingkai","License: %s":"Lisensi: %s","Strike through":"Coret",Underline:"Garis Bawah",superscript:"Superskrip",subscript:"Subskrip","Cut selection":"Potong pilihan",Break:"Berhenti","Search for":"Mencari","Replace with":"Ganti dengan",Replace:"Mengganti",Paste:"Paste","Choose Content to Paste":"Pilih konten untuk dipaste","You can only edit your own images. Download this image on the host?":"Anda hanya dapat mengedit gambar Anda sendiri. Unduh gambar ini di host?","The image has been successfully uploaded to the host!":"Gambar telah sukses diunggah ke host!",palette:"palet","There are no files":"Tidak ada berkas",Rename:"ganti nama","Enter new name":"Masukkan nama baru",preview:"pratinjau",download:"Unduh","Paste from clipboard":"Paste dari clipboard","Your browser doesn't support direct access to the clipboard.":"Browser anda tidak mendukung akses langsung ke clipboard.","Copy selection":"Copy seleksi",copy:"copy","Border radius":"Border radius","Show all":"Tampilkan semua",Apply:"Menerapkan","Please fill out this field":"Silahkan mengisi kolom ini","Please enter a web address":"Silahkan masukkan alamat web",Default:"Default",Circle:"Lingkaran",Dot:"Dot",Quadrate:"Kuadrat",Find:"Menemukan","Find Previous":"Menemukan Sebelumnya","Find Next":"Menemukan Berikutnya","Insert className":"Masukkan nama kelas","Line height":"Tinggi baris",Spellchecking:"Spellchecking"};},function(e){e.exports={"Type something":"Scrivi qualcosa...",Advanced:"Avanzato","About Jodit":"A proposito di Jodit","Jodit Editor":"Jodit Editor","Jodit User's Guide":"Guida utente di Jodit","contains detailed help for using":"contiene una guida dettagliata per l'uso.","For information about the license, please go to our website:":"Per informazioni sulla licenza, si prega di visitare il nostro sito:","Buy full version":"Acquista la versione completa","Copyright © XDSoft.net - Chupurnov Valeriy. All rights reserved.":"Copyright © XDSoft.net - Chupurnov Valeriy. Alle Rechte vorbehalten.",Anchor:"Ancora","Open in new tab":"Apri in una nuova scheda","Open editor in fullsize":"Apri l'editor a schermo intero","Clear Formatting":"Formato chiaro","Fill color or set the text color":"Riempi colore o lettera",Redo:"Ripristina",Undo:"Annulla",Bold:"Grassetto",Italic:"Corsivo","Insert Unordered List":"Inserisci lista non ordinata","Insert Ordered List":"Inserisci l'elenco ordinato","Align Center":"Allinea Centra","Align Justify":"Allineare Giustificato","Align Left":"Allinea a Sinistra","Align Right":"Allinea a Destra","Insert Horizontal Line":"Inserisci la linea orizzontale","Insert Image":"Inserisci immagine","Insert file":"Inserisci un file","Insert youtube/vimeo video":"Inserisci video Youtube/Vimeo","Insert link":"Inserisci il link","Font size":"Dimensione del carattere","Font family":"Tipo di font","Insert format block":"Inserisci blocco",Normal:"Normale","Heading 1":"Heading 1","Heading 2":"Heading 2","Heading 3":"Heading 3","Heading 4":"Heading 4",Quote:"Citazione",Code:"Codice",Insert:"Inserisci","Insert table":"Inserisci tabella","Decrease Indent":"Riduci il rientro","Increase Indent":"Aumenta il rientro","Select Special Character":"Seleziona una funzione speciale","Insert Special Character":"Inserisci un carattere speciale","Paint format":"Copia formato","Change mode":"Cambia modo",Margins:"Margini",top:"su",right:"destra",bottom:"giù",left:"sinistra",Styles:"Stili CSS",Classes:"Classi CSS",Align:"Allinea",Right:"Destra",Center:"Centro",Left:"Sinistra","--Not Set--":"--Non Impostato--",Src:"Fonte",Title:"Titolo",Alternative:"Testo Alternativo",Link:"Link","Open link in new tab":"Apri il link in una nuova scheda",Image:"Immagine",file:"Archivio",Advansed:"Avanzato","Image properties":"Proprietà dell'immagine",Cancel:"Annulla",Ok:"Accetta","Your code is similar to HTML. Keep as HTML?":"Il codice è simile all'HTML. Mantieni come HTML?","Paste as HTML":"Incolla come HTML?",Keep:"Mantieni",Clean:"Pulisci","Insert as Text":"Inserisci come testo","Word Paste Detected":"Incollato da Word rilevato","The pasted content is coming from a Microsoft Word/Excel document. Do you want to keep the format or clean it up?":"Il contenuto incollato proviene da un documento Microsoft Word / Excel. Vuoi mantenere il formato o pulirlo?","Insert only Text":"Inserisci solo il testo","File Browser":"Cerca il file","Error on load list":"Errore durante il caricamento dell'elenco","Error on load folders":"Errore durante il caricamento delle cartelle","Are you sure?":"Sei sicuro?","Enter Directory name":"Inserisci il nome della cartella","Create directory":"Crea cartella","type name":"Entre el nombre","Drop image":"Rilascia l'immagine","Drop file":"Rilascia file","or click":"o click","Alternative text":"Testo alternativo",Browse:"Sfoglia",Upload:"Carica",Background:"Sfondo",Text:"Testo",Top:"Su",Middle:"Centro",Bottom:"Sotto","Insert column before":"Inserisci prima la colonna","Insert column after":"Inserisci colonna dopo","Insert row above":"Inserisci la riga sopra","Insert row below":"Inserisci la riga sotto","Delete table":"Elimina tabella","Delete row":"Elimina riga","Delete column":"Elimina colonna","Empty cell":"Cella vuota",Delete:"Cancella","Strike through":"Barrato",Underline:"Sottolineato",Break:"Pausa","Search for":"Cerca","Replace with":"Sostituisci con",Replace:"Sostituire",Edit:"Modifica","Vertical align":"Allineamento verticala","Horizontal align":"Allineamento orizzontale",Filter:"Filtro","Sort by changed":"Ordina per data di modifica","Sort by name":"Ordina per nome","Sort by size":"Ordina per dimensione","Add folder":"Aggiungi cartella",Split:"Dividere","Split vertical":"Dividere verticalmente","Split horizontal":"Diviso orizzontale",Merge:"Fondi","Add column":"Aggiungi colonna","Add row":"Aggiungi riga",Border:"Bordo","Embed code":"Includi codice",Update:"Aggiornare",superscript:"indice",subscript:"deponente","Cut selection":"Taglia la selezione",Paste:"Incolla","Choose Content to Paste":"Seleziona il contenuto da incollare","Chars: %d":"Caratteri: %d","Words: %d":"Parole: %d",All:"Tutto","Select %s":"Seleziona: %s","Select all":"Seleziona tutto",source:"HTML",bold:"Grassetto",italic:"Corsivo",brush:"Pennello",link:"Link",undo:"Annulla",redo:"Ripristina",table:"Tabella",image:"Immagine",eraser:"Gomma",paragraph:"Paragrafo",fontsize:"Dimensione del carattere",video:"Video",font:"Font",about:"Approposito di",print:"Stampa",symbol:"Simbolo",underline:"Sottolineato",strikethrough:"Barrato",indent:"trattino",outdent:"annulla rientro",fullsize:"A grandezza normale",shrink:"comprimere",copyformat:"Copia il formato",hr:"linea orizzontale",ul:"lista non ordinata",ol:"lista ordinata",cut:"Taglia",selectall:"Seleziona tutto","Open link":"Apri link","Edit link":"Modifica link","No follow":"Non seguire",Unlink:"Togli link",Eye:"Recensione",pencil:"Per modificare"," URL":" URL",Reset:"Reset",Save:"Salva","Save as ...":"Salva con nome...",Resize:"Ridimensiona",Crop:"Tagliare",Width:"Larghezza",Height:"Altezza","Keep Aspect Ratio":"Mantenere le proporzioni",Yes:"Si",No:"No",Remove:"Rimuovere",Select:"Seleziona","You can only edit your own images. Download this image on the host?":"Puoi modificare solo le tue immagini. Scarica questa immagine sul server?","The image has been successfully uploaded to the host!":"L'immagine è stata caricata con successo sul server!",palette:"tavolozza","There are no files":"Non ci sono file in questa directory.",Rename:"ungherese","Enter new name":"Inserisci un nuovo nome",preview:"anteprima",download:"Scaricare","Paste from clipboard":"Incolla dagli appunti","Your browser doesn't support direct access to the clipboard.":"Il tuo browser non supporta l'accesso diretto agli appunti.","Copy selection":"Selezione di copia",copy:"copia","Border radius":"Border radius","Show all":"Mostra tutti",Apply:"Applicare","Please fill out this field":"Si prega di compilare questo campo","Please enter a web address":"Si prega di inserire un indirizzo web",Default:"Di Default",Circle:"Cerchio",Dot:"Dot",Quadrate:"Quadrate",Find:"Trovare","Find Previous":"Trova Precedente","Find Next":"Trova Successivo","Insert className":"Inserisci il nome della classe","Line height":"Altezza linea",Spellchecking:"Controllo ortografico"};},function(e){e.exports={"Type something":"なにかタイプしてください",Advanced:"高度な設定","About Jodit":"Joditについて","Jodit Editor":"Jodit Editor","Jodit User's Guide":"Jodit ユーザーズ・ガイド","contains detailed help for using":"詳しい使い方","For information about the license, please go to our website:":"ライセンス詳細についてはJodit Webサイトを確認ください:","Buy full version":"フルバージョンを購入","Copyright © XDSoft.net - Chupurnov Valeriy. All rights reserved.":"Copyright © XDSoft.net - Chupurnov Valeriy. All rights reserved.",Anchor:"Anchor","Open in new tab":"新しいタブで開く","Open editor in fullsize":"エディターのサイズ(フル/ノーマル)","Clear Formatting":"書式をクリア","Fill color or set the text color":"テキストの色",Redo:"やり直し",Undo:"元に戻す",Bold:"太字",Italic:"斜体","Insert Unordered List":"箇条書き","Insert Ordered List":"番号付きリスト","Align Center":"中央揃え","Align Justify":"両端揃え","Align Left":"左揃え","Align Right":"右揃え","Insert Horizontal Line":"区切り線を挿入","Insert Image":"画像を挿入","Insert file":"ファイルを挿入","Insert youtube/vimeo video":"Youtube/Vimeo 動画","Insert link":"リンクを挿入","Font size":"フォントサイズ","Font family":"フォント","Insert format block":"テキストのスタイル",Normal:"指定なし","Heading 1":"タイトル1","Heading 2":"タイトル2","Heading 3":"タイトル3","Heading 4":"タイトル4",Quote:"引用",Code:"コード",Insert:"挿入","Insert table":"表を挿入","Decrease Indent":"インデント減","Increase Indent":"インデント増","Select Special Character":"特殊文字を選択","Insert Special Character":"特殊文字を挿入","Paint format":"書式を貼付け","Change mode":"編集モード切替え",Margins:"マージン",top:"上",right:"右",bottom:"下",left:"左",Styles:"スタイル",Classes:"クラス",Align:"配置",Right:"右寄せ",Center:"中央寄せ",Left:"左寄せ","--Not Set--":"指定なし",Src:"ソース",Title:"タイトル",Alternative:"代替テキスト",Link:"リンク","Open link in new tab":"新しいタブで開く",Image:"画像",file:"ファイル",Advansed:"Advansed","Image properties":"画像のプロパティー",Cancel:"キャンセル",Ok:"確定","Your code is similar to HTML. Keep as HTML?":"HTMLコードを保持しますか?","Paste as HTML":"HTMLで貼付け",Keep:"HTMLを保持",Clean:"Clean","Insert as Text":"HTMLをテキストにする","Word Paste Detected":"Word Paste Detected","The pasted content is coming from a Microsoft Word/Excel document. Do you want to keep the format or clean it up?":"The pasted content is coming from a Microsoft Word/Excel document. Do you want to keep the format or clean it up?","Insert only Text":"テキストだけ","File Browser":"File Browser","Error on load list":"Error on load list","Error on load folders":"Error on load folders","Are you sure?":"Are you sure?","Enter Directory name":"Enter Directory name","Create directory":"Create directory","type name":"type name","Drop image":"ここに画像をドロップ","Drop file":"ここにファイルをドロップ","or click":"or クリック","Alternative text":"代替テキスト",Browse:"ブラウズ",Upload:"アップロード",Background:"背景",Text:"文字",Top:"上",Middle:"中央",Bottom:"下","Insert column before":"左に列を挿入","Insert column after":"右に列を挿入","Insert row above":"上に行を挿入","Insert row below":"下に行を挿入","Delete table":"表を削除","Delete row":"行を削除","Delete column":"列を削除","Empty cell":"セルを空にする","Chars: %d":"文字数: %d","Words: %d":"単語数: %d","Strike through":"取り消し線",Underline:"下線",superscript:"上付き文字",subscript:"下付き文字","Cut selection":"切り取り","Select all":"すべて選択",Break:"Pause","Search for":"検索","Replace with":"置換",Replace:"交換",Paste:"貼付け","Choose Content to Paste":"選択した内容を貼付け",All:"全部",source:"source",bold:"bold",italic:"italic",brush:"brush",link:"link",undo:"undo",redo:"redo",table:"table",image:"image",eraser:"eraser",paragraph:"paragraph",fontsize:"fontsize",video:"video",font:"font",about:"about",print:"print",symbol:"symbol",underline:"underline",strikethrough:"strikethrough",indent:"indent",outdent:"outdent",fullsize:"fullsize",shrink:"shrink",copyformat:"copyformat",hr:"分割線",ul:"箇条書き",ol:"番号付きリスト",cut:"切り取り",selectall:"すべて選択","Open link":"リンクを開く","Edit link":"リンクを編集","No follow":"No follow",Unlink:"リンク解除",Eye:"サイトを確認"," URL":"URL",Reset:"リセット",Save:"保存","Save as ...":"Save as ...",Resize:"リサイズ",Crop:"Crop",Width:"幅",Height:"高さ","Keep Aspect Ratio":"縦横比を保持",Yes:"はい",No:"いいえ",Remove:"移除",Select:"選択","Select %s":"選択: %s",Update:"更新","Vertical align":"垂直方向の配置",Merge:"セルの結合","Add column":"列を追加","Add row":"行を追加",Border:"境界線","Embed code":"埋め込みコード",Delete:"削除",Edit:"編集","Horizontal align":"水平方向の配置",Filter:"Filter","Sort by changed":"Sort by changed","Sort by name":"Sort by name","Sort by size":"Sort by size","Add folder":"Add folder",Split:"分割","Split vertical":"セルの分割(垂直方向)","Split horizontal":"セルの分割(水平方向)","You can only edit your own images. Download this image on the host?":"You can only edit your own images. Download this image on the host?","The image has been successfully uploaded to the host!":"The image has been successfully uploaded to the host!",palette:"パレット",pencil:"鉛筆","There are no files":"There are no files",Rename:"Rename","Enter new name":"Enter new name",preview:"プレビュー",download:"ダウンロード","Paste from clipboard":"貼り付け","Your browser doesn't support direct access to the clipboard.":"お使いのブラウザはクリップボードを使用できません","Copy selection":"コピー",copy:"copy","Border radius":"角の丸み","Show all":"全て表示",Apply:"適用","Please fill out this field":"まだこの分野","Please enter a web address":"を入力してくださいウェブアドレス",Default:"デフォルト",Circle:"白丸",Dot:"黒丸",Quadrate:"四角",Find:"見","Find Previous":"探前","Find Next":"由来","Lower Alpha":"英小文字","Lower Greek":"ギリシャ文字","Lower Roman":"ローマ数字小文字","Upper Alpha":"英大文字","Upper Roman":"ローマ数字大文字","Insert className":"クラス名を挿入","Line height":"ラインの高さ",Spellchecking:"スペルチェック"};},function(e){e.exports={"Type something":"무엇이든 입력하세요","About Jodit":"Jodit에 대하여","Jodit Editor":"Jodit Editor","Jodit User's Guide":"Jodit 사용자 안내서","contains detailed help for using":"자세한 도움말이 들어있어요","For information about the license, please go to our website:":"라이센스에 관해서는 Jodit 웹 사이트를 방문해주세요:","Buy full version":"풀 버전 구입하기","Copyright © XDSoft.net - Chupurnov Valeriy. All rights reserved.":"© XDSoft.net - Chupurnov Valeriy. 에게 저작권과 모든 권리가 있습니다.",Anchor:"Anchor","Open in new tab":"새 탭에서 열기","Open editor in fullsize":"전체 크기로 보기","Clear Formatting":"서식 지우기","Fill color or set the text color":"글씨 색상",Redo:"재실행",Undo:"실행 취소",Bold:"굵게",Italic:"기울임","Insert Unordered List":"글머리 목록","Insert Ordered List":"번호 목록","Align Center":"가운데 정렬","Align Justify":"양쪽 정렬","Align Left":"왼쪽 정렬","Align Right":"오른쪽 정렬","Insert Horizontal Line":"수평 구분선 넣기","Insert Image":"이미지 넣기","Insert file":"파일 넣기","Insert youtube/vimeo video":"Youtube/Vimeo 동영상","Insert link":"링크 넣기","Font size":"글꼴 크기","Font family":"글꼴","Insert format block":"블록 요소 넣기",Normal:"일반 텍스트","Heading 1":"제목 1","Heading 2":"제목 2","Heading 3":"제목 3","Heading 4":"제목 4",Quote:"인용",Code:"코드",Insert:"붙여 넣기","Insert table":"테이블","Decrease Indent":"들여쓰기 감소","Increase Indent":"들여쓰기 증가","Select Special Character":"특수문자 선택","Insert Special Character":"특수문자 입력","Paint format":"페인트 형식","Change mode":"편집모드 변경",Margins:"마진",top:"위",right:"오른쪽",bottom:"아래",left:"왼쪽",Styles:"스타일",Classes:"클래스",Align:"정렬",Right:"오른쪽으로",Center:"가운데로",Left:"왼쪽으로","--Not Set--":"--지정 안 함--",Src:"경로(src)",Title:"제목",Alternative:"대체 텍스트(alt)",Link:"링크","Open link in new tab":"새 탭에서 열기",file:"파일",Advanced:"고급","Image properties":"이미지 속성",Cancel:"취소",Ok:"확인","Your code is similar to HTML. Keep as HTML?":"HTML 코드로 감지했어요. 코드인채로 붙여넣을까요?","Paste as HTML":"HTML로 붙여넣기",Keep:"원본 유지",Clean:"지우기","Insert as Text":"텍스트로 넣기","Insert only Text":"텍스트만 넣기","Word Paste Detected":"Word 붙여넣기 감지","The pasted content is coming from a Microsoft Word/Excel document. Do you want to keep the format or clean it up?":"Microsoft Word/Excel 문서로 감지했어요. 서식을 유지한채로 붙여넣을까요?","File Browser":"파일 탐색기","Error on load list":"목록 불러오기 에러","Error on load folders":"폴더 불러오기","Are you sure?":"정말 진행할까요?","Enter Directory name":"디렉토리 이름 입력","Create directory":"디렉토리 생성","type name":"이름 입력","Drop image":"이미지 드래그","Drop file":"파일 드래그","or click":"혹은 클릭","Alternative text":"대체 텍스트",Browse:"탐색",Upload:"업로드",Background:"배경",Text:"텍스트",Top:"위",Middle:"중앙",Bottom:"아래","Insert column before":"이전 열에 삽입","Insert column after":"다음 열에 삽입","Insert row above":"위 행에 삽입","Insert row below":"아래 행에 삽입","Delete table":"테이블 삭제","Delete row":"행 삭제","Delete column":"열 삭제","Empty cell":"빈 셀",source:"HTML 소스",bold:"볼드",italic:"이탤릭",brush:"브러시",link:"링크",undo:"실행 취소",redo:"재실행",table:"테이블",image:"이미지",eraser:"지우개",paragraph:"문단",fontsize:"글꼴 크기",video:"비디오",font:"글꼴",about:"편집기 정보",print:"프린트",symbol:"기호",underline:"밑줄",strikethrough:"취소선",indent:"들여쓰기",outdent:"내어쓰기",fullsize:"전체 화면",shrink:"일반 화면",copyformat:"복사 형식",hr:"구분선",ul:"글머리 목록",ol:"번호 목록",cut:"잘라내기",selectall:"모두 선택","Embed code":"Embed 코드","Open link":"링크 열기","Edit link":"링크 편집","No follow":"No follow",Unlink:"링크 제거",Eye:"사이트 확인",pencil:"연필",Update:"갱신"," URL":"URL",Edit:"편집","Horizontal align":"수평 정렬",Filter:"필터","Sort by changed":"변경일 정렬","Sort by name":"이름 정렬","Sort by size":"크기 정렬","Add folder":"새 폴더",Reset:"초기화",Save:"저장","Save as ...":"새로 저장하기 ...",Resize:"리사이즈",Crop:"크롭",Width:"가로 길이",Height:"세로 높이","Keep Aspect Ratio":"비율 유지하기",Yes:"네",No:"아니오",Remove:"제거",Select:"선택","Chars: %d":"문자수: %d","Words: %d":"단어수: %d",All:"모두","Select all":"모두 선택","Select %s":"선택: %s","Vertical align":"수직 정렬",Split:"분할","Split vertical":"세로 셀 분할","Split horizontal":"가로 셀 분할",Merge:"셀 병합","Add column":"열 추가","Add row":"행 추가",Delete:"삭제",Border:"외곽선","License: %s":"라이센스: %s","Strike through":"취소선",Underline:"밑줄",superscript:"윗첨자",subscript:"아래첨자","Cut selection":"선택 잘라내기",Break:"구분자","Search for":"검색","Replace with":"대체하기",Replace:"대체",Paste:"붙여넣기","Choose Content to Paste":"붙여넣을 내용 선택","You can only edit your own images. Download this image on the host?":"외부 이미지는 편집할 수 없어요. 외부 이미지를 다운로드 할까요?","The image has been successfully uploaded to the host!":"이미지를 무사히 업로드 했어요!",palette:"팔레트","There are no files":"파일이 없어요",Rename:"이름 변경","Enter new name":"새 이름 입력",preview:"미리보기",download:"다운로드","Paste from clipboard":"클립보드 붙여넣기","Your browser doesn't support direct access to the clipboard.":"사용중인 브라우저가 클립보드 접근을 지원하지 않아요.","Copy selection":"선택 복사",copy:"복사","Border radius":"둥근 테두리","Show all":"모두 보기",Apply:"적용","Please fill out this field":"이 항목을 입력해주세요!","Please enter a web address":"웹 URL을 입력해주세요.",Default:"기본",Circle:"원",Dot:"점",Quadrate:"정사각형",Find:"찾기","Find Previous":"이전 찾기","Find Next":"다음 찾기","Insert className":"className 입력","Line height":"선 높이",Spellchecking:"맞춤법 검사"};},function(e){e.exports={"Type something":"Begin met typen..",Advanced:"Geavanceerd","About Jodit":"Over Jodit","Jodit Editor":"Jodit Editor","Free Non-commercial Version":"Gratis niet-commerciële versie","Jodit User's Guide":"Jodit gebruikershandleiding","contains detailed help for using":"bevat gedetailleerde informatie voor gebruik.","For information about the license, please go to our website:":"Voor informatie over de licentie, ga naar onze website:","Buy full version":"Volledige versie kopen","Copyright © XDSoft.net - Chupurnov Valeriy. All rights reserved.":"Copyright © XDSoft.net - Chupurnov Valeriy. Alle rechten voorbehouden.",Anchor:"Anker","Open in new tab":"Open in nieuwe tab","Open editor in fullsize":"Editor in volledig scherm openen","Clear Formatting":"Opmaak verwijderen","Fill color or set the text color":"Vulkleur of tekstkleur aanpassen",Redo:"Opnieuw",Undo:"Ongedaan maken",Bold:"Vet",Italic:"Cursief","Insert Unordered List":"Geordende list invoegen","Insert Ordered List":"Ongeordende lijst invoegen","Align Center":"Centreren","Align Justify":"Uitlijnen op volledige breedte","Align Left":"Links uitlijnen","Align Right":"Rechts uitlijnen","Insert Horizontal Line":"Horizontale lijn invoegen","Insert Image":"Afbeelding invoegen","Insert file":"Bestand invoegen","Insert youtube/vimeo video":"Youtube/Vimeo video invoegen","Insert link":"Link toevoegen","Font size":"Tekstgrootte","Font family":"Lettertype","Insert format block":"Format blok invoegen",Normal:"Normaal","Heading 1":"Koptekst 1","Heading 2":"Koptekst 2","Heading 3":"Koptekst 3","Heading 4":"Koptekst 4",Quote:"Citaat",Code:"Code",Insert:"Invoegen","Insert table":"Tabel invoegen","Decrease Indent":"Inspringing verkleinen","Increase Indent":"Inspringing vergroten","Select Special Character":"Symbool selecteren","Insert Special Character":"Symbool invoegen","Paint format":"Opmaak kopieren","Change mode":"Modus veranderen",Margins:"Marges",top:"Boven",right:"Rechts",bottom:"Onder",left:"Links",Styles:"CSS styles",Classes:"CSS classes",Align:"Uitlijning",Right:"Rechts",Center:"Gecentreerd",Left:"Links","--Not Set--":"--Leeg--",Src:"Src",Title:"Titel",Alternative:"Alternatieve tekst",Link:"Link","Open link in new tab":"Link in nieuwe tab openen",Image:"Afbeelding",file:"Bestand",Advansed:"Geavanceerd","Image properties":"Afbeeldingseigenschappen",Cancel:"Annuleren",Ok:"OK","Your code is similar to HTML. Keep as HTML?":"Deze code lijkt op HTML. Als HTML behouden?","Paste as HTML":"Invoegen als HTML",Keep:"Origineel behouden",Clean:"Opschonen","Insert as Text":"Als tekst invoegen","Word Paste Detected":"Word-tekst gedetecteerd","The pasted content is coming from a Microsoft Word/Excel document. Do you want to keep the format or clean it up?":"De geplakte tekst is afkomstig van een Microsoft Word/Excel document. Wil je de opmaak behouden of opschonen?","Insert only Text":"Als onopgemaakte tekst invoegen","File Browser":"Bestandsbrowser","Error on load list":"Fout bij het laden van de lijst","Error on load folders":"Fout bij het laden van de mappenlijst","Are you sure?":"Weet je het zeker?","Enter Directory name":"Geef de map een naam","Create directory":"Map aanmaken","type name":"Type naam","Drop image":"Sleep hier een afbeelding naartoe","Drop file":"Sleep hier een bestand naartoe","or click":"of klik","Alternative text":"Alternatieve tekst",Browse:"Bladeren",Upload:"Uploaden",Background:"Achtergrond",Text:"Tekst",Top:"Boven",Middle:"Midden",Bottom:"Onder","Insert column before":"Kolom invoegen (voor)","Insert column after":"Kolom invoegen (na)","Insert row above":"Rij invoegen (boven)","Insert row below":"Rij invoegen (onder)","Delete table":"Tabel verwijderen","Delete row":"Rij verwijderen","Delete column":"Kolom verwijderen","Empty cell":"Cel leegmaken",Delete:"Verwijderen","Strike through":"Doorstrepen",Underline:"Onderstrepen",Break:"Enter","Search for":"Zoek naar","Replace with":"Vervangen door",Replace:"Vervangen",Edit:"Bewerken","Vertical align":"Verticaal uitlijnen","Horizontal align":"Horizontaal uitlijnen",Filter:"Filteren","Sort by changed":"Sorteren op wijzigingsdatum","Sort by name":"Sorteren op naam","Sort by size":"Sorteren op grootte","Add folder":"Map toevoegen",Split:"Splitsen","Split vertical":"Verticaal splitsen","Split horizontal":"Horizontaal splitsen",Merge:"Samenvoegen","Add column":"Kolom toevoegen","Add row":"Rij toevoegen",Border:"Rand","Embed code":"Embed code",Update:"Updaten",superscript:"Superscript",subscript:"Subscript","Cut selection":"Selectie knippen",Paste:"Plakken","Choose Content to Paste":"Kies content om te plakken","Chars: %d":"Tekens: %d","Words: %d":"Woorden: %d",All:"Alles","Select %s":"Selecteer: %s","Select all":"Selecteer alles",source:"Broncode",bold:"vet",italic:"cursief",brush:"kwast",link:"link",undo:"ongedaan maken",redo:"opnieuw",table:"tabel",image:"afbeelding",eraser:"gum",paragraph:"paragraaf",fontsize:"lettergrootte",video:"video",font:"lettertype",about:"over",print:"afdrukken",symbol:"symbool",underline:"onderstreept",strikethrough:"doorgestreept",indent:"inspringen",outdent:"minder inspringen",fullsize:"volledige grootte",shrink:"kleiner maken",copyformat:"opmaak kopiëren",hr:"horizontale lijn",ul:"lijst",ol:"genummerde lijst",cut:"knip",selectall:"alles selecteren","Open link":"link openen","Edit link":"link aanpassen","No follow":"niet volgen",Unlink:"link verwijderen",Eye:"Recensie",pencil:"Om te bewerken"," URL":" URL",Reset:"Herstellen",Save:"Opslaan","Save as ...":"Opslaan als ...",Resize:"Grootte aanpassen",Crop:"Bijknippen",Width:"Breedte",Height:"Hoogte","Keep Aspect Ratio":"Verhouding behouden",Yes:"Ja",No:"Nee",Remove:"Verwijderen",Select:"Selecteren","You can only edit your own images. Download this image on the host?":"Je kunt alleen je eigen afbeeldingen aanpassen. Deze afbeelding downloaden?","The image has been successfully uploaded to the host!":"De afbeelding is succesvol geüploadet!",palette:"Palette","There are no files":"Er zijn geen bestanden in deze map.",Rename:"Hongaars","Enter new name":"Voer een nieuwe naam in",preview:"voorvertoning",download:"Download","Paste from clipboard":"Plakken van klembord","Your browser doesn't support direct access to the clipboard.":"Uw browser ondersteunt geen directe toegang tot het klembord.","Copy selection":"Selectie kopiëren",copy:"kopiëren","Border radius":"Border radius","Show all":"Toon alle",Apply:"Toepassing","Please fill out this field":"Vul dit veld","Please enter a web address":"Voer een webadres",Default:"Standaard",Circle:"Cirkel",Dot:"Dot",Quadrate:"Quadrate",Find:"Zoeken","Find Previous":"Vorige Zoeken","Find Next":"Volgende Zoeken","Insert className":"Voeg de klassenaam in","Line height":"Lijnhoogte",Spellchecking:"Spellingcontrole"};},function(e){e.exports={"Type something":"Napisz coś",Advanced:"Zaawansowane","About Jodit":"O Jodit","Jodit Editor":"Edytor Jodit","Jodit User's Guide":"Instrukcja Jodit","contains detailed help for using":"zawiera szczegółowe informacje dotyczące użytkowania.","For information about the license, please go to our website:":"Odwiedź naszą stronę, aby uzyskać więcej informacji na temat licencji:","Buy full version":"Zakup pełnej wersji","Copyright © XDSoft.net - Chupurnov Valeriy. All rights reserved.":"Copyright © XDSoft.net - Chupurnov Valeriy. Wszystkie prawa zastrzeżone.",Anchor:"Kotwica","Open in new tab":"Otwórz w nowej zakładce","Open editor in fullsize":"Otwórz edytor w pełnym rozmiarze","Clear Formatting":"Wyczyść formatowanie","Fill color or set the text color":"Kolor wypełnienia lub ustaw kolor tekstu",Redo:"Ponów",Undo:"Cofnij",Bold:"Pogrubienie",Italic:"Kursywa","Insert Unordered List":"Wstaw listę wypunktowaną","Insert Ordered List":"Wstaw listę numeryczną","Align Center":"Wyśrodkuj","Align Justify":"Wyjustuj","Align Left":"Wyrównaj do lewej","Align Right":"Wyrównaj do prawej","Insert Horizontal Line":"Wstaw linię poziomą","Insert Image":"Wstaw grafikę","Insert file":"Wstaw plik","Insert youtube/vimeo video":"Wstaw film Youtube/vimeo","Insert link":"Wstaw link","Font size":"Rozmiar tekstu","Font family":"Krój czcionki","Insert format block":"Wstaw formatowanie",Normal:"Normalne","Heading 1":"Nagłówek 1","Heading 2":"Nagłówek 2","Heading 3":"Nagłówek 3","Heading 4":"Nagłówek 4",Quote:"Cytat",Code:"Kod",Insert:"Wstaw","Insert table":"Wstaw tabelę","Decrease Indent":"Zmniejsz wcięcie","Increase Indent":"Zwiększ wcięcie","Select Special Character":"Wybierz znak specjalny","Insert Special Character":"Wstaw znak specjalny","Paint format":"Malarz formatów","Change mode":"Zmień tryb",Margins:"Marginesy",top:"Górny",right:"Prawy",bottom:"Dolny",left:"Levy",Styles:"Style CSS",Classes:"Klasy CSS",Align:"Wyrównanie",Right:"Prawa",Center:"środek",Left:"Lewa","--Not Set--":"brak",Src:"Źródło",Title:"Tytuł",Alternative:"Tekst alternatywny",Link:"Link","Open link in new tab":"Otwórz w nowej zakładce",Image:"Grafika",file:"Plik",Advansed:"Zaawansowne","Image properties":"Właściwości grafiki",Cancel:"Anuluj",Ok:"OK","Your code is similar to HTML. Keep as HTML?":"Twój kod wygląda jak HTML. Zachować HTML?","Paste as HTML":"Wkleić jako HTML?",Keep:"Oryginalny tekst",Clean:"Wyczyść","Insert as Text":"Wstaw jako tekst","Word Paste Detected":"Wykryto tekst w formacie Word","The pasted content is coming from a Microsoft Word/Excel document. Do you want to keep the format or clean it up?":"Wklejany tekst pochodzi z dokumentu Microsoft Word/Excel. Chcesz zachować ten format czy wyczyścić go? ","Insert only Text":"Wstaw tylko treść","File Browser":"Przeglądarka plików","Error on load list":"Błąd ładowania listy plików","Error on load folders":"Błąd ładowania folderów","Are you sure?":"Czy jesteś pewien?","Enter Directory name":"Wprowadź nazwę folderu","Create directory":"Utwórz folder","type name":"wprowadź nazwę","Drop image":"Upuść plik graficzny","Drop file":"Upuść plik","or click":"lub kliknij tu","Alternative text":"Tekst alternatywny",Browse:"Przeglądaj",Upload:"Wczytaj",Background:"Tło",Text:"Treść",Top:"Góra",Middle:"Środek",Bottom:"Dół","Insert column before":"Wstaw kolumnę przed","Insert column after":"Wstaw kolumnę po","Insert row above":"Wstaw wiersz przed","Insert row below":"Wstaw wiersz po","Delete table":"Usuń tabelę","Delete row":"Usuń wiersz","Delete column":"Usuń kolumnę","Empty cell":"Wyczyść komórkę",Delete:"Usuń","Strike through":"Przekreślenie",Underline:"Podkreślenie",Break:"Przerwa","Search for":"Szukaj","Replace with":"Zamień na",Replace:"Wymienić",Edit:"Edytuj","Vertical align":"Wyrównywanie w pionie","Horizontal align":"Wyrównywanie w poziomie",Filter:"Filtruj","Sort by changed":"Sortuj wg zmiany","Sort by name":"Sortuj wg nazwy","Sort by size":"Sortuj wg rozmiaru","Add folder":"Dodaj folder","Split vertical":"Podziel w pionie","Split horizontal":"Podziel w poziomie",Split:"Podziel",Merge:"Scal","Add column":"Dodaj kolumnę","Add row":"Dodaj wiersz",Border:"Obramowanie","Embed code":"Wstaw kod",Update:"Aktualizuj",superscript:"indeks górny",subscript:"index dolny","Cut selection":"Wytnij zaznaczenie",Paste:"Wklej","Choose Content to Paste":"Wybierz zawartość do wklejenia","Chars: %d":"Znaki: %d","Words: %d":"Słowa: %d",All:"Wszystko","Select %s":"Wybierz: %s","Select all":"Wybierz wszystko",source:"HTML",bold:"pogrubienie",italic:"kursywa",brush:"pędzel",link:"link",undo:"cofnij",redo:"ponów",table:"tabela",image:"grafika",eraser:"wyczyść",paragraph:"akapit",fontsize:"rozmiar czcionki",video:"wideo",font:"czcionka",about:"O programie",print:"drukuj",symbol:"symbol",underline:"podkreślenie",strikethrough:"przekreślenie",indent:"wcięcie",outdent:"wycięcie",fullsize:"pełen rozmiar",shrink:"przytnij",copyformat:"format kopii",hr:"linia pozioma",ul:"lista",ol:"lista numerowana",cut:"wytnij",selectall:"zaznacz wszystko","Open link":"otwórz link","Edit link":"edytuj link","No follow":"Atrybut no-follow",Unlink:"Usuń link",Eye:"szukaj",pencil:"edytuj"," URL":"URL",Reset:"wyczyść",Save:"zapisz","Save as ...":"zapisz jako",Resize:"Zmień rozmiar",Crop:"Przytnij",Width:"Szerokość",Height:"Wysokość","Keep Aspect Ratio":"Zachowaj proporcje",Yes:"Tak",No:"Nie",Remove:"Usuń",Select:"Wybierz","You can only edit your own images. Download this image on the host?":"Możesz edytować tylko swoje grafiki. Czy chcesz pobrać tą grafikę?","The image has been successfully uploaded to the host!":"Grafika została pomyślnienie dodana na serwer",palette:"Paleta","There are no files":"Brak plików.",Rename:"zmień nazwę","Enter new name":"Wprowadź nową nazwę",preview:"podgląd",download:"pobierz","Paste from clipboard":"Wklej ze schowka","Your browser doesn't support direct access to the clipboard.":"Twoja przeglądarka nie obsługuje schowka","Copy selection":"Kopiuj zaznaczenie",copy:"kopiuj","Border radius":"Zaokrąglenie krawędzi","Show all":"Pokaż wszystkie",Apply:"Zastosuj","Please fill out this field":"Proszę wypełnić to pole","Please enter a web address":"Proszę, wpisz adres sieci web",Default:"Domyślnie",Circle:"Koło",Dot:"Punkt",Quadrate:"Kwadrat",Find:"Znaleźć","Find Previous":"Znaleźć Poprzednie","Find Next":"Znajdź Dalej","Insert className":"Wstaw nazwę zajęć","Line height":"Wysokość linii",Spellchecking:"Sprawdzanie pisowni"};},function(e){e.exports={"Type something":"Escreva algo...",Advanced:"Avançado","About Jodit":"Sobre o Jodit","Jodit Editor":"Editor Jodit","Jodit User's Guide":"Guia de usuário Jodit","contains detailed help for using":"contém ajuda detalhada para o uso.","For information about the license, please go to our website:":"Para informação sobre a licença, por favor visite nosso site:","Buy full version":"Compre a versão completa","Copyright © XDSoft.net - Chupurnov Valeriy. All rights reserved.":"Copyright © XDSoft.net - Chupurnov Valeriy. Todos os direitos reservados.",Anchor:"Link","Open in new tab":"Abrir em nova aba","Open editor in fullsize":"Abrir editor em tela cheia","Clear Formatting":"Limpar formatação","Fill color or set the text color":"Cor de preenchimento ou cor do texto",Redo:"Refazer",Undo:"Desfazer",Bold:"Negrito",Italic:"Itálico","Insert Unordered List":"Inserir lista não ordenada","Insert Ordered List":"Inserir lista ordenada","Align Center":"Centralizar","Align Justify":"Justificar","Align Left":"Alinhar à Esquerda","Align Right":"Alinhar à Direita","Insert Horizontal Line":"Inserir linha horizontal","Insert Image":"Inserir imagem","Insert file":"Inserir arquivo","Insert youtube/vimeo video":"Inserir vídeo do Youtube/vimeo","Insert link":"Inserir link","Font size":"Tamanho da letra","Font family":"Fonte","Insert format block":"Inserir bloco",Normal:"Normal","Heading 1":"Cabeçalho 1","Heading 2":"Cabeçalho 2","Heading 3":"Cabeçalho 3","Heading 4":"Cabeçalho 4",Quote:"Citação",Code:"Código",Insert:"Inserir","Insert table":"Inserir tabela","Decrease Indent":"Diminuir recuo","Increase Indent":"Aumentar recuo","Select Special Character":"Selecionar caractere especial","Insert Special Character":"Inserir caractere especial","Paint format":"Copiar formato","Change mode":"Mudar modo",Margins:"Margens",top:"cima",right:"direta",bottom:"baixo",left:"esquerda",Styles:"Estilos CSS",Classes:"Classes CSS",Align:"Alinhamento",Right:"Direita",Center:"Centro",Left:"Esquerda","--Not Set--":"--Não Estabelecido--",Src:"Fonte",Title:"Título",Alternative:"Texto Alternativo",Link:"Link","Open link in new tab":"Abrir link em nova aba",Image:"Imagem",file:"Arquivo",Advansed:"Avançado","Image properties":"Propriedades da imagem",Cancel:"Cancelar",Ok:"Ok","Your code is similar to HTML. Keep as HTML?":"Seu código é similar ao HTML. Manter como HTML?","Paste as HTML":"Colar como HTML?",Keep:"Manter",Clean:"Limpar","Insert as Text":"Inserir como Texto","Word Paste Detected":"Colado do Word Detectado","The pasted content is coming from a Microsoft Word/Excel document. Do you want to keep the format or clean it up?":"O conteúdo colado veio de um documento Microsoft Word/Excel. Você deseja manter o formato ou limpa-lo?","Insert only Text":"Inserir somente o Texto","File Browser":"Procurar arquivo","Error on load list":"Erro ao carregar a lista","Error on load folders":"Erro ao carregar as pastas","Are you sure?":"Você tem certeza?","Enter Directory name":"Escreva o nome da pasta","Create directory":"Criar pasta","type name":"Escreva seu nome","Drop image":"Soltar imagem","Drop file":"Soltar arquivo","or click":"ou clique","Alternative text":"Texto alternativo",Browse:"Explorar",Upload:"Upload",Background:"Fundo",Text:"Texto",Top:"Cima",Middle:"Meio",Bottom:"Baixo","Insert column before":"Inserir coluna antes","Insert column after":"Inserir coluna depois","Insert row above":"Inserir linha acima","Insert row below":"Inserir linha abaixo","Delete table":"Excluir tabela","Delete row":"Excluir linha","Delete column":"Excluir coluna","Empty cell":"Limpar célula",Delete:"Excluir","Strike through":"Tachado",Underline:"Sublinhar",Break:"Pausa","Search for":"Procurar por","Replace with":"Substituir com",Replace:"Substituir",Edit:"Editar","Vertical align":"Alinhamento vertical","Horizontal align":"Alinhamento horizontal",Filter:"filtrar","Sort by changed":"Ordenar por modificação","Sort by name":"Ordenar por nome","Sort by size":"Ordenar por tamanho","Add folder":"Adicionar pasta",Split:"Dividir","Split vertical":"Dividir vertical","Split horizontal":"Dividir horizontal",Merge:"Mesclar","Add column":"Adicionar coluna","Add row":"Adicionar linha",Border:"Borda","Embed code":"Incluir código",Update:"Atualizar",superscript:"sobrescrito",subscript:"subscrito","Cut selection":"Cortar seleção",Paste:"Colar","Choose Content to Paste":"Escolher conteúdo para colar","Chars: %d":"Caracteres: %d","Words: %d":"Palavras: %d",All:"Tudo","Select %s":"Selecionar: %s","Select all":"Selecionar tudo",source:"HTML",bold:"negrito",italic:"itálico",brush:"pincel",link:"link",undo:"desfazer",redo:"refazer",table:"tabela",image:"imagem",eraser:"apagar",paragraph:"parágrafo",fontsize:"tamanho da letra",video:"vídeo",font:"fonte",about:"Sobre de",print:"Imprimir",symbol:"Símbolo",underline:"sublinhar",strikethrough:"tachado",indent:"recuar",outdent:"diminuir recuo",fullsize:"Tamanho completo",shrink:"diminuir",copyformat:"Copiar formato",hr:"linha horizontal",ul:"lista não ordenada",ol:"lista ordenada",cut:"Cortar",selectall:"Selecionar tudo","Open link":"Abrir link","Edit link":"Editar link","No follow":"Não siga",Unlink:"Remover link",Eye:"Visualizar",pencil:"Editar"," URL":"URL",Reset:"Resetar",Save:"Salvar","Save as ...":"Salvar como...",Resize:"Redimensionar",Crop:"Recortar",Width:"Largura",Height:"Altura","Keep Aspect Ratio":"Manter a proporção",Yes:"Sim",No:"Não",Remove:"Remover",Select:"Selecionar","You can only edit your own images. Download this image on the host?":"Você só pode editar suas próprias imagens. Baixar essa imagem pro servidor?","The image has been successfully uploaded to the host!":"A imagem foi enviada com sucesso para o servidor!",palette:"Palette","There are no files":"Não há arquivos nesse diretório.",Rename:"Húngara","Enter new name":"Digite um novo nome",preview:"preview",download:"Baixar","Paste from clipboard":"Colar da área de transferência","Your browser doesn't support direct access to the clipboard.":"O seu navegador não oferece suporte a acesso direto para a área de transferência.","Copy selection":"Selecção de cópia",copy:"cópia","Border radius":"Border radius","Show all":"Mostrar todos os",Apply:"Aplicar","Please fill out this field":"Por favor, preencha este campo","Please enter a web address":"Por favor introduza um endereço web",Default:"Padrão",Circle:"Círculo",Dot:"Ponto",Quadrate:"Quadro","Lower Alpha":"Letra Minúscula","Lower Greek":"Grego Minúscula","Lower Roman":"Romano Minúscula","Upper Alpha":"Letra Maiúscula","Upper Roman":"Romano Maiúscula",Find:"Encontrar","Find Previous":"Encontrar Anteriores","Find Next":"Localizar Próxima","Insert className":"Insira o nome da classe","Line height":"Altura da linha",Spellchecking:"Verificação ortográfica"};},function(e){e.exports={"Type something":"Напишите что-либо","About Jodit":"О Jodit","Jodit Editor":"Редактор Jodit","Jodit User's Guide":"Jodit Руководство пользователя","contains detailed help for using":"содержит детальную информацию по использованию","For information about the license, please go to our website:":"Для получения сведений о лицензии , пожалуйста, перейдите на наш сайт:","Buy full version":"Купить полную версию","Copyright © XDSoft.net - Chupurnov Valeriy. All rights reserved.":"Авторские права © XDSoft.net - Чупурнов Валерий. Все права защищены.",Anchor:"Анкор","Open in new tab":"Открывать ссылку в новой вкладке","Open editor in fullsize":"Открыть редактор в полном размере","Clear Formatting":"Очистить форматирование","Fill color or set the text color":"Цвет заливки или цвет текста",Redo:"Повтор",Undo:"Отмена",Bold:"Жирный",Italic:"Наклонный","Insert Unordered List":"Вставка маркированного списка","Insert Ordered List":"Вставить нумерованный список","Align Center":"Выровнять по центру","Align Justify":"Выровнять по ширине","Align Left":"Выровнять по левому краю","Align Right":"Выровнять по правому краю","Insert Horizontal Line":"Вставить горизонтальную линию","Insert Image":"Вставить изображение","Insert file":"Вставить файл","Insert youtube/vimeo video":"Вставьте видео","Insert link":"Вставить ссылку","Font size":"Размер шрифта","Font family":"Шрифт","Insert format block":"Вставить блочный элемент",Normal:"Нормальный текст","Heading 1":"Заголовок 1","Heading 2":"Заголовок 2","Heading 3":"Заголовок 3","Heading 4":"Заголовок 4",Quote:"Цитата",Code:"Код",Insert:"Вставить","Insert table":"Вставить таблицу","Decrease Indent":"Уменьшить отступ","Increase Indent":"Увеличить отступ","Select Special Character":"Выберите специальный символ","Insert Special Character":"Вставить специальный символ","Paint format":"Формат краски","Change mode":"Источник",Margins:"Отступы",top:"сверху",right:"справа",bottom:"снизу",left:"слева",Styles:"Стили",Classes:"Классы",Align:"Выравнивание",Right:"По правому краю",Center:"По центру",Left:"По левому краю","--Not Set--":"--не устанавливать--",Src:"src",Title:"Заголовок",Alternative:"Альтернативный текст (alt)",Link:"Ссылка","Open link in new tab":"Открывать ссылку в новом окне",file:"Файл",Advanced:"Расширенные","Image properties":"Свойства изображения",Cancel:"Отмена",Ok:"Ок","Your code is similar to HTML. Keep as HTML?":"Ваш текст, который вы пытаетесь вставить похож на HTML. Вставить его как HTML?","Paste as HTML":"Вставить как HTML?",Keep:"Сохранить оригинал",Clean:"Почистить","Insert as Text":"Вставить как текст","Insert only Text":"Вставить только текст","Word Paste Detected":"Возможно это фрагмент Word или Excel","The pasted content is coming from a Microsoft Word/Excel document. Do you want to keep the format or clean it up?":"Контент который вы вставляете поступает из документа Microsoft Word / Excel. Вы хотите сохранить формат или очистить его?","File Browser":"Браузер файлов","Error on load list":"Ошибка при загрузке списка изображений","Error on load folders":"Ошибка при загрузке списка директорий","Are you sure?":"Вы уверены?","Enter Directory name":"Введите название директории","Create directory":"Создать директорию","type name":"введите название","Drop image":"Перетащите сюда изображение","Drop file":"Перетащите сюда файл","or click":"или нажмите","Alternative text":"Альтернативный текст",Browse:"Сервер",Upload:"Загрузка",Background:"Фон",Text:"Текст",Top:" К верху",Middle:"По середине",Bottom:"К низу","Insert column before":"Вставить столбец до","Insert column after":"Вставить столбец после","Insert row above":"Вставить ряд выше","Insert row below":"Вставить ряд ниже","Delete table":"Удалить таблицу","Delete row":"Удалять ряд","Delete column":"Удалить столбец","Empty cell":"Очистить ячейку",source:"HTML",bold:"жирный",italic:"курсив",brush:"заливка",link:"ссылка",undo:"отменить",redo:"повторить",table:"таблица",image:"Изображение",eraser:"очистить",paragraph:"параграф",fontsize:"размер шрифта",video:"видео",font:"шрифт",about:"о редакторе",print:"печать",symbol:"символ",underline:"подчеркнутый",strikethrough:"перечеркнутый",indent:"отступ",outdent:"выступ",fullsize:"во весь экран",shrink:"обычный размер",copyformat:"Копировать формат",hr:"линия",ul:"Список",ol:"Нумерованный список",cut:"Вырезать",selectall:"Выделить все","Embed code":"Код","Open link":"Открыть ссылку","Edit link":"Редактировать ссылку","No follow":"Атрибут nofollow",Unlink:"Убрать ссылку",Eye:"Просмотр",pencil:"Редактировать",Update:"Обновить"," URL":"URL",Edit:"Редактировать","Horizontal align":"Горизонтальное выравнивание",Filter:"Фильтр","Sort by changed":"По изменению","Sort by name":"По имени","Sort by size":"По размеру","Add folder":"Добавить папку",Reset:"Восстановить",Save:"Сохранить","Save as ...":"Сохранить как",Resize:"Изменить размер",Crop:"Обрезать размер",Width:"Ширина",Height:"Высота","Keep Aspect Ratio":"Сохранять пропорции",Yes:"Да",No:"Нет",Remove:"Удалить",Select:"Выделить","Chars: %d":"Символов: %d","Words: %d":"Слов: %d",All:"Выделить все","Select %s":"Выделить: %s","Select all":"Выделить все","Vertical align":"Вертикальное выравнивание",Split:"Разделить","Split vertical":"Разделить по вертикали","Split horizontal":"Разделить по горизонтали",Merge:"Объединить в одну","Add column":"Добавить столбец","Add row":"Добавить строку",Delete:"Удалить",Border:"Рамка","License: %s":"Лицензия: %s","Strike through":"Перечеркнуть",Underline:"Подчеркивание",superscript:"верхний индекс",subscript:"индекс","Cut selection":"Вырезать",Break:"Разделитель","Search for":"Найти","Replace with":"Заменить на",Replace:"Заменить",Paste:"Вставить","Choose Content to Paste":"Выбрать контент для вставки","You can only edit your own images. Download this image on the host?":"Вы можете редактировать только свои собственные изображения. Загрузить это изображение на ваш сервер?","The image has been successfully uploaded to the host!":"Изображение успешно загружено на сервер!",palette:"палитра","There are no files":"В данном каталоге нет файлов",Rename:"Переименовать","Enter new name":"Введите новое имя",preview:"Предпросмотр",download:"Скачать","Paste from clipboard":"Вставить из буфера обмена","Your browser doesn't support direct access to the clipboard.":"Ваш браузер не поддерживает прямой доступ к буферу обмена.","Copy selection":"Скопировать выделенное",copy:"копия","Border radius":"Радиус границы","Show all":"Показать все",Apply:"Применить","Please fill out this field":"Пожалуйста, заполните это поле","Please enter a web address":"Пожалуйста, введите веб-адрес",Default:"По умолчанию",Circle:"Круг",Dot:"Точка",Quadrate:"Квадрат",Find:"Найти","Find Previous":"Найти Предыдущие","Find Next":"Найти Далее","Insert className":"Вставить название класса","Line height":"Высота линии",Spellchecking:"Проверка орфографии"};},function(e){e.exports={"Type something":"Bir şeyler yaz",Advanced:"Gelişmiş","About Jodit":"Jodit Hakkında","Jodit Editor":"Jodit Editor","Jodit User's Guide":"Jodit Kullanım Kılavuzu","contains detailed help for using":"kullanım için detaylı bilgiler içerir","For information about the license, please go to our website:":"Lisans hakkında bilgi için lütfen web sitemize gidin:","Buy full version":"Tam versiyonunu satın al","Copyright © XDSoft.net - Chupurnov Valeriy. All rights reserved.":"Copyright © XDSoft.net - Chupurnov Valeriy. Tüm hakları saklıdır.",Anchor:"Bağlantı","Open in new tab":"Yeni sekmede aç","Open editor in fullsize":"Editörü tam ekranda aç","Clear Formatting":"Stili temizle","Fill color or set the text color":"Renk doldur veya yazı rengi seç",Redo:"Yinele",Undo:"Geri Al",Bold:"Kalın",Italic:"İtalik","Insert Unordered List":"Sırasız Liste Ekle","Insert Ordered List":"Sıralı Liste Ekle","Align Center":"Ortala","Align Justify":"Kenarlara Yasla","Align Left":"Sola Yasla","Align Right":"Sağa Yasla","Insert Horizontal Line":"Yatay Çizgi Ekle","Insert Image":"Resim Ekle","Insert file":"Dosya Ekle","Insert youtube/vimeo video":"Youtube/Vimeo Videosu Ekle","Insert link":"Bağlantı Ekle","Font size":"Font Boyutu","Font family":"Font Ailesi","Insert format block":"Blok Ekle",Normal:"Normal","Heading 1":"Başlık 1","Heading 2":"Başlık 2","Heading 3":"Başlık 3","Heading 4":"Başlık 4",Quote:"Alıntı",Code:"Kod",Insert:"Ekle","Insert table":"Tablo Ekle","Decrease Indent":"Girintiyi Azalt","Increase Indent":"Girintiyi Arttır","Select Special Character":"Özel Karakter Seç","Insert Special Character":"Özel Karakter Ekle","Paint format":"Resim Biçimi","Change mode":"Mod Değiştir",Margins:"Boşluklar",top:"Üst",right:"Sağ",bottom:"Alt",left:"Sol",Styles:"CSS Stilleri",Classes:"CSS Sınıfları",Align:"Hizalama",Right:"Sağ",Center:"Ortalı",Left:"Sol","--Not Set--":"Belirsiz",Src:"Kaynak",Title:"Başlık",Alternative:"Alternatif Yazı",Link:"Link","Open link in new tab":"Bağlantıyı yeni sekmede aç",Image:"Resim",file:"Dosya",Advansed:"Gelişmiş","Image properties":"Resim özellikleri",Cancel:"İptal",Ok:"Tamam","Your code is similar to HTML. Keep as HTML?":"Kodunuz HTML koduna benziyor. HTML olarak devam etmek ister misiniz?","Paste as HTML":"HTML olarak yapıştır",Keep:"Sakla",Clean:"Temizle","Insert as Text":"Yazı olarak ekle","Word Paste Detected":"Word biçiminde yapıştırma algılandı","The pasted content is coming from a Microsoft Word/Excel document. Do you want to keep the format or clean it up?":"Der Inhalt, den Sie einfügen, stammt aus einem Microsoft Word / Excel-Dokument. Möchten Sie das Format erhalten oder löschen?","Insert only Text":"Sadece yazıyı ekle","File Browser":"Dosya Listeleyici","Error on load list":"Liste yüklenirken hata oluştu","Error on load folders":"Klasörler yüklenirken hata oluştur","Are you sure?":"Emin misiniz?","Enter Directory name":"Dizin yolu giriniz","Create directory":"Dizin oluştur","type name":"İsim yaz","Drop image":"Resim bırak","Drop file":"Dosya bırak","or click":"veya tıkla","Alternative text":"Alternatif yazı",Browse:"Gözat",Upload:"Yükle",Background:"Arka plan",Text:"Yazı",Top:"Üst",Middle:"Orta",Bottom:"Aşağı","Insert column before":"Öncesine kolon ekle","Insert column after":"Sonrasına kolon ekle","Insert row above":"Üstüne satır ekle","Insert row below":"Altına satır ekle","Delete table":"Tabloyu sil","Delete row":"Satırı sil","Delete column":"Kolonu sil","Empty cell":"Hücreyi temizle",Delete:"Sil","Strike through":"Üstü çizili",Underline:"Alt çizgi",Break:"Satır sonu","Search for":"Ara","Replace with":"Şununla değiştir",Replace:"Değiştir",Edit:"Düzenle","Vertical align":"Dikey hizala","Horizontal align":"Yatay hizala",Filter:"Filtre","Sort by changed":"Değişime göre sırala","Sort by name":"İsme göre sırala","Sort by size":"Boyuta göre sırala","Add folder":"Klasör ekle",Split:"Ayır","Split vertical":"Dikey ayır","Split horizontal":"Yatay ayır",Merge:"Birleştir","Add column":"Kolon ekle","Add row":"Satır ekle",Border:"Kenarlık","Embed code":"Kod ekle",Update:"Güncelle",superscript:"Üst yazı",subscript:"Alt yazı","Cut selection":"Seçilimi kes",Paste:"Yapıştır","Choose Content to Paste":"Yapıştırılacak içerik seç","Chars: %d":"Harfler: %d","Words: %d":"Kelimeler: %d",All:"Tümü","Select %s":"Seç: %s","Select all":"Tümünü seç",source:"Kaynak",bold:"Kalın",italic:"italik",brush:"Fırça",link:"Bağlantı",undo:"Geri al",redo:"Yinele",table:"Tablo",image:"Resim",eraser:"Silgi",paragraph:"Paragraf",fontsize:"Font boyutu",video:"Video",font:"Font",about:"Hakkında",print:"Yazdır",symbol:"Sembol",underline:"Alt çizgi",strikethrough:"Üstü çizili",indent:"Girinti",outdent:"Çıkıntı",fullsize:"Tam ekran",shrink:"Küçült",copyformat:"Kopyalama Biçimi",hr:"Ayraç",ul:"Sırasız liste",ol:"Sıralı liste",cut:"Kes",selectall:"Tümünü seç","Open link":"Bağlantıyı aç","Edit link":"Bağlantıyı düzenle","No follow":"Nofollow özelliği",Unlink:"Bağlantıyı kaldır",Eye:"Yorumu",pencil:"Düzenlemek için"," URL":"URL",Reset:"Sıfırla",Save:"Kaydet","Save as ...":"Farklı kaydet",Resize:"Boyutlandır",Crop:"Kırp",Width:"Genişlik",Height:"Yükseklik","Keep Aspect Ratio":"En boy oranını koru",Yes:"Evet",No:"Hayır",Remove:"Sil",Select:"Seç","You can only edit your own images. Download this image on the host?":"Sadece kendi resimlerinizi düzenleyebilirsiniz. Bu görseli kendi hostunuza indirmek ister misiniz?","The image has been successfully uploaded to the host!":"Görsel başarıyla hostunuza yüklendi",palette:"Palet","There are no files":"Bu dizinde dosya yok",Rename:"Yeniden isimlendir","Enter new name":"Yeni isim girin",preview:"Ön izleme",download:"İndir","Paste from clipboard":"Panodan yapıştır ","Your browser doesn't support direct access to the clipboard.":"Tarayıcınız panoya doğrudan erişimi desteklemiyor.","Copy selection":"Seçimi kopyala",copy:"Kopyala","Border radius":"Sınır yarıçapı","Show all":"Tümünü Göster",Apply:"Uygula","Please fill out this field":"Lütfen bu alanı doldurun","Please enter a web address":"Lütfen bir web adresi girin",Default:"Varsayılan",Circle:"Daire",Dot:"Nokta",Quadrate:"Kare",Find:"Bul","Find Previous":"Öncekini Bul","Find Next":"Sonrakini Bul","Insert className":"Sınıf adı girin","Line height":"Çizgi yüksekliği",Spellchecking:"Yazım denetimi"};},function(e){e.exports={"Type something":"输入一些内容",Advanced:"高级","About Jodit":"关于Jodit","Jodit Editor":"Jodit Editor","Free Non-commercial Version":"Free Non-commercial Version","Jodit User's Guide":"开发者指南","contains detailed help for using":"使用帮助","For information about the license, please go to our website:":"有关许可证的信息,请访问我们的网站:","Buy full version":"购买完整版本","Copyright © XDSoft.net - Chupurnov Valeriy. All rights reserved.":"Copyright © XDSoft.net - Chupurnov Valeriy. 版权所有",Anchor:"Anchor","Open in new tab":"在新窗口打开","Open editor in fullsize":"全屏编辑","Clear Formatting":"清除样式","Fill color or set the text color":"颜色",Redo:"重做",Undo:"撤销",Bold:"粗体",Italic:"斜体","Insert Unordered List":"符号列表","Insert Ordered List":"编号","Align Center":"居中","Align Justify":"对齐文本","Align Left":"左对齐","Align Right":"右对齐","Insert Horizontal Line":"分割线","Insert Image":"图片","Insert file":"文件","Insert youtube/vimeo video":"视频","Insert link":"链接","Font size":"字号","Font family":"字体","Insert format block":"格式块",Normal:"默认","Heading 1":"标题1","Heading 2":"标题2","Heading 3":"标题3","Heading 4":"标题4",Quote:"引用",Code:"代码",Insert:"插入","Insert table":"表格","Decrease Indent":"减少缩进","Increase Indent":"增加缩进","Select Special Character":"选择特殊符号","Insert Special Character":"特殊符号","Paint format":"格式复制","Change mode":"改变模式",Margins:"外边距(Margins)",top:"top",right:"right",bottom:"bottom",left:"left",Styles:"样式",Classes:"Classes",Align:"对齐方式",Right:"居右",Center:"居中",Left:"居左","--Not Set--":"无",Src:"Src",Title:"Title",Alternative:"Alternative",Link:"Link","Open link in new tab":"在新窗口打开链接",Image:"图片",file:"file",Advansed:"高级","Image properties":"图片属性",Cancel:"取消",Ok:"确定","Your code is similar to HTML. Keep as HTML?":"你粘贴的文本是一段html代码,是否保留源格式","Paste as HTML":"html粘贴",Keep:"保留源格式",Clean:"匹配目标格式","Insert as Text":"把html代码视为普通文本","Word Paste Detected":"文本粘贴","The pasted content is coming from a Microsoft Word/Excel document. Do you want to keep the format or clean it up?":"正在粘贴 Word/Excel 的文本,是否保留源格式?","Insert only Text":"只保留文本","File Browser":"文件管理","Error on load list":"加载list错误","Error on load folders":"加载folders错误","Are you sure?":"你确定吗?","Enter Directory name":"输入路径","Create directory":"创建路径","type name":"type name","Drop image":"拖动图片到此","Drop file":"拖动文件到此","or click":"或点击","Alternative text":"Alternative text",Browse:"浏览",Upload:"上传",Background:"背景色",Text:"文字",Top:"顶部",Middle:"中间",Bottom:"底部","Insert column before":"在之前插入列","Insert column after":"在之后插入列","Insert row above":"在之前插入行","Insert row below":"在之后插入行","Delete table":"删除表格","Delete row":"删除行","Delete column":"删除列","Empty cell":"清除内容","Chars: %d":"字符数: %d","Words: %d":"单词数: %d","Strike through":"删除线",Underline:"下划线",superscript:"上标",subscript:"下标","Cut selection":"剪切","Select all":"全选",Break:"Break","Search for":"查找","Replace with":"替换为",Replace:"替换",Edit:"编辑",Paste:"粘贴","Choose Content to Paste":"选择内容并粘贴",All:"全部",source:"源码",bold:"粗体",italic:"斜体",brush:"颜色",link:"链接",undo:"撤销",redo:"重做",table:"表格",image:"图片",eraser:"橡皮擦",paragraph:"段落",fontsize:"字号",video:"视频",font:"字体",about:"关于",print:"打印",symbol:"符号",underline:"下划线",strikethrough:"上出现",indent:"增加缩进",outdent:"减少缩进",fullsize:"全屏",shrink:"收缩",copyformat:"复制格式",hr:"分割线",ul:"无序列表",ol:"顺序列表",cut:"剪切",selectall:"全选","Open link":"打开链接","Edit link":"编辑链接","No follow":"No follow",Unlink:"取消链接",Eye:"预览"," URL":"URL",Reset:"重置",Save:"保存","Save as ...":"保存为",Resize:"调整大小",Crop:"剪切",Width:"宽",Height:"高","Keep Aspect Ratio":"保持长宽比",Yes:"是",No:"不",Remove:"移除",Select:"选择","Select %s":"选择: %s",Update:"更新","Vertical align":"垂直对齐",Merge:"合并","Add column":"添加列","Add row":"添加行",Border:"边框","Embed code":"嵌入代码",Delete:"删除","Horizontal align":"水平对齐",Filter:"筛选","Sort by changed":"修改时间排序","Sort by name":"名称排序","Sort by size":"大小排序","Add folder":"新建文件夹",Split:"拆分","Split vertical":"垂直拆分","Split horizontal":"水平拆分","You can only edit your own images. Download this image on the host?":"你只能编辑你自己的图片。Download this image on the host?","The image has been successfully uploaded to the host!":"图片上传成功",palette:"调色板",pencil:"铅笔","There are no files":"此目录中沒有文件。",Rename:"重命名","Enter new name":"输入新名称",preview:"预览",download:"下载","Paste from clipboard":"粘贴从剪贴板","Your browser doesn't support direct access to the clipboard.":"你浏览器不支持直接访问的剪贴板。","Copy selection":"复制选中内容",copy:"复制","Border radius":"边界半径","Show all":"显示所有",Apply:"应用","Please fill out this field":"请填写这个字段","Please enter a web address":"请输入一个网址",Default:"默认",Circle:"圆圈",Dot:"点",Quadrate:"方形",Find:"搜索","Find Previous":"查找上一个","Find Next":"查找下一个","Insert className":"插入班级名称","Line height":"线高",Spellchecking:"拼写检查"};},function(e){e.exports={"Type something":"輸入一些內容",Advanced:"高級","About Jodit":"關於Jodit","Jodit Editor":"Jodit Editor","Jodit User's Guide":"開發者指南","contains detailed help for using":"使用幫助","For information about the license, please go to our website:":"有關許可證的信息,請訪問我們的網站:","Buy full version":"購買完整版本","Copyright © XDSoft.net - Chupurnov Valeriy. All rights reserved.":"Copyright © XDSoft.net - Chupurnov Valeriy. All rights reserved.",Anchor:"Anchor","Open in new tab":"在新窗口打開","Open editor in fullsize":"全屏編輯","Clear Formatting":"清除樣式","Fill color or set the text color":"顏色",Redo:"重做",Undo:"撤銷",Bold:"粗體",Italic:"斜體","Insert Unordered List":"符號列表","Insert Ordered List":"編號","Align Center":"居中","Align Justify":"對齊文本","Align Left":"左對齊","Align Right":"右對齊","Insert Horizontal Line":"分割線","Insert Image":"圖片","Insert file":"文件","Insert youtube/vimeo video":"youtube/vimeo 影片","Insert link":"鏈接","Font size":"字號","Font family":"字體","Insert format block":"格式塊",Normal:"文本","Heading 1":"標題1","Heading 2":"標題2","Heading 3":"標題3","Heading 4":"標題4",Quote:"引用",Code:"代碼",Insert:"插入","Insert table":"表格","Decrease Indent":"減少縮進","Increase Indent":"增加縮進","Select Special Character":"選擇特殊符號","Insert Special Character":"特殊符號","Paint format":"格式複製","Change mode":"改變模式",Margins:"外邊距(Margins)",top:"top",right:"right",bottom:"bottom",left:"left",Styles:"樣式",Classes:"Classes",Align:"對齊方式",Right:"居右",Center:"居中",Left:"居左","--Not Set--":"無",Src:"Src",Title:"Title",Alternative:"替代",Link:"Link","Open link in new tab":"在新窗口打開鏈接",Image:"圖片",file:"file",Advansed:"高級","Image properties":"圖片屬性",Cancel:"取消",Ok:"確定","Your code is similar to HTML. Keep as HTML?":"你黏貼的文本是一段html代碼,是否保留源格式","Paste as HTML":"html黏貼",Keep:"保留源格式",Clean:"匹配目標格式","Insert as Text":"把html代碼視為普通文本","Word Paste Detected":"文本黏貼","The pasted content is coming from a Microsoft Word/Excel document. Do you want to keep the format or clean it up?":"正在黏貼 Word/Excel 的文本,是否保留源格式?","Insert only Text":"只保留文本","File Browser":"文件管理","Error on load list":"加載list錯誤","Error on load folders":"加載folders錯誤","Are you sure?":"你確定嗎?","Enter Directory name":"輸入路徑","Create directory":"創建路徑","type name":"type name","Drop image":"拖動圖片到此","Drop file":"拖動文件到此","or click":"或點擊","Alternative text":"替代文字",Browse:"瀏覽",Upload:"上傳",Background:"背景色",Text:"文字",Top:"頂部",Middle:"中間",Bottom:"底部","Insert column before":"在之前插入列","Insert column after":"在之後插入列","Insert row above":"在之前插入行","Insert row below":"在之後插入行","Delete table":"刪除表格","Delete row":"刪除行","Delete column":"刪除列","Empty cell":"清除內容","Chars: %d":"字符數: %d","Words: %d":"單詞數: %d","Strike through":"刪除線",Underline:"下劃線",superscript:"上標",subscript:"下標","Cut selection":"剪切","Select all":"全選",Break:"Pause","Search for":"查找","Replace with":"替換為",Replace:"แทนที่",Paste:"黏貼","Choose Content to Paste":"選擇內容並黏貼",All:"全部",source:"源碼",bold:"粗體",italic:"斜體",brush:"顏色",link:"鏈接",undo:"撤銷",redo:"重做",table:"表格",image:"圖片",eraser:"橡皮擦",paragraph:"段落",fontsize:"字號",video:"影片",font:"字體",about:"關於",print:"打印",symbol:"符號",underline:"下劃線",strikethrough:"上出現",indent:"增加縮進",outdent:"減少縮進",fullsize:"全屏",shrink:"收縮",copyformat:"複製格式",hr:"分割線",ul:"無序列表",ol:"順序列表",cut:"剪切",selectall:"全選","Open link":"打開鏈接","Edit link":"編輯鏈接","No follow":"No follow",Unlink:"取消連結",Eye:"回顧"," URL":"URL",Reset:"重置",Save:"保存","Save as ...":"保存為",Resize:"調整大小",Crop:"Crop",Width:"寬",Height:"高","Keep Aspect Ratio":"保存長寬比",Yes:"是",No:"不",Remove:"移除",Select:"選擇","Select %s":"選擇: %s",Update:"更新","Vertical align":"垂直對齊",Merge:"合併","Add column":"添加列","Add row":"添加行",Border:"邊框","Embed code":"嵌入代碼",Delete:"刪除","Horizontal align":"水平對齊",Filter:"篩選","Sort by changed":"修改時間排序","Sort by name":"名稱排序","Sort by size":"大小排序","Add folder":"新建文件夾",Split:"拆分","Split vertical":"垂直拆分","Split horizontal":"水平拆分","You can only edit your own images. Download this image on the host?":"你只能編輯你自己的圖片。是否下載此圖片到本地?","The image has been successfully uploaded to the host!":"圖片上傳成功",palette:"調色板",pencil:"鉛筆","There are no files":"此目錄中沒有文件。",Rename:"重命名","Enter new name":"輸入新名稱",preview:"預覽",download:"下載","Paste from clipboard":"從剪貼板貼上","Your browser doesn't support direct access to the clipboard.":"瀏覽器無法存取剪贴板。","Copy selection":"複製已選取項目",copy:"複製","Border radius":"邊框圓角","Show all":"顯示所有",Apply:"應用","Please fill out this field":"ได้โปรดกรอกช่องข้อมูลนี้","Please enter a web address":"โปรดเติมที่อยู่บนเว็บ",Default:"ค่าปริยาย",Circle:"วงกลม",Dot:"จุด",Quadrate:"Quadrate",Find:"ค้นหา","Find Previous":"ค้นหาก่อนหน้านี้","Find Next":"ค้นหาถัดไป","Insert className":"ใส่ชื่อคลาส","Line height":"ความสูงเส้น",Spellchecking:"สะกดคำ"};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.xpath=t.tab=t.tooltip=t.symbols=t.spellcheck=t.sticky=t.stat=t.source=t.resizeHandler=t.size=t.select=t.search=t.resizer=t.redoUndo=t.placeholder=t.poweredByJodit=t.orderedList=t.mobile=t.link=t.lineHeight=t.limit=t.justify=t.inlinePopup=t.hr=t.indent=t.iframe=t.hotkeys=t.fullsize=t.formatBlock=t.font=t.errorMessages=t.KeyArrowOutside=t.enter=t.color=t.PasteFromWord=t.DragAndDropElement=t.DragAndDrop=t.pasteStorage=t.paste=t.clipboard=t.copyFormat=t.cleanHtml=t.WrapNodes=t.bold=t.Backspace=t.classSpan=t.focus=t.about=t.addNewLine=void 0;var r=o(145),n=o(431);Object.defineProperty(t,"addNewLine",{enumerable:!0,get:function(){return n.addNewLine;}});var i=o(434);Object.defineProperty(t,"about",{enumerable:!0,get:function(){return i.about;}});var a=o(436);Object.defineProperty(t,"focus",{enumerable:!0,get:function(){return a.focus;}});var s=o(437);Object.defineProperty(t,"classSpan",{enumerable:!0,get:function(){return s.classSpan;}});var l=o(439);Object.defineProperty(t,"Backspace",{enumerable:!0,get:function(){return l.Backspace;}});var c=o(453);Object.defineProperty(t,"bold",{enumerable:!0,get:function(){return c.bold;}});var u=o(454);Object.defineProperty(t,"WrapNodes",{enumerable:!0,get:function(){return u.WrapNodes;}}),Object.defineProperty(t,"cleanHtml",{enumerable:!0,get:function(){return u.cleanHtml;}});var d=o(471);Object.defineProperty(t,"copyFormat",{enumerable:!0,get:function(){return d.copyFormat;}}),Object.defineProperty(t,"clipboard",{enumerable:!0,get:function(){return d.clipboard;}}),Object.defineProperty(t,"paste",{enumerable:!0,get:function(){return d.paste;}}),Object.defineProperty(t,"pasteStorage",{enumerable:!0,get:function(){return d.pasteStorage;}}),Object.defineProperty(t,"DragAndDrop",{enumerable:!0,get:function(){return d.DragAndDrop;}}),Object.defineProperty(t,"DragAndDropElement",{enumerable:!0,get:function(){return d.DragAndDropElement;}}),Object.defineProperty(t,"PasteFromWord",{enumerable:!0,get:function(){return d.PasteFromWord;}});var p=o(484);Object.defineProperty(t,"color",{enumerable:!0,get:function(){return p.color;}});var f=o(491);Object.defineProperty(t,"enter",{enumerable:!0,get:function(){return f.enter;}});var h=o(501);Object.defineProperty(t,"KeyArrowOutside",{enumerable:!0,get:function(){return h.KeyArrowOutside;}});var m=o(502);Object.defineProperty(t,"errorMessages",{enumerable:!0,get:function(){return m.errorMessages;}});var v=o(504);Object.defineProperty(t,"font",{enumerable:!0,get:function(){return v.font;}});var g=o(505);Object.defineProperty(t,"formatBlock",{enumerable:!0,get:function(){return g.formatBlock;}});var y=o(506);Object.defineProperty(t,"fullsize",{enumerable:!0,get:function(){return y.fullsize;}});var b=o(508);Object.defineProperty(t,"hotkeys",{enumerable:!0,get:function(){return b.hotkeys;}});var _=o(509);Object.defineProperty(t,"iframe",{enumerable:!0,get:function(){return _.iframe;}}),r.__exportStar(o(511),t);var w=o(524);Object.defineProperty(t,"indent",{enumerable:!0,get:function(){return w.indent;}});var S=o(525);Object.defineProperty(t,"hr",{enumerable:!0,get:function(){return S.hr;}});var C=o(527);Object.defineProperty(t,"inlinePopup",{enumerable:!0,get:function(){return C.inlinePopup;}});var k=o(535);Object.defineProperty(t,"justify",{enumerable:!0,get:function(){return k.justify;}});var j=o(536);Object.defineProperty(t,"limit",{enumerable:!0,get:function(){return j.limit;}});var E=o(537);Object.defineProperty(t,"lineHeight",{enumerable:!0,get:function(){return E.lineHeight;}});var x=o(539);Object.defineProperty(t,"link",{enumerable:!0,get:function(){return x.link;}}),r.__exportStar(o(542),t);var I=o(547);Object.defineProperty(t,"mobile",{enumerable:!0,get:function(){return I.mobile;}});var T=o(549);Object.defineProperty(t,"orderedList",{enumerable:!0,get:function(){return T.orderedList;}});var P=o(551);Object.defineProperty(t,"poweredByJodit",{enumerable:!0,get:function(){return P.poweredByJodit;}});var D=o(552);Object.defineProperty(t,"placeholder",{enumerable:!0,get:function(){return D.placeholder;}});var z=o(555);Object.defineProperty(t,"redoUndo",{enumerable:!0,get:function(){return z.redoUndo;}});var M=o(556);Object.defineProperty(t,"resizer",{enumerable:!0,get:function(){return M.resizer;}});var A=o(559);Object.defineProperty(t,"search",{enumerable:!0,get:function(){return A.search;}});var O=o(566);Object.defineProperty(t,"select",{enumerable:!0,get:function(){return O.select;}});var L=o(568);Object.defineProperty(t,"size",{enumerable:!0,get:function(){return L.size;}}),Object.defineProperty(t,"resizeHandler",{enumerable:!0,get:function(){return L.resizeHandler;}});var N=o(573);Object.defineProperty(t,"source",{enumerable:!0,get:function(){return N.source;}});var B=o(582);Object.defineProperty(t,"stat",{enumerable:!0,get:function(){return B.stat;}});var R=o(583);Object.defineProperty(t,"sticky",{enumerable:!0,get:function(){return R.sticky;}});var q=o(585);Object.defineProperty(t,"spellcheck",{enumerable:!0,get:function(){return q.spellcheck;}});var F=o(588);Object.defineProperty(t,"symbols",{enumerable:!0,get:function(){return F.symbols;}}),r.__exportStar(o(591),t);var H=o(598);Object.defineProperty(t,"tooltip",{enumerable:!0,get:function(){return H.tooltip;}});var U=o(600);Object.defineProperty(t,"tab",{enumerable:!0,get:function(){return U.tab;}}),r.__exportStar(o(604),t);var V=o(610);Object.defineProperty(t,"xpath",{enumerable:!0,get:function(){return V.xpath;}});},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.addNewLine=void 0;var r=o(145);o(432);var n=o(148),i=o(185),a=o(231);o(433);var s="addnewline",l=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.line=t.j.c.fromHTML('<div role="button" tabindex="-1" title="'.concat(t.j.i18n("Break"),'" class="jodit-add-new-line"><span>').concat(n.Icon.get("enter"),"</span></div>")),t.isMatchedTag=function(e){return Boolean(e&&t.j.o.addNewLineTagsTriggers.includes(e.nodeName.toLowerCase()));},t.preview=!1,t.lineInFocus=!1,t.isShown=!1,t.hideForce=function(){t.isShown&&(t.isShown=!1,t.j.async.clearTimeout(t.timeout),t.lineInFocus=!1,n.Dom.safeRemove(t.line),t.line.style.setProperty("--jd-offset-handle","0"));},t.canGetFocus=function(e){return null!=e&&n.Dom.isBlock(e)&&!/^(img|table|iframe|hr)$/i.test(e.nodeName);},t.onClickLine=function(e){var o=t.j,r=o.createInside.element(o.o.enter);t.preview&&t.current&&t.current.parentNode?t.current===o.editor?n.Dom.prepend(o.editor,r):t.current.parentNode.insertBefore(r,t.current):o.editor.appendChild(r),o.s.setCursorIn(r),(0,i.scrollIntoViewIfNeeded)(r,o.editor,o.ed),o.e.fire("synchro"),t.hideForce(),e.preventDefault();},t;}return r.__extends(t,e),t.prototype.show=function(){this.isShown||this.j.o.readonly||this.j.isLocked||(this.isShown=!0,this.j.async.clearTimeout(this.timeout),this.line.classList.toggle("jodit-add-new-line_after",!this.preview),this.j.container.appendChild(this.line),this.line.style.width=this.j.editor.clientWidth+"px");},t.prototype.onLock=function(e){e&&this.isShown&&this.hideForce();},t.prototype.hide=function(){this.isShown&&!this.lineInFocus&&(this.timeout=this.j.async.setTimeout(this.hideForce,{timeout:500,label:"add-new-line-hide"}));},t.prototype.afterInit=function(e){var t=this;e.o.addNewLine&&(e.e.on(this.line,"mousemove",function(e){e.stopPropagation();}).on(this.line,"mousedown touchstart",this.onClickLine).on("change",this.hideForce).on(this.line,"mouseenter",function(){t.j.async.clearTimeout(t.timeout),t.lineInFocus=!0;}).on(this.line,"mouseleave",function(){t.lineInFocus=!1;}).on("changePlace",this.addEventListeners.bind(this)),this.addEventListeners());},t.prototype.addEventListeners=function(){var e=this.j;e.e.off(e.editor,"."+s).off(e.container,"."+s).on([e.ow,e.ew,e.editor],"scroll."+s,this.hideForce).on(e.editor,"click."+s,this.hide).on(e.container,"mouseleave."+s,this.hide).on(e.editor,"mousemove."+s,this.onMouseMove);},t.prototype.onDblClickEditor=function(e){var t=this.j;if(!t.o.readonly&&t.o.addNewLineOnDBLClick&&e.target===t.editor&&t.s.isCollapsed()){var o=(0,i.offset)(t.editor,t,t.ed),r=e.pageY-t.ew.pageYOffset,n=t.createInside.element(t.o.enter);Math.abs(r-o.top)<Math.abs(r-(o.height+o.top))&&t.editor.firstChild?t.editor.insertBefore(n,t.editor.firstChild):t.editor.appendChild(n),t.s.setCursorIn(n),t.synchronizeValues(),this.hideForce(),e.preventDefault();}},t.prototype.onMouseMove=function(e){var t=this.j,o=t.ed.elementFromPoint(e.clientX,e.clientY);if(n.Dom.isHTMLElement(o)&&!n.Dom.isOrContains(this.line,o)&&n.Dom.isOrContains(t.editor,o))if(t.editor===o||this.isMatchedTag(o)||(o=n.Dom.closest(o,this.isMatchedTag,t.editor)),o){if(this.isMatchedTag(o)){var r=n.Dom.up(o,n.Dom.isBlock,t.editor);r&&r!==t.editor&&(o=r);}var a=(0,i.position)(o,this.j),s=!1,l=e.clientY;this.j.iframe&&(l+=(0,i.position)(this.j.iframe,this.j,!0).top);var c=this.j.o.addNewLineDeltaShow;Math.abs(l-a.top)>c||(s=a.top,this.preview=!0),Math.abs(l-(a.top+a.height))>c||(s=a.top+a.height,this.preview=!1),!1===s||(t.editor!==o||this.preview)&&(0,i.call)(this.preview?n.Dom.prev:n.Dom.next,o,this.canGetFocus,t.editor)?(this.current=!1,this.hide()):(this.line.style.top=s+"px",this.current=o,this.show(),this.line.style.setProperty("--jd-offset-handle",e.clientX-a.left-10+"px"));}else this.hide();},t.prototype.beforeDestruct=function(){this.j.async.clearTimeout(this.timeout),this.j.e.off(this.line).off("changePlace",this.addEventListeners),n.Dom.safeRemove(this.line),this.j.e.off([this.j.ow,this.j.ew,this.j.editor],"."+s).off(this.j.container,"."+s);},r.__decorate([(0,a.watch)(":lock")],t.prototype,"onLock",null),r.__decorate([a.autobind],t.prototype,"hide",null),r.__decorate([(0,a.watch)(":dblclick")],t.prototype,"onDblClickEditor",null),r.__decorate([(0,a.debounce)(function(e){return 5*e.defaultTimeout;})],t.prototype,"onMouseMove",null),t;}(n.Plugin);t.addNewLine=l;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(146);r.Config.prototype.addNewLine=!0,r.Config.prototype.addNewLineOnDBLClick=!0,r.Config.prototype.addNewLineTagsTriggers=["table","iframe","img","hr","pre","jodit"],r.Config.prototype.addNewLineDeltaShow=20;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.about=void 0,o(435);var r=o(146),n=o(185),i=o(147),a=o(322);r.Config.prototype.controls.about={exec:function(e){var t=new a.Dialog({language:e.o.language}),o=e.i18n.bind(e);t.setMod("theme",e.o.theme).setHeader(o("About Jodit")).setContent('<div class="jodit-about">\n\t\t\t\t\t<div>'.concat(o("Jodit Editor")," v.").concat(e.getVersion(),"</div>\n\t\t\t\t\t<div>").concat(o("License: %s",(0,n.isLicense)(e.o.license)?(0,n.normalizeLicense)(e.o.license):"MIT"),'</div>\n\t\t\t\t\t<div>\n\t\t\t\t\t\t<a href="').concat("https://xdsoft.net/jodit/",'" target="_blank">').concat("https://xdsoft.net/jodit/",'</a>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div>\n\t\t\t\t\t\t<a href="https://xdsoft.net/jodit/doc/" target="_blank">').concat(o("Jodit User's Guide"),"</a>\n\t\t\t\t\t\t").concat(o("contains detailed help for using"),"\n\t\t\t\t\t</div>\n\t\t\t\t\t<div>").concat(o("Copyright © XDSoft.net - Chupurnov Valeriy. All rights reserved."),"</div>\n\t\t\t\t</div>")),(0,n.css)(t.dialog,{minHeight:200,minWidth:420}),t.open(!0).bindDestruct(e);},tooltip:"About Jodit",mode:i.MODE_SOURCE+i.MODE_WYSIWYG},t.about=function(e){e.registerButton({name:"about",group:"info"});};},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.focus=void 0;var r=o(146),n=o(229);r.Config.prototype.autofocus=!1,r.Config.prototype.cursorAfterAutofocus="end",r.Config.prototype.saveSelectionOnBlur=!0,t.focus=function(e){e.o.saveSelectionOnBlur&&e.e.on("blur",function(){e.isEditorMode()&&e.s.save(!0);}).on("focus",function(){e.s.restore();});var t=function(){if(e.s.focus(),"end"===e.o.cursorAfterAutofocus){var t=n.Dom.last(e.editor,function(e){return n.Dom.isText(e);});t&&e.s.setCursorIn(t,!1);}};e.e.on("afterInit",function(){e.o.autofocus&&(e.defaultTimeout?e.async.setTimeout(t,300):t());}),e.e.on("afterInit afterAddPlace",function(){e.e.off(e.editor,"mousedown.autofocus").on(e.editor,"mousedown.autofocus",function(t){e.isEditorMode()&&t.target&&n.Dom.isBlock(t.target)&&!t.target.childNodes.length&&(e.editor===t.target?e.s.focus():e.s.setCursorIn(t.target));});});};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.classSpan=void 0;var r=o(145),n=o(365),i=o(146),a=o(229),s=o(185);i.Config.prototype.controls.classSpan={command:"applyClassName",icon:o(438),exec:s.memorizeExec,list:["enabled","disabled","activated","text-left","text-center","text-right","warning","error"],isChildActive:function(e,t){var o=e.s.current();if(o){var r=a.Dom.closest(o,a.Dom.isElement,e.editor)||e.editor;return Boolean(t.args&&r.classList.contains(t.args[0].toString()));}return!1;},isActive:function(e,t){var o=e.s.current();if(o){var r=a.Dom.closest(o,a.Dom.isElement,e.editor)||e.editor,n=!1;return t.list&&Object.keys(t.list).forEach(function(e){r.classList.contains(e)&&(n=!0);}),Boolean(r&&r!==e.editor&&void 0!==t.list&&n);}return!1;},childTemplate:function(e,t,o){return'<span class="'.concat(t,'">').concat(e.i18n(o),"</span>");},tooltip:"Insert className"};var l=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.buttons=[{name:"classSpan",group:"font"}],t;}return r.__extends(t,e),t.prototype.afterInit=function(e){e.registerCommand("applyClassName",function(t,o,r){return e.s.applyStyle(void 0,{className:r}),!1;});},t.prototype.beforeDestruct=function(){},t;}(n.Plugin);t.classSpan=l;},function(e){e.exports='<svg viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"> <path d="M36 4h-24c-2.21 0-4 1.79-4 4v32c0 2.21 1.79 4 4 4h24c2.21 0 4-1.79 4-4v-32c0-2.21-1.79-4-4-4zm-24 4h10v16l-5-3-5 3v-16z"/> </svg>';},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Backspace=void 0;var r=o(145),n=o(365),i=o(229),a=o(147),s=o(185),l=o(440),c=o(451);o(452);var u=o(249),d=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.requires=["hotkeys"],t;}return r.__extends(t,e),t.prototype.afterInit=function(e){var t=this;e.e.on("afterCommand.delete",function(e){"delete"===e&&t.afterDeleteCommand();}),e.registerCommand("deleteButton",{exec:function(){return t.onDelete(!1);},hotkeys:e.o.delete.hotkeys.delete},{stopPropagation:!1}).registerCommand("backspaceButton",{exec:function(){return t.onDelete(!0);},hotkeys:e.o.delete.hotkeys.backspace},{stopPropagation:!1}).registerCommand("deleteWordButton",{exec:function(){return t.onDelete(!1,"word");},hotkeys:e.o.delete.hotkeys.deleteWord}).registerCommand("backspaceWordButton",{exec:function(){return t.onDelete(!0,"word");},hotkeys:e.o.delete.hotkeys.backspaceWord}).registerCommand("deleteSentenceButton",{exec:function(){return t.onDelete(!1,"sentence");},hotkeys:e.o.delete.hotkeys.deleteSentence}).registerCommand("backspaceSentenceButton",{exec:function(){return t.onDelete(!0,"sentence");},hotkeys:e.o.delete.hotkeys.backspaceSentence});},t.prototype.beforeDestruct=function(e){e.e.off("afterCommand.delete");},t.prototype.afterDeleteCommand=function(){var e=this.j,t=e.s.current();if(t&&i.Dom.isTag(t.firstChild,"br")&&e.s.removeNode(t.firstChild),!((0,s.trim)(e.editor.textContent||"")||e.editor.querySelector("img")||t&&i.Dom.closest(t,"table",e.editor))){e.editor.innerHTML="";var o=e.s.setCursorIn(e.editor);e.s.removeNode(o);}},t.prototype.onDelete=function(e,t){void 0===t&&(t="char");var o=this.j,r=o.selection;if(r.isFocused()||r.focus(),(0,c.checkNotCollapsed)(o))return!1;var n=r.range,d=o.createInside.text(a.INVISIBLE_SPACE);try{if(n.insertNode(d),!i.Dom.isOrContains(o.editor,d))return;if((0,u.moveNodeInsideStart)(o,d,e),l.cases.some(function(r){return(0,s.isFunction)(r)&&r(o,d,e,t);}))return!1;}catch(e){throw e;}finally{this.safeRemoveEmptyNode(d);}return!1;},t.prototype.safeRemoveEmptyNode=function(e){var t,o,r=this.j.s.range;r.startContainer===e&&(e.previousSibling?i.Dom.isText(e.previousSibling)?r.setStart(e.previousSibling,null!==(o=null===(t=e.previousSibling.nodeValue)||void 0===t?void 0:t.length)&&void 0!==o?o:0):r.setStartAfter(e.previousSibling):e.nextSibling&&(i.Dom.isText(e.nextSibling)?r.setStart(e.nextSibling,0):r.setStartBefore(e.nextSibling)),r.collapse(!0),this.j.s.selectRange(r)),i.Dom.safeRemove(e);},t;}(n.Plugin);t.Backspace=d;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.cases=void 0;var r=o(441),n=o(445),i=o(446),a=o(447),s=o(442),l=o(448),c=o(444),u=o(449),d=o(450);t.cases=[r.checkRemoveUnbreakableElement,n.checkRemoveContentNotEditable,i.checkRemoveChar,a.checkTableCell,s.checkRemoveEmptyParent,l.checkRemoveEmptyNeighbor,c.checkJoinTwoLists,u.checkJoinNeighbors,d.checkUnwrapFirstListItem];},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.checkRemoveUnbreakableElement=void 0;var r=o(229),n=o(147),i=o(442);t.checkRemoveUnbreakableElement=function(e,t,o){var a=r.Dom.findSibling(t,o);return!(!r.Dom.isElement(a)||!r.Dom.isTag(a,n.INSEPARABLE_TAGS)&&!r.Dom.isEmpty(a)||(r.Dom.safeRemove(a),e.s.setCursorBefore(t),r.Dom.isTag(a,"br")&&(0,i.checkRemoveEmptyParent)(e,t,o),0));};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.checkRemoveEmptyParent=void 0;var r=o(229),n=o(443),i=o(147),a=o(444);t.checkRemoveEmptyParent=function(e,t,o){var s=!1,l=e.s,c=l.setCursorBefore,u=l.setCursorIn,d=r.Dom.closest(t,r.Dom.isElement,e.editor);if(!d||!r.Dom.isEmpty(d))return!1;var p=(0,n.findNotEmptyNeighbor)(t,o,e.editor);do{if(!d||!r.Dom.isEmpty(d)||r.Dom.isCell(d))break;r.Dom.after(d,t);var f=r.Dom.closest(d,function(e){return r.Dom.isElement(e)&&e!==d;},e.editor);r.Dom.safeRemove(d),s=!0,d=f;}while(d);return!(!s||!(0,a.checkJoinTwoLists)(e,t,o))||(!p||r.Dom.isText(p)||r.Dom.isTag(p,i.INSEPARABLE_TAGS)?c(t):u(p,!o),s);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.findMostNestedNeighbor=t.findNotEmptySibling=t.findNotEmptyNeighbor=void 0;var r=o(186),n=o(229),i=o(287);function a(e,t,o){return(0,r.call)(t?n.Dom.prev:n.Dom.next,e,function(e){return Boolean(e&&(!n.Dom.isText(e)||(0,i.trim)((null==e?void 0:e.nodeValue)||"").length));},o);}t.findNotEmptyNeighbor=a,t.findNotEmptySibling=function(e,t){return n.Dom.findSibling(e,t,function(e){var t;return!n.Dom.isEmptyTextNode(e)&&Boolean(!n.Dom.isText(e)||(null===(t=e.nodeValue)||void 0===t?void 0:t.length)&&(0,i.trim)(e.nodeValue));});},t.findMostNestedNeighbor=function(e,t,o,r){void 0===r&&(r=!1);var i=function(e){return t?e.firstChild:e.lastChild;},s=a(e,!t,o);if(r&&n.Dom.isElement(s)&&!n.Dom.isInlineBlock(s))return null;if(s)do{if(!i(s))return s;s=i(s);}while(s);return null;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.checkJoinTwoLists=void 0;var r=o(229),n=o(185);t.checkJoinTwoLists=function(e,t,o){var i=r.Dom.findSibling(t,o),a=r.Dom.findSibling(t,!o);if(!r.Dom.closest(t,r.Dom.isElement,e.editor)&&r.Dom.isTag(i,["ul","ol"])&&r.Dom.isTag(a,["ul","ol"])&&r.Dom.isTag(i.lastElementChild,"li")&&r.Dom.isTag(a.firstElementChild,"li")){var s=e.s,l=s.setCursorBefore,c=s.setCursorAfter,u=i.lastElementChild;return(0,n.call)(o?r.Dom.prepend:r.Dom.append,a.firstElementChild,t),r.Dom.moveContent(a,i,!o),r.Dom.safeRemove(a),(0,n.call)(o?r.Dom.append:r.Dom.prepend,u,t),(0,n.call)(o?l:c,t),!0;}return!1;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.checkRemoveContentNotEditable=void 0;var r=o(229),n=o(185),i=o(249);t.checkRemoveContentNotEditable=function(e,t,o){var a=r.Dom.findSibling(t,o);return!a&&t.parentElement&&t.parentElement!==e.editor&&(a=r.Dom.findSibling(t.parentElement,o)),!(!r.Dom.isElement(a)||r.Dom.isContentEditable(a,e.editor)||((0,n.call)(o?r.Dom.before:r.Dom.after,a,t),r.Dom.safeRemove(a),(0,i.moveNodeInsideStart)(e,t,o),(0,n.call)(o?e.s.setCursorBefore:e.s.setCursorAfter,t),0));};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.checkRemoveChar=void 0;var r=o(443),n=o(229),i=o(185),a=o(147);t.checkRemoveChar=function e(t,o,s,l){for(var c,u,d,p,f=s?-1:1,h=n.Dom.sibling(o,!s),m=n.Dom.sibling(o,s),v=null,g=!1;m&&(n.Dom.isText(m)||n.Dom.isInlineBlock(m));){for(;n.Dom.isInlineBlock(m);)m=s?null==m?void 0:m.lastChild:null==m?void 0:m.firstChild;if(!m)break;if(null===(c=m.nodeValue)||void 0===c?void 0:c.length){var y=(0,i.toArray)(m.nodeValue),b=y.length,_=s?b-1:0;if(y[_]===a.INVISIBLE_SPACE)for(;y[_]===a.INVISIBLE_SPACE;)_+=f;if(p=y[_],y[_+f]===a.INVISIBLE_SPACE){for(_+=f;y[_]===a.INVISIBLE_SPACE;)_+=f;_+=s?1:-1;}if(y=s&&0>_?[]:y.slice(s?0:_+1,s?_:b),!h||!n.Dom.isText(h)||(s?/^ /:/ $/).test(null!==(u=h.nodeValue)&&void 0!==u?u:"")||!(0,i.trimInv)(h.nodeValue||"").length)for(var w=s?y.length-1:0;(s?w>=0:y.length>w)&&" "===y[w];w+=s?-1:1)y[w]=a.NBSP_SPACE;m.nodeValue=y.join("");}if((null===(d=m.nodeValue)||void 0===d?void 0:d.length)||(v=m),!(0,i.isVoid)(p)&&p!==a.INVISIBLE_SPACE){g=!0,(0,i.call)(s?n.Dom.after:n.Dom.before,m,o),("sentence"===l||"word"===l&&" "!==p&&p!==a.NBSP_SPACE)&&e(t,o,s,l);break;}var S=n.Dom.sibling(m,s);!S&&m.parentNode&&m.parentNode!==t.editor&&(S=(0,r.findMostNestedNeighbor)(m,!s,t.editor,!0)),v&&(n.Dom.safeRemove(v),v=null),m=S;}return g&&(function(e){for(var t=e.parentElement;t&&n.Dom.isInlineBlock(t);){var o=t.parentElement;n.Dom.isEmpty(t)&&(n.Dom.after(t,e),n.Dom.safeRemove(t)),t=o;}}(o),function(e,t){t.parentElement!==e.editor&&n.Dom.isBlock(t.parentElement)&&n.Dom.each(t.parentElement,n.Dom.isEmptyTextNode)&&n.Dom.after(t,e.createInside.element("br"));}(t,o),t.s.setCursorBefore(o)),g;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.checkTableCell=void 0;var r=o(229);t.checkTableCell=function(e,t){return!!r.Dom.isCell(t.parentElement);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.checkRemoveEmptyNeighbor=void 0;var r=o(229),n=o(443);t.checkRemoveEmptyNeighbor=function(e,t,o){var i=r.Dom.closest(t,r.Dom.isElement,e.editor);if(!i)return!1;var a=(0,n.findNotEmptySibling)(i,o);return!(!a||!r.Dom.isEmpty(a)||(r.Dom.safeRemove(a),e.s.setCursorBefore(t),0));};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.checkJoinNeighbors=void 0;var r=o(443),n=o(229);function i(e,t,o,r){if(t&&n.Dom.isElement(o)){n.Dom.moveContent(t,o,!r);for(var i=t;i&&i!==e.editor&&n.Dom.isEmpty(i);){var a=i.parentElement;n.Dom.safeRemove(i),i=a;}return!0;}return!1;}t.checkJoinNeighbors=function(e,t,o){for(var a=t,s=a;a&&!(0,r.findNotEmptySibling)(a,o)&&a.parentElement!==e.editor;)s=a=a.parentElement;if(n.Dom.isElement(s)&&n.Dom.isContentEditable(s,e.editor)){var l=(0,r.findNotEmptySibling)(s,o);if(l&&(function(e,t,o,r){var a=n.Dom.isTag(o,["ol","ul"]),s=n.Dom.isTag(t,["ol","ul"]),l=function(e,t){return t?e.firstElementChild:e.lastElementChild;};return s?(o=e.createInside.element(e.o.enterBlock),n.Dom.before(t,o),i(e,l(t,r),o,r)):!(!o||!a||s)&&i(e,t,l(o,!r),r);}(e,s,l,o)||i(e,s,l,o)))return e.s.setCursorBefore(t),!0;}return!1;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.checkUnwrapFirstListItem=void 0;var r=o(229),n=o(186);t.checkUnwrapFirstListItem=function(e,t,o){var i,a=r.Dom.closest(t,r.Dom.isElement,e.editor),s=e.s;if(r.Dom.isTag(a,"li")&&(null===(i=null==a?void 0:a.parentElement)||void 0===i?void 0:i[o?"firstElementChild":"lastElementChild"])===a&&s.cursorInTheEdge(o,a)){var l=a.parentElement,c=e.createInside.element(e.o.enterBlock);return(0,n.call)(o?r.Dom.before:r.Dom.after,l,c),r.Dom.moveContent(a,c),r.Dom.safeRemove(a),r.Dom.isEmpty(l)&&r.Dom.safeRemove(l),(0,n.call)(o?s.setCursorBefore:s.setCursorAfter,t),!0;}return!1;};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.checkNotCollapsed=void 0,t.checkNotCollapsed=function(e){return!e.s.isCollapsed()&&(e.execCommand("Delete"),!0);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),o(146).Config.prototype.delete={hotkeys:{delete:["delete","cmd+backspace"],deleteWord:["ctrl+delete","cmd+alt+backspace","ctrl+alt+backspace"],deleteSentence:["ctrl+shift+delete","cmd+shift+delete"],backspace:["backspace"],backspaceWord:["ctrl+backspace"],backspaceSentence:["ctrl+shift+backspace","cmd+shift+backspace"]}};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.bold=void 0;var r=o(145),n=o(146),i=o(185);n.Config.prototype.controls.subscript={tags:["sub"],tooltip:"subscript"},n.Config.prototype.controls.superscript={tags:["sup"],tooltip:"superscript"},n.Config.prototype.controls.bold={tagRegExp:/^(strong|b)$/i,tags:["strong","b"],css:{"font-weight":["bold","700"]},tooltip:"Bold"},n.Config.prototype.controls.italic={tagRegExp:/^(em|i)$/i,tags:["em","i"],css:{"font-style":"italic"},tooltip:"Italic"},n.Config.prototype.controls.underline={tagRegExp:/^(u)$/i,tags:["u"],css:{"text-decoration-line":"underline"},tooltip:"Underline"},n.Config.prototype.controls.strikethrough={tagRegExp:/^(s)$/i,tags:["s"],css:{"text-decoration-line":"line-through"},tooltip:"Strike through"},t.bold=function(e){var t=function(t){var o=n.Config.defaultOptions.controls[t],a=r.__assign({},o.css),s={};return Object.keys(a).forEach(function(e){s[e]=(0,i.isArray)(a[e])?a[e][0]:a[e];}),e.s.applyStyle(s,{element:o.tags?o.tags[0]:void 0}),e.e.fire("synchro"),!1;};["bold","italic","underline","strikethrough"].forEach(function(t){e.registerButton({name:t,group:"font-style"});}),["superscript","subscript"].forEach(function(t){e.registerButton({name:t,group:"script"});}),e.registerCommand("bold",{exec:t,hotkeys:["ctrl+b","cmd+b"]}).registerCommand("italic",{exec:t,hotkeys:["ctrl+i","cmd+i"]}).registerCommand("underline",{exec:t,hotkeys:["ctrl+u","cmd+u"]}).registerCommand("strikethrough",{exec:t});};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(455),t),r.__exportStar(o(469),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.cleanHtml=void 0;var r=o(145),n=o(280),i=o(366),a=o(231),s=o(230),l=o(456);o(468);var c=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.buttons=[{name:"eraser",group:"font-style"}],t.currentSelectionNode=null,t.walker=new s.LazyWalker(t.j.async,{timeout:t.j.o.cleanHTML.timeout}),t;}return r.__extends(t,e),t.prototype.afterInit=function(e){},Object.defineProperty(t.prototype,"isEditMode",{get:function(){return!(this.j.isInDestruct||!this.j.isEditorMode()||this.j.getReadOnly());},enumerable:!1,configurable:!0}),t.prototype.onChangeCleanHTML=function(){if(this.isEditMode){var e=this.j;this.walker.setWork(e.editor),this.currentSelectionNode=e.s.current();}},t.prototype.startWalker=function(){var e=this,t=this.jodit,o=(0,l.getHash)(this.j.o.cleanHTML.allowTags),r=(0,l.getHash)(this.j.o.cleanHTML.denyTags);this.walker.on("visit",function(n){return(0,l.visitNodeWalker)(t,n,o,r,e.currentSelectionNode);}).on("end",function(t){e.j.e.fire(t?"internalChange finishedCleanHTMLWorker":"finishedCleanHTMLWorker");});},t.prototype.beforeCommand=function(e){if("removeformat"===e.toLowerCase())return this.j.s.isCollapsed()?(0,l.removeFormatForCollapsedSelection)(this.j):(0,l.removeFormatForSelection)(this.j),!1;},t.prototype.onBeforeSetNativeEditorValue=function(e){var t=this.j.createInside.div();return t.innerHTML=e.value,this.onSafeHTML(t),e.value=t.innerHTML,!1;},t.prototype.onSafeHTML=function(e){(0,n.safeHTML)(e,this.j.o.cleanHTML);},t.prototype.beforeDestruct=function(){this.walker.destruct();},r.__decorate([(0,a.watch)([":change",":afterSetMode",":afterInit",":mousedown",":keydown"])],t.prototype,"onChangeCleanHTML",null),r.__decorate([(0,a.hook)("ready")],t.prototype,"startWalker",null),r.__decorate([(0,a.watch)(":beforeCommand")],t.prototype,"beforeCommand",null),r.__decorate([(0,a.watch)(":beforeSetNativeEditorValue")],t.prototype,"onBeforeSetNativeEditorValue",null),r.__decorate([(0,a.watch)(":safeHTML")],t.prototype,"onSafeHTML",null),t;}(i.Plugin);t.cleanHtml=c;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(457),t),r.__exportStar(o(458),t),r.__exportStar(o(459),t),r.__exportStar(o(460),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getHash=void 0;var r=o(185);t.getHash=function(e){var t=/([^[]*)\[([^\]]+)]/,o=/[\s]*,[\s]*/,n=/^(.*)[\s]*=[\s]*(.*)$/,i={};return(0,r.isString)(e)?(e.split(o).map(function(e){e=(0,r.trim)(e);var a=t.exec(e),s={};if(a){var l=a[2].split(o);a[1]&&(l.forEach(function(e){e=(0,r.trim)(e);var t=n.exec(e);t?s[t[1]]=t[2]:s[e]=!0;}),i[a[1].toUpperCase()]=s);}else i[e.toUpperCase()]=!0;}),i):!!e&&(Object.keys(e).forEach(function(t){i[t.toUpperCase()]=e[t];}),i);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isInlineBlock=t.removeFormatForCollapsedSelection=void 0;var r=o(213),n=o(147);function i(e){return r.Dom.isInlineBlock(e)&&!r.Dom.isTag(e,n.INSEPARABLE_TAGS);}t.removeFormatForCollapsedSelection=function(e,t){var o=e.s,n=t;n||(n=e.createInside.fake(),o.range.insertNode(n),o.range.collapse());var a=r.Dom.furthest(n,i,e.editor);if(a)if(o.cursorOnTheLeft(a))r.Dom.before(a,n);else if(o.cursorOnTheRight(a))r.Dom.after(a,n);else{var s=o.splitSelection(a);s&&r.Dom.after(s,n);}t||(o.setCursorBefore(n),r.Dom.safeRemove(n));},t.isInlineBlock=i;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.removeFormatForSelection=void 0;var r=o(213),n=o(186),i=o(443),a=o(458);t.removeFormatForSelection=function(e){var t=e.s,o=e.editor,s=e.createInside,l=t.range,c=l.cloneRange(),u=l.cloneRange(),d=s.fake(),p=s.fake();c.collapse(!0),u.collapse(!1),c.insertNode(d),u.insertNode(p),l.setStartBefore(d),l.collapse(!0),t.selectRange(l),(0,a.removeFormatForCollapsedSelection)(e,d),l.setEndAfter(p),l.collapse(!1),t.selectRange(l),(0,a.removeFormatForCollapsedSelection)(e,p);var f=[];r.Dom.between(d,p,function(e){(0,a.isInlineBlock)(e)&&!r.Dom.isTag(e,["a"])&&f.push(e),r.Dom.isElement(e)&&(0,n.attr)(e,"style")&&(0,n.attr)(e,"style",null);}),f.forEach(function(e){return r.Dom.unwrap(e);});var h=function(e,t){if(!(0,i.findNotEmptySibling)(e,t)){var r=e.parentNode;if(r&&r!==o&&(0,n.attr)(r,"style"))return(0,n.attr)(r,"style",null),h(r,t),!0;}};h(d,!0)&&h(p,!1),l.setStartAfter(d),l.setEndBefore(p),t.selectRange(l),r.Dom.safeRemove(d),r.Dom.safeRemove(p);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.visitNodeWalker=void 0;var r=o(145),n=o(461),i=Object.keys(n);t.visitNodeWalker=function(e,t,o,a,s){var l,c,u=!1;try{for(var d=r.__values(i),p=d.next();!p.done;p=d.next())if(u=(0,n[p.value])(e,t,u,o,a,s),!t.isConnected)return!0;}catch(e){l={error:e};}finally{try{p&&!p.done&&(c=d.return)&&c.call(d);}finally{if(l)throw l.error;}}return u;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(462),t),r.__exportStar(o(463),t),r.__exportStar(o(464),t),r.__exportStar(o(465),t),r.__exportStar(o(466),t),r.__exportStar(o(467),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.replaceOldTags=void 0;var r=o(213);t.replaceOldTags=function(e,t,o){var n=function(e,t,o){if(!o||!r.Dom.isHTMLElement(t))return t;var n=o[t.nodeName.toLowerCase()]||o[t.nodeName];return n?r.Dom.replace(t,n,e.createInside,!0,!1):t;}(e,t,e.o.cleanHTML.replaceOldTags);return t!==n?(t=n,!0):o;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.allowAttributes=void 0;var r=o(213);t.allowAttributes=function(e,t,o,n){if(n&&r.Dom.isElement(t)&&!0!==n[t.nodeName]){var i=t.attributes;if(i&&i.length){for(var a=[],s=0;i.length>s;s+=1){var l=n[t.nodeName][i[s].name];(!l||!0!==l&&l!==i[s].value)&&a.push(i[s].name);}a.length&&(o=!0),a.forEach(function(e){t.removeAttribute(e);});}}return o;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.fillEmptyParagraph=void 0;var r=o(213);t.fillEmptyParagraph=function(e,t,o){if(e.o.cleanHTML.fillEmptyParagraph&&r.Dom.isBlock(t)&&r.Dom.isEmpty(t,/^(img|svg|canvas|input|textarea|form|br)$/)){var n=e.createInside.element("br");return t.appendChild(n),!0;}return o;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.tryRemoveNode=void 0;var r=o(213),n=o(147),i=o(276);t.tryRemoveNode=function(e,t,o,a,s,l){return function(e,t,o,a,s){return!(r.Dom.isText(t)||!(a&&!a[t.nodeName]||s&&s[t.nodeName]))||e.o.cleanHTML.removeEmptyElements&&r.Dom.isElement(t)&&null!=t.nodeName.match(n.IS_INLINE)&&!r.Dom.isTemporary(t)&&0===(0,i.trim)(t.innerHTML).length&&(null==o||!r.Dom.isOrContains(t,o));}(e,t,l,a,s)?(r.Dom.safeRemove(t),!0):o;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.removeInvTextNodes=void 0;var r=o(147),n=o(213);t.removeInvTextNodes=function(e,t,o,i,a,s){return s&&n.Dom.isText(t)&&null!=t.nodeValue&&(0,r.INVISIBLE_SPACE_REG_EXP)().test(t.nodeValue)&&0!==t.nodeValue.replace((0,r.INVISIBLE_SPACE_REG_EXP)(),"").length?(t.nodeValue=t.nodeValue.replace((0,r.INVISIBLE_SPACE_REG_EXP)(),""),t===s&&e.s.isCollapsed()&&e.s.setCursorAfter(t),t.nodeValue||n.Dom.safeRemove(t),!0):o;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.sanitizeAttributes=void 0;var r=o(213),n=o(185);t.sanitizeAttributes=function(e,t,o){return!(!r.Dom.isElement(t)||!(0,n.sanitizeHTMLElement)(t))||o;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(146);r.Config.prototype.cleanHTML={timeout:300,removeEmptyElements:!0,fillEmptyParagraph:!0,replaceNBSP:!0,replaceOldTags:{i:"em",b:"strong"},allowTags:!1,denyTags:!1,removeOnError:!0,safeJavaScriptLink:!0},r.Config.prototype.controls.eraser={command:"removeFormat",tooltip:"Clear Formatting"};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.WrapNodes=void 0;var r=o(145),n=o(365),i=o(229),a=o(156),s=o(231);o(470);var l=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.isSuitableStart=function(e){return i.Dom.isText(e)&&(0,a.isString)(e.nodeValue)&&/[^\s]/.test(e.nodeValue)||t.isNotClosed(e)&&!i.Dom.isTemporary(e);},t.isSuitable=function(e){return i.Dom.isText(e)||t.isNotClosed(e);},t.isNotClosed=function(e){return i.Dom.isElement(e)&&!(i.Dom.isBlock(e)||i.Dom.isTag(e,t.j.o.wrapNodes.exclude));},t;}return r.__extends(t,e),t.prototype.afterInit=function(e){"br"!==e.o.enter.toLowerCase()&&e.e.on("afterInit.wtn postProcessSetEditorValue.wtn",this.postProcessSetEditorValue);},t.prototype.beforeDestruct=function(e){e.e.off(".wtn");},t.prototype.postProcessSetEditorValue=function(){var e=this.jodit;if(e.isEditorMode()){for(var t=e.editor.firstChild,o=!1;t;){if(this.checkAloneListLeaf(t,e),this.isSuitableStart(t)){o||e.s.save(),o=!0;var r=e.createInside.element(e.o.enter);for(i.Dom.before(t,r);t&&this.isSuitable(t);){var n=t.nextSibling;r.appendChild(t),t=n;}r.normalize();}t=t&&t.nextSibling;}o&&(e.s.restore(),"afterInit"===e.e.current&&e.e.fire("internalChange"));}},t.prototype.checkAloneListLeaf=function(e,t){i.Dom.isElement(e)&&i.Dom.isTag(e,"li")&&!i.Dom.isTag(e.parentElement,["ul","ol"])&&i.Dom.wrap(e,"ul",t.createInside);},r.__decorate([s.autobind],t.prototype,"postProcessSetEditorValue",null),t;}(n.Plugin);t.WrapNodes=l;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),o(146).Config.prototype.wrapNodes={exclude:["hr","style","br"]};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);o(472),r.__exportStar(o(473),t),r.__exportStar(o(475),t),r.__exportStar(o(477),t),r.__exportStar(o(479),t),r.__exportStar(o(481),t),r.__exportStar(o(482),t),r.__exportStar(o(483),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(146);r.Config.prototype.controls.cut={command:"cut",isDisabled:function(e){return e.s.isCollapsed();},tooltip:"Cut selection"},r.Config.prototype.controls.copy={command:"copy",isDisabled:function(e){return e.s.isCollapsed();},tooltip:"Copy selection"},r.Config.prototype.controls.selectall={icon:"select-all",command:"selectall",tooltip:"Select all"};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.clipboard=t.pluginKey=void 0;var r=o(147),n=o(185),i=o(474);t.pluginKey="clipboard";var a=function(){function e(){this.buttons=[{name:"cut",group:"clipboard"},{name:"copy",group:"clipboard"},{name:"paste",group:"clipboard"},{name:"selectall",group:"clipboard"}];}return e.prototype.init=function(e){var o;null===(o=this.buttons)||void 0===o||o.forEach(function(t){return e.registerButton(t);}),e.e.off("copy.".concat(t.pluginKey," cut.").concat(t.pluginKey)).on("copy.".concat(t.pluginKey," cut.").concat(t.pluginKey),function(o){var a,s=e.s.html,l=(0,i.getDataTransfer)(o)||(0,i.getDataTransfer)(e.ew)||(0,i.getDataTransfer)(o.originalEvent);l&&(l.setData(r.TEXT_PLAIN,(0,n.stripTags)(s)),l.setData(r.TEXT_HTML,s)),e.buffer.set(t.pluginKey,s),e.e.fire("pasteStack",{html:s,action:e.o.defaultActionOnPaste}),"cut"===o.type&&(e.s.remove(),e.s.focus()),o.preventDefault(),null===(a=null==e?void 0:e.events)||void 0===a||a.fire("afterCopy",s);});},e.prototype.destruct=function(e){var o,r;null===(o=null==e?void 0:e.buffer)||void 0===o||o.set(t.pluginKey,""),null===(r=null==e?void 0:e.events)||void 0===r||r.off("."+t.pluginKey);},e;}();t.clipboard=a;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.askInsertTypeDialog=t.getAllTypes=t.pasteInsertHtml=t.getDataTransfer=void 0;var r=o(145),n=o(220),i=o(229),a=o(147),s=o(148),l=o(335),c=o(188);t.getDataTransfer=function(e){if(e.clipboardData)return e.clipboardData;try{return e.dataTransfer||new DataTransfer();}catch(e){return null;}},t.pasteInsertHtml=function(e,t,o){if(!t.isInDestruct){(function(e){return Boolean(e&&"drop"===e.type);})(e)&&t.s.insertCursorAtPoint(e.clientX,e.clientY);var r=t.e.fire("beforePasteInsert",o);!(0,n.isVoid)(r)&&((0,n.isString)(r)||(0,n.isNumber)(r)||i.Dom.isNode(r))&&(o=r),(0,n.isString)(o)&&(o=function(e){var t=(e=e.replace(/<meta[^>]+?>/g,"")).search(/<!--StartFragment-->/i);-1!==t&&(e=e.substring(t+20));var o=e.search(/<!--EndFragment-->/i);return-1!==o&&(e=e.substring(0,o)),e;}(o)),t.s.insertHTML(o);}},t.getAllTypes=function(e){var t=e.types,o="";if((0,n.isArray)(t)||"[object DOMStringList]"==={}.toString.call(t))for(var r=0;t.length>r;r+=1)o+=t[r]+";";else o=(t||a.TEXT_PLAIN).toString()+";";return o;},t.askInsertTypeDialog=function(e,t,o,n,i){if(!1!==e.e.fire("beforeOpenPasteDialog",t,o,n,i)){var a=(0,s.Confirm)('<div style="word-break: normal; white-space: normal">'.concat(e.i18n(t),"</div>"),e.i18n(o));a.bindDestruct(e),(0,c.markOwner)(e,a.container);var u=i.map(function(t){var o=t.text,r=t.value;return(0,l.Button)(e,{text:o,name:o.toLowerCase(),tabIndex:0}).onAction(function(){a.close(),n(r);});});a.e.one(a,"afterClose",function(){e.s.isFocused()||e.s.focus();});var d=(0,l.Button)(e,{text:"Cancel",tabIndex:0}).onAction(function(){a.close();});return a.setFooter(r.__spreadArray(r.__spreadArray([],r.__read(u),!1),[d],!1)),u[0].focus(),u[0].state.variant="primary",e.e.fire("afterOpenPasteDialog",a,t,o,n,i),a;}};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.paste=void 0;var r=o(145),n=o(365),i=o(474);o(476);var a=o(147),s=o(185),l=o(473),c=o(229),u=o(231),d=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.pasteStack=new s.LimitedStack(20),t;}return r.__extends(t,e),t.prototype.afterInit=function(e){var t=this;e.e.on("paste.paste",this.onPaste).on("pasteStack.paste",function(e){return t.pasteStack.push(e);}),e.o.nl2brInPlainText&&this.j.e.on("processPaste.paste",this.onProcessPasteReplaceNl2Br);},t.prototype.onPaste=function(e){try{if(!1===this.customPasteProcess(e)||!1===this.j.e.fire("beforePaste",e))return e.preventDefault(),!1;this.defaultPasteProcess(e);}finally{this.j.e.fire("afterPaste",e);}},t.prototype.customPasteProcess=function(e){if(this.j.o.processPasteHTML){var t,o=(0,i.getDataTransfer)(e),r={html:null==o?void 0:o.getData(a.TEXT_HTML),plain:null==o?void 0:o.getData(a.TEXT_PLAIN),rtf:null==o?void 0:o.getData(a.TEXT_RTF)};for(t in r){var n=r[t];if((0,s.isHTML)(n)&&(this.j.e.fire("processHTML",e,n,r)||this.processHTML(e,n)))return!1;}}},t.prototype.defaultPasteProcess=function(e){var t=(0,i.getDataTransfer)(e),o=(null==t?void 0:t.getData(a.TEXT_HTML))||(null==t?void 0:t.getData(a.TEXT_PLAIN));if(t&&o&&""!==(0,s.trim)(o)){var r=this.j.e.fire("processPaste",e,o,(0,i.getAllTypes)(t));void 0!==r&&(o=r),((0,s.isString)(o)||c.Dom.isNode(o))&&this.insertByType(e,o,this.j.o.defaultActionOnPaste),e.preventDefault(),e.stopPropagation();}},t.prototype.processHTML=function(e,t){var o=this;if(this.j.o.askBeforePasteHTML){if(this.j.o.memorizeChoiceWhenPasteFragment){var r=this.pasteStack.find(function(e){return e.html===t;});if(r)return this.insertByType(e,t,r.action||this.j.o.defaultActionOnPaste),!0;}return(0,i.askInsertTypeDialog)(this.j,"Your code is similar to HTML. Keep as HTML?","Paste as HTML",function(r){o.insertByType(e,t,r);},this.j.o.pasteHTMLActionList),!0;}return!1;},t.prototype.insertByType=function(e,t,o){if(this.pasteStack.push({html:t,action:o}),(0,s.isString)(t))switch(this.j.buffer.set(l.pluginKey,t),o){case a.INSERT_CLEAR_HTML:t=(0,s.cleanFromWord)(t);break;case a.INSERT_ONLY_TEXT:t=(0,s.stripTags)(t);break;case a.INSERT_AS_TEXT:t=(0,s.htmlspecialchars)(t);}(0,i.pasteInsertHtml)(e,this.j,t);},t.prototype.onProcessPasteReplaceNl2Br=function(e,t,o){if(o===a.TEXT_PLAIN+";"&&!(0,s.isHTML)(t))return(0,s.nl2br)(t);},t.prototype.beforeDestruct=function(e){e.e.off("paste.paste",this.onPaste);},r.__decorate([u.autobind],t.prototype,"onPaste",null),r.__decorate([u.autobind],t.prototype,"onProcessPasteReplaceNl2Br",null),t;}(n.Plugin);t.paste=d;},function(e,t,o){"use strict";var r;Object.defineProperty(t,"__esModule",{value:!0});var n=o(145),i=o(147),a=o(146),s=o(473),l=o(474),c=o(362);a.Config.prototype.askBeforePasteHTML=!0,a.Config.prototype.processPasteHTML=!0,a.Config.prototype.pasteHTMLActionList=[{value:i.INSERT_AS_HTML,text:"Keep"},{value:i.INSERT_AS_TEXT,text:"Insert as Text"},{value:i.INSERT_ONLY_TEXT,text:"Insert only Text"}],a.Config.prototype.memorizeChoiceWhenPasteFragment=!1,a.Config.prototype.nl2brInPlainText=!0,a.Config.prototype.defaultActionOnPaste=i.INSERT_AS_HTML,a.Config.prototype.draggableTags=["img","jodit-media","jodit"];var u="pasteStorage";a.Config.prototype.controls.paste={tooltip:"Paste from clipboard",exec:function(e,t,o){var r=o.control;return n.__awaiter(this,void 0,void 0,function(){var t,o,a,d,p;return n.__generator(this,function(n){switch(n.label){case 0:if(r.name===u)return e.execCommand("showPasteStorage"),[2];if(e.s.focus(),t="",o=!0,!navigator.clipboard)return[3,11];n.label=1;case 1:return n.trys.push([1,6,,7]),[4,navigator.clipboard.read()];case 2:return(a=n.sent())&&a.length?[4,a[0].getType(i.TEXT_PLAIN)]:[3,5];case 3:return d=n.sent(),[4,new Response(d).text()];case 4:t=n.sent(),n.label=5;case 5:return o=!1,[3,7];case 6:return n.sent(),[3,7];case 7:if(!o)return[3,11];n.label=8;case 8:return n.trys.push([8,10,,11]),[4,navigator.clipboard.readText()];case 9:return t=n.sent(),o=!1,[3,11];case 10:return n.sent(),[3,11];case 11:return o&&(t=e.buffer.get(s.pluginKey)||"",o=0===t.length),p=e.value,o?(e.ed.execCommand("paste"),!(o=p===e.value)&&e.e.fire("afterPaste")):t.length?((0,l.pasteInsertHtml)(null,e,t),e.e.fire("afterPaste")):o&&(0,c.Alert)(e.i18n("Your browser doesn't support direct access to the clipboard."),function(){e.s.focus();}).bindDestruct(e),[2];}});});},list:(r={},r[u]="Paste Storage",r),isChildDisabled:function(e){return 2>e.e.fire("pasteStorageList");}};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.PasteFromWord=void 0;var r=o(145),n=o(365),i=o(185),a=o(147),s=o(474),l=o(231);o(478);var c=function(e){function t(){return null!==e&&e.apply(this,arguments)||this;}return r.__extends(t,e),t.prototype.afterInit=function(e){},t.prototype.beforeDestruct=function(e){},t.prototype.processWordHTML=function(e,t,o){var r=this,n=this.j,a=n.o,l=a.askBeforePasteFromWord,c=a.defaultActionOnPasteFromWord,u=a.defaultActionOnPaste,d=a.pasteFromWordActionList;return!(!a.processPasteFromWord||!(0,i.isHtmlFromWord)(t)||(l?(0,s.askInsertTypeDialog)(n,"The pasted content is coming from a Microsoft Word/Excel document. Do you want to keep the format or clean it up?","Word Paste Detected",function(n){r.insertFromWordByType(e,t,n,o);},d):this.insertFromWordByType(e,t,c||u,o),0));},t.prototype.insertFromWordByType=function(e,t,o,r){var n;switch(o){case a.INSERT_AS_HTML:if(t=(0,i.applyStyles)(t),this.j.o.beautifyHTML){var l=null===(n=this.j.events)||void 0===n?void 0:n.fire("beautifyHTML",t);(0,i.isString)(l)&&(t=l);}break;case a.INSERT_AS_TEXT:t=(0,i.cleanFromWord)(t);break;case a.INSERT_ONLY_TEXT:t=(0,i.stripTags)((0,i.cleanFromWord)(t));}(0,s.pasteInsertHtml)(e,this.j,t);},r.__decorate([(0,l.watch)(":processHTML")],t.prototype,"processWordHTML",null),t;}(n.Plugin);t.PasteFromWord=c;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(146),n=o(147);r.Config.prototype.askBeforePasteFromWord=!0,r.Config.prototype.processPasteFromWord=!0,r.Config.prototype.defaultActionOnPasteFromWord=null,r.Config.prototype.pasteFromWordActionList=[{value:n.INSERT_AS_HTML,text:"Keep"},{value:n.INSERT_AS_TEXT,text:"Clean"},{value:n.INSERT_ONLY_TEXT,text:"Insert only Text"}];},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.pasteStorage=void 0;var r=o(145);o(480);var n=o(147),i=o(322),a=o(365),s=o(229),l=o(185),c=o(335),u=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.currentIndex=0,t.list=[],t.container=null,t.listBox=null,t.previewBox=null,t.dialog=null,t.paste=function(){if(t.j.s.focus(),t.j.s.insertHTML(t.list[t.currentIndex]),0!==t.currentIndex){var e=t.list[0];t.list[0]=t.list[t.currentIndex],t.list[t.currentIndex]=e;}t.dialog&&t.dialog.close(),t.j.synchronizeValues(),t.j.e.fire("afterPaste");},t.onKeyDown=function(e){var o=t.currentIndex;-1!==[n.KEY_UP,n.KEY_DOWN,n.KEY_ENTER].indexOf(e.key)&&(e.key===n.KEY_UP&&(0===o?o=t.list.length-1:o-=1),e.key===n.KEY_DOWN&&(o===t.list.length-1?o=0:o+=1),e.key!==n.KEY_ENTER?(o!==t.currentIndex&&t.selectIndex(o),e.stopImmediatePropagation(),e.preventDefault()):t.paste());},t.selectIndex=function(e){t.listBox&&(0,l.toArray)(t.listBox.childNodes).forEach(function(o,r){o.classList.remove("jodit_active"),e===r&&t.previewBox&&(o.classList.add("jodit_active"),t.previewBox.innerHTML=t.list[e],o.focus());}),t.currentIndex=e;},t.showDialog=function(){2>t.list.length||(t.dialog||t.createDialog(),t.listBox&&(t.listBox.innerHTML=""),t.previewBox&&(t.previewBox.innerHTML=""),t.list.forEach(function(e,o){var r=t.j.c.element("a");r.textContent=o+1+". "+e.replace((0,n.SPACE_REG_EXP)(),""),t.j.e.on(r,"keydown",t.onKeyDown),(0,l.attr)(r,"href","#"),(0,l.attr)(r,"data-index",o.toString()),(0,l.attr)(r,"tab-index","-1"),t.listBox&&t.listBox.appendChild(r);}),t.dialog&&t.dialog.open(),t.j.async.setTimeout(function(){t.selectIndex(0);},100));},t;}return r.__extends(t,e),t.prototype.createDialog=function(){var e=this;this.dialog=new i.Dialog({language:this.j.o.language});var t=(0,c.Button)(this.j,"paste","Paste","primary");t.onAction(this.paste);var o=(0,c.Button)(this.j,"","Cancel");o.onAction(this.dialog.close),this.container=this.j.c.div(),this.container.classList.add("jodit-paste-storage"),this.listBox=this.j.c.div(),this.previewBox=this.j.c.div(),this.container.appendChild(this.listBox),this.container.appendChild(this.previewBox),this.dialog.setHeader(this.j.i18n("Choose Content to Paste")),this.dialog.setContent(this.container),this.dialog.setFooter([t,o]),this.j.e.on(this.listBox,"click dblclick",function(t){var o=t.target;return s.Dom.isTag(o,"a")&&o.hasAttribute("data-index")&&e.selectIndex(parseInt((0,l.attr)(o,"-index")||"0",10)),"dblclick"===t.type&&e.paste(),!1;});},t.prototype.afterInit=function(){var e=this;this.j.e.off("afterCopy.paste-storage").on("pasteStorageList.paste-storage",function(){return e.list.length;}).on("afterCopy.paste-storage",function(t){-1!==e.list.indexOf(t)&&e.list.splice(e.list.indexOf(t),1),e.list.unshift(t),e.list.length>5&&(e.list.length=5);}),this.j.registerCommand("showPasteStorage",{exec:this.showDialog,hotkeys:["ctrl+shift+v","cmd+shift+v"]});},t.prototype.beforeDestruct=function(){this.dialog&&this.dialog.destruct(),this.j.e.off(".paste-storage"),s.Dom.safeRemove(this.previewBox),s.Dom.safeRemove(this.listBox),s.Dom.safeRemove(this.container),this.container=null,this.listBox=null,this.previewBox=null,this.dialog=null,this.list=[];},t;}(a.Plugin);t.pasteStorage=u;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.copyFormat=void 0;var r=o(146),n=o(229),i=o(185),a="copyformat",s=["fontWeight","fontStyle","fontSize","color","margin","padding","borderWidth","borderStyle","borderColor","borderRadius","backgroundColor","textDecorationLine","fontFamily"],l=function(e,t,o,r){var n=(0,i.css)(o,t);return n===r[t]&&(n=o.parentNode&&o!==e.editor&&o.parentNode!==e.editor?l(e,t,o.parentNode,r):void 0),n;};r.Config.prototype.controls.copyformat={exec:function(e,t,o){var r=o.button;if(t){if(e.buffer.exists(a))e.buffer.delete(a),e.e.off(e.editor,"mouseup.copyformat");else{var c={},u=n.Dom.up(t,function(e){return e&&!n.Dom.isText(e);},e.editor)||e.editor,d=e.createInside.span();e.editor.appendChild(d),s.forEach(function(e){c[e]=(0,i.css)(d,e);}),d!==e.editor&&n.Dom.safeRemove(d);var p=function(e,t,o){var r={};return t&&s.forEach(function(n){r[n]=l(e,n,t,o),n.match(/border(Style|Color)/)&&!r.borderWidth&&(r[n]=void 0);}),r;}(e,u,c);e.e.on(e.editor,"mouseup.copyformat",function(){e.buffer.delete(a);var t=e.s.current();t&&(n.Dom.isTag(t,"img")?(0,i.css)(t,p):e.s.applyStyle(p)),e.e.off(e.editor,"mouseup.copyformat");}),e.buffer.set(a,!0);}r.update();}},isActive:function(e){return e.buffer.exists(a);},tooltip:"Paint format"},t.copyFormat=function(e){e.registerButton({name:"copyformat",group:"clipboard"});};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.DragAndDrop=void 0;var r=o(145),n=o(147),i=o(229),a=o(185),s=o(365),l=o(474),c=o(231),u=o(369),d=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.isFragmentFromEditor=!1,t.isCopyMode=!1,t.startDragPoint={x:0,y:0},t.draggable=null,t.bufferRange=null,t.getText=function(e){var t=(0,l.getDataTransfer)(e);return t?t.getData(n.TEXT_HTML)||t.getData(n.TEXT_PLAIN):null;},t;}return r.__extends(t,e),t.prototype.afterInit=function(){this.j.e.on([window,this.j.ed,this.j.editor],"dragstart.DragAndDrop",this.onDragStart);},t.prototype.onDragStart=function(e){var t=e.target;if(this.onDragEnd(),this.isFragmentFromEditor=i.Dom.isOrContains(this.j.editor,t,!0),this.isCopyMode=!this.isFragmentFromEditor||(0,a.ctrlKey)(e),this.isFragmentFromEditor){var o=this.j.s.sel,r=o&&o.rangeCount?o.getRangeAt(0):null;r&&(this.bufferRange=r.cloneRange());}else this.bufferRange=null;this.startDragPoint.x=e.clientX,this.startDragPoint.y=e.clientY,(0,u.isFileBrowserFilesItem)(t)&&(t=t.querySelector("img")),i.Dom.isTag(t,"img")&&(this.draggable=t.cloneNode(!0),(0,a.dataBind)(this.draggable,"target",t)),this.addDragListeners();},t.prototype.addDragListeners=function(){this.j.e.on("dragover",this.onDrag).on("drop.DragAndDrop",this.onDrop).on(window,"dragend.DragAndDrop drop.DragAndDrop mouseup.DragAndDrop",this.onDragEnd);},t.prototype.removeDragListeners=function(){this.j.e.off("dragover",this.onDrag).off("drop.DragAndDrop",this.onDrop).off(window,"dragend.DragAndDrop drop.DragAndDrop mouseup.DragAndDrop",this.onDragEnd);},t.prototype.onDrag=function(e){this.draggable&&(this.j.e.fire("hidePopup"),this.j.s.insertCursorAtPoint(e.clientX,e.clientY),e.preventDefault(),e.stopPropagation());},t.prototype.onDragEnd=function(){this.draggable&&(i.Dom.safeRemove(this.draggable),this.draggable=null),this.isCopyMode=!1,this.removeDragListeners();},t.prototype.onDrop=function(e){if(!e.dataTransfer||!e.dataTransfer.files||!e.dataTransfer.files.length){if(!this.isFragmentFromEditor&&!this.draggable)return this.j.e.fire("paste",e),e.preventDefault(),e.stopPropagation(),!1;var t=this.j.s.sel,o=this.bufferRange||(t&&t.rangeCount?t.getRangeAt(0):null),n=null;if(!this.draggable&&o)n=this.isCopyMode?o.cloneContents():o.extractContents();else if(this.draggable){if(this.isCopyMode){var s=r.__read("1"===(0,a.attr)(this.draggable,"-is-file")?["a","href"]:["img","src"],2),l=s[0],c=s[1];(n=this.j.createInside.element(l)).setAttribute(c,(0,a.attr)(this.draggable,"data-src")||(0,a.attr)(this.draggable,"src")||""),"a"===l&&(n.textContent=(0,a.attr)(n,c)||"");}else n=(0,a.dataBind)(this.draggable,"target");}else this.getText(e)&&(n=this.j.createInside.fromHTML(this.getText(e)));t&&t.removeAllRanges(),this.j.s.insertCursorAtPoint(e.clientX,e.clientY),n&&(this.j.s.insertNode(n,!1,!1),o&&n.firstChild&&n.lastChild&&(o.setStartBefore(n.firstChild),o.setEndAfter(n.lastChild),this.j.s.selectRange(o),this.j.e.fire("synchro")),i.Dom.isTag(n,"img")&&this.j.events&&this.j.e.fire("afterInsertImage",n)),e.preventDefault(),e.stopPropagation();}this.isFragmentFromEditor=!1,this.removeDragListeners();},t.prototype.beforeDestruct=function(){this.onDragEnd(),this.j.e.off(window,".DragAndDrop").off(".DragAndDrop").off([window,this.j.ed,this.j.editor],"dragstart.DragAndDrop",this.onDragStart);},r.__decorate([c.autobind],t.prototype,"onDragStart",null),r.__decorate([(0,c.throttle)(function(e){return e.defaultTimeout/10;})],t.prototype,"onDrag",null),r.__decorate([c.autobind],t.prototype,"onDragEnd",null),r.__decorate([c.autobind],t.prototype,"onDrop",null),t;}(s.Plugin);t.DragAndDrop=d;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.DragAndDropElement=void 0;var r,n=o(145),i=o(185),a=o(365),s=o(229),l=o(237),c=o(231);!function(e){e[e.IDLE=0]="IDLE",e[e.WAIT_DRAGGING=1]="WAIT_DRAGGING",e[e.DRAGGING=2]="DRAGGING";}(r||(r={}));var u=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.dragList=[],t.draggable=null,t.isCopyMode=!1,t.diffStep=10,t.startX=0,t.startY=0,t.state=r.IDLE,t;}return n.__extends(t,e),t.prototype.afterInit=function(){this.dragList=this.j.o.draggableTags?(0,i.splitArray)(this.j.o.draggableTags).filter(Boolean).map(function(e){return e.toLowerCase();}):[],this.dragList.length&&this.j.e.on("mousedown dragstart",this.onDragStart);},t.prototype.onDragStart=function(e){var t=this;if("dragstart"===e.type&&this.draggable)return!1;if(r.IDLE>=this.state){var o=e.target;if(this.dragList.length&&o){var n=function(e){return Boolean(e&&t.dragList.includes(e.nodeName.toLowerCase()));},a=s.Dom.furthest(o,n,this.j.editor)||(n(o)?o:null);a&&(s.Dom.isTag(a.parentElement,"a")&&a.parentElement.firstChild===a&&a.parentElement.lastChild===a&&(a=a.parentElement),this.startX=e.clientX,this.startY=e.clientY,this.isCopyMode=(0,i.ctrlKey)(e),this.draggable=a.cloneNode(!0),(0,i.dataBind)(this.draggable,"target",a),this.state=r.WAIT_DRAGGING,this.addDragListeners());}}},t.prototype.onDrag=function(e){var o,n;if(this.draggable&&this.state!==r.IDLE){var a=e.clientY;if(this.state!==r.WAIT_DRAGGING||Math.sqrt(Math.pow(e.clientX-this.startX,2)+Math.pow(a-this.startY,2))>=this.diffStep){if(this.state===r.WAIT_DRAGGING&&(this.j.lock("drag-and-drop-element"),this.state=r.DRAGGING),this.j.e.fire("hidePopup hideResizer"),!this.draggable.parentNode){var s=(0,i.dataBind)(this.draggable,"target");(0,i.css)(this.draggable,{zIndex:1e13,pointerEvents:"none",pointer:"drag",position:"fixed",opacity:.7,display:"inline-block",left:e.clientX,top:e.clientY,width:null!==(o=null==s?void 0:s.offsetWidth)&&void 0!==o?o:100,height:null!==(n=null==s?void 0:s.offsetHeight)&&void 0!==n?n:100}),(0,l.getContainer)(this.j,t).appendChild(this.draggable);}(0,i.css)(this.draggable,{left:e.clientX,top:e.clientY}),this.j.s.insertCursorAtPoint(e.clientX,e.clientY);}}},t.prototype.onDragEnd=function(){this.isInDestruct||(this.removeDragListeners(),this.j.unlock(),this.state=r.IDLE,this.draggable&&(s.Dom.safeRemove(this.draggable),this.draggable=null));},t.prototype.onDrop=function(){if(this.draggable&&this.state>=r.DRAGGING){var e=(0,i.dataBind)(this.draggable,"target");this.onDragEnd(),this.isCopyMode&&(e=e.cloneNode(!0));var t=e.parentElement;this.j.s.insertNode(e,!0,!1),t&&s.Dom.isEmpty(t)&&!s.Dom.isTag(t,["td","th"])&&s.Dom.safeRemove(t),s.Dom.isTag(e,"img")&&this.j.e&&this.j.e.fire("afterInsertImage",e),this.j.e.fire("synchro");}else this.onDragEnd();},t.prototype.addDragListeners=function(){this.j.e.on(this.j.editor,"mousemove",this.onDrag).on("mouseup",this.onDrop).on([this.j.ew,this.ow],"mouseup",this.onDragEnd);},t.prototype.removeDragListeners=function(){this.j.e.off(this.j.editor,"mousemove",this.onDrag).off("mouseup",this.onDrop).off([this.j.ew,this.ow],"mouseup",this.onDragEnd);},t.prototype.beforeDestruct=function(){this.onDragEnd(),this.j.e.off("mousedown dragstart",this.onDragStart),this.removeDragListeners();},n.__decorate([c.autobind],t.prototype,"onDragStart",null),n.__decorate([(0,c.throttle)(function(e){return e.defaultTimeout/10;})],t.prototype,"onDrag",null),n.__decorate([c.autobind],t.prototype,"onDragEnd",null),n.__decorate([c.autobind],t.prototype,"onDrop",null),t;}(a.Plugin);t.DragAndDropElement=u;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.color=void 0;var r=o(146),n=o(148),i=o(185),a=o(485);r.Config.prototype.controls.brush={update:function(e,t){var o=(0,i.dataBind)(e,"color"),r=function(o,r){r&&r!==(0,i.css)(t.editor,o).toString()&&(e.state.icon.fill=r);};if(o){var a=(0,i.dataBind)(e,"color");r("color"===a?a:"background-color",o);}else{var s=t.s.current();if(s&&!e.state.disabled){var l=n.Dom.closest(s,n.Dom.isElement,t.editor)||t.editor;r("color",(0,i.css)(l,"color").toString()),r("background-color",(0,i.css)(l,"background-color").toString());}e.state.icon.fill="",e.state.activated=!1;}},popup:function(e,t,o,r,s){var l="",c="",u=[],d=null;return t&&t!==e.editor&&n.Dom.isNode(t)&&(n.Dom.isElement(t)&&e.s.isCollapsed()&&!n.Dom.isTag(t,["br","hr"])&&(d=t),n.Dom.up(t,function(e){if(n.Dom.isHTMLElement(e)){var t=(0,i.css)(e,"color",!0),o=(0,i.css)(e,"background-color",!0);if(t)return l=t.toString(),!0;if(o)return c=o.toString(),!0;}},e.editor)),u=[{name:"Background",content:(0,a.ColorPickerWidget)(e,function(t){d?d.style.backgroundColor=t:e.execCommand("background",!1,t),(0,i.dataBind)(s,"color",t),(0,i.dataBind)(s,"color-mode","background"),r();},c)},{name:"Text",content:(0,a.ColorPickerWidget)(e,function(t){d?d.style.color=t:e.execCommand("forecolor",!1,t),(0,i.dataBind)(s,"color",t),(0,i.dataBind)(s,"color-mode","color"),r();},l)}],"background"!==e.o.colorPickerDefaultTab&&(u=u.reverse()),(0,a.TabsWidget)(e,u,d);},exec:function(e,t,o){var r=o.button,a=(0,i.dataBind)(r,"color-mode"),s=(0,i.dataBind)(r,"color");if(!a)return!1;if(t&&t!==e.editor&&n.Dom.isNode(t)&&n.Dom.isElement(t))switch(a){case"color":t.style.color=s;break;case"background":t.style.backgroundColor=s;}else e.execCommand("background"===a?a:"forecolor",!1,s);},tooltip:"Fill color or set the text color"},t.color=function(e){e.registerButton({name:"brush",group:"color"});var t=function(t,o,r){var n=(0,i.normalizeColor)(r);switch(t){case"background":e.s.applyStyle({backgroundColor:n||""});break;case"forecolor":e.s.applyStyle({color:n||""});}return e.synchronizeValues(),!1;};e.registerCommand("forecolor",t).registerCommand("background",t);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(486),t),r.__exportStar(o(488),t),r.__exportStar(o(490),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ColorPickerWidget=void 0,o(487);var r=o(185),n=o(335),i=o(229);t.ColorPickerWidget=function(e,t,o){var a="jodit-color-picker",s=(0,r.normalizeColor)(o),l=e.c.div(a),c=e.o.textIcons?"<span>".concat(e.i18n("palette"),"</span>"):n.Icon.get("palette"),u=function(e){var t=[];return(0,r.isPlainObject)(e)?Object.keys(e).forEach(function(o){t.push('<div class="'.concat(a,"__group ").concat(a,"__group-").concat(o,'">')),t.push(u(e[o])),t.push("</div>");}):(0,r.isArray)(e)&&e.forEach(function(e){t.push("<span class='".concat(a,"__color-item ").concat(s===e?a+"__color-item_active_true":"","' title=\"").concat(e,'" style="background-color:').concat(e,'" data-color="').concat(e,'"></span>'));}),t.join("");};l.appendChild(e.c.fromHTML('<div class="'.concat(a,'__groups">').concat(u(e.o.colors),"</div>"))),l.appendChild(e.c.fromHTML('<div data-ref="extra" class="'.concat(a,'__extra"></div>')));var d=(0,r.refs)(l).extra;return e.o.showBrowserColorPicker&&(0,r.hasBrowserColorPicker)()&&(d.appendChild(e.c.fromHTML('<div class="'.concat(a,'__native">').concat(c,'<input type="color" value="#ffffff"/></div>'))),e.e.on(l,"change",function(e){e.stopPropagation();var o=e.target;if(o&&o.tagName&&i.Dom.isTag(o,"input")){var n=o.value||"";(0,r.isFunction)(t)&&t(n),e.preventDefault();}})),e.e.on(l,"mousedown touchend",function(o){o.stopPropagation(),o.preventDefault();var n=o.target;if(n&&n.tagName&&!i.Dom.isTag(n,"svg")&&!i.Dom.isTag(n,"path")||!n.parentNode||(n=i.Dom.closest(n.parentNode,"span",e.editor)),i.Dom.isTag(n,"span")&&n.classList.contains(a+"__color-item")){var s=(0,r.attr)(n,"-color")||"";t&&(0,r.isFunction)(t)&&t(s);}}),e.e.fire("afterGenerateColorPicker",l,d,t,s),l;};},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.TabsWidget=void 0,o(489);var r=o(185),n=o(335),i=o(235);t.TabsWidget=function(e,t,o){var a=e.c.div("jodit-tabs"),s=e.c.div("jodit-tabs__wrapper"),l=e.c.div("jodit-tabs__buttons"),c={},u=[],d="",p=0;a.appendChild(l),a.appendChild(s);var f=function(e){c[e]&&(u.forEach(function(e){e.state.activated=!1;}),(0,r.$$)(".jodit-tab",s).forEach(function(e){e.classList.remove("jodit-tab_active");}),c[e].button.state.activated=!0,c[e].tab.classList.add("jodit-tab_active"));};if(t.forEach(function(a){var h=a.icon,m=a.name,v=a.content,g=e.c.div("jodit-tab"),y=(0,n.Button)(e,h||m,m);e.e.on(y.container,"mousedown",function(e){return e.preventDefault();}),d||(d=m),l.appendChild(y.container),u.push(y),y.container.classList.add("jodit-tabs__button","jodit-tabs__button_columns_"+t.length),(0,r.isFunction)(v)?g.appendChild(e.c.div("jodit-tab_empty")):g.appendChild(i.Component.isInstanceOf(v,n.UIElement)?v.container:v),s.appendChild(g),y.onAction(function(){return f(m),(0,r.isFunction)(v)&&v.call(e),o&&(o.__activeTab=m),!1;}),c[m]={button:y,tab:g},p+=1;}),!p)return a;if((0,r.$$)("a",l).forEach(function(e){e.style.width=(100/p).toFixed(10)+"%";}),f(o&&o.__activeTab&&c[o.__activeTab]?o.__activeTab:d),o){var h=o.__activeTab;Object.defineProperty(o,"__activeTab",{configurable:!0,enumerable:!1,get:function(){return h;},set:function(e){h=e,f(e);}});}return a;};},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.FileSelectorWidget=void 0;var r=o(185),n=o(229),i=o(488),a=o(335);t.FileSelectorWidget=function(e,t,o,s,l){var c;void 0===l&&(l=!0);var u=[];if(t.upload&&e.o.uploader&&(e.o.uploader.url||e.o.uploader.insertImageAsBase64URI)){var d=e.c.fromHTML('<div class="jodit-drag-and-drop__file-box">'+"<strong>".concat(e.i18n(l?"Drop image":"Drop file"),"</strong>")+"<span><br>".concat(e.i18n("or click"),"</span>")+'<input type="file" accept="'.concat(l?"image/*":"*",'" tabindex="-1" dir="auto" multiple=""/>')+"</div>");e.uploader.bind(d,function(o){var n=(0,r.isFunction)(t.upload)?t.upload:e.o.uploader.defaultHandlerSuccess;(0,r.isFunction)(n)&&n.call(e,o),e.e.fire("closeAllPopups");},function(t){e.e.fire("errorMessage",t.message),e.e.fire("closeAllPopups");}),u.push({icon:"upload",name:"Upload",content:d});}if(t.filebrowser&&(e.o.filebrowser.ajax.url||e.o.filebrowser.items.url)&&u.push({icon:"folder",name:"Browse",content:function(){s&&s(),t.filebrowser&&e.filebrowser.open(t.filebrowser,l);}}),t.url){var p=new a.UIButton(e,{type:"submit",variant:"primary",text:"Insert"}),f=new a.UIForm(e,[new a.UIInput(e,{required:!0,label:"URL",name:"url",type:"text",placeholder:"https://"}),new a.UIInput(e,{name:"text",label:"Alternative text"}),new a.UIBlock(e,[p])]);c=null,o&&!n.Dom.isText(o)&&(n.Dom.isTag(o,"img")||(0,r.$$)("img",o).length)&&(c="IMG"===o.tagName?o:(0,r.$$)("img",o)[0],(0,r.val)(f.container,"input[name=url]",(0,r.attr)(c,"src")),(0,r.val)(f.container,"input[name=text]",(0,r.attr)(c,"alt")),p.state.text="Update"),o&&n.Dom.isTag(o,"a")&&((0,r.val)(f.container,"input[name=url]",(0,r.attr)(o,"href")),(0,r.val)(f.container,"input[name=text]",(0,r.attr)(o,"title")),p.state.text="Update"),f.onSubmit(function(o){(0,r.isFunction)(t.url)&&t.url.call(e,o.url,o.text);}),u.push({icon:"link",name:"URL",content:f.container});}return(0,i.TabsWidget)(e,u);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.enter=void 0;var r=o(145),n=o(213),i=o(366),a=o(147),s=o(492),l=o(231),c=function(e){function t(){return null!==e&&e.apply(this,arguments)||this;}return r.__extends(t,e),t.prototype.afterInit=function(e){var t=e.o.enter.toLowerCase(),o=t===a.BR.toLowerCase();e.o.enterBlock||(e.o.enterBlock=o?a.PARAGRAPH:t);},t.prototype.onEnterKeyDown=function(e){if(e.key===a.KEY_ENTER){var t=this.j,o=t.e.fire("beforeEnter",e);return void 0!==o?o:(t.s.isCollapsed()||t.execCommand("Delete"),t.s.focus(),this.onEnter(e),t.synchronizeValues(),!1);}},t.prototype.onEnter=function(e){var t=this.j,o=this.getCurrentOrFillEmpty(t),r=(0,s.getBlockWrapper)(t,o),i=n.Dom.isTag(r,"li");return!!(i&&!e.shiftKey||(0,s.checkBR)(t,o,e.shiftKey))&&(r||(0,s.hasPreviousBlock)(t,o)||(r=(0,s.wrapText)(t,o)),r&&r!==o?!!(0,s.checkUnsplittableBox)(t,r)&&(i&&n.Dom.isEmpty(r)?((0,s.processEmptyLILeaf)(t,r),!1):void(0,s.splitFragment)(t,r)):((0,s.insertParagraph)(t,null,i?"li":t.o.enter),!1));},t.prototype.getCurrentOrFillEmpty=function(e){var t=e.s,o=t.current(!1);return o&&o!==e.editor||(o=e.createInside.text(a.INVISIBLE_SPACE),t.insertNode(o,!1,!1),t.select(o)),o;},t.prototype.beforeDestruct=function(e){e.e.off("keydown.enter");},r.__decorate([(0,l.watch)(":keydown.enter")],t.prototype,"onEnterKeyDown",null),t;}(i.Plugin);t.enter=c;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(493),t),r.__exportStar(o(494),t),r.__exportStar(o(495),t),r.__exportStar(o(497),t),r.__exportStar(o(498),t),r.__exportStar(o(496),t),r.__exportStar(o(499),t),r.__exportStar(o(500),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.checkBR=void 0;var r=o(213),n=o(212),i=o(147);t.checkBR=function(e,t,o){var a=r.Dom.closest(t,["pre","blockquote"],e.editor);if(e.o.enter.toLowerCase()===i.BR.toLowerCase()||o&&!a||!o&&a){var s=e.createInside.element("br");return e.s.insertNode(s,!0,!1),(0,n.scrollIntoViewIfNeeded)(s,e.editor,e.ed),!1;}return!0;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.checkUnsplittableBox=void 0;var r=o(213);t.checkUnsplittableBox=function(e,t){var o=e.s;if(!r.Dom.canSplitBlock(t)){var n=e.createInside.element("br");return o.insertNode(n,!1,!1),o.setCursorAfter(n),!1;}return!0;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.processEmptyLILeaf=void 0;var r=o(213),n=o(264),i=o(496);t.processEmptyLILeaf=function(e,t){var o=r.Dom.closest(t,["ol","ul"],e.editor);if(o){var a=o.parentElement,s=r.Dom.isTag(a,"li"),l=s?a:o,c=e.s.createRange();c.setStartAfter(t),c.setEndAfter(o);var u=c.extractContents(),d=e.createInside.fake();r.Dom.after(l,d),r.Dom.safeRemove(t),(0,n.$$)("li",o).length||r.Dom.safeRemove(o);var p=(0,i.insertParagraph)(e,d,s?"li":e.o.enter);u.querySelector("li")&&(s?p.appendChild(u):r.Dom.after(p,u));}};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.insertParagraph=void 0;var r=o(213),n=o(212);t.insertParagraph=function(e,t,o,i){var a,s,l=e.s,c=e.createInside,u=c.element(o),d=c.element("br");u.appendChild(d),i&&i.cssText&&u.setAttribute("style",i.cssText),t&&t.isConnected?(r.Dom.before(t,u),r.Dom.safeRemove(t)):l.insertNode(u,!1,!1);var p=l.createRange();return p.setStartBefore("br"!==o.toLowerCase()?d:u),p.collapse(!0),null===(a=l.sel)||void 0===a||a.removeAllRanges(),null===(s=l.sel)||void 0===s||s.addRange(p),(0,n.scrollIntoViewIfNeeded)(u,e.editor,e.ed),u;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getBlockWrapper=void 0;var r=o(147),n=o(213);t.getBlockWrapper=function e(t,o,i){void 0===i&&(i=r.IS_BLOCK);var a=o,s=t.editor;do{if(!a||a===s)break;if(i.test(a.nodeName))return n.Dom.isTag(a,"li")?a:e(t,a.parentNode,/^li$/i)||a;a=a.parentNode;}while(a&&a!==s);return null;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.hasPreviousBlock=void 0;var r=o(213);t.hasPreviousBlock=function(e,t){return Boolean(r.Dom.prev(t,function(e){return r.Dom.isBlock(e)||r.Dom.isImage(e);},e.editor));};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.splitFragment=void 0;var r=o(496),n=o(212),i=o(213);t.splitFragment=function(e,t){var o,a=e.s,s=e.o.enter.toLowerCase(),l=i.Dom.isTag(t,"li"),c=t.tagName.toLowerCase()===s||l,u=a.cursorOnTheRight(t),d=a.cursorOnTheLeft(t);if(!c&&(u||d))return o=u?a.setCursorAfter(t):a.setCursorBefore(t),(0,r.insertParagraph)(e,o,s),void(d&&!u&&a.setCursorIn(t,!0));var p=a.splitSelection(t);(0,n.scrollIntoViewIfNeeded)(p,e.editor,e.ed);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.wrapText=void 0;var r=o(213);t.wrapText=function(e,t){var o=t;r.Dom.up(o,function(t){t&&t.hasChildNodes()&&t!==e.editor&&(o=t);},e.editor);var n=r.Dom.wrapInline(o,e.o.enter,e);if(r.Dom.isEmpty(n)){var i=e.createInside.element("br");n.appendChild(i),e.s.setCursorBefore(i);}return n;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.KeyArrowOutside=void 0;var r=o(145),n=o(365),i=o(231),a=o(147),s=o(229),l=o(443),c=function(e){function t(){return null!==e&&e.apply(this,arguments)||this;}return r.__extends(t,e),t.prototype.afterInit=function(e){},t.prototype.beforeDestruct=function(e){},t.prototype.onKeyDownArrow=function(e){var t;if(e.key===a.KEY_RIGHT&&this.j.selection.isCollapsed()){var o=this.j.selection.range,r=o.endContainer,n=o.endOffset;if(s.Dom.isText(r)&&(null===(t=r.nodeValue)||void 0===t?void 0:t.length)===n){var i=r.parentNode;s.Dom.isInlineBlock(i)&&!(0,l.findNotEmptyNeighbor)(i,!1,this.j.editor)&&s.Dom.after(i,this.j.createInside.text(a.NBSP_SPACE));}}},r.__decorate([(0,i.watch)(":keydown")],t.prototype,"onKeyDownArrow",null),t;}(n.Plugin);t.KeyArrowOutside=c;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.errorMessages=void 0,o(503);var r=o(146),n=o(229),i=o(190),a=o(153);r.Config.prototype.showMessageErrors=!0,r.Config.prototype.showMessageErrorTime=3e3,r.Config.prototype.showMessageErrorOffsetPx=3;var s="error-box-for-messages";t.errorMessages=function(e){if(e.o.showMessageErrors){var t=e.getFullElName(s,"active",!0),o=e.c.div(e.getFullElName(s)),r=function(){var t=5;(0,a.toArray)(o.childNodes).forEach(function(o){(0,i.css)(o,"bottom",t+"px"),t+=o.offsetHeight+e.o.showMessageErrorOffsetPx;});};e.e.on("beforeDestruct",function(){n.Dom.safeRemove(o);}).on("errorMessage",function(i,a,l){e.workplace.appendChild(o);var c=e.c.div(t,i);c.classList.add(e.getFullElName(s,"type",a)),o.appendChild(c),r(),e.async.setTimeout(function(){c.classList.remove(t),e.async.setTimeout(function(){n.Dom.safeRemove(c),r();},300);},l||e.o.showMessageErrorTime);});}};},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.font=void 0;var r=o(145),n=o(146),i=o(229),a=o(185);n.Config.prototype.defaultFontSizePoints="px",n.Config.prototype.controls.fontsize={command:"fontSize",data:{cssRule:"font-size"},list:["8","9","10","11","12","14","16","18","24","30","36","48","60","72","96"],exec:function(e,t,o){var r=o.control;return(0,a.memorizeExec)(e,t,{control:r},function(t){var o;return"fontsize"===(null===(o=r.command)||void 0===o?void 0:o.toLowerCase())?"".concat(t).concat(e.o.defaultFontSizePoints):t;});},childTemplate:function(e,t,o){return"".concat(o).concat(e.o.defaultFontSizePoints);},tooltip:"Font size",isChildActive:function(e,t){var o,r,n=e.s.current(),s=(null===(o=t.data)||void 0===o?void 0:o.cssRule)||"font-size",l=(null===(r=t.data)||void 0===r?void 0:r.normalize)||function(t){return /pt$/i.test(t)&&"pt"===e.o.defaultFontSizePoints?t.replace(/pt$/i,""):t;};if(n){var c=i.Dom.closest(n,i.Dom.isElement,e.editor)||e.editor,u=(0,a.css)(c,s);return Boolean(u&&t.args&&l(t.args[0].toString())===l(u.toString()));}return!1;}},n.Config.prototype.controls.font=r.__assign(r.__assign({},n.Config.prototype.controls.fontsize),{command:"fontname",list:{"":"Default","Helvetica,sans-serif":"Helvetica","Arial,Helvetica,sans-serif":"Arial","Georgia,serif":"Georgia","Impact,Charcoal,sans-serif":"Impact","Tahoma,Geneva,sans-serif":"Tahoma","Times New Roman,Times,serif":"Times New Roman","Verdana,Geneva,sans-serif":"Verdana"},childTemplate:function(e,t,o){var r=!1;try{r=-1===t.indexOf("dings")&&document.fonts.check("16px ".concat(t),o);}catch(e){}return'<span style="'.concat(r?"font-family: ".concat(t,"!important;"):"",'">').concat(o,"</span>");},data:{cssRule:"font-family",normalize:function(e){return e.toLowerCase().replace(/['"]+/g,"").replace(/[^a-z0-9]+/g,",");}},tooltip:"Font family"}),t.font=function(e){e.registerButton({name:"font",group:"font"}).registerButton({name:"fontsize",group:"font"});var t=function(t,o,r){switch(t){case"fontsize":e.s.applyStyle({fontSize:(0,a.normalizeSize)(r)});break;case"fontname":e.s.applyStyle({fontFamily:r});}return e.e.fire("synchro"),!1;};e.registerCommand("fontsize",t).registerCommand("fontname",t);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.formatBlock=void 0;var r=o(146),n=o(148),i=o(185);r.Config.prototype.controls.paragraph={command:"formatBlock",update:function(e,t){var o=e.control,r=t.s.current();if(r&&t.o.textIcons){var i=(n.Dom.closest(r,n.Dom.isBlock,t.editor)||t.editor).nodeName.toLowerCase(),a=o.list;e&&o.data&&o.data.currentValue!==i&&a&&a[i]&&(t.o.textIcons?e.state.text=i:e.state.icon.name=i,o.data.currentValue=i);}return!1;},exec:i.memorizeExec,data:{currentValue:"left"},list:{p:"Normal",h1:"Heading 1",h2:"Heading 2",h3:"Heading 3",h4:"Heading 4",blockquote:"Quote",pre:"Code"},isChildActive:function(e,t){var o=e.s.current();if(o){var r=n.Dom.closest(o,n.Dom.isBlock,e.editor);return Boolean(r&&r!==e.editor&&void 0!==t.args&&r.nodeName.toLowerCase()===t.args[0]);}return!1;},isActive:function(e,t){var o=e.s.current();if(o){var r=n.Dom.closest(o,n.Dom.isBlock,e.editor);return Boolean(r&&r!==e.editor&&void 0!==t.list&&!n.Dom.isTag(r,"p")&&void 0!==t.list[r.nodeName.toLowerCase()]);}return!1;},childTemplate:function(e,t,o){return"<".concat(t,' style="margin:0;padding:0"><span>').concat(e.i18n(o),"</span></").concat(t,">");},tooltip:"Insert format block"},t.formatBlock=function(e){e.registerButton({name:"paragraph",group:"font"}),e.registerCommand("formatblock",function(t,o,r){return e.s.applyStyle(void 0,{element:r}),e.synchronizeValues(),!1;});};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.fullsize=void 0,o(507);var r=o(146),n=o(147),i=o(190),a=o(226);r.Config.prototype.fullsize=!1,r.Config.prototype.globalFullSize=!0,r.Config.prototype.controls.fullsize={exec:function(e){e.toggleFullSize();},update:function(e,t){var o=t.isFullSize?"shrink":"fullsize";e.state.activated=t.isFullSize,t.o.textIcons?e.state.text=o:e.state.icon.name=o;},tooltip:"Open editor in fullsize",mode:n.MODE_SOURCE+n.MODE_WYSIWYG},t.fullsize=function(e){e.registerButton({name:"fullsize"});var t=!1,o=0,r=0,n=!1,s=function(){var a=e.container;e.events&&(t?(o=(0,i.css)(a,"height",!0),r=(0,i.css)(a,"width",!0),(0,i.css)(a,{height:e.ow.innerHeight,width:e.ow.innerWidth}),n=!0):n&&(0,i.css)(a,{height:o||"auto",width:r||"auto"}));},l=function(o){var r=e.container,n=e.events;if(r){if(void 0===o&&(o=!r.classList.contains("jodit_fullsize")),e.setMod("fullsize",o),e.o.fullsize=o,t=o,r.classList.toggle("jodit_fullsize",o),e.toolbar&&((0,a.isJoditObject)(e)&&e.toolbarContainer.appendChild(e.toolbar.container),(0,i.css)(e.toolbar.container,"width","auto")),e.o.globalFullSize){for(var l=r.parentNode;l&&l.nodeType!==Node.DOCUMENT_NODE;)l.classList.toggle("jodit_fullsize-box_true",o),l=l.parentNode;s();}n.fire("afterResize");}};e.o.globalFullSize&&e.e.on(e.ow,"resize",s),e.e.on("afterInit afterOpen",function(){var t;e.toggleFullSize(null===(t=null==e?void 0:e.options)||void 0===t?void 0:t.fullsize);}).on("toggleFullSize",l).on("beforeDestruct",function(){t&&l(!1);}).on("beforeDestruct",function(){e.events&&e.e.off(e.ow,"resize",s);});};},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.hotkeys=void 0;var r=o(145),n=o(146),i=o(365),a=o(185),s=o(147);n.Config.prototype.commandToHotkeys={removeFormat:["ctrl+shift+m","cmd+shift+m"],insertOrderedList:["ctrl+shift+7","cmd+shift+7"],insertUnorderedList:["ctrl+shift+8, cmd+shift+8"],selectall:["ctrl+a","cmd+a"]};var l=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.onKeyPress=function(e){var o=t.specialKeys[e.which],r=(e.key||String.fromCharCode(e.which)).toLowerCase(),n=[o||r];return["alt","ctrl","shift","meta"].forEach(function(t){e[t+"Key"]&&o!==t&&n.push(t);}),(0,a.normalizeKeyAliases)(n.join("+"));},t.specialKeys={8:"backspace",9:"tab",10:"return",13:"return",16:"shift",17:"ctrl",18:"alt",19:"pause",20:"capslock",27:"esc",32:"space",33:"pageup",34:"pagedown",35:"end",36:"home",37:"left",38:"up",39:"right",40:"down",45:"insert",46:"del",59:";",61:"=",91:"meta",96:"0",97:"1",98:"2",99:"3",100:"4",101:"5",102:"6",103:"7",104:"8",105:"9",106:"*",107:"+",109:"-",110:".",111:"/",112:"f1",113:"f2",114:"f3",115:"f4",116:"f5",117:"f6",118:"f7",119:"f8",120:"f9",121:"f10",122:"f11",123:"f12",144:"numlock",145:"scroll",173:"-",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"},t;}return r.__extends(t,e),t.prototype.afterInit=function(e){var t=this;(0,a.keys)(e.o.commandToHotkeys,!1).forEach(function(t){var o=e.o.commandToHotkeys[t];o&&((0,a.isArray)(o)||(0,a.isString)(o))&&e.registerHotkeyToCommand(o,t);});var o=!1;e.e.off(".hotkeys").on([e.ow,e.ew],"keydown.hotkeys",function(e){if(e.key===s.KEY_ESC)return t.j.e.fire("escape",e);}).on("keydown.hotkeys",function(r){var n=t.onKeyPress(r),i={shouldStop:!0};if(!1===t.j.e.fire(n+".hotkey",r.type,i)){if(i.shouldStop)return o=!0,e.e.stopPropagation("keydown"),!1;r.preventDefault();}},{top:!0}).on("keyup.hotkeys",function(){if(o)return o=!1,e.e.stopPropagation("keyup"),!1;},{top:!0});},t.prototype.beforeDestruct=function(e){e.events&&e.e.off(".hotkeys");},t;}(i.Plugin);t.hotkeys=l;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.iframe=void 0;var r=o(185),n=o(185),i=o(147);o(510),t.iframe=function(e){var t=e.options;e.e.on("afterSetMode",function(){e.isEditorMode()&&e.s.focus();}).on("generateDocumentStructure.iframe",function(e,o){var n=e||o.iframe.contentWindow.document;if(n.open(),n.write(t.iframeDoctype+'<html dir="'.concat(t.direction,'" class="jodit" lang="').concat((0,r.defaultLanguage)(t.language),'">')+"<head>"+"<title>".concat(t.iframeTitle,"</title>")+(t.iframeBaseUrl?'<base href="'.concat(t.iframeBaseUrl,'"/>'):"")+'</head><body class="jodit-wysiwyg"></body></html>'),n.close(),t.iframeCSSLinks&&t.iframeCSSLinks.forEach(function(e){var t=n.createElement("link");t.setAttribute("rel","stylesheet"),t.setAttribute("href",e),n.head&&n.head.appendChild(t);}),t.iframeStyle){var i=n.createElement("style");i.innerHTML=t.iframeStyle,n.head&&n.head.appendChild(i);}}).on("createEditor",function(){if(t.iframe){var o=e.c.element("iframe");o.style.display="block",o.src="about:blank",o.className="jodit-wysiwyg_iframe",o.setAttribute("allowtransparency","true"),o.setAttribute("tabindex",t.tabIndex.toString()),o.setAttribute("frameborder","0"),e.workplace.appendChild(o),e.iframe=o;var a=e.e.fire("generateDocumentStructure.iframe",null,e);return(0,r.callPromise)(a,function(){if(!e.iframe)return!1;var o=e.iframe.contentWindow.document;e.editorWindow=e.iframe.contentWindow;var a=function(){(0,r.attr)(o.body,"contenteditable",e.getMode()!==i.MODE_SOURCE&&!e.getReadOnly()||null);},s=function(e){var t=/<body.*<\/body>/im,o="{%%BODY%%}",r=t.exec(e);return r&&(e=e.replace(t,o).replace(/<span([^>]*?)>(.*?)<\/span>/gim,"").replace(/&lt;span([^&]*?)&gt;(.*?)&lt;\/span&gt;/gim,"").replace(o,r[0].replace(/(<body[^>]+?)min-height["'\s]*:[\s"']*[0-9]+(px|%)/im,"$1").replace(/(<body[^>]+?)([\s]*["'])?contenteditable["'\s]*=[\s"']*true["']?/im,"$1").replace(/<(style|script|span)[^>]+jodit[^>]+>.*?<\/\1>/g,"")).replace(/(class\s*=\s*)(['"])([^"']*)(jodit-wysiwyg|jodit)([^"']*\2)/g,"$1$2$3$5").replace(/(<[^<]+?)\sclass="[\s]*"/gim,"$1").replace(/(<[^<]+?)\sstyle="[\s;]*"/gim,"$1").replace(/(<[^<]+?)\sdir="[\s]*"/gim,"$1")),e;};if(t.editHTMLDocumentMode){var l=e.element.tagName;if("TEXTAREA"!==l&&"INPUT"!==l)throw(0,n.error)("If enable `editHTMLDocumentMode` - source element should be INPUT or TEXTAREA");e.e.on("beforeGetNativeEditorValue",function(){return s(e.o.iframeDoctype+o.documentElement.outerHTML);}).on("beforeSetNativeEditorValue",function(t){var r=t.value;return!e.isLocked&&(/<(html|body)/i.test(r)?s(o.documentElement.outerHTML)!==s(r)&&(o.open(),o.write(e.o.iframeDoctype+s(r)),o.close(),e.editor=o.body,e.e.fire("safeHTML",e.editor),a(),e.e.fire("prepareWYSIWYGEditor"),e.e.stopPropagation("beforeSetNativeEditorValue")):o.body.innerHTML=r,!0);},{top:!0});}if(e.editor=o.body,e.e.on("afterSetMode afterInit afterAddPlace",a),"auto"===t.height){o.documentElement&&(o.documentElement.style.overflowY="hidden");var c=e.async.throttle(function(){if(e.editor&&e.iframe&&"auto"===t.height){var o=e.ew.getComputedStyle(e.editor),n=parseInt(o.marginTop||"0",10)+parseInt(o.marginBottom||"0",10);(0,r.css)(e.iframe,"height",e.editor.offsetHeight+n);}},e.defaultTimeout/2);if(e.e.on("change afterInit afterSetMode resize",c).on([e.iframe,e.ew,o.documentElement],"load",c).on(o,"readystatechange DOMContentLoaded",c),"function"==typeof ResizeObserver){var u=new ResizeObserver(c);u.observe(o.body),e.e.on("beforeDestruct",function(){u.unobserve(o.body);});}}return o.documentElement&&e.e.on(o.documentElement,"mousedown touchend",function(){e.s.isFocused()||(e.s.focus(),e.editor===o.body&&e.s.setCursorIn(o.body));}).on(e.ew,"mousedown touchstart keydown keyup touchend click mouseup mousemove scroll",function(t){var o;null===(o=e.events)||void 0===o||o.fire(e.ow,t);}),!1;});}});};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(146);r.Config.prototype.iframe=!1,r.Config.prototype.iframeBaseUrl="",r.Config.prototype.iframeTitle="Jodit Editor",r.Config.prototype.iframeDoctype="<!DOCTYPE html>",r.Config.prototype.iframeDefaultSrc="about:blank",r.Config.prototype.iframeStyle='html{margin:0;padding:0;min-height: 100%;}body{box-sizing:border-box;font-size:13px;line-height:1.6;padding:10px;margin:0;background:transparent;color:#000;position:relative;z-index:2;user-select:auto;margin:0px;overflow:auto;outline:none;}table{width:100%;border:none;border-collapse:collapse;empty-cells: show;max-width: 100%;}th,td{padding: 2px 5px;border:1px solid #ccc;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}p{margin-top:0;}.jodit_editor .jodit_iframe_wrapper{display: block;clear: both;user-select: none;position: relative;}.jodit_editor .jodit_iframe_wrapper:after {position:absolute;content:"";z-index:1;top:0;left:0;right: 0;bottom: 0;cursor: pointer;display: block;background: rgba(0, 0, 0, 0);} .jodit_disabled{user-select: none;-o-user-select: none;-moz-user-select: none;-khtml-user-select: none;-webkit-user-select: none;-ms-user-select: none}',r.Config.prototype.iframeCSSLinks=[],r.Config.prototype.editHTMLDocumentMode=!1;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(512),t),r.__exportStar(o(520),t),r.__exportStar(o(523),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.imageProperties=void 0;var r=o(145);o(513);var n=o(148),i=o(185),a=o(485),s=o(308),l=o(514),c=o(231),u=o(382),d=o(518);o(519);var p=function(e){return e=(0,i.trim)(e),/^[0-9]+$/.test(e)?e+"px":e;},f=function(e){return /^[-+]?[0-9.]+px$/.test(e.toString())?parseFloat(e.toString()):e;},h=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.state={image:new Image(),get ratio(){return this.image.naturalWidth/this.image.naturalHeight||1;},sizeIsLocked:!0,marginIsLocked:!0},t.activeTabState={__activeTab:"Image"},t;}return r.__extends(t,e),t.prototype.onChangeMarginIsLocked=function(){var e=this;if(this.form){var t=(0,i.refs)(this.form),o=t.lockMargin;[t.marginRight,t.marginBottom,t.marginLeft].forEach(function(t){(0,i.attr)(t,"disabled",e.state.marginIsLocked||null);}),o.innerHTML=n.Icon.get(this.state.marginIsLocked?"lock":"unlock");}},t.prototype.onChangeSizeIsLocked=function(){if(this.form){var e=(0,i.refs)(this.form),t=e.lockSize,o=e.imageWidth;t.innerHTML=n.Icon.get(this.state.sizeIsLocked?"lock":"unlock"),t.classList.remove("jodit-properties__lock"),t.classList.remove("jodit-properties__unlock"),t.classList.add(this.state.sizeIsLocked?"jodit-properties__lock":"jodit-properties__unlock"),this.j.e.fire(o,"change");}},t.prototype.open=function(){return this.makeForm(),this.activeTabState.__activeTab="Image",this.j.e.fire("hidePopup"),(0,i.markOwner)(this.j,this.dialog.container),this.state.marginIsLocked=!0,this.state.sizeIsLocked=!0,this.onChangeMarginIsLocked(),this.onChangeSizeIsLocked(),this.updateValues(),this.dialog.open().setModal(!0).setPosition(),!1;},t.prototype.makeForm=function(){var e=this;if(!this.dialog){this.dialog=new n.Dialog({fullsize:this.j.o.fullsize,globalFullSize:this.j.o.globalFullSize,theme:this.j.o.theme,language:this.j.o.language,minWidth:Math.min(400,screen.width),minHeight:590,buttons:["fullsize","dialog.close"]});var t=this.j,o=t.o,r=t.i18n.bind(t),c={check:(0,s.Button)(t,"ok","Apply","primary"),remove:(0,s.Button)(t,"bin","Delete")};t.e.on(this.dialog,"afterClose",function(){e.state.image.parentNode&&o.image.selectImageAfterClose&&t.s.select(e.state.image);}),c.remove.onAction(function(){t.s.removeNode(e.state.image),e.dialog.close();});var u=this.dialog;u.setHeader(r("Image properties"));var d=(0,l.form)(t);this.form=d,u.setContent(d);var p=(0,i.refs)(this.form).tabsBox;p&&p.appendChild((0,a.TabsWidget)(t,[{name:"Image",content:(0,l.mainTab)(t)},{name:"Advanced",content:(0,l.positionTab)(t)}],this.activeTabState)),c.check.onAction(this.onApply);var f=(0,i.refs)(this.form),h=f.editImage;t.e.on(f.changeImage,"click",this.openImagePopup),o.image.useImageEditor&&t.e.on(h,"click",this.openImageEditor);var m=(0,i.refs)(d),v=m.lockSize,g=m.lockMargin,y=m.imageWidth,b=m.imageHeight;v&&t.e.on(v,"click",function(){e.state.sizeIsLocked=!e.state.sizeIsLocked;}),t.e.on(g,"click",function(t){e.state.marginIsLocked=!e.state.marginIsLocked,t.preventDefault();});var _=function(t){if((0,i.isNumeric)(y.value)&&(0,i.isNumeric)(b.value)){var o=parseFloat(y.value),r=parseFloat(b.value);t.target===y?b.value=Math.round(o/e.state.ratio).toString():y.value=Math.round(r*e.state.ratio).toString();}};t.e.on([y,b],"change keydown mousedown paste",function(o){e.state.sizeIsLocked&&t.async.setTimeout(_.bind(e,o),{timeout:t.defaultTimeout,label:"image-properties-changeSize"});}),u.setFooter([c.remove,c.check]),u.setSize(this.j.o.image.dialogWidth);}},t.prototype.updateValues=function(){var e,t,o=this,r=this.j.o,a=this.state.image,s=(0,i.refs)(this.form),l=s.marginTop,c=s.marginRight,u=s.marginBottom,d=s.marginLeft,p=s.imageSrc,h=s.id,m=s.classes,v=s.align,g=s.style,y=s.imageTitle,b=s.imageAlt,_=s.borderRadius,w=s.imageLink,S=s.imageWidth,C=s.imageHeight,k=s.imageLinkOpenInNewTab,j=s.imageViewSrc,E=s.lockSize;s.lockMargin.checked=o.state.marginIsLocked,E.checked=o.state.sizeIsLocked,p.value=(0,i.attr)(a,"src")||"",j&&(0,i.attr)(j,"src",(0,i.attr)(a,"src")||""),function(){y.value=(0,i.attr)(a,"title")||"",b.value=(0,i.attr)(a,"alt")||"";var e=n.Dom.closest(a,"a",o.j.editor);e?(w.value=(0,i.attr)(e,"href")||"",k.checked="_blank"===(0,i.attr)(e,"target")):(w.value="",k.checked=!1);}(),e=(0,i.attr)(a,"width")||(0,i.css)(a,"width",!0)||!1,t=(0,i.attr)(a,"height")||(0,i.css)(a,"height",!0)||!1,S.value=!1!==e?f(e).toString():a.offsetWidth.toString(),C.value=!1!==t?f(t).toString():a.offsetHeight.toString(),o.state.sizeIsLocked=function(){if(!(0,i.isNumeric)(S.value)||!(0,i.isNumeric)(C.value))return!1;var e=parseFloat(S.value),t=parseFloat(C.value);return 1>Math.abs(e-t*o.state.ratio);}(),function(){if(r.image.editMargins){var e=!0,t=!1;[l,c,u,d].forEach(function(o){var r=(0,i.attr)(o,"data-ref")||"",n=a.style.getPropertyValue((0,i.kebabCase)(r));if(!n)return t=!0,void(o.value="");/^[0-9]+(px)?$/.test(n)&&(n=parseInt(n,10)),o.value=n.toString()||"",(t&&o.value||e&&"marginTop"!==r&&o.value!==l.value)&&(e=!1);}),o.state.marginIsLocked=e;}}(),m.value=((0,i.attr)(a,"class")||"").replace(/jodit_focused_image[\s]*/,""),h.value=(0,i.attr)(a,"id")||"",_.value=(parseInt(a.style.borderRadius||"0",10)||"0").toString(),a.style.cssFloat&&-1!==["left","right"].indexOf(a.style.cssFloat.toLowerCase())?v.value=(0,i.css)(a,"float"):"block"===(0,i.css)(a,"display")&&"auto"===a.style.marginLeft&&"auto"===a.style.marginRight&&(v.value="center"),g.value=(0,i.attr)(a,"style")||"";},t.prototype.onApply=function(){var e=(0,i.refs)(this.form),t=e.imageSrc,o=e.borderRadius,r=e.imageTitle,a=e.imageAlt,s=e.imageLink,l=e.imageWidth,c=e.imageHeight,u=e.marginTop,f=e.marginRight,h=e.marginBottom,m=e.marginLeft,v=e.imageLinkOpenInNewTab,g=e.align,y=e.classes,b=e.id,_=this.j.o,w=this.state.image;if(_.image.editStyle&&(0,i.attr)(w,"style",e.style.value||null),!t.value)return n.Dom.safeRemove(w),void this.dialog.close();(0,i.attr)(w,"src",t.value),w.style.borderRadius="0"!==o.value&&/^[0-9]+$/.test(o.value)?o.value+"px":"",(0,i.attr)(w,"title",r.value||null),(0,i.attr)(w,"alt",a.value||null);var S=n.Dom.closest(w,"a",this.j.editor);if(s.value?(S||(S=n.Dom.wrap(w,"a",this.j.createInside)),(0,i.attr)(S,"href",s.value),(0,i.attr)(S,"target",v.checked?"_blank":null)):S&&S.parentNode&&S.parentNode.replaceChild(w,S),l.value!==w.offsetWidth.toString()||c.value!==w.offsetHeight.toString()){var C=(0,i.trim)(l.value)?p(l.value):null,k=(0,i.trim)(c.value)?p(c.value):null;(0,i.css)(w,{width:C,height:k}),(0,i.attr)(w,"width",(0,i.attr)(w,"width")?C:null),(0,i.attr)(w,"height",(0,i.attr)(w,"height")?k:null);}var j=[u,f,h,m];_.image.editMargins&&(this.state.marginIsLocked?(0,i.css)(w,"margin",p(u.value)):j.forEach(function(e){var t=(0,i.attr)(e,"data-ref")||"";(0,i.css)(w,t,p(e.value));})),_.image.editClass&&(0,i.attr)(w,"class",y.value||null),_.image.editId&&(0,i.attr)(w,"id",b.value||null),_.image.editAlign&&(0,d.hAlignElement)(w,g.value),this.j.synchronizeValues(),this.dialog.close();},t.prototype.openImageEditor=function(){var e=this,t=(0,i.attr)(this.state.image,"src")||"",o=this.j.c.element("a"),r=function(){o.host===location.host||(0,n.Confirm)(e.j.i18n("You can only edit your own images. Download this image on the host?"),function(t){t&&e.j.uploader&&e.j.uploader.uploadRemoteImage(o.href.toString(),function(t){(0,n.Alert)(e.j.i18n("The image has been successfully uploaded to the host!"),function(){(0,i.isString)(t.newfilename)&&((0,i.attr)(e.state.image,"src",t.baseurl+t.newfilename),e.updateValues());}).bindDestruct(e.j);},function(t){(0,n.Alert)(e.j.i18n("There was an error loading %s",t.message)).bindDestruct(e.j);});}).bindDestruct(e.j);};o.href=t,this.j.filebrowser.dataProvider.getPathByUrl(o.href.toString()).then(function(r){u.openImageEditor.call(e.j.filebrowser,o.href,r.name,r.path,r.source,function(){var o=new Date().getTime();(0,i.attr)(e.state.image,"src",t+(-1!==t.indexOf("?")?"":"?")+"&_tmp="+o.toString()),e.updateValues();},function(t){(0,n.Alert)(t.message).bindDestruct(e.j);});}).catch(function(t){(0,n.Alert)(t.message,r).bindDestruct(e.j);});},t.prototype.openImagePopup=function(e){var t=this,o=new n.Popup(this.j),r=(0,i.refs)(this.form).changeImage;o.setZIndex(this.dialog.getZIndex()+1),o.setContent((0,a.FileSelectorWidget)(this.j,{upload:function(e){e.files&&e.files.length&&(0,i.attr)(t.state.image,"src",e.baseurl+e.files[0]),t.updateValues(),o.close();},filebrowser:function(e){e&&(0,i.isArray)(e.files)&&e.files.length&&((0,i.attr)(t.state.image,"src",e.files[0]),o.close(),t.updateValues());}},this.state.image,o.close)).open(function(){return(0,i.position)(r);}),e.stopPropagation();},t.prototype.afterInit=function(e){var t=this,o=this;e.e.on("afterConstructor changePlace",function(){e.e.off(e.editor,".imageproperties").on(e.editor,"dblclick.imageproperties",function(r){var i=r.target;if(n.Dom.isTag(i,"img"))if(e.o.image.openOnDblClick){if(!1===t.j.e.fire("openOnDblClick",i))return;o.state.image=i,e.o.readonly||(r.stopImmediatePropagation(),r.preventDefault(),o.open());}else r.stopImmediatePropagation(),e.s.select(i);});}).on("openImageProperties.imageproperties",function(e){t.state.image=e,t.open();});},t.prototype.beforeDestruct=function(e){this.dialog&&this.dialog.destruct(),e.e.off(e.editor,".imageproperties").off(".imageproperties");},r.__decorate([(0,c.watch)("state.marginIsLocked")],t.prototype,"onChangeMarginIsLocked",null),r.__decorate([(0,c.watch)("state.sizeIsLocked")],t.prototype,"onChangeSizeIsLocked",null),r.__decorate([c.autobind],t.prototype,"onApply",null),r.__decorate([c.autobind],t.prototype,"openImageEditor",null),r.__decorate([c.autobind],t.prototype,"openImagePopup",null),t;}(n.Plugin);t.imageProperties=h;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(515),t),r.__exportStar(o(516),t),r.__exportStar(o(517),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.form=void 0;var r=o(335);t.form=function(e){var t=e.o.image,o=t.showPreview,n=t.editSize,i=r.Icon.get.bind(r.Icon);return e.c.fromHTML('<form class="jodit-properties">\n\t\t<div class="jodit-grid jodit-grid_xs-column">\n\t\t\t<div class="jodit_col-lg-2-5 jodit_col-xs-5-5">\n\t\t\t\t<div class="jodit-properties_view_box">\n\t\t\t\t\t<div style="'.concat(o?"":"display:none",'" class="jodit-properties_image_view">\n\t\t\t\t\t\t<img data-ref="imageViewSrc" src="" alt=""/>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div style="').concat(n?"":"display:none",'" class="jodit-form__group jodit-properties_image_sizes">\n\t\t\t\t\t\t<input data-ref="imageWidth" type="text" class="jodit-input"/>\n\t\t\t\t\t\t<a data-ref="lockSize" class="jodit-properties__lock">').concat(i("lock"),'</a>\n\t\t\t\t\t\t<input data-ref="imageHeight" type="text" class="imageHeight jodit-input"/>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t<div data-ref="tabsBox" class="jodit_col-lg-3-5 jodit_col-xs-5-5"></div>\n\t\t</div>\n\t</form>'));};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.mainTab=void 0;var r=o(335);t.mainTab=function(e){var t=e.o,o=e.i18n.bind(e),n=r.Icon.get.bind(r.Icon),i=t.filebrowser.ajax.url||t.uploader.url,a=t.image.useImageEditor;return e.c.fromHTML('<div style="'.concat(t.image.editSrc?"":"display:none",'" class="jodit-form__group">\n\t\t\t<label>').concat(o("Src"),'</label>\n\t\t\t<div class="jodit-input_group">\n\t\t\t\t<input data-ref="imageSrc" class="jodit-input" type="text"/>\n\t\t\t\t<div\n\t\t\t\t\tclass="jodit-input_group-buttons"\n\t\t\t\t\tstyle="').concat(i?"":"display: none",'"\n\t\t\t\t>\n\t\t\t\t\t\t<a\n\t\t\t\t\t\t\tdata-ref="changeImage"\n\t\t\t\t\t\t\tclass="jodit-button"\n\t\t\t\t\t\t>').concat(n("image"),'</a>\n\t\t\t\t\t\t<a\n\t\t\t\t\t\t\tdata-ref="editImage"\n\t\t\t\t\t\t\tclass="jodit-button"\n\t\t\t\t\t\t\tstyle="').concat(a?"":"display: none",'"\n\t\t\t\t\t\t>').concat(n("crop"),'</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t\t<div style="').concat(t.image.editTitle?"":"display:none",'" class="jodit-form__group">\n\t\t\t<label>').concat(o("Title"),'</label>\n\t\t\t<input data-ref="imageTitle" type="text" class="jodit-input"/>\n\t\t</div>\n\t\t<div style="').concat(t.image.editAlt?"":"display:none",'" class="jodit-form__group">\n\t\t\t<label>').concat(o("Alternative"),'</label>\n\t\t\t<input data-ref="imageAlt" type="text" class="jodit-input"/>\n\t\t</div>\n\t\t<div style="').concat(t.image.editLink?"":"display:none",'" class="jodit-form__group">\n\t\t\t<label>').concat(o("Link"),'</label>\n\t\t\t<input data-ref="imageLink" type="text" class="jodit-input"/>\n\t\t</div>\n\t\t<div style="').concat(t.image.editLink?"":"display:none",'" class="jodit-form__group">\n\t\t\t<label class="jodit_vertical_middle">\n\t\t\t\t<input data-ref="imageLinkOpenInNewTab" type="checkbox" class="jodit-checkbox"/>\n\t\t\t\t<span>').concat(o("Open link in new tab"),"</span>\n\t\t\t</label>\n\t\t</div>"));};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.positionTab=void 0;var r=o(335);t.positionTab=function(e){var t=e.o,o=e.i18n.bind(e),n=r.Icon.get.bind(r.Icon);return e.c.fromHTML('<div style="'.concat(t.image.editMargins?"":"display:none",'" class="jodit-form__group">\n\t\t\t<label>').concat(o("Margins"),'</label>\n\t\t\t<div class="jodit-grid jodit_vertical_middle">\n\t\t\t\t<input class="jodit_col-lg-1-5 jodit-input" data-ref="marginTop" type="text" placeholder="').concat(o("top"),'"/>\n\t\t\t\t<a style="text-align: center;" data-ref="lockMargin" class="jodit-properties__lock jodit_col-lg-1-5">').concat(n("lock"),'</a>\n\t\t\t\t<input disabled="true" class="jodit_col-lg-1-5 jodit-input" data-ref="marginRight" type="text" placeholder="').concat(o("right"),'"/>\n\t\t\t\t<input disabled="true" class="jodit_col-lg-1-5 jodit-input" data-ref="marginBottom" type="text" placeholder="').concat(o("bottom"),'"/>\n\t\t\t\t<input disabled="true" class="jodit_col-lg-1-5 jodit-input" data-ref="marginLeft" type="text" placeholder="').concat(o("left"),'"/>\n\t\t\t</div>\n\t\t</div>\n\t\t<div\n\t\t\tstyle="').concat(t.image.editAlign?"":"display:none",'"\n\t\t\tclass="jodit-form__group"\n\t\t>\n\t\t\t<label>').concat(o("Align"),'</label>\n\t\t\t<select data-ref="align" class="jodit-select">\n\t\t\t\t<option value="">').concat(o("--Not Set--"),'</option>\n\t\t\t\t<option value="left">').concat(o("Left"),'</option>\n\t\t\t\t<option value="center">').concat(o("Center"),'</option>\n\t\t\t\t<option value="right">').concat(o("Right"),'</option>\n\t\t\t</select>\n\t\t</div>\n\t\t<div style="').concat(t.image.editStyle?"":"display:none",'" class="jodit-form__group">\n\t\t\t<label>').concat(o("Styles"),'</label>\n\t\t\t<input data-ref="style" type="text" class="jodit-input"/>\n\t\t</div>\n\t\t<div style="').concat(t.image.editClass?"":"display:none",'" class="jodit-form__group">\n\t\t\t<label>').concat(o("Classes"),'</label>\n\t\t\t<input data-ref="classes" type="text" class="jodit-input"/>\n\t\t</div>\n\t\t<div style="').concat(t.image.editId?"":"display:none",'" class="jodit-form__group">\n\t\t\t<label>Id</label>\n\t\t\t<input data-ref="id" type="text" class="jodit-input"/>\n\t\t</div>\n\t\t<div\n\t\t\tstyle="').concat(t.image.editBorderRadius?"":"display:none",'"\n\t\t\tclass="jodit-form__group"\n\t\t>\n\t\t\t<label>').concat(o("Border radius"),'</label>\n\t\t\t\t<input data-ref="borderRadius" type="number" class="jodit-input"/>\n\t\t</div>'));};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.hAlignElement=void 0;var r=o(185);t.hAlignElement=function(e,t){t&&"normal"!==t?"center"!==t?((0,r.css)(e,"float",t),(0,r.clearCenterAlign)(e)):(0,r.css)(e,{float:"",display:"block",marginLeft:"auto",marginRight:"auto"}):((0,r.css)(e,"float")&&-1!==["right","left"].indexOf((0,r.css)(e,"float").toString().toLowerCase())&&(0,r.css)(e,"float",""),(0,r.clearCenterAlign)(e));};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),o(146).Config.prototype.image={dialogWidth:600,openOnDblClick:!0,editSrc:!0,useImageEditor:!0,editTitle:!0,editAlt:!0,editLink:!0,editSize:!0,editBorderRadius:!0,editMargins:!0,editClass:!0,editStyle:!0,editId:!0,editAlign:!0,showPreview:!0,selectImageAfterClose:!0};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.imageProcessor=void 0;var r=o(145),n=o(185),i=o(365),a=o(231);o(521);var s=o(522),l="__jodit_imageprocessor_binded",c="__jodit_imageprocessor_bindedblob-id",u=function(e){function t(){return null!==e&&e.apply(this,arguments)||this;}return r.__extends(t,e),t.prototype.afterInit=function(e){},t.prototype.beforeDestruct=function(e){var t,o,n=e.buffer.get(c);if(n){var i=Object.keys(n);try{for(var a=r.__values(i),s=a.next();!s.done;s=a.next())URL.revokeObjectURL(s.value);}catch(e){t={error:e};}finally{try{s&&!s.done&&(o=a.return)&&o.call(a);}finally{if(t)throw t.error;}}e.buffer.delete(c);}},t.prototype.onAfterGetValueFromEditor=function(e,t){if(t!==s.SOURCE_CONSUMER)return this.onBeforeSetElementValue(e);},t.prototype.onBeforeSetElementValue=function(e){var t,o,n=this.jodit;if(n.o.imageProcessor.replaceDataURIToBlobIdInView){var i=n.buffer.get(c);if(i){var a=Object.keys(i);try{for(var s=r.__values(a),l=s.next();!l.done;l=s.next())for(var u=l.value;e.value.includes(u);)e.value=e.value.replace(u,i[u]);}catch(e){t={error:e};}finally{try{l&&!l.done&&(o=s.return)&&o.call(s);}finally{if(t)throw t.error;}}}}},t.prototype.afterChange=function(e){return r.__awaiter(this,void 0,Promise,function(){var e;return r.__generator(this,function(t){return(e=this.jodit).editor?((0,n.$$)("img",e.editor).forEach(function(t){(0,n.dataBind)(t,l)||((0,n.dataBind)(t,l,!0),t.complete||e.e.on(t,"load",function o(){var r;!e.isInDestruct&&(null===(r=e.e)||void 0===r||r.fire("resize")),e.e.off(t,"load",o);}),t.src&&/^data:/.test(t.src)&&function(e,t){if(e.o.imageProcessor.replaceDataURIToBlobIdInView&&"undefined"!=typeof ArrayBuffer&&"undefined"!=typeof URL){var o=t.src,r=function(e){for(var t=atob(e.split(",")[1]),o=e.split(",")[0].split(":")[1].split(";")[0],r=new ArrayBuffer(t.length),n=new Uint8Array(r),i=0;t.length>i;i++)n[i]=t.charCodeAt(i);return new Blob([r],{type:o});}(o);t.src=URL.createObjectURL(r),e.e.fire("internalUpdate");var n=e.buffer.get(c)||{};n[t.src]=o,e.buffer.set(c,n);}}(e,t),e.e.on(t,"mousedown touchstart",function(){e.s.select(t);}));}),[2]):[2];});});},r.__decorate([(0,a.watch)(":afterGetValueFromEditor")],t.prototype,"onAfterGetValueFromEditor",null),r.__decorate([(0,a.watch)(":beforeSetElementValue")],t.prototype,"onBeforeSetElementValue",null),r.__decorate([(0,a.watch)([":change",":afterInit",":changePlace"]),(0,a.debounce)()],t.prototype,"afterChange",null),t;}(i.Plugin);t.imageProcessor=u;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),o(146).Config.prototype.imageProcessor={replaceDataURIToBlobIdInView:!0};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.SOURCE_CONSUMER=void 0,t.SOURCE_CONSUMER="source-consumer";},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.image=void 0;var r=o(145),n=o(229),i=o(185),a=o(485);o(146).Config.prototype.controls.image={popup:function(e,t,o,s){var l=null;return t&&!n.Dom.isText(t)&&n.Dom.isHTMLElement(t)&&(n.Dom.isTag(t,"img")||(0,i.$$)("img",t).length)&&(l=n.Dom.isTag(t,"img")?t:(0,i.$$)("img",t)[0]),e.s.save(),(0,a.FileSelectorWidget)(e,{filebrowser:function(t){e.s.restore(),t.files&&t.files.forEach(function(o){return e.s.insertImage(t.baseurl+o,null,e.o.imageDefaultWidth);}),s();},upload:!0,url:function(t,o){return r.__awaiter(void 0,void 0,void 0,function(){var n;return r.__generator(this,function(r){switch(r.label){case 0:return e.s.restore(),/^[a-z\d_-]+(\.[a-z\d_-]+)+/i.test(t)&&(t="//"+t),(n=l||e.createInside.element("img")).setAttribute("src",t),n.setAttribute("alt",o),l?[3,2]:[4,e.s.insertImage(n,null,e.o.imageDefaultWidth)];case 1:r.sent(),r.label=2;case 2:return s(),[2];}});});}},l,s);},tags:["img"],tooltip:"Insert Image"},t.image=function(e){e.registerButton({name:"image",group:"media"});};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.indent=void 0;var r=o(146),n=o(147),i=o(229),a=o(185);r.Config.prototype.controls.indent={tooltip:"Increase Indent"};var s=function(e,t){return"".concat(i.Dom.isCell(t)?"padding":"margin").concat("rtl"===e?"Right":"Left");};r.Config.prototype.controls.outdent={isDisabled:function(e){var t=e.s.current();if(t){var o=i.Dom.closest(t,i.Dom.isBlock,e.editor);if(o){var r=s(e.o.direction,o);return!o.style[r]||0>=parseInt(o.style[r],10);}}return!0;},tooltip:"Decrease Indent"},r.Config.prototype.indentMargin=10,t.indent=function(e){e.registerButton({name:"indent",group:"indent"}).registerButton({name:"outdent",group:"indent"});var t=function(t){var o=[];return e.s.eachSelection(function(r){e.s.save();var l=!!r&&i.Dom.up(r,i.Dom.isBlock,e.editor),c=e.o.enter;if(!l&&r&&(l=i.Dom.wrapInline(r,c!==n.BR?c:n.PARAGRAPH,e)),!l)return e.s.restore(),!1;var u=o.includes(l);if(l&&!u){var d=s(e.o.direction,l);o.push(l);var p=l.style[d]?parseInt(l.style[d],10):0;l.style[d]=(p+=e.o.indentMargin*("outdent"===t?-1:1))>0?p+"px":"",(0,a.attr)(l,"style")||(0,a.attr)(l,"style",null);}e.s.restore();}),e.synchronizeValues(),!1;};e.registerCommand("indent",{exec:t,hotkeys:["ctrl+]","cmd+]"]}),e.registerCommand("outdent",{exec:t,hotkeys:["ctrl+[","cmd+["]});};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),o(145).__exportStar(o(526),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.hr=void 0;var r=o(146),n=o(229);r.Config.prototype.controls.hr={command:"insertHorizontalRule",tags:["hr"],tooltip:"Insert Horizontal Line"},t.hr=function(e){e.registerButton({name:"hr",group:"insert"}),e.registerCommand("insertHorizontalRule",function(){var t=e.createInside.element("hr");e.s.insertNode(t,!1,!1);var o=n.Dom.closest(t.parentElement,n.Dom.isBlock,e.editor);o&&n.Dom.isEmpty(o)&&o!==e.editor&&(n.Dom.after(o,t),n.Dom.safeRemove(o));var r=n.Dom.next(t,n.Dom.isBlock,e.editor,!1);return r||(r=e.createInside.element(e.o.enter),n.Dom.after(t,r)),e.s.setCursorIn(r),!1;});};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.inlinePopup=void 0;var r=o(145);o(528),o(529);var n=o(365),i=o(332),a=o(305),s=o(185),l=o(229),c=o(335),u=o(231),d=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.requires=["select"],t.type=null,t.popup=new a.Popup(t.jodit,!1),t.toolbar=(0,i.makeCollection)(t.jodit,t.popup),t.snapRange=null,t.elmsList=(0,s.keys)(t.j.o.popup,!1).filter(function(e){return!t.isExcludedTarget(e);}),t;}return r.__extends(t,e),t.prototype.onClick=function(e){var t=this,o=this.elmsList,r=l.Dom.isTag(e,"img")?e:l.Dom.closest(e,o,this.j.editor);if(r&&this.canShowPopupForType(r.nodeName.toLowerCase()))return this.showPopup(function(){return(0,s.position)(r,t.j);},r.nodeName.toLowerCase(),r),!1;},t.prototype.showPopup=function(e,t,o){if(t=t.toLowerCase(),!this.canShowPopupForType(t))return!1;if(this.type!==t||o!==this.previousTarget){this.previousTarget=o;var r=this.j.o.popup[t],n=void 0;n=(0,s.isFunction)(r)?r(this.j,o,this.popup.close):r,(0,s.isArray)(n)&&(this.toolbar.build(n,o),this.toolbar.buttonSize=this.j.o.toolbarButtonSize,n=this.toolbar.container),this.popup.setContent(n),this.type=t;}return this.popup.open(e),!0;},t.prototype.hidePopup=function(e){(0,s.isString)(e)&&e!==this.type||this.popup.close();},t.prototype.onOutsideClick=function(){this.popup.close();},t.prototype.canShowPopupForType=function(e){var t=this.j.o.popup[e.toLowerCase()];return!(this.j.o.readonly||!this.j.o.toolbarInline||!t||this.isExcludedTarget(e));},t.prototype.isExcludedTarget=function(e){return(0,s.splitArray)(this.j.o.toolbarInlineDisableFor).map(function(e){return e.toLowerCase();}).includes(e.toLowerCase());},t.prototype.afterInit=function(e){var t=this;this.j.e.on("getDiffButtons.mobile",function(o){if(t.toolbar===o){var r=t.toolbar.getButtonsNames();return(0,s.toArray)(e.registeredButtons).filter(function(e){return!t.j.o.toolbarInlineDisabledButtons.includes(e.name);}).filter(function(e){var t=(0,s.isString)(e)?e:e.name;return t&&"|"!==t&&"\n"!==t&&!r.includes(t);});}}).on("hidePopup",this.hidePopup).on("showInlineToolbar",this.showInlineToolbar).on("showPopup",function(e,o,r){t.showPopup(o,r||((0,s.isString)(e)?e:e.nodeName),(0,s.isString)(e)?void 0:e);}).on("mousedown keydown",this.onSelectionStart).on("change",function(){t.popup.isOpened&&t.previousTarget&&!t.previousTarget.parentNode&&(t.hidePopup(),t.previousTarget=void 0);}).on([this.j.ew,this.j.ow],"mouseup keyup",this.onSelectionEnd),this.addListenersForElements();},t.prototype.onSelectionStart=function(){this.snapRange=this.j.s.range.cloneRange();},t.prototype.onSelectionEnd=function(e){if(!(e&&e.target&&c.UIElement.closestElement(e.target,a.Popup))){var t=this.snapRange,o=this.j.s.range;t&&!o.collapsed&&o.startContainer===t.startContainer&&o.startOffset===t.startOffset&&o.endContainer===t.endContainer&&o.endOffset===t.endOffset||this.onSelectionChange();}},t.prototype.onSelectionChange=function(){if(this.j.o.toolbarInlineForSelection){var e="selection",t=this.j.s.sel,o=this.j.s.range;(null==t?void 0:t.isCollapsed)||this.isSelectedTarget(o)||this.tableModule.getAllSelectedCells().length?this.type===e&&this.popup.isOpened&&this.hidePopup():this.j.s.current()&&this.showPopup(function(){return o.getBoundingClientRect();},e);}},t.prototype.isSelectedTarget=function(e){var t=e.startContainer;return l.Dom.isElement(t)&&t===e.endContainer&&l.Dom.isTag(t.childNodes[e.startOffset],(0,s.keys)(this.j.o.popup,!1))&&e.startOffset===e.endOffset-1;},Object.defineProperty(t.prototype,"tableModule",{get:function(){return this.j.getInstance("Table",this.j.o);},enumerable:!1,configurable:!0}),t.prototype.beforeDestruct=function(e){e.e.off("showPopup").off([this.j.ew,this.j.ow],"mouseup keyup",this.onSelectionEnd),this.removeListenersForElements();},t.prototype._eventsList=function(){var e=this.elmsList;return e.map(function(e){return(0,s.camelCase)("click_".concat(e));}).concat(e.map(function(e){return(0,s.camelCase)("touchstart_".concat(e));})).join(" ");},t.prototype.addListenersForElements=function(){this.j.e.on(this._eventsList(),this.onClick);},t.prototype.removeListenersForElements=function(){this.j.e.off(this._eventsList(),this.onClick);},t.prototype.showInlineToolbar=function(e){var t=this;this.showPopup(function(){return e||t.j.s.range.getBoundingClientRect();},"toolbar");},r.__decorate([u.autobind],t.prototype,"onClick",null),r.__decorate([(0,u.wait)(function(e){return!e.j.isLocked;})],t.prototype,"showPopup",null),r.__decorate([(0,u.watch)(":clickEditor"),u.autobind],t.prototype,"hidePopup",null),r.__decorate([(0,u.watch)(":outsideClick")],t.prototype,"onOutsideClick",null),r.__decorate([u.autobind],t.prototype,"onSelectionStart",null),r.__decorate([u.autobind],t.prototype,"onSelectionEnd",null),r.__decorate([(0,u.debounce)(function(e){return e.defaultTimeout;})],t.prototype,"onSelectionChange",null),r.__decorate([u.autobind],t.prototype,"showInlineToolbar",null),t;}(n.Plugin);t.inlinePopup=d;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(146);r.Config.prototype.toolbarInline=!0,r.Config.prototype.toolbarInlineForSelection=!1,r.Config.prototype.toolbarInlineDisableFor=[],r.Config.prototype.toolbarInlineDisabledButtons=["source"],r.Config.prototype.popup={a:o(530).Z,img:o(531).default,cells:o(532).Z,toolbar:o(533).Z,jodit:o(534).Z,iframe:o(534).Z,"jodit-media":o(534).Z,selection:["bold","underline","italic","ul","ol","\n","outdent","indent","fontsize","brush","cut","\n","paragraph","link","align","dots"]};},function(e,t,o){"use strict";var r=o(186);t.Z=[{name:"eye",tooltip:"Open link",exec:function(e,t){var o=(0,r.attr)(t,"href");t&&o&&e.ow.open(o);}},{name:"link",tooltip:"Edit link",icon:"pencil"},"unlink","brush","file"];},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.align=void 0;var r=o(229),n=o(156),i=o(190),a=o(518);t.align={name:"left",childTemplate:function(e,t,o){return o;},list:["Left","Right","Center","Normal"],exec:function(e,t,o){var i=o.control;if(r.Dom.isTag(t,["img","jodit","jodit-media"])){var s=i.args&&(0,n.isString)(i.args[0])?i.args[0].toLowerCase():"";if(!s)return!1;(0,a.hAlignElement)(t,s),r.Dom.isTag(t,["jodit","jodit-media"])&&t.firstElementChild&&(0,a.hAlignElement)(t.firstElementChild,s),e.synchronizeValues(),e.e.fire("recalcPositionPopup");}},tooltip:"Horizontal align"},t.default=[{name:"delete",icon:"bin",tooltip:"Delete",exec:function(e,t){t&&e.s.removeNode(t);}},{name:"pencil",exec:function(e,t){"img"===t.tagName.toLowerCase()&&e.e.fire("openImageProperties",t);},tooltip:"Edit"},{name:"valign",list:["Top","Middle","Bottom","Normal"],tooltip:"Vertical align",exec:function(e,t,o){var a=o.control;if(r.Dom.isTag(t,"img")){var s=a.args&&(0,n.isString)(a.args[0])?a.args[0].toLowerCase():"";if(!s)return!1;(0,i.css)(t,"vertical-align","normal"===s?"":s),e.e.fire("recalcPositionPopup");}}},t.align];},function(e,t,o){"use strict";var r=o(220),n=o(190),i=o(485),a=function(e){return e.args&&(0,r.isString)(e.args[0])?e.args[0].toLowerCase():"";};t.Z=[{name:"brush",popup:function(e,t,o,a){if((0,r.isJoditObject)(e)){var s=e.getInstance("Table",e.o).getAllSelectedCells();if(!s.length)return!1;var l=function(t){return(0,i.ColorPickerWidget)(e,function(o){s.forEach(function(e){(0,n.css)(e,t,o);}),e.lock(),e.synchronizeValues(),a(),e.unlock();},(0,n.css)(s[0],t));};return(0,i.TabsWidget)(e,[{name:"Background",content:l("background-color")},{name:"Text",content:l("color")},{name:"Border",content:l("border-color")}]);}},tooltip:"Background"},{name:"valign",list:["Top","Middle","Bottom","Normal"],childTemplate:function(e,t,o){return o;},exec:function(e,t,o){var r=a(o.control);e.getInstance("Table",e.o).getAllSelectedCells().forEach(function(e){(0,n.css)(e,"vertical-align","normal"===r?"":r);});},tooltip:"Vertical align"},{name:"splitv",list:{tablesplitv:"Split vertical",tablesplitg:"Split horizontal"},tooltip:"Split"},{name:"align",icon:"left"},"\n",{name:"merge",command:"tablemerge",tooltip:"Merge"},{name:"addcolumn",list:{tableaddcolumnbefore:"Insert column before",tableaddcolumnafter:"Insert column after"},exec:function(e,t,o){var n=o.control;if((0,r.isJoditObject)(e)){var i=a(n);e.execCommand(i,!1,t);}},tooltip:"Add column"},{name:"addrow",list:{tableaddrowbefore:"Insert row above",tableaddrowafter:"Insert row below"},exec:function(e,t,o){var n=o.control;if((0,r.isJoditObject)(e)){var i=a(n);e.execCommand(i,!1,t);}},tooltip:"Add row"},{name:"delete",icon:"bin",list:{tablebin:"Delete table",tablebinrow:"Delete row",tablebincolumn:"Delete column",tableempty:"Empty cell"},exec:function(e,t,o){var n=o.control;if((0,r.isJoditObject)(e)){var i=a(n);e.execCommand(i,!1,t),e.e.fire("hidePopup");}},tooltip:"Delete"}];},function(e,t){"use strict";t.Z=["bold","italic","|","ul","ol","eraser","|","fontsize","brush","paragraph","---","image","table","\n","link","|","align","|","undo","redo","|","copyformat","fullsize","---","dots"];},function(e,t,o){"use strict";var r=o(531);t.Z=[{name:"bin",tooltip:"Delete",exec:function(e,t){t&&e.s.removeNode(t);}},r.align];},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.justify=t.alignElement=t.clearAlign=void 0;var r=o(146),n=o(148),i=o(185);r.Config.prototype.controls.align={name:"left",tooltip:"Align",update:function(e,t){var o=e.control,r=t.s.current();if(r){var a=n.Dom.closest(r,n.Dom.isBlock,t.editor)||t.editor,s=(0,i.css)(a,"text-align").toString();o.defaultValue&&-1!==o.defaultValue.indexOf(s)&&(s="left"),o.data&&o.data.currentValue!==s&&o.list&&-1!==o.list.indexOf(s)&&(t.o.textIcons?e.state.text=s:e.state.icon.name=s,o.data.currentValue=s);}},isActive:function(e,t){var o=e.s.current();if(o&&t.defaultValue){var r=n.Dom.closest(o,n.Dom.isBlock,e.editor)||e.editor;return-1===t.defaultValue.indexOf((0,i.css)(r,"text-align").toString());}return!1;},defaultValue:["left","start","inherit"],data:{currentValue:"left"},list:["center","left","right","justify"]},r.Config.prototype.controls.center={command:"justifyCenter",css:{"text-align":"center"},tooltip:"Align Center"},r.Config.prototype.controls.justify={command:"justifyFull",css:{"text-align":"justify"},tooltip:"Align Justify"},r.Config.prototype.controls.left={command:"justifyLeft",css:{"text-align":"left"},tooltip:"Align Left"},r.Config.prototype.controls.right={command:"justifyRight",css:{"text-align":"right"},tooltip:"Align Right"},t.clearAlign=function(e){n.Dom.each(e,function(e){n.Dom.isHTMLElement(e)&&e.style.textAlign&&(e.style.textAlign="",e.style.cssText.trim().length||e.removeAttribute("style"));});},t.alignElement=function(e,o){if(n.Dom.isNode(o)&&n.Dom.isElement(o))switch((0,t.clearAlign)(o),e.toLowerCase()){case"justifyfull":o.style.textAlign="justify";break;case"justifyright":o.style.textAlign="right";break;case"justifyleft":o.style.textAlign="left";break;case"justifycenter":o.style.textAlign="center";}},t.justify=function(e){e.registerButton({name:"align",group:"indent"});var o=function(o){return e.s.focus(),e.s.eachSelection(function(r){if(r){var i=n.Dom.up(r,n.Dom.isBlock,e.editor);i||(i=n.Dom.wrapInline(r,e.o.enterBlock,e)),(0,t.alignElement)(o,i);}}),!1;};e.registerCommand("justifyfull",o),e.registerCommand("justifyright",o),e.registerCommand("justifyleft",o),e.registerCommand("justifycenter",o);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.limit=void 0;var r=o(145),n=o(146),i=o(365),a=o(147),s=o(185),l=o(231);n.Config.prototype.limitWords=!1,n.Config.prototype.limitChars=!1,n.Config.prototype.limitHTML=!1;var c=function(e){function t(){return null!==e&&e.apply(this,arguments)||this;}return r.__extends(t,e),t.prototype.afterInit=function(e){var t=this,o=e.o;if(e&&(o.limitWords||o.limitChars)){var r=null;e.e.off(".limit").on("beforePaste.limit",function(){r=e.history.snapshot.make();}).on("keydown.limit keyup.limit beforeEnter.limit beforePaste.limit",this.checkPreventKeyPressOrPaste).on("change.limit",this.checkPreventChanging).on("afterPaste.limit",function(){if(t.shouldPreventInsertHTML()&&r)return e.history.snapshot.restore(r),!1;});}},t.prototype.shouldPreventInsertHTML=function(e,t){if(void 0===e&&(e=null),void 0===t&&(t=""),e&&a.COMMAND_KEYS.includes(e.key))return!1;var o=this.jodit,r=o.o,n=r.limitWords,i=r.limitChars,s=this.splitWords(t||(o.o.limitHTML?o.value:o.text));return!(!n||n>s.length)||Boolean(i)&&s.join("").length>=i;},t.prototype.checkPreventKeyPressOrPaste=function(e){if(this.shouldPreventInsertHTML(e))return!1;},t.prototype.checkPreventChanging=function(e,t){var o=this.jodit,r=o.o,n=r.limitWords,i=r.limitChars,a=o.o.limitHTML?e:(0,s.stripTags)(e),l=this.splitWords(a);(n&&l.length>n||Boolean(i)&&l.join("").length>i)&&(o.value=t);},t.prototype.splitWords=function(e){return e.replace((0,a.INVISIBLE_SPACE_REG_EXP)(),"").split((0,a.SPACE_REG_EXP)()).filter(function(e){return e.length;});},t.prototype.beforeDestruct=function(e){e.e.off(".limit");},r.__decorate([l.autobind],t.prototype,"checkPreventKeyPressOrPaste",null),r.__decorate([l.autobind],t.prototype,"checkPreventChanging",null),t;}(i.Plugin);t.limit=c;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.lineHeight=void 0;var r=o(145),n=o(365);o(538);var i=o(185),a=o(231),s=o(229),l=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.buttons=[{name:"lineHeight",group:"font"}],t;}return r.__extends(t,e),t.prototype.afterInit=function(e){(0,i.css)(e.editor,{lineHeight:e.o.defaultLineHeight}),e.registerCommand("applyLineHeight",this.applyLineHeight);},t.prototype.applyLineHeight=function(e,t,o){var r,n=this.j,a=n.s,l=n.createInside,c=n.editor,u=n.o;a.isFocused()||a.focus(),a.save();var d=function(e){var t=s.Dom.closest(e,s.Dom.isBlock,c);t||(t=s.Dom.wrap(e,u.enter,l));var n=(0,i.css)(t,"lineHeight");void 0===r&&(r=n.toString()!==o.toString()),(0,i.css)(t,"lineHeight",r?o:null);};try{if(a.isCollapsed()){var p=l.fake();a.insertNode(p,!1,!1),d(p),s.Dom.safeRemove(p);}else a.eachSelection(d);}finally{a.restore();}},t.prototype.beforeDestruct=function(e){(0,i.css)(e.editor,{lineHeight:null});},r.__decorate([a.autobind],t.prototype,"applyLineHeight",null),t;}(n.Plugin);t.lineHeight=l;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(146),n=o(185);r.Config.prototype.defaultLineHeight=null,r.Config.prototype.controls.lineHeight={icon:"line-height",command:"applyLineHeight",tags:["ol"],tooltip:"Line height",list:[1,1.1,1.2,1.3,1.4,1.5,2],exec:function(e,t,o){return(0,n.memorizeExec)(e,t,{control:o.control},function(e){return e;});}};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.link=void 0;var r=o(145),n=o(229),i=o(185),a=o(365),s=o(231),l=o(148);o(540);var c=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.buttons=[{name:"link",group:"insert"}],t;}return r.__extends(t,e),t.prototype.afterInit=function(e){var t=this;e.o.link.followOnDblClick&&e.e.on("dblclick.link",this.onDblClickOnLink),e.o.link.processPastedLink&&e.e.on("processPaste.link",this.onProcessPasteLink),e.e.on("generateLinkForm.link",this.generateForm),e.registerCommand("openLinkDialog",{exec:function(){var o=new l.Dialog({resizable:!1}),r=t.generateForm(e.s.current(),function(){o.close();});r.container.classList.add("jodit-dialog_alert"),o.setContent(r),o.open(),e.async.requestIdleCallback(function(){var e=(0,i.refs)(r.container).url_input;null==e||e.focus();});},hotkeys:e.o.link.hotkeys});},t.prototype.onDblClickOnLink=function(e){if(n.Dom.isTag(e.target,"a")){var t=(0,i.attr)(e.target,"href");t&&(location.href=t,e.preventDefault());}},t.prototype.onProcessPasteLink=function(e,t){var o=this.jodit;if((0,i.isURL)(t)){if(o.o.link.processVideoLink){var r=(0,i.convertMediaUrlToVideoEmbed)(t);if(r!==t)return o.e.stopPropagation("processPaste"),o.createInside.fromHTML(r);}var n=o.createInside.element("a");return n.setAttribute("href",t),n.textContent=t,o.e.stopPropagation("processPaste"),n;}},t.prototype.generateForm=function(e,t){var o,r=this.jodit,a=r.i18n.bind(r),s=r.o.link,l=s.openInNewTabCheckbox,c=s.noFollowCheckbox,u=s.formClassName,d=s.modeClassName,p=(0,s.formTemplate)(r),f=(0,i.isString)(p)?r.c.fromHTML(p,{target_checkbox_box:l,nofollow_checkbox_box:c}):p,h=n.Dom.isElement(f)?f:f.container,m=(0,i.refs)(h),v=m.insert,g=m.unlink,y=m.content_input_box,b=m.target_checkbox,_=m.nofollow_checkbox,w=m.url_input,S=n.Dom.isImage(e),C=m.content_input,k=m.className_input,j=m.className_select;C||(C=r.c.element("input",{type:"hidden",ref:"content_input"})),u&&h.classList.add(u),S&&n.Dom.hide(y);var E=function(){return o?o.innerText:(0,i.stripTags)(r.s.range.cloneContents(),r.ed);};if(o=!(!e||!n.Dom.closest(e,"a",r.editor))&&n.Dom.closest(e,"a",r.editor),!S&&e&&(C.value=E()),o){if(w.value=(0,i.attr)(o,"href")||"",d)switch(d){case"input":k&&(k.value=(0,i.attr)(o,"class")||"");break;case"select":if(j){for(var x=0;j.selectedOptions.length>x;x++){var I=j.options.item(x);I&&(I.selected=!1);}((0,i.attr)(o,"class")||"").split(" ").forEach(function(e){if(e)for(var t=0;j.options.length>t;t++){var o=j.options.item(t);(null==o?void 0:o.value)&&o.value===e&&(o.selected=!0);}});}}l&&b&&(b.checked="_blank"===(0,i.attr)(o,"target")),c&&_&&(_.checked="nofollow"===(0,i.attr)(o,"rel")),v.textContent=a("Update");}else n.Dom.hide(g);r.editor.normalize();var T=r.history.snapshot.make();g&&r.e.on(g,"click",function(e){r.s.restore(),r.history.snapshot.restore(T),o&&n.Dom.unwrap(o),r.synchronizeValues(),t(),e.preventDefault();});var P=function(){if(!w.value.trim().length)return w.focus(),w.classList.add("jodit_error"),!1;var e;r.s.restore(),r.s.removeMarkers(),r.editor.normalize(),r.history.snapshot.restore(T);var a=E()!==C.value.trim(),s=r.createInside;if(o)e=[o];else{if(r.s.isCollapsed()){var u=s.element("a");r.s.insertNode(u,!1,!1),e=[u];}else{var p=r.s.current();e=n.Dom.isTag(p,["img"])?[n.Dom.wrap(p,"a",s)]:r.s.wrapInTag("a");}e.forEach(function(e){return r.s.select(e);});}return e.forEach(function(e){var t;if((0,i.attr)(e,"href",w.value),d&&(null!=k?k:j))if("input"===d)""===k.value&&e.hasAttribute("class")&&(0,i.attr)(e,"class",null),""!==k.value&&(0,i.attr)(e,"class",k.value);else if("select"===d){e.hasAttribute("class")&&(0,i.attr)(e,"class",null);for(var o=0;j.selectedOptions.length>o;o++){var n=null===(t=j.selectedOptions.item(o))||void 0===t?void 0:t.value;n&&e.classList.add(n);}}if(!S){var s=e.textContent;C.value.trim().length?a&&(s=C.value):s=w.value,s!==e.textContent&&(e.textContent=s);}l&&b&&(0,i.attr)(e,"target",b.checked?"_blank":null),c&&_&&(0,i.attr)(e,"rel",_.checked?"nofollow":null),r.e.fire("applyLink",r,e,f);}),r.synchronizeValues(),t(),!1;};return n.Dom.isElement(f)?r.e.on(f,"submit",function(e){return e.preventDefault(),e.stopImmediatePropagation(),P(),!1;}):f.onSubmit(P),f;},t.prototype.beforeDestruct=function(e){e.e.off("generateLinkForm.link",this.generateForm).off("dblclick.link",this.onDblClickOnLink).off("processPaste.link",this.onProcessPasteLink);},r.__decorate([s.autobind],t.prototype,"onDblClickOnLink",null),r.__decorate([s.autobind],t.prototype,"onProcessPasteLink",null),r.__decorate([s.autobind],t.prototype,"generateForm",null),t;}(a.Plugin);t.link=c;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(146),n=o(541),i=o(213);r.Config.prototype.link={formTemplate:n.formTemplate,followOnDblClick:!1,processVideoLink:!0,processPastedLink:!0,noFollowCheckbox:!0,openInNewTabCheckbox:!0,modeClassName:"input",selectMultipleClassName:!0,selectSizeClassName:3,selectOptionsClassName:[],hotkeys:["ctrl+k","cmd+k"]},r.Config.prototype.controls.unlink={exec:function(e,t){var o=i.Dom.closest(t,"a",e.editor);o&&i.Dom.unwrap(o),e.synchronizeValues(),e.e.fire("hidePopup");},tooltip:"Unlink"},r.Config.prototype.controls.link={isActive:function(e){var t=e.s.current();return Boolean(t&&i.Dom.closest(t,"a",e.editor));},popup:function(e,t,o,r){return e.e.fire("generateLinkForm.link",t,r);},tags:["a"],tooltip:"Insert link"};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.formTemplate=void 0;var r=o(337),n=o(308);t.formTemplate=function(e){var t=e.o.link,o=t.openInNewTabCheckbox,i=t.noFollowCheckbox,a=t.modeClassName,s=t.selectSizeClassName,l=t.selectMultipleClassName,c=t.selectOptionsClassName;return new r.UIForm(e,[new r.UIBlock(e,[new r.UIInput(e,{name:"url",type:"text",ref:"url_input",label:"URL",placeholder:"http://",required:!0})]),new r.UIBlock(e,[new r.UIInput(e,{name:"content",ref:"content_input",label:"Text"})],{ref:"content_input_box"}),a?new r.UIBlock(e,["input"===a?new r.UIInput(e,{name:"className",ref:"className_input",label:"Class name"}):"select"===a?new r.UISelect(e,{name:"className",ref:"className_select",label:"Class name",size:s,multiple:l,options:c}):null]):null,o?new r.UICheckbox(e,{name:"target",ref:"target_checkbox",label:"Open in new tab"}):null,i?new r.UICheckbox(e,{name:"nofollow",ref:"nofollow_checkbox",label:"No follow"}):null,new r.UIBlock(e,[new n.UIButton(e,{name:"unlink",variant:"default",text:"Unlink"}),new n.UIButton(e,{name:"insert",type:"submit",variant:"primary",text:"Insert"})],{align:"full"})]);};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(543),t),r.__exportStar(o(544),t),r.__exportStar(o(546),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.media=void 0;var r=o(146),n=o(147),i=o(185);r.Config.prototype.mediaFakeTag="jodit-media",r.Config.prototype.mediaInFakeBlock=!0,r.Config.prototype.mediaBlocks=["video","audio"],t.media=function(e){var t="jodit_fake_wrapper",o=e.options,r=o.mediaFakeTag,a=o.mediaBlocks;o.mediaInFakeBlock&&e.e.on("afterGetValueFromEditor",function(e){var o=new RegExp("<".concat(r,"[^>]+data-").concat(t,"[^>]+>([^]+?)</").concat(r,">"),"ig");o.test(e.value)&&(e.value=e.value.replace(o,"$1"));}).on("change afterInit afterSetMode changePlace",e.async.debounce(function(){e.isDestructed||e.getMode()===n.MODE_SOURCE||(0,i.$$)(a.join(","),e.editor).forEach(function(o){(0,i.dataBind)(o,t)||((0,i.dataBind)(o,t,!0),function(o){var n;if(o.parentNode&&(0,i.attr)(o.parentNode,"data-jodit_iframe_wrapper"))o=o.parentNode;else{var a=e.createInside.element(r,((n={"data-jodit-temp":1,contenteditable:!1,draggable:!0})["data-".concat(t)]=1,n));(0,i.attr)(a,"style",(0,i.attr)(o,"style")),a.style.display="inline-block"===o.style.display?"inline-block":"block",a.style.width=o.offsetWidth+"px",a.style.height=o.offsetHeight+"px",o.parentNode&&o.parentNode.insertBefore(a,o),a.appendChild(o),o=a;}e.e.off(o,"mousedown.select touchstart.select").on(o,"mousedown.select touchstart.select",function(){e.s.setCursorAfter(o);});}(o));});},e.defaultTimeout));};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.video=void 0,o(545),t.video=function(e){e.registerButton({name:"video",group:"media"});};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(146),n=o(485),i=o(185),a=o(337),s=o(308);r.Config.prototype.controls.video={popup:function(e,t,o,r){var l=new a.UIForm(e,[new a.UIBlock(e,[new a.UIInput(e,{name:"url",required:!0,label:"URL",placeholder:"https://",validators:["url"]})]),new a.UIBlock(e,[(0,s.Button)(e,"","Insert","primary").onAction(function(){return l.submit();})])]),c=new a.UIForm(e,[new a.UIBlock(e,[new a.UITextArea(e,{name:"code",required:!0,label:"Embed code"})]),new a.UIBlock(e,[(0,s.Button)(e,"","Insert","primary").onAction(function(){return c.submit();})])]),u=[],d=function(t){e.s.restore(),e.s.insertHTML(t),r();};return e.s.save(),u.push({icon:"link",name:"Link",content:l.container},{icon:"source",name:"Code",content:c.container}),l.onSubmit(function(e){d((0,i.convertMediaUrlToVideoEmbed)(e.url));}),c.onSubmit(function(e){d(e.code);}),(0,n.TabsWidget)(e,u);},tags:["iframe"],tooltip:"Insert youtube/vimeo video"};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.file=void 0;var r=o(146),n=o(229),i=o(485);r.Config.prototype.controls.file={popup:function(e,t,o,r){var a=function(t,o){void 0===o&&(o=""),e.s.insertNode(e.createInside.fromHTML('<a href="'.concat(t,'" title="').concat(o,'">').concat(o||t,"</a>")));},s=null;return t&&(n.Dom.isTag(t,"a")||n.Dom.closest(t,"a",e.editor))&&(s=n.Dom.isTag(t,"a")?t:n.Dom.closest(t,"a",e.editor)),(0,i.FileSelectorWidget)(e,{filebrowser:function(e){e.files&&e.files.forEach(function(t){return a(e.baseurl+t);}),r();},upload:!0,url:function(e,t){s?(s.setAttribute("href",e),s.setAttribute("title",t)):a(e,t),r();}},s,r,!1);},tags:["a"],tooltip:"Insert file"},t.file=function(e){e.registerButton({name:"file",group:"media"});};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.mobile=void 0;var r=o(185),n=o(319);o(548),t.mobile=function(e){var t=0,o=(0,r.splitArray)(e.o.buttons);e.o.mobileTapTimeout&&e.e.on("touchend",function(o){if(o.changedTouches&&o.changedTouches.length){var r=new Date().getTime(),n=r-t;n>e.o.mobileTapTimeout&&(t=r,1.5*e.o.mobileTapTimeout>n&&e.s.insertCursorAtPoint(o.clientX,o.clientY));}}),e.e.on("getDiffButtons.mobile",function(t){if(t===e.toolbar){var i=(0,n.flatButtonsSet)((0,r.splitArray)(e.o.buttons),e),a=(0,n.flatButtonsSet)(o,e);return(0,r.toArray)(i).reduce(function(e,t){return a.has(t)||e.push(t),e;},[]);}}),e.o.toolbarAdaptive&&e.e.on("resize afterInit recalcAdaptive changePlace afterAddPlace",function(){var t;if(e.o.toolbar){var n=(null!==(t=e.container.parentElement)&&void 0!==t?t:e.container).offsetWidth,i=(0,r.splitArray)(e.o.sizeLG>n?e.o.sizeMD>n?e.o.sizeSM>n?e.o.buttonsXS:e.o.buttonsSM:e.o.buttonsMD:e.o.buttons);i.toString()!==o.toString()&&(o=i,e.e.fire("closeAllPopups"),e.toolbar.setRemoveButtons(e.o.removeButtons).build(o.concat(e.o.extraButtons)));}}).on(e.ow,"load resize",function(){return e.e.fire("recalcAdaptive");});};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(146),n=o(147),i=o(332),a=o(185),s=o(333);r.Config.prototype.mobileTapTimeout=300,r.Config.prototype.toolbarAdaptive=!0,r.Config.prototype.controls.dots={mode:n.MODE_SOURCE+n.MODE_WYSIWYG,popup:function(e,t,o,r,n){var l=o.data;return void 0===l&&(l={toolbar:(0,i.makeCollection)(e),rebuild:function(){var t;if(n){var o=e.e.fire("getDiffButtons.mobile",n.closest(s.ToolbarCollection));if(o&&l){l.toolbar.build((0,a.splitArray)(o));var r=(null===(t=e.toolbar.firstButton)||void 0===t?void 0:t.container.offsetWidth)||36;l.toolbar.container.style.width=3*(r+4)+"px";}}}},o.data=l),l.rebuild(),l.toolbar;},tooltip:"Show all"};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.orderedList=void 0;var r=o(145),n=o(365),i=o(231);o(550);var a=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.buttons=[{name:"ul",group:"list"},{name:"ol",group:"list"}],t;}return r.__extends(t,e),t.prototype.afterInit=function(e){e.registerCommand("insertUnorderedList",this.onCommand).registerCommand("insertOrderedList",this.onCommand);},t.prototype.onCommand=function(e,t,o){return this.jodit.s.applyStyle({listStyleType:null!=o?o:null},{element:"insertunorderedlist"===e?"ul":"ol"}),this.jodit.synchronizeValues(),!1;},t.prototype.beforeDestruct=function(e){},r.__decorate([i.autobind],t.prototype,"onCommand",null),t;}(n.Plugin);t.orderedList=a;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(146),n=o(189),i=function(e,t,o){var r,i=o.control,a="button".concat(i.command),s=null!==(r=i.args&&i.args[0])&&void 0!==r?r:(0,n.dataBind)(e,a);(0,n.dataBind)(e,a,s),e.execCommand(i.command,!1,"default"===s?null:s);};r.Config.prototype.controls.ul={command:"insertUnorderedList",tags:["ul"],tooltip:"Insert Unordered List",list:{default:"Default",circle:"Circle",disc:"Dot",square:"Quadrate"},exec:i},r.Config.prototype.controls.ol={command:"insertOrderedList",tags:["ol"],tooltip:"Insert Ordered List",list:{default:"Default","lower-alpha":"Lower Alpha","lower-greek":"Lower Greek","lower-roman":"Lower Roman","upper-alpha":"Upper Alpha","upper-roman":"Upper Roman"},exec:i};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.poweredByJodit=void 0,t.poweredByJodit=function(e){e.o.hidePoweredByJodit||e.o.inline||!(e.o.showCharsCounter||e.o.showWordsCounter||e.o.showXPathInStatusbar)||e.hookStatus("ready",function(){e.statusbar.append(e.create.fromHTML('<a\n\t\t\t\t\t\ttabindex="-1"\n\t\t\t\t\t\tstyle="text-transform: uppercase"\n\t\t\t\t\t\tclass="jodit-status-bar-link"\n\t\t\t\t\t\ttarget="_blank"\n\t\t\t\t\t\thref="https://xdsoft.net/jodit/">\n\t\t\t\t\t\t\tPowered by Jodit\n\t\t\t\t\t\t</a>'),!0);});};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.placeholder=t.isEditorEmpty=void 0;var r=o(145);o(553);var n=o(147),i=o(185),a=o(229),s=o(365),l=o(147),c=o(231),u=o(214);function d(e){if(!e.firstChild)return!0;var t=e.firstChild;if(l.MAY_BE_REMOVED_WITH_KEY.test(t.nodeName)||/^(TABLE)$/i.test(t.nodeName))return!1;var o=a.Dom.next(t,function(e){return e&&!a.Dom.isEmptyTextNode(e);},e);return a.Dom.isText(t)&&!o?a.Dom.isEmptyTextNode(t):!o&&a.Dom.each(t,function(e){return!a.Dom.isTag(e,["ul","li","ol"])&&(a.Dom.isEmpty(e)||a.Dom.isTag(e,"br"));});}o(554),t.isEditorEmpty=d;var p=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.addNativeListeners=function(){t.j.e.off(t.j.editor,"input.placeholder keydown.placeholder").on(t.j.editor,"input.placeholder keydown.placeholder",t.toggle);},t.addEvents=function(){var e=t.j;e.o.useInputsPlaceholder&&e.element.hasAttribute("placeholder")&&(t.placeholderElm.innerHTML=(0,i.attr)(e.element,"placeholder")||""),e.e.fire("placeholder",t.placeholderElm.innerHTML),e.e.off(".placeholder").on("changePlace.placeholder",t.addNativeListeners).on("change.placeholder focus.placeholder keyup.placeholder mouseup.placeholder keydown.placeholder mousedown.placeholder afterSetMode.placeholder changePlace.placeholder",t.toggle).on(window,"load",t.toggle),t.addNativeListeners(),t.toggle();},t;}return r.__extends(t,e),t.prototype.afterInit=function(e){var t=this;e.o.showPlaceholder&&(this.placeholderElm=e.c.fromHTML('<span data-ref="placeholder" style="display: none;" class="jodit-placeholder">'.concat(e.i18n(e.o.placeholder),"</span>")),"rtl"===e.o.direction&&(this.placeholderElm.style.right="0px",this.placeholderElm.style.direction="rtl"),e.e.on("readonly",function(e){e?t.hide():t.toggle();}).on("changePlace",this.addEvents),this.addEvents());},t.prototype.show=function(){var e=this.j;if(!e.o.readonly){var t=0,o=0,r=e.s.current(),n=r&&a.Dom.closest(r,a.Dom.isBlock,e.editor)||e.editor,s=e.ew.getComputedStyle(n);e.workplace.appendChild(this.placeholderElm);var l=e.editor.firstChild;if(a.Dom.isElement(l)&&!u.Select.isMarker(l)){var c=e.ew.getComputedStyle(l);t=parseInt(c.getPropertyValue("margin-top"),10),o=parseInt(c.getPropertyValue("margin-left"),10),this.placeholderElm.style.fontSize=parseInt(c.getPropertyValue("font-size"),10)+"px",this.placeholderElm.style.lineHeight=c.getPropertyValue("line-height");}else this.placeholderElm.style.fontSize=parseInt(s.getPropertyValue("font-size"),10)+"px",this.placeholderElm.style.lineHeight=s.getPropertyValue("line-height");(0,i.css)(this.placeholderElm,{display:"block",textAlign:s.getPropertyValue("text-align"),marginTop:Math.max(parseInt(s.getPropertyValue("margin-top"),10),t),marginLeft:Math.max(parseInt(s.getPropertyValue("margin-left"),10),o)});}},t.prototype.hide=function(){a.Dom.safeRemove(this.placeholderElm);},t.prototype.toggle=function(){var e=this.j;e.editor&&!e.isInDestruct&&(e.getRealMode()===n.MODE_WYSIWYG&&d(e.editor)?this.show():this.hide());},t.prototype.beforeDestruct=function(e){this.hide(),e.e.off(".placeholder").off(window,"load",this.toggle);},r.__decorate([(0,c.debounce)(function(e){return e.defaultTimeout/10;},!0)],t.prototype,"toggle",null),t;}(s.Plugin);t.placeholder=p;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(146);r.Config.prototype.showPlaceholder=!0,r.Config.prototype.placeholder="Type something",r.Config.prototype.useInputsPlaceholder=!0;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.redoUndo=void 0;var r=o(145),n=o(146),i=o(147),a=o(365);n.Config.prototype.controls.redo={mode:i.MODE_SPLIT,isDisabled:function(e){return!e.history.canRedo();},tooltip:"Redo"},n.Config.prototype.controls.undo={mode:i.MODE_SPLIT,isDisabled:function(e){return!e.history.canUndo();},tooltip:"Undo"};var s=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.buttons=[{name:"undo",group:"history"},{name:"redo",group:"history"}],t;}return r.__extends(t,e),t.prototype.beforeDestruct=function(){},t.prototype.afterInit=function(e){var t=function(t){return e.history[t](),!1;};e.registerCommand("redo",{exec:t,hotkeys:["ctrl+y","ctrl+shift+z","cmd+y","cmd+shift+z"]}),e.registerCommand("undo",{exec:t,hotkeys:["ctrl+z","cmd+z"]});},t;}(a.Plugin);t.redoUndo=s;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.resizer=void 0;var r=o(145);o(557);var n=o(147),i=o(147),a=o(229),s=o(185),l=o(365),c=o(237),u=o(231);o(558);var d="__jodit-resizer_binded",p=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.LOCK_KEY="resizer",t.element=null,t.isResized=!1,t.isShown=!1,t.start_x=0,t.start_y=0,t.width=0,t.height=0,t.ratio=0,t.rect=t.j.c.fromHTML('<div class="jodit-resizer">\n\t\t\t\t<div class="jodit-resizer__top-left"></div>\n\t\t\t\t<div class="jodit-resizer__top-right"></div>\n\t\t\t\t<div class="jodit-resizer__bottom-right"></div>\n\t\t\t\t<div class="jodit-resizer__bottom-left"></div>\n\t\t\t\t<span>100x100</span>\n\t\t\t</div>'),t.sizeViewer=t.rect.getElementsByTagName("span")[0],t.onResize=function(e){if(t.isResized){if(!t.element)return;var o=void 0,r=void 0;if(t.j.options.iframe){var n=t.getWorkplacePosition();o=e.clientX+n.left-t.start_x,r=e.clientY+n.top-t.start_y;}else o=e.clientX-t.start_x,r=e.clientY-t.start_y;var i=t.handle.className,l=0,c=0,u=t.j.o.resizer.useAspectRatio;!0===u||Array.isArray(u)&&a.Dom.isTag(t.element,u)?(o?(l=t.width+(i.match(/left/)?-1:1)*o,c=Math.round(l/t.ratio)):(c=t.height+(i.match(/top/)?-1:1)*r,l=Math.round(c*t.ratio)),l>(0,s.innerWidth)(t.j.editor,t.j.ow)&&(l=(0,s.innerWidth)(t.j.editor,t.j.ow),c=Math.round(l/t.ratio))):(l=t.width+(i.match(/left/)?-1:1)*o,c=t.height+(i.match(/top/)?-1:1)*r),l>t.j.o.resizer.min_width&&t.applySize(t.element,"width",t.rect.parentNode.offsetWidth>l?l:"100%"),c>t.j.o.resizer.min_height&&t.applySize(t.element,"height",c),t.updateSize(),t.showSizeViewer(t.element.offsetWidth,t.element.offsetHeight),e.stopImmediatePropagation();}},t.onClickOutside=function(e){t.isShown&&(t.isResized?(t.j.unlock(),t.isResized=!1,t.j.synchronizeValues(),e.stopImmediatePropagation(),t.j.e.off(t.j.ow,"mousemove.resizer touchmove.resizer",t.onResize)):t.hide());},t.onClickElement=function(e){t.isResized||t.element===e&&t.isShown||(t.element=e,t.show(),a.Dom.isTag(t.element,"img")&&!t.element.complete&&t.j.e.one(t.element,"load",t.updateSize));},t.updateSize=function(){if(!t.isInDestruct&&t.isShown&&t.element&&t.rect){var e=t.getWorkplacePosition(),o=(0,s.offset)(t.element,t.j,t.j.ed),r=parseInt(t.rect.style.left||"0",10),n=parseInt(t.rect.style.top||"0",10),i=o.top-e.top,a=o.left-e.left;n===i&&r===a&&t.rect.offsetWidth===t.element.offsetWidth&&t.rect.offsetHeight===t.element.offsetHeight||((0,s.css)(t.rect,{top:i,left:a,width:t.element.offsetWidth,height:t.element.offsetHeight}),t.j.events&&(t.j.e.fire(t.element,"changesize"),isNaN(r)||t.j.e.fire("resize")));}},t.hideSizeViewer=function(){t.sizeViewer.style.opacity="0";},t;}return r.__extends(t,e),t.prototype.afterInit=function(e){var t=this;(0,s.$$)("div",this.rect).forEach(function(o){e.e.on(o,"mousedown.resizer touchstart.resizer",t.onClickHandle.bind(t,o));}),c.eventEmitter.on("hideHelpers",this.hide),e.e.on("readonly",function(e){e&&t.hide();}).on("afterInit changePlace",this.addEventListeners.bind(this)).on("afterGetValueFromEditor.resizer",function(e){var t=/<jodit[^>]+data-jodit_iframe_wrapper[^>]+>(.*?<iframe[^>]*>.*?<\/iframe>.*?)<\/jodit>/gi;t.test(e.value)&&(e.value=e.value.replace(t,"$1"));}).on("hideResizer",this.hide).on("change afterInit afterSetMode",this.onChangeEditor),this.addEventListeners(),this.onChangeEditor();},t.prototype.onEditorClick=function(e){for(var t=e.target,o=this.j,r=o.editor,n=o.options.allowResizeTags;t&&t!==r;){if(a.Dom.isTag(t,n))return this.bind(t),void this.onClickElement(t);t=t.parentNode;}},t.prototype.addEventListeners=function(){var e=this,t=this.j;t.e.off(t.editor,".resizer").off(t.ow,".resizer").on(t.editor,"keydown.resizer",function(t){e.isShown&&t.key===n.KEY_DELETE&&e.element&&!a.Dom.isTag(e.element,"table")&&e.onDelete(t);}).on(t.ow,"resize.resizer",this.updateSize).on("resize.resizer",this.updateSize).on(t.ow,"mouseup.resizer keydown.resizer touchend.resizer",this.onClickOutside).on([t.ow,t.editor],"scroll.resizer",function(){e.isShown&&!e.isResized&&e.hide();});},t.prototype.onClickHandle=function(e,t){if(!this.element||!this.element.parentNode)return this.hide(),!1;this.handle=e,t.cancelable&&t.preventDefault(),t.stopImmediatePropagation(),this.width=this.element.offsetWidth,this.height=this.element.offsetHeight,this.ratio=this.width/this.height,this.isResized=!0,this.start_x=t.clientX,this.start_y=t.clientY,this.j.e.fire("hidePopup"),this.j.lock(this.LOCK_KEY),this.j.e.on(this.j.ow,"mousemove.resizer touchmove.resizer",this.onResize);},t.prototype.getWorkplacePosition=function(){return(0,s.offset)(this.rect.parentNode||this.j.od.documentElement,this.j,this.j.od,!0);},t.prototype.applySize=function(e,t,o){var r=a.Dom.isImage(e)&&this.j.o.resizer.forImageChangeAttributes;r&&(0,s.attr)(e,t,o),r&&!e.style[t]||(0,s.css)(e,t,o);},t.prototype.onDelete=function(e){this.element&&("JODIT"!==this.element.tagName?this.j.s.select(this.element):(a.Dom.safeRemove(this.element),this.hide(),e.preventDefault()));},t.prototype.onChangeEditor=function(){this.isShown&&(this.element&&this.element.parentNode?this.updateSize():this.hide()),(0,s.$$)("iframe",this.j.editor).forEach(this.bind);},t.prototype.bind=function(e){var t=this;if(a.Dom.isHTMLElement(e)&&this.j.o.allowResizeTags.includes(e.tagName.toLowerCase())&&!(0,s.dataBind)(e,d)){var o;if((0,s.dataBind)(e,d,!0),a.Dom.isTag(e,"iframe")){var r=e;a.Dom.isHTMLElement(e.parentNode)&&(0,s.attr)(e.parentNode,"-jodit_iframe_wrapper")?e=e.parentNode:(o=this.j.createInside.element("jodit",{"data-jodit-temp":1,contenteditable:!1,draggable:!0,"data-jodit_iframe_wrapper":1}),(0,s.attr)(o,"style",(0,s.attr)(e,"style")),(0,s.css)(o,{display:"inline-block"===e.style.display?"inline-block":"block",width:e.offsetWidth,height:e.offsetHeight}),e.parentNode&&e.parentNode.insertBefore(o,e),o.appendChild(e),this.j.e.on(o,"click",function(){(0,s.attr)(o,"data-jodit-wrapper_active",!0);}),e=o),this.j.e.off(e,"mousedown.select touchstart.select").on(e,"mousedown.select touchstart.select",function(){t.j.s.select(e);}).off(e,"changesize").on(e,"changesize",function(){r.setAttribute("width",e.offsetWidth+"px"),r.setAttribute("height",e.offsetHeight+"px");});}this.j.e.on(e,"dragstart",this.hide),i.IS_IE&&this.j.e.on(e,"mousedown",function(t){a.Dom.isTag(e,"img")&&t.preventDefault();});}},t.prototype.showSizeViewer=function(e,t){this.j.o.resizer.showSize&&(this.sizeViewer.offsetWidth>e||this.sizeViewer.offsetHeight>t?this.hideSizeViewer():(this.sizeViewer.style.opacity="1",this.sizeViewer.textContent="".concat(e," x ").concat(t),this.j.async.setTimeout(this.hideSizeViewer,{timeout:this.j.o.resizer.hideSizeTimeout,label:"hideSizeViewer"})));},t.prototype.show=function(){this.j.o.readonly||this.isShown||(this.isShown=!0,this.rect.parentNode||((0,s.markOwner)(this.j,this.rect),this.j.workplace.appendChild(this.rect)),this.j.isFullSize&&(this.rect.style.zIndex=(0,s.css)(this.j.container,"zIndex").toString()),this.updateSize());},t.prototype.hide=function(){this.isResized||(this.isResized=!1,this.isShown=!1,this.element=null,a.Dom.safeRemove(this.rect),(0,s.$$)("[data-jodit-wrapper_active='true']",this.j.editor).forEach(function(e){return(0,s.attr)(e,"data-jodit-wrapper_active",!1);}));},t.prototype.beforeDestruct=function(e){this.hide(),c.eventEmitter.off("hideHelpers",this.hide),e.e.off(this.j.ow,".resizer").off(".resizer");},r.__decorate([(0,u.watch)(":click")],t.prototype,"onEditorClick",null),r.__decorate([(0,u.debounce)()],t.prototype,"onChangeEditor",null),r.__decorate([u.autobind],t.prototype,"bind",null),r.__decorate([u.autobind],t.prototype,"hide",null),t;}(l.Plugin);t.resizer=p;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(146);r.Config.prototype.allowResizeTags=["img","iframe","table","jodit"],r.Config.prototype.resizer={showSize:!0,hideSizeTimeout:1e3,forImageChangeAttributes:!0,min_width:10,min_height:10,useAspectRatio:["img"]};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.search=void 0;var r=o(145),n=o(229),i=o(365),a=o(231),s=o(560),l=o(563);o(565);var c=o(185),u=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.buttons=[{name:"find",group:"search"}],t.previousQuery="",t.drawPromise=null,t.walker=null,t.walkerCount=null,t.cache={},t.wrapFrameRequest=0,t;}return r.__extends(t,e),Object.defineProperty(t.prototype,"ui",{get:function(){return new l.UISearch(this.j);},enumerable:!1,configurable:!0}),t.prototype.updateCounters=function(){return r.__awaiter(this,void 0,Promise,function(){var e;return r.__generator(this,function(t){switch(t.label){case 0:return this.ui.isOpened?(e=this.ui,[4,this.calcCounts(this.ui.query)]):[2];case 1:return e.count=t.sent(),[2];}});});},t.prototype.onPressReplaceButton=function(){this.findAndReplace(this.ui.query),this.updateCounters();},t.prototype.tryScrollToElement=function(e){var t=n.Dom.closest(e,n.Dom.isElement,this.j.editor);t||(t=n.Dom.prev(e,n.Dom.isElement,this.j.editor)),t&&t!==this.j.editor&&(0,c.scrollIntoViewIfNeeded)(t,this.j.editor,this.j.ed);},t.prototype.calcCounts=function(e){return r.__awaiter(this,void 0,Promise,function(){return r.__generator(this,function(t){switch(t.label){case 0:return this.walkerCount&&this.walkerCount.break(),this.walkerCount=new n.LazyWalker(this.j.async,{timeout:this.j.o.search.lazyIdleTimeout}),[4,this.find(this.walkerCount,e).catch(function(){return[];})];case 1:return[2,t.sent().length];}});});},t.prototype.findAndReplace=function(e){return r.__awaiter(this,void 0,Promise,function(){var t,o,i,a,s,l;return r.__generator(this,function(r){switch(r.label){case 0:return this.walker&&this.walker.break(),this.walker=new n.LazyWalker(this.j.async,{timeout:this.j.o.search.lazyIdleTimeout}),t=this.j.s.range,[4,this.find(this.walker,e).catch(function(){return[];})];case 1:if(o=r.sent(),-1===(i=this.findCurrentIndexInRanges(o,t))&&(i=0),a=o[i]){try{(s=this.j.ed.createRange()).setStart(a.startContainer,a.startOffset),s.setEnd(a.endContainer,a.endOffset),s.deleteContents(),l=this.j.createInside.text(this.ui.replace),s.insertNode(l),this.j.s.select(l),this.tryScrollToElement(l),this.cache={},this.j.synchronizeValues();}catch(e){}return this.j.e.fire("afterFindAndReplace"),[2,!0];}return[2,!1];}});});},t.prototype.findAndSelect=function(e,t){var o;return r.__awaiter(this,void 0,Promise,function(){var i,a,l,c;return r.__generator(this,function(r){switch(r.label){case 0:return this.walker&&this.walker.break(),this.walker=new n.LazyWalker(this.j.async,{timeout:this.j.defaultTimeout}),[4,this.find(this.walker,e)];case 1:if(!(i=r.sent()).length)return[2,!1];if(this.previousQuery===e&&(0,s.getSelectionWrappers)(this.j.editor).length||(null===(o=this.drawPromise)||void 0===o||o.rejectCallback(),this.j.async.cancelAnimationFrame(this.wrapFrameRequest),(0,s.clearSelectionWrappers)(this.j.editor),this.drawPromise=this.drawSelectionRanges(i)),this.previousQuery=e,this.ui.currentIndex=(a=-1==(a=this.ui.currentIndex-1)?0:t?a===i.length-1?0:a+1:0===a?i.length-1:a-1)+1,!(l=i[a]))return[3,4];c=this.j.ed.createRange();try{c.setStart(l.startContainer,l.startOffset),c.setEnd(l.endContainer,l.endOffset),this.j.s.selectRange(c);}catch(e){}return this.tryScrollToElement(l.startContainer),[4,this.updateCounters()];case 2:return r.sent(),[4,this.drawPromise];case 3:return r.sent(),this.j.e.fire("afterFindAndSelect"),[2,!0];case 4:return[2,!1];}});});},t.prototype.findCurrentIndexInRanges=function(e,t){return e.findIndex(function(e){return e.startContainer===t.startContainer&&e.startOffset===t.startOffset&&e.endContainer===t.startContainer&&e.endOffset===t.endOffset;});},t.prototype.isValidCache=function(e){return r.__awaiter(this,void 0,Promise,function(){return r.__generator(this,function(t){switch(t.label){case 0:return[4,e];case 1:return[2,t.sent().every(function(e){var t,o,r,n;return e.startContainer.isConnected&&e.startOffset<=(null!==(o=null===(t=e.startContainer.nodeValue)||void 0===t?void 0:t.length)&&void 0!==o?o:0)&&e.endContainer.isConnected&&e.endOffset<=(null!==(n=null===(r=e.endContainer.nodeValue)||void 0===r?void 0:r.length)&&void 0!==n?n:0);})];}});});},t.prototype.find=function(e,t){return r.__awaiter(this,void 0,Promise,function(){var o,i,a,l=this;return r.__generator(this,function(r){switch(r.label){case 0:return t.length?(i=o=this.cache[t])?[4,this.isValidCache(o)]:[3,2]:[2,[]];case 1:i=r.sent(),r.label=2;case 2:return i?[2,o]:(a=new s.SentenceFinder(this.j.o.search.fuzzySearch),this.cache[t]=this.j.async.promise(function(o){e.on("break",function(){o([]);}).on("visit",function(e){return n.Dom.isText(e)&&a.add(e),!1;}).on("end",function(){var e;o(null!==(e=a.ranges(t))&&void 0!==e?e:[]);}).setWork(l.j.editor);}),[2,this.cache[t]]);}});});},t.prototype.drawSelectionRanges=function(e){var t=this,o=this.j,n=o.async,i=o.createInside,a=o.editor;n.cancelAnimationFrame(this.wrapFrameRequest);var l,c=r.__spreadArray([],r.__read(e),!1),u=0;return n.promise(function(e){var o=function(){do{(l=c.shift())&&(0,s.wrapRangesTextsInTmpSpan)(l,c,i,a),u+=1;}while(l&&5>=u);c.length?t.wrapFrameRequest=n.requestAnimationFrame(o):e();};o();});},t.prototype.onAfterGetValueFromEditor=function(e){e.value=(0,s.clearSelectionWrappersFromHTML)(e.value);},t.prototype.afterInit=function(e){var t=this;if(e.o.useSearch){var o=this;e.e.on("beforeSetMode.search",function(){t.ui.close();}).on(this.ui,"afterClose",function(){(0,s.clearSelectionWrappers)(e.editor),t.ui.currentIndex=0,t.ui.count=0,t.cache={};}).on("click",function(){t.ui.currentIndex=0,(0,s.clearSelectionWrappers)(e.editor);}).on("change.search",function(){t.cache={};}).on("keydown.search mousedown.search",e.async.debounce(function(){t.ui.selInfo&&(e.s.removeMarkers(),t.ui.selInfo=null),t.ui.isOpened&&t.updateCounters();},e.defaultTimeout)).on("searchNext.search searchPrevious.search",function(){return t.ui.isOpened||t.ui.open(),o.findAndSelect(o.ui.query,"searchNext"===e.e.current).catch(function(){});}).on("search.search",function(e,r){return void 0===r&&(r=!0),t.ui.currentIndex=0,o.findAndSelect(e||"",r).catch(function(){});}),e.registerCommand("search",{exec:function(e,t,r){return void 0===r&&(r=!0),t&&o.findAndSelect(t,r).catch(function(){}),!1;}}).registerCommand("openSearchDialog",{exec:function(){return o.ui.open(),!1;},hotkeys:["ctrl+f","cmd+f"]}).registerCommand("openReplaceDialog",{exec:function(){return e.o.readonly||o.ui.open(!0),!1;},hotkeys:["ctrl+h","cmd+h"]});}},t.prototype.beforeDestruct=function(e){this.ui.destruct(),e.e.off(".search");},r.__decorate([a.cache],t.prototype,"ui",null),r.__decorate([(0,a.watch)("ui:needUpdateCounters")],t.prototype,"updateCounters",null),r.__decorate([(0,a.watch)("ui:pressReplaceButton")],t.prototype,"onPressReplaceButton",null),r.__decorate([a.autobind],t.prototype,"findAndReplace",null),r.__decorate([a.autobind],t.prototype,"findAndSelect",null),r.__decorate([a.autobind],t.prototype,"find",null),r.__decorate([(0,a.watch)(":afterGetValueFromEditor")],t.prototype,"onAfterGetValueFromEditor",null),t;}(i.Plugin);t.search=u;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(561),t),r.__exportStar(o(562),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.SentenceFinder=void 0;var r=o(145),n=o(288),i=function(){function e(e){void 0===e&&(e=n.fuzzySearchIndex),this.searchIndex=e,this.queue=[],this.value="";}return e.prototype.add=function(e){var t,o=(null!==(t=e.nodeValue)&&void 0!==t?t:"").toLowerCase();if(o.length){var r=this.value.length;this.queue.push({startIndex:r,endIndex:r+o.length,node:e}),this.value+=o;}},e.prototype.ranges=function(e,t){var o;void 0===t&&(t=0);var n=[],i=t,a=0,s=0;do{if(a=(o=r.__read(this.searchIndex(e,this.value,i),2))[1],-1!==(i=o[0])){for(var l=void 0,c=0,u=void 0,d=0,p=s;this.queue.length>p;p+=1)if(!l&&this.queue[p].endIndex>i&&(l=this.queue[p].node,c=i-this.queue[p].startIndex),l&&this.queue[p].endIndex>=i+a){u=this.queue[p].node,d=i+a-this.queue[p].startIndex,s=p;break;}l&&u&&n.push({startContainer:l,startOffset:c,endContainer:u,endOffset:d}),i+=a;}}while(-1!==i);return 0===n.length?null:n;},e;}();t.SentenceFinder=i;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isSelectionWrapper=t.clearSelectionWrappersFromHTML=t.clearSelectionWrappers=t.getSelectionWrappers=t.wrapRangesTextsInTmpSpan=void 0;var r=o(145),n=o(229),i=o(264),a="jd-tmp-selection";function s(e){return(0,i.$$)("[".concat(a,"]"),e);}function l(e){return n.Dom.isElement(e)&&e.hasAttribute(a);}t.wrapRangesTextsInTmpSpan=function(e,t,o,i){var s,c,u;if(null!=e.startContainer.nodeValue&&null!=e.endContainer.nodeValue){var d=o.element("span",((s={})[a]=!0,s)),p=e.startContainer.nodeValue,f=0;if(0!==e.startOffset){var h=o.text(p.substring(0,e.startOffset));e.startContainer.nodeValue=p.substring(e.startOffset),n.Dom.before(e.startContainer,h),e.startContainer===e.endContainer&&(e.endOffset-=f=e.startOffset),e.startOffset=0;}var m=e.endContainer.nodeValue;if(e.endOffset!==m.length){h=o.text(m.substring(e.endOffset)),e.endContainer.nodeValue=m.substring(0,e.endOffset),n.Dom.after(e.endContainer,h);try{for(var v=r.__values(t),g=v.next();!g.done;g=v.next()){var y=g.value;if(y.startContainer!==e.endContainer)break;y.startContainer=h,y.startOffset=y.startOffset-e.endOffset-f,y.endContainer===e.endContainer&&(y.endContainer=h,y.endOffset=y.endOffset-e.endOffset-f);}}catch(e){c={error:e};}finally{try{g&&!g.done&&(u=v.return)&&u.call(v);}finally{if(c)throw c.error;}}e.endOffset=e.endContainer.nodeValue.length;}var b=e.startContainer;do{if(!b)break;if(n.Dom.isText(b)&&!l(b.parentNode)&&n.Dom.wrap(b,d.cloneNode(),o),b===e.endContainer)break;var _=b.firstChild||b.nextSibling;if(!_){for(;b&&!b.nextSibling&&b!==i;)b=b.parentNode;_=null==b?void 0:b.nextSibling;}b=_;}while(b&&b!==i);}},t.getSelectionWrappers=s,t.clearSelectionWrappers=function(e){s(e).forEach(function(e){return n.Dom.unwrap(e);});},t.clearSelectionWrappersFromHTML=function(e){return e.replace(RegExp("<span[^>]+".concat(a,"[^>]+>(.*?)</span>"),"g"),"$1");},t.isSelectionWrapper=l;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.UISearch=void 0;var r=o(145);o(564);var n=o(335),i=o(185),a=o(147),s=o(147),l=o(231),c=o(229),u=function(e){function t(t){var o=e.call(this,t)||this;o.selInfo=null,o._currentIndex=0,o.isOpened=!1;var r=(0,i.refs)(o.container),n=r.replace,a=r.cancel,l=r.next,c=r.prev,u=r.replaceBtn,d=r.current,p=r.count;return o.queryInput=r.query,o.replaceInput=n,o.closeButton=a,o.replaceButton=u,o.currentBox=d,o.countBox=p,t.e.on(o.closeButton,"pointerdown",function(){return o.close(),!1;}).on(o.queryInput,"input",function(){o.currentIndex=0;}).on(o.queryInput,"pointerdown",function(){t.s.isFocused()&&(t.s.removeMarkers(),o.selInfo=t.s.save());}).on(o.replaceButton,"pointerdown",function(){return t.e.fire(o,"pressReplaceButton"),!1;}).on(l,"pointerdown",function(){return t.e.fire("searchNext"),!1;}).on(c,"pointerdown",function(){return t.e.fire("searchPrevious"),!1;}).on(o.queryInput,"input",function(){o.setMod("empty-query",!(0,i.trim)(o.queryInput.value).length);}).on(o.queryInput,"keydown",o.j.async.debounce(function(e){e.key===s.KEY_ENTER?(e.preventDefault(),e.stopImmediatePropagation(),t.e.fire("searchNext")&&o.close()):t.e.fire(o,"needUpdateCounters");},o.j.defaultTimeout)),o;}return r.__extends(t,e),t.prototype.className=function(){return"UISearch";},t.prototype.render=function(){return'<div>\n\t\t\t<div class="&__box">\n\t\t\t\t<div class="&__inputs">\n\t\t\t\t\t<input data-ref="query" tabindex="0" placeholder="~Search for~" type="text"/>\n\t\t\t\t\t<input data-ref="replace" tabindex="0" placeholder="~Replace with~" type="text"/>\n\t\t\t\t</div>\n\t\t\t\t<div class="&__counts">\n\t\t\t\t\t<span data-ref="counter-box">\n\t\t\t\t\t\t<span data-ref="current">0</span><span>/</span><span data-ref="count">0</span>\n\t\t\t\t\t</span>\n\t\t\t\t</div>\n\t\t\t\t<div class="&__buttons">\n\t\t\t\t\t<button data-ref="next" tabindex="0" type="button">'.concat(n.Icon.get("angle-down"),'</button>\n\t\t\t\t\t<button data-ref="prev" tabindex="0" type="button">').concat(n.Icon.get("angle-up"),'</button>\n\t\t\t\t\t<button data-ref="cancel" tabindex="0" type="button">').concat(n.Icon.get("cancel"),'</button>\n\t\t\t\t\t<button data-ref="replace-btn" tabindex="0" type="button" class="jodit-ui-button">~Replace~</button>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>');},Object.defineProperty(t.prototype,"currentIndex",{get:function(){return this._currentIndex;},set:function(e){this._currentIndex=e,this.currentBox.innerText=e.toString();},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"count",{set:function(e){this.countBox.innerText=e.toString();},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"query",{get:function(){return this.queryInput.value;},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"replace",{get:function(){return this.replaceInput.value;},enumerable:!1,configurable:!0}),t.prototype.onEditorKeyDown=function(e){if(this.isOpened){var t=this.j;if(t.getRealMode()===a.MODE_WYSIWYG)switch(e.key){case s.KEY_ESC:this.close();break;case s.KEY_F3:this.queryInput.value&&(t.e.fire(e.shiftKey?"searchPrevious":"searchNext"),e.preventDefault());}}},t.prototype.open=function(e){void 0===e&&(e=!1),this.isOpened||(this.j.workplace.appendChild(this.container),this.isOpened=!0),this.calcSticky(this.j.e.fire("getStickyState.sticky")||!1),this.j.e.fire("hidePopup"),this.setMod("replace",e);var t=(this.j.s.sel||"").toString();t&&(this.queryInput.value=t),this.setMod("empty-query",!t.length),this.j.e.fire(this,"needUpdateCounters"),t?this.queryInput.select():this.queryInput.focus();},t.prototype.close=function(){this.isOpened&&(this.j.s.restore(),c.Dom.safeRemove(this.container),this.isOpened=!1,this.j.e.fire(this,"afterClose"));},t.prototype.calcSticky=function(e){if(this.isOpened)if(this.setMod("sticky",e),e){var t=(0,i.position)(this.j.toolbarContainer);(0,i.css)(this.container,{top:t.top+t.height,left:t.left+t.width});}else(0,i.css)(this.container,{top:null,left:null});},r.__decorate([(0,l.watch)([":keydown","queryInput:keydown"])],t.prototype,"onEditorKeyDown",null),r.__decorate([l.autobind],t.prototype,"open",null),r.__decorate([l.autobind],t.prototype,"close",null),r.__decorate([(0,l.watch)(":toggleSticky")],t.prototype,"calcSticky",null),r.__decorate([l.component],t);}(n.UIElement);t.UISearch=u;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(146);r.Config.prototype.useSearch=!0,r.Config.prototype.search={lazyIdleTimeout:0},r.Config.prototype.controls.find={tooltip:"Find",icon:"search",exec:function(e,t,o){var r=o.control;switch(r.args&&r.args[0]){case"findPrevious":e.e.fire("searchPrevious");break;case"findNext":e.e.fire("searchNext");break;case"replace":e.execCommand("openReplaceDialog");break;default:e.execCommand("openSearchDialog");}},list:{search:"Find",findNext:"Find Next",findPrevious:"Find Previous",replace:"Replace"},childTemplate:function(e,t,o){return o;}};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.select=void 0;var r=o(145),n=o(365),i=o(231),a=o(196),s=o(229),l=o(335);o(567);var c=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.proxyEventsList=["click","mousedown","touchstart","mouseup","touchend"],t;}return r.__extends(t,e),t.prototype.afterInit=function(e){var t=this;this.proxyEventsList.forEach(function(o){e.e.on(o+".select",t.onStartSelection);});},t.prototype.beforeDestruct=function(e){var t=this;this.proxyEventsList.forEach(function(o){e.e.on(o+".select",t.onStartSelection);});},t.prototype.onStartSelection=function(e){for(var t,o=this.j,r=e.target;void 0===t&&r&&r!==o.editor;)t=o.e.fire((0,a.camelCase)(e.type+"_"+r.nodeName.toLowerCase()),r,e),r=r.parentElement;"click"===e.type&&void 0===t&&r===o.editor&&o.e.fire(e.type+"Editor",r,e);},t.prototype.onOutsideClick=function(e){var t=this,o=e.target;s.Dom.up(o,function(e){return e===t.j.editor;})||l.UIElement.closestElement(o,l.Popup)||this.j.e.fire("outsideClick",e);},t.prototype.beforeCommandCut=function(e){var t=this.j.s;if("cut"===e&&!t.isCollapsed()){var o=t.current();o&&s.Dom.isOrContains(this.j.editor,o)&&this.onCopyNormalizeSelectionBound();}},t.prototype.onCopyNormalizeSelectionBound=function(e){var t=this.j,o=t.editor;t.o.select.normalizeSelectionBeforeCutAndCopy&&!t.s.isCollapsed()&&(!e||e.isTrusted&&s.Dom.isNode(e.target)&&s.Dom.isOrContains(o,e.target))&&this.jodit.s.expandSelection();},r.__decorate([i.autobind],t.prototype,"onStartSelection",null),r.__decorate([(0,i.watch)("ow:click")],t.prototype,"onOutsideClick",null),r.__decorate([(0,i.watch)([":beforeCommand"])],t.prototype,"beforeCommandCut",null),r.__decorate([(0,i.watch)([":copy",":cut"])],t.prototype,"onCopyNormalizeSelectionBound",null),t;}(n.Plugin);t.select=c;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),o(146).Config.prototype.select={normalizeSelectionBeforeCutAndCopy:!0};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);o(569),r.__exportStar(o(570),t),r.__exportStar(o(571),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(146);r.Config.prototype.width="auto",r.Config.prototype.minWidth=200,r.Config.prototype.maxWidth="100%",r.Config.prototype.allowResizeX=!1,r.Config.prototype.allowResizeY=!0,r.Config.prototype.height="auto",r.Config.prototype.minHeight=200,r.Config.prototype.maxHeight="auto",r.Config.prototype.saveHeightInStorage=!1;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.resizeHandler=void 0;var r=o(145),n=o(365),i=o(229),a=o(231),s=o(335),l=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.isResized=!1,t.start={x:0,y:0,w:0,h:0},t.handle=t.j.c.div("jodit-editor__resize",s.Icon.get("resize_handler")),t;}return r.__extends(t,e),t.prototype.afterInit=function(e){var t=this,o=e.o,r=o.height,n=o.width,i=e.o.allowResizeY;"auto"===r&&"auto"!==n&&(i=!1),"auto"===r&&"auto"===n||!o.allowResizeX&&!i||(e.statusbar.setMod("resize-handle",!0),e.e.on("toggleFullSize.resizeHandler",function(){t.handle.style.display=e.isFullSize?"none":"block";}).on(this.handle,"mousedown touchstart",this.onHandleResizeStart).on(e.ow,"mouseup touchend",this.onHandleResizeEnd),e.container.appendChild(this.handle));},t.prototype.onHandleResizeStart=function(e){this.isResized=!0,this.start.x=e.clientX,this.start.y=e.clientY,this.start.w=this.j.container.offsetWidth,this.start.h=this.j.container.offsetHeight,this.j.lock(),this.j.e.on(this.j.ow,"mousemove touchmove",this.onHandleResize),e.preventDefault();},t.prototype.onHandleResize=function(e){this.isResized&&(this.j.o.allowResizeY&&this.j.e.fire("setHeight",this.start.h+e.clientY-this.start.y),this.j.o.allowResizeX&&this.j.e.fire("setWidth",this.start.w+e.clientX-this.start.x),this.j.e.fire("resize"));},t.prototype.onHandleResizeEnd=function(){this.isResized&&(this.isResized=!1,this.j.e.off(this.j.ow,"mousemove touchmove",this.onHandleResize),this.j.unlock());},t.prototype.beforeDestruct=function(){i.Dom.safeRemove(this.handle),this.j.e.off(this.j.ow,"mouseup touchsend",this.onHandleResizeEnd);},t.requires=["size"],r.__decorate([a.autobind],t);}(n.Plugin);t.resizeHandler=l;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.size=void 0;var r=o(145);o(572);var n=o(185),i=o(365),a=o(231),s=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.resizeWorkspaces=t.j.async.debounce(t.resizeWorkspaceImd,t.j.defaultTimeout,!0),t;}return r.__extends(t,e),t.prototype.afterInit=function(e){e.e.on("setHeight.size",this.setHeight).on("setWidth.size",this.setWidth).on("afterInit.size changePlace.size",this.initialize,{top:!0}).on(e.ow,"load.size",this.resizeWorkspaces).on("afterInit.size resize.size afterUpdateToolbar.size scroll.size afterResize.size",this.resizeWorkspaces).on("toggleFullSize.size toggleToolbar.size",this.resizeWorkspaceImd),this.initialize();},t.prototype.initialize=function(){var e=this.j;if(!e.o.inline){var t=e.o.height;if(e.o.saveHeightInStorage&&"auto"!==t){var o=e.storage.get("height");o&&(t=o);}(0,n.css)(e.editor,{minHeight:"100%"}),(0,n.css)(e.container,{minHeight:e.o.minHeight,maxHeight:e.o.maxHeight,minWidth:e.o.minWidth,maxWidth:e.o.maxWidth}),this.setHeight(t),this.setWidth(e.o.width);}},t.prototype.setHeight=function(e){if((0,n.isNumber)(e)){var t=this.j.o,o=t.minHeight,r=t.maxHeight;(0,n.isNumber)(o)&&o>e&&(e=o),(0,n.isNumber)(r)&&e>r&&(e=r);}(0,n.css)(this.j.container,"height",e),this.j.o.saveHeightInStorage&&this.j.storage.set("height",e),this.resizeWorkspaceImd();},t.prototype.setWidth=function(e){if((0,n.isNumber)(e)){var t=this.j.o,o=t.minWidth,r=t.maxWidth;(0,n.isNumber)(o)&&o>e&&(e=o),(0,n.isNumber)(r)&&e>r&&(e=r);}(0,n.css)(this.j.container,"width",e),this.resizeWorkspaceImd();},t.prototype.getNotWorkHeight=function(){var e,t;return((null===(e=this.j.toolbarContainer)||void 0===e?void 0:e.offsetHeight)||0)+((null===(t=this.j.statusbar)||void 0===t?void 0:t.getHeight())||0)+2;},t.prototype.resizeWorkspaceImd=function(){if(this.j&&!this.j.isDestructed&&this.j.o&&!this.j.o.inline&&this.j.container&&this.j.container.parentNode){var e=((0,n.css)(this.j.container,"minHeight")||0)-this.getNotWorkHeight();if((0,n.isNumber)(e)&&e>0&&([this.j.workplace,this.j.iframe,this.j.editor].map(function(t){t&&(0,n.css)(t,"minHeight",e);}),this.j.e.fire("setMinHeight",e)),(0,n.isNumber)(this.j.o.maxHeight)){var t=this.j.o.maxHeight-this.getNotWorkHeight();[this.j.workplace,this.j.iframe,this.j.editor].map(function(e){e&&(0,n.css)(e,"maxHeight",t);}),this.j.e.fire("setMaxHeight",t);}this.j.container&&(0,n.css)(this.j.workplace,"height","auto"!==this.j.o.height||this.j.isFullSize?this.j.container.offsetHeight-this.getNotWorkHeight():"auto");}},t.prototype.beforeDestruct=function(e){e.e.off(e.ow,"load.size",this.resizeWorkspaces).off(".size");},r.__decorate([a.autobind],t.prototype,"resizeWorkspaceImd",null),r.__decorate([a.autobind],t);}(i.Plugin);t.size=s;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);o(574),r.__exportStar(o(575),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(146),n=o(147),i=o(147);r.Config.prototype.beautifyHTML=!i.IS_IE,r.Config.prototype.sourceEditor="ace",r.Config.prototype.sourceEditorNativeOptions={showGutter:!0,theme:"ace/theme/idle_fingers",mode:"ace/mode/html",wrap:!0,highlightActiveLine:!0},r.Config.prototype.sourceEditorCDNUrlsJS=["https://cdnjs.cloudflare.com/ajax/libs/ace/1.4.12/ace.js"],r.Config.prototype.beautifyHTMLCDNUrlsJS=["https://cdnjs.cloudflare.com/ajax/libs/js-beautify/1.13.0/beautify.min.js","https://cdnjs.cloudflare.com/ajax/libs/js-beautify/1.13.0/beautify-html.min.js"],r.Config.prototype.controls.source={mode:n.MODE_SPLIT,exec:function(e){e.toggleMode();},isActive:function(e){return e.getRealMode()===n.MODE_SOURCE;},tooltip:"Change mode"};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.source=void 0;var r=o(145);o(576);var n=o(147),i=o(147),a=o(365),s=o(229),l=o(185),c=o(577),u=o(231),d=o(522),p=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.buttons=[{name:"source",group:"source"}],t.__lock=!1,t.__oldMirrorValue="",t.tempMarkerStart="{start-jodit-selection}",t.tempMarkerStartReg=/{start-jodit-selection}/g,t.tempMarkerEnd="{end-jodit-selection}",t.tempMarkerEndReg=/{end-jodit-selection}/g,t.getSelectionStart=function(){var e,o;return null!==(o=null===(e=t.sourceEditor)||void 0===e?void 0:e.getSelectionStart())&&void 0!==o?o:0;},t.getSelectionEnd=function(){var e,o;return null!==(o=null===(e=t.sourceEditor)||void 0===e?void 0:e.getSelectionEnd())&&void 0!==o?o:0;},t;}return r.__extends(t,e),t.prototype.onInsertHTML=function(e){var t;if(!this.j.o.readonly&&!this.j.isEditorMode())return null===(t=this.sourceEditor)||void 0===t||t.insertRaw(e),this.toWYSIWYG(),!1;},t.prototype.fromWYSIWYG=function(e){if(void 0===e&&(e=!1),!this.__lock||!0===e){this.__lock=!0;var t=this.j.getEditorValue(!1,d.SOURCE_CONSUMER);t!==this.getMirrorValue()&&this.setMirrorValue(t),this.__lock=!1;}},t.prototype.toWYSIWYG=function(){if(!this.__lock){var e=this.getMirrorValue();e!==this.__oldMirrorValue&&(this.__lock=!0,this.j.value=e,this.__lock=!1,this.__oldMirrorValue=e);}},t.prototype.getNormalPosition=function(e,t){for(t=t.replace(/<(script|style|iframe)[^>]*>[^]*?<\/\1>/im,function(e){for(var t="",o=0;e.length>o;o+=1)t+=i.INVISIBLE_SPACE;return t;});e>0&&t[e]===i.INVISIBLE_SPACE;)e--;for(var o=e;o>0;){if("<"===t[--o]&&void 0!==t[o+1]&&t[o+1].match(/[\w/]+/i))return o;if(">"===t[o])return e;}return e;},t.prototype.clnInv=function(e){return e.replace(n.INVISIBLE_SPACE_REG_EXP(),"");},t.prototype.onSelectAll=function(e){var t;if("selectall"===e.toLowerCase()&&this.j.getRealMode()===i.MODE_SOURCE)return null===(t=this.sourceEditor)||void 0===t||t.selectAll(),!1;},t.prototype.getMirrorValue=function(){var e;return(null===(e=this.sourceEditor)||void 0===e?void 0:e.getValue())||"";},t.prototype.setMirrorValue=function(e){var t;null===(t=this.sourceEditor)||void 0===t||t.setValue(e);},t.prototype.setFocusToMirror=function(){var e;null===(e=this.sourceEditor)||void 0===e||e.focus();},t.prototype.saveSelection=function(){if(this.j.getRealMode()===n.MODE_WYSIWYG)this.j.s.save(),this.j.synchronizeValues(),this.fromWYSIWYG(!0);else{if(this.j.o.editHTMLDocumentMode)return;var e=this.getMirrorValue();if(this.getSelectionStart()===this.getSelectionEnd()){var t=this.j.s.marker(!0),o=this.getNormalPosition(this.getSelectionStart(),this.getMirrorValue());this.setMirrorValue(e.substr(0,o)+this.clnInv(t.outerHTML)+e.substr(o));}else{var r=this.j.s.marker(!0),i=this.j.s.marker(!1),a=(o=this.getNormalPosition(this.getSelectionStart(),e),this.getNormalPosition(this.getSelectionEnd(),e));this.setMirrorValue(e.substr(0,o)+this.clnInv(r.outerHTML)+e.substr(o,a-o)+this.clnInv(i.outerHTML)+e.substr(a));}this.toWYSIWYG();}},t.prototype.removeSelection=function(){if(this.j.getRealMode()===n.MODE_WYSIWYG)return this.__lock=!0,this.j.s.restore(),void(this.__lock=!1);var e=this.getMirrorValue(),t=0,o=0;try{if(e=e.replace(/<span[^>]+data-jodit-selection_marker=(["'])start\1[^>]*>[<>]*?<\/span>/gim,this.tempMarkerStart).replace(/<span[^>]+data-jodit-selection_marker=(["'])end\1[^>]*>[<>]*?<\/span>/gim,this.tempMarkerEnd),!this.j.o.editHTMLDocumentMode&&this.j.o.beautifyHTML){var r=this.j.e.fire("beautifyHTML",e);(0,l.isString)(r)&&(e=r);}if(o=t=e.indexOf(this.tempMarkerStart),e=e.replace(this.tempMarkerStartReg,""),-1!==t){var i=e.indexOf(this.tempMarkerEnd);-1!==i&&(o=i);}e=e.replace(this.tempMarkerEndReg,"");}finally{e=e.replace(this.tempMarkerEndReg,"").replace(this.tempMarkerStartReg,"");}this.setMirrorValue(e),this.setMirrorSelectionRange(t,o),this.toWYSIWYG(),this.setFocusToMirror();},t.prototype.setMirrorSelectionRange=function(e,t){var o;null===(o=this.sourceEditor)||void 0===o||o.setSelectionRange(e,t);},t.prototype.onReadonlyReact=function(){var e;null===(e=this.sourceEditor)||void 0===e||e.setReadOnly(this.j.o.readonly);},t.prototype.afterInit=function(e){var t=this;if(this.mirrorContainer=e.c.div("jodit-source"),e.workplace.appendChild(this.mirrorContainer),e.e.on("afterAddPlace changePlace afterInit",function(){e.workplace.appendChild(t.mirrorContainer);}),this.sourceEditor=(0,c.createSourceEditor)("area",e,this.mirrorContainer,this.toWYSIWYG,this.fromWYSIWYG),e.e.on(e.ow,"keydown",function(e){var o;e.key===i.KEY_ESC&&(null===(o=t.sourceEditor)||void 0===o?void 0:o.isFocused)&&t.sourceEditor.blur();}),this.onReadonlyReact(),e.e.on("placeholder.source",function(e){var o;null===(o=t.sourceEditor)||void 0===o||o.setPlaceHolder(e);}).on("change.source",this.syncValueFromWYSIWYG).on("beautifyHTML",function(e){return e;}),e.o.beautifyHTML){var o=function(){var t,o=e.ow.html_beautify;return!(!o||e.isInDestruct||(null===(t=e.events)||void 0===t||t.off("beautifyHTML").on("beautifyHTML",function(e){return o(e);}),0));};o()||(0,l.loadNext)(e,e.o.beautifyHTMLCDNUrlsJS).then(o);}this.syncValueFromWYSIWYG(!0),this.initSourceEditor(e);},t.prototype.syncValueFromWYSIWYG=function(e){void 0===e&&(e=!1);var t=this.j;t.getMode()!==i.MODE_SPLIT&&t.getMode()!==i.MODE_SOURCE||this.fromWYSIWYG(e);},t.prototype.initSourceEditor=function(e){var t,o=this;if("area"!==e.o.sourceEditor){var r=(0,c.createSourceEditor)(e.o.sourceEditor,e,this.mirrorContainer,this.toWYSIWYG,this.fromWYSIWYG);r.onReadyAlways(function(){var t,n;null===(t=o.sourceEditor)||void 0===t||t.destruct(),o.sourceEditor=r,o.syncValueFromWYSIWYG(!0),null===(n=e.events)||void 0===n||n.fire("sourceEditorReady",e);});}else null===(t=this.sourceEditor)||void 0===t||t.onReadyAlways(function(){var t;o.syncValueFromWYSIWYG(!0),null===(t=e.events)||void 0===t||t.fire("sourceEditorReady",e);});},t.prototype.beforeDestruct=function(){this.sourceEditor&&(this.sourceEditor.destruct(),delete this.sourceEditor),s.Dom.safeRemove(this.mirrorContainer);},r.__decorate([(0,u.watch)(":insertHTML.source")],t.prototype,"onInsertHTML",null),r.__decorate([u.autobind],t.prototype,"fromWYSIWYG",null),r.__decorate([u.autobind],t.prototype,"toWYSIWYG",null),r.__decorate([u.autobind],t.prototype,"getNormalPosition",null),r.__decorate([(0,u.watch)(":beforeCommand.source")],t.prototype,"onSelectAll",null),r.__decorate([(0,u.watch)(":beforeSetMode.source")],t.prototype,"saveSelection",null),r.__decorate([(0,u.watch)(":afterSetMode.source")],t.prototype,"removeSelection",null),r.__decorate([u.autobind],t.prototype,"setMirrorSelectionRange",null),r.__decorate([(0,u.watch)(":readonly.source")],t.prototype,"onReadonlyReact",null),r.__decorate([u.autobind],t.prototype,"syncValueFromWYSIWYG",null),t;}(a.Plugin);t.source=p;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.createSourceEditor=void 0;var r=o(578),n=o(185);t.createSourceEditor=function(e,t,o,i,a){var s;if((0,n.isFunction)(e))s=e(t);else switch(e){case"ace":if(!t.o.shadowRoot){s=new r.AceEditor(t,o,i,a);break;}default:s=new r.TextAreaEditor(t,o,i,a);}return s.init(t),s.onReadyAlways(function(){s.setReadOnly(t.o.readonly);}),s;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(579),t),r.__exportStar(o(581),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.TextAreaEditor=void 0;var r=o(145),n=o(185),i=o(148),a=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.autosize=t.j.async.debounce(function(){t.instance.style.height="auto",t.instance.style.height=t.instance.scrollHeight+"px";},t.j.defaultTimeout),t;}return r.__extends(t,e),t.prototype.init=function(e){var t=this;this.instance=e.c.element("textarea",{class:"jodit-source__mirror"}),this.container.appendChild(this.instance),e.e.on(this.instance,"mousedown keydown touchstart input",e.async.debounce(this.toWYSIWYG,e.defaultTimeout)).on("setMinHeight.source",function(e){(0,n.css)(t.instance,"minHeight",e);}).on(this.instance,"change keydown mousedown touchstart input",this.autosize).on("afterSetMode.source",this.autosize).on(this.instance,"mousedown focus",function(t){e.e.fire(t.type,t);}),this.autosize(),this.onReady();},t.prototype.destruct=function(){i.Dom.safeRemove(this.instance);},t.prototype.getValue=function(){return this.instance.value;},t.prototype.setValue=function(e){this.instance.value=e;},t.prototype.insertRaw=function(e){var t=this.getValue();if(0>this.getSelectionStart())this.setValue(t+e);else{var o=this.getSelectionStart(),r=this.getSelectionEnd();this.setValue(t.substring(0,o)+e+t.substring(r,t.length));}},t.prototype.getSelectionStart=function(){return this.instance.selectionStart;},t.prototype.getSelectionEnd=function(){return this.instance.selectionEnd;},t.prototype.setSelectionRange=function(e,t){void 0===t&&(t=e),this.instance.setSelectionRange(e,t);},Object.defineProperty(t.prototype,"isFocused",{get:function(){return this.instance===this.j.od.activeElement;},enumerable:!1,configurable:!0}),t.prototype.focus=function(){this.instance.focus();},t.prototype.blur=function(){this.instance.blur();},t.prototype.setPlaceHolder=function(e){this.instance.setAttribute("placeholder",e);},t.prototype.setReadOnly=function(e){e?this.instance.setAttribute("readonly","true"):this.instance.removeAttribute("readonly");},t.prototype.selectAll=function(){this.instance.select();},t.prototype.replaceUndoManager=function(){var e=this,t=this.jodit.history;this.j.e.on(this.instance,"keydown",function(o){if((o.ctrlKey||o.metaKey)&&"z"===o.key)return o.shiftKey?t.redo():t.undo(),e.setSelectionRange(e.getValue().length),!1;});},t;}(o(580).SourceEditor);t.TextAreaEditor=a;},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.SourceEditor=void 0;var o=function(){function e(e,t,o,r){this.jodit=e,this.container=t,this.toWYSIWYG=o,this.fromWYSIWYG=r,this.className="",this.isReady=!1;}return Object.defineProperty(e.prototype,"j",{get:function(){return this.jodit;},enumerable:!1,configurable:!0}),e.prototype.onReady=function(){this.replaceUndoManager(),this.isReady=!0,this.j.e.fire(this,"ready");},e.prototype.onReadyAlways=function(e){var t;this.isReady?e():null===(t=this.j.events)||void 0===t||t.on(this,"ready",e);},e;}();t.SourceEditor=o;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.AceEditor=void 0;var r=o(145),n=o(147),i=o(185),a=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.className="jodit_ace_editor",t.proxyOnBlur=function(e){t.j.e.fire("blur",e);},t.proxyOnFocus=function(e){t.j.e.fire("focus",e);},t.proxyOnMouseDown=function(e){t.j.e.fire("mousedown",e);},t;}return r.__extends(t,e),t.prototype.aceExists=function(){return void 0!==this.j.ow.ace;},t.prototype.getLastColumnIndex=function(e){return this.instance.session.getLine(e).length;},t.prototype.getLastColumnIndices=function(){for(var e=this.instance.session.getLength(),t=[],o=0,r=0;e>r;r++)o+=this.getLastColumnIndex(r),r>0&&(o+=1),t[r]=o;return t;},t.prototype.getRowColumnIndices=function(e){var t=this.getLastColumnIndices();if(t[0]>=e)return{row:0,column:e};for(var o=1,r=1;t.length>r;r++)e>t[r]&&(o=r+1);return{row:o,column:e-t[o-1]-1};},t.prototype.setSelectionRangeIndices=function(e,t){var o=this.getRowColumnIndices(e),r=this.getRowColumnIndices(t);this.instance.getSelection().setSelectionRange({start:o,end:r});},t.prototype.getIndexByRowColumn=function(e,t){return this.getLastColumnIndices()[e]-this.getLastColumnIndex(e)+t;},t.prototype.init=function(e){var t=this,o=function(){if(void 0===t.instance&&t.aceExists()){var o=t.j.c.div("jodit-source__mirror-fake");t.container.appendChild(o),t.instance=e.ow.ace.edit(o),t.instance.setTheme(e.o.sourceEditorNativeOptions.theme),t.instance.renderer.setShowGutter(e.o.sourceEditorNativeOptions.showGutter),t.instance.getSession().setMode(e.o.sourceEditorNativeOptions.mode),t.instance.setHighlightActiveLine(e.o.sourceEditorNativeOptions.highlightActiveLine),t.instance.getSession().setUseWrapMode(!0),t.instance.setOption("indentedSoftWrap",!1),t.instance.setOption("wrap",e.o.sourceEditorNativeOptions.wrap),t.instance.getSession().setUseWorker(!1),t.instance.$blockScrolling=1/0,t.instance.on("change",t.toWYSIWYG),t.instance.on("focus",t.proxyOnFocus),t.instance.on("mousedown",t.proxyOnMouseDown),t.instance.on("blur",t.proxyOnBlur),e.getRealMode()!==n.MODE_WYSIWYG&&t.setValue(t.getValue());var r=t.j.async.debounce(function(){e.isInDestruct||(t.instance.setOption("maxLines","auto"!==e.o.height?e.workplace.offsetHeight/t.instance.renderer.lineHeight:1/0),t.instance.resize());},2*t.j.defaultTimeout);e.e.on("afterResize afterSetMode",r),r(),t.onReady();}};e.e.on("afterSetMode",function(){e.getRealMode()!==n.MODE_SOURCE&&e.getMode()!==n.MODE_SPLIT||(t.fromWYSIWYG(),o());}),o(),this.aceExists()||(0,i.loadNext)(e,e.o.sourceEditorCDNUrlsJS).then(function(){e.isInDestruct||o();});},t.prototype.destruct=function(){var e,t;this.instance.off("change",this.toWYSIWYG),this.instance.off("focus",this.proxyOnFocus),this.instance.off("mousedown",this.proxyOnMouseDown),this.instance.destroy(),null===(t=null===(e=this.j)||void 0===e?void 0:e.events)||void 0===t||t.off("aceInited.source");},t.prototype.setValue=function(e){if(!this.j.o.editHTMLDocumentMode&&this.j.o.beautifyHTML){var t=this.j.e.fire("beautifyHTML",e);(0,i.isString)(t)&&(e=t);}this.instance.setValue(e),this.instance.clearSelection();},t.prototype.getValue=function(){return this.instance.getValue();},t.prototype.setReadOnly=function(e){this.instance.setReadOnly(e);},Object.defineProperty(t.prototype,"isFocused",{get:function(){return this.instance.isFocused();},enumerable:!1,configurable:!0}),t.prototype.focus=function(){this.instance.focus();},t.prototype.blur=function(){this.instance.blur();},t.prototype.getSelectionStart=function(){var e=this.instance.selection.getRange();return this.getIndexByRowColumn(e.start.row,e.start.column);},t.prototype.getSelectionEnd=function(){var e=this.instance.selection.getRange();return this.getIndexByRowColumn(e.end.row,e.end.column);},t.prototype.selectAll=function(){this.instance.selection.selectAll();},t.prototype.insertRaw=function(e){var t=this.instance.selection.getCursor(),o=this.instance.session.insert(t,e);this.instance.selection.setRange({start:t,end:o},!1);},t.prototype.setSelectionRange=function(e,t){this.setSelectionRangeIndices(e,t);},t.prototype.setPlaceHolder=function(e){},t.prototype.replaceUndoManager=function(){var e=this.jodit.history;this.instance.commands.addCommand({name:"Undo",bindKey:{win:"Ctrl-Z",mac:"Command-Z"},exec:function(){e.undo();}}),this.instance.commands.addCommand({name:"Redo",bindKey:{win:"Ctrl-Shift-Z",mac:"Command-Shift-Z"},exec:function(){e.redo();}});},t;}(o(580).SourceEditor);t.AceEditor=a;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.stat=void 0;var r=o(145),n=o(146),i=o(147),a=o(365),s=o(229);n.Config.prototype.showCharsCounter=!0,n.Config.prototype.countHTMLChars=!1,n.Config.prototype.showWordsCounter=!0;var l=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.charCounter=null,t.wordCounter=null,t.reInit=function(){t.j.o.showCharsCounter&&t.charCounter&&t.j.statusbar.append(t.charCounter,!0),t.j.o.showWordsCounter&&t.wordCounter&&t.j.statusbar.append(t.wordCounter,!0),t.j.e.off("change keyup",t.calc).on("change keyup",t.calc),t.calc();},t.calc=t.j.async.throttle(function(){var e=t.j.text;if(t.j.o.showCharsCounter&&t.charCounter){var o=t.j.o.countHTMLChars?t.j.value:e.replace((0,i.SPACE_REG_EXP)(),"");t.charCounter.textContent=t.j.i18n("Chars: %d",o.length);}t.j.o.showWordsCounter&&t.wordCounter&&(t.wordCounter.textContent=t.j.i18n("Words: %d",e.replace((0,i.INVISIBLE_SPACE_REG_EXP)(),"").split((0,i.SPACE_REG_EXP)()).filter(function(e){return e.length;}).length));},t.j.defaultTimeout),t;}return r.__extends(t,e),t.prototype.afterInit=function(){this.charCounter=this.j.c.span(),this.wordCounter=this.j.c.span(),this.j.e.on("afterInit changePlace afterAddPlace",this.reInit),this.reInit();},t.prototype.beforeDestruct=function(){s.Dom.safeRemove(this.charCounter),s.Dom.safeRemove(this.wordCounter),this.j.e.off("afterInit changePlace afterAddPlace",this.reInit),this.charCounter=null,this.wordCounter=null;},t;}(a.Plugin);t.stat=l;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.sticky=void 0;var r=o(145);o(584);var n=o(146),i=o(147),a=o(148),s=o(185),l=o(231);n.Config.prototype.toolbarSticky=!0,n.Config.prototype.toolbarDisableStickyForMobile=!0,n.Config.prototype.toolbarStickyOffset=0;var c=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.isToolbarSticked=!1,t.createDummy=function(e){i.IS_IE&&!t.dummyBox&&(t.dummyBox=t.j.c.div(),t.dummyBox.classList.add("jodit_sticky-dummy_toolbar"),t.j.container.insertBefore(t.dummyBox,e));},t.addSticky=function(e){t.isToolbarSticked||(t.createDummy(e),t.j.container.classList.add("jodit_sticky"),t.isToolbarSticked=!0),(0,s.css)(e,{top:t.j.o.toolbarStickyOffset||null,width:t.j.container.offsetWidth-2}),i.IS_IE&&t.dummyBox&&(0,s.css)(t.dummyBox,{height:e.offsetHeight});},t.removeSticky=function(e){t.isToolbarSticked&&((0,s.css)(e,{width:"",top:""}),t.j.container.classList.remove("jodit_sticky"),t.isToolbarSticked=!1);},t;}return r.__extends(t,e),t.prototype.afterInit=function(e){var t=this;e.e.on(e.ow,"scroll.sticky wheel.sticky mousewheel.sticky resize.sticky",this.onScroll).on("getStickyState.sticky",function(){return t.isToolbarSticked;});},t.prototype.onScroll=function(){var e=this.jodit,t=e.ow.pageYOffset||e.od.documentElement&&e.od.documentElement.scrollTop||0,o=(0,s.offset)(e.container,e,e.od,!0),r=e.getMode()===i.MODE_WYSIWYG&&t+e.o.toolbarStickyOffset>o.top&&o.top+o.height>t+e.o.toolbarStickyOffset&&!(e.o.toolbarDisableStickyForMobile&&this.isMobile());if(e.o.toolbarSticky&&!0===e.o.toolbar&&this.isToolbarSticked!==r){var n=e.toolbarContainer;n&&(r?this.addSticky(n):this.removeSticky(n)),e.e.fire("toggleSticky",r);}},t.prototype.isMobile=function(){return this.j&&this.j.options&&this.j.container&&this.j.o.sizeSM>=this.j.container.offsetWidth;},t.prototype.beforeDestruct=function(e){this.dummyBox&&a.Dom.safeRemove(this.dummyBox),e.e.off(e.ow,"scroll.sticky wheel.sticky mousewheel.sticky resize.sticky",this.onScroll).off(".sticky");},r.__decorate([(0,l.throttle)()],t.prototype,"onScroll",null),t;}(a.Plugin);t.sticky=c;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.spellcheck=void 0;var r=o(145),n=o(365),i=o(188),a=o(231);o(586);var s=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.buttons=[{group:"state",name:"spellcheck"}],t;}return r.__extends(t,e),t.prototype.afterInit=function(e){var t=this;e.e.on("afterInit afterAddPlace prepareWYSIWYGEditor",this.toggleSpellcheck),this.toggleSpellcheck(),e.registerCommand("toggleSpellcheck",function(){t.jodit.o.spellcheck=!t.jodit.o.spellcheck,t.toggleSpellcheck(),t.j.e.fire("updateToolbar");});},t.prototype.toggleSpellcheck=function(){(0,i.attr)(this.jodit.editor,"spellcheck",this.jodit.o.spellcheck);},t.prototype.beforeDestruct=function(e){},r.__decorate([a.autobind],t.prototype,"toggleSpellcheck",null),t;}(n.Plugin);t.spellcheck=s;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(146);r.Config.prototype.spellcheck=!1,r.Config.prototype.controls.spellcheck={isActive:function(e){return e.o.spellcheck;},icon:o(587),name:"spellcheck",command:"toggleSpellcheck",tooltip:"Spellchecking"};},function(e){e.exports='<svg viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"> <path d="M24.89 32h4.18L18.86 6h-3.71L4.93 32h4.18l2.25-6h11.29l2.24 6zM12.86 22L17 10.95 21.14 22h-8.28zm30.31 1.17L27 39.34 19.66 32l-2.83 2.83L27 45l19-19-2.83-2.83z"/> </svg>';},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.symbols=void 0;var r=o(145);o(589),o(590);var n=o(147),i=o(148),a=o(186),s=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.buttons=[{name:"symbol",group:"insert"}],t.countInRow=17,t;}return r.__extends(t,e),t.prototype.afterInit=function(e){var t=this;e.e.on("generateSpecialCharactersTable.symbols",function(){for(var o=e.c.fromHTML('<div class="jodit-symbols__container">\n\t\t\t\t\t\t<div class="jodit-symbols__container_table">\n\t\t\t\t\t\t\t<table class="jodit-symbols__table"><tbody></tbody></table>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t<div class="jodit-symbols__container_preview">\n\t\t\t\t\t\t\t<div class="jodit-symbols__preview"></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>'),r=o.querySelector(".jodit-symbols__preview"),s=o.querySelector("table").tBodies[0],l=[],c=0;e.o.specialCharacters.length>c;){for(var u=e.c.element("tr"),d=0;t.countInRow>d&&e.o.specialCharacters.length>c;d+=1,c+=1){var p=e.c.element("td"),f=e.c.fromHTML('<a\n\t\t\t\t\t\t\t\t\tdata-index="'.concat(c,'"\n\t\t\t\t\t\t\t\t\tdata-index-j="').concat(d,'"\n\t\t\t\t\t\t\t\t\trole="option"\n\t\t\t\t\t\t\t\t\ttabindex="-1"\n\t\t\t\t\t\t\t>').concat(e.o.specialCharacters[c],"</a>"));l.push(f),p.appendChild(f),u.appendChild(p);}s.appendChild(u);}var h=t;return e.e.on(l,"focus",function(){r.innerHTML=this.innerHTML;}).on(l,"mousedown",function(t){i.Dom.isTag(this,"a")&&(e.s.focus(),e.s.insertHTML(this.innerHTML),e.e.fire(this,"close_dialog"),t&&t.preventDefault(),t&&t.stopImmediatePropagation());}).on(l,"mouseenter",function(){i.Dom.isTag(this,"a")&&this.focus();}).on(l,"keydown",function(t){var o=t.target;if(i.Dom.isTag(o,"a")){var r=parseInt((0,a.attr)(o,"-index")||"0",10),s=parseInt((0,a.attr)(o,"data-index-j")||"0",10),c=void 0;switch(t.key){case n.KEY_UP:case n.KEY_DOWN:void 0===l[c=t.key===n.KEY_UP?r-h.countInRow:r+h.countInRow]&&(c=t.key===n.KEY_UP?Math.floor(l.length/h.countInRow)*h.countInRow+s:s)>l.length-1&&(c-=h.countInRow),l[c]&&l[c].focus();break;case n.KEY_RIGHT:case n.KEY_LEFT:void 0===l[c=t.key===n.KEY_LEFT?r-1:r+1]&&(c=t.key===n.KEY_LEFT?l.length-1:0),l[c]&&l[c].focus();break;case n.KEY_ENTER:e.e.fire(o,"mousedown"),t.stopImmediatePropagation(),t.preventDefault();}}}),o;});},t.prototype.beforeDestruct=function(e){e.e.off("generateSpecialCharactersTable.symbols");},t;}(i.Plugin);t.symbols=s;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(146),n=o(322);r.Config.prototype.usePopupForSpecialCharacters=!1,r.Config.prototype.specialCharacters=["!","&quot;","#","$","%","&amp;","'","(",")","*","+","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","&lt;","=","&gt;","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","&euro;","&lsquo;","&rsquo;","&ldquo;","&rdquo;","&ndash;","&mdash;","&iexcl;","&cent;","&pound;","&curren;","&yen;","&brvbar;","&sect;","&uml;","&copy;","&ordf;","&laquo;","&raquo;","&not;","&reg;","&macr;","&deg;","&sup2;","&sup3;","&acute;","&micro;","&para;","&middot;","&cedil;","&sup1;","&ordm;","&frac14;","&frac12;","&frac34;","&iquest;","&Agrave;","&Aacute;","&Acirc;","&Atilde;","&Auml;","&Aring;","&AElig;","&Ccedil;","&Egrave;","&Eacute;","&Ecirc;","&Euml;","&Igrave;","&Iacute;","&Icirc;","&Iuml;","&ETH;","&Ntilde;","&Ograve;","&Oacute;","&Ocirc;","&Otilde;","&Ouml;","&times;","&Oslash;","&Ugrave;","&Uacute;","&Ucirc;","&Uuml;","&Yacute;","&THORN;","&szlig;","&agrave;","&aacute;","&acirc;","&atilde;","&auml;","&aring;","&aelig;","&ccedil;","&egrave;","&eacute;","&ecirc;","&euml;","&igrave;","&iacute;","&icirc;","&iuml;","&eth;","&ntilde;","&ograve;","&oacute;","&ocirc;","&otilde;","&ouml;","&divide;","&oslash;","&ugrave;","&uacute;","&ucirc;","&uuml;","&yacute;","&thorn;","&yuml;","&OElig;","&oelig;","&#372;","&#374","&#373","&#375;","&sbquo;","&#8219;","&bdquo;","&hellip;","&trade;","&#9658;","&bull;","&rarr;","&rArr;","&hArr;","&diams;","&asymp;"],r.Config.prototype.controls.symbol={icon:"omega",hotkeys:["ctrl+shift+i","cmd+shift+i"],tooltip:"Insert Special Character",popup:function(e,t,o,r){var i=e.e.fire("generateSpecialCharactersTable.symbols");if(i){if(e.o.usePopupForSpecialCharacters){var a=e.c.div();return a.classList.add("jodit-symbols"),a.appendChild(i),e.e.on(i,"close_dialog",r),a;}(0,n.Alert)(i,e.i18n("Select Special Character"),void 0,"jodit-symbols").bindDestruct(e);var s=i.querySelector("a");s&&s.focus();}}};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);o(592),r.__exportStar(o(593),t),r.__exportStar(o(595),t),r.__exportStar(o(596),t),r.__exportStar(o(597),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(146),n=o(229),i=o(186),a=o(185);r.Config.prototype.table={allowCellSelection:!0,selectionCellStyle:"border: 1px double #1e88e5 !important;",allowCellResize:!0,useExtraClassesOptions:!1},r.Config.prototype.controls.table={data:{cols:10,rows:10,classList:{"table table-bordered":"Bootstrap Bordered","table table-striped":"Bootstrap Striped","table table-dark":"Bootstrap Dark"}},popup:function(e,t,o,r,s){for(var l=o.data&&o.data.rows?o.data.rows:10,c=o.data&&o.data.cols?o.data.cols:10,u=e.c.fromHTML('<form class="jodit-form jodit-form__inserter"><div class="jodit-form__table-creator-box"><div class="jodit-form__container"></div><div class="jodit-form__options">'+function(){if(!e.o.table.useExtraClassesOptions)return"";var t=[];if(o.data){var r=o.data.classList;Object.keys(r).forEach(function(e){t.push('<label class="jodit_vertical_middle"><input class="jodit-checkbox" value="'.concat(e,'" type="checkbox"/>').concat(r[e],"</label>"));});}return t.join("");}()+'</div></div><label class="jodit-form__center"><span>1</span> &times; <span>1</span></label></form>'),d=u.querySelectorAll("span")[0],p=u.querySelectorAll("span")[1],f=u.querySelector(".jodit-form__container"),h=u.querySelector(".jodit-form__options"),m=[],v=l*c,g=0;v>g;g+=1)m[g]||m.push(e.c.element("span",{dataIndex:g}));if(e.e.on(f,"mousemove",function(e,t){var o=e.target;if(n.Dom.isTag(o,"span")){for(var r=void 0===t||isNaN(t)?parseInt((0,i.attr)(o,"-index")||"0",10):t||0,a=Math.ceil((r+1)/c),s=r%c+1,l=0;m.length>l;l+=1)m[l].className=l%c+1>s||a<Math.ceil((l+1)/c)?"":"jodit_hovered";p.textContent=s.toString(),d.textContent=a.toString();}}).on(f,"touchstart mousedown",function(t){var o=t.target;if(t.preventDefault(),t.stopImmediatePropagation(),n.Dom.isTag(o,"span")){var s=parseInt((0,i.attr)(o,"-index")||"0",10),l=Math.ceil((s+1)/c),u=s%c+1,d=e.createInside,p=d.element("tbody"),f=d.element("table");f.appendChild(p);for(var m,v,g=null,y=1;l>=y;y+=1){m=d.element("tr");for(var b=1;u>=b;b+=1)v=d.element("td"),g||(g=v),(0,a.css)(v,"width",(100/u).toFixed(4)+"%"),v.appendChild(d.element("br")),m.appendChild(d.text("\n")),m.appendChild(d.text("\t")),m.appendChild(v);p.appendChild(d.text("\n")),p.appendChild(m);}var _=e.s.current();if(_&&e.s.isCollapsed()){var w=n.Dom.closest(_,n.Dom.isBlock,e.editor);w&&w!==e.editor&&!w.nodeName.match(/^TD|TH|TBODY|TABLE|THEADER|TFOOTER$/)&&e.s.setCursorAfter(w);}(0,a.$$)("input[type=checkbox]:checked",h).forEach(function(e){e.value.split(/[\s]+/).forEach(function(e){f.classList.add(e);});}),e.s.insertNode(d.text("\n")),e.s.insertNode(f,!1),g&&(e.s.setCursorIn(g),(0,a.scrollIntoViewIfNeeded)(g,e.editor,e.ed)),r();}}),s&&s.parentElement){for(g=0;l>g;g+=1){for(var y=e.c.div(),b=0;c>b;b+=1)y.appendChild(m[g*c+b]);f.appendChild(y);}m[0]&&(m[0].className="hovered");}return u;},tooltip:"Insert table"};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.resizeCells=void 0;var r=o(145);o(594);var n=o(147),i=o(148),a=o(185),s=o(231),l="table_processor_observer-resize",c=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.selectMode=!1,t.resizeDelta=0,t.createResizeHandle=function(){t.resizeHandler||(t.resizeHandler=t.j.c.div("jodit-table-resizer"),t.j.e.on(t.resizeHandler,"mousedown.table touchstart.table",t.onHandleMouseDown).on(t.resizeHandler,"mouseenter.table",function(){t.j.async.clearTimeout(t.hideTimeout);}));},t.hideTimeout=0,t.drag=!1,t.minX=0,t.maxX=0,t.startX=0,t;}return r.__extends(t,e),Object.defineProperty(t.prototype,"module",{get:function(){return this.j.getInstance("Table",this.j.o);},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"isRTL",{get:function(){return"rtl"===this.j.o.direction;},enumerable:!1,configurable:!0}),t.prototype.showResizeHandle=function(){this.j.async.clearTimeout(this.hideTimeout),this.j.workplace.appendChild(this.resizeHandler);},t.prototype.hideResizeHandle=function(){var e=this;this.hideTimeout=this.j.async.setTimeout(function(){i.Dom.safeRemove(e.resizeHandler);},{timeout:this.j.defaultTimeout,label:"hideResizer"});},t.prototype.onHandleMouseDown=function(e){var t=this;if(!this.j.isLocked){this.drag=!0,this.j.e.on(this.j.ow,"mouseup.resize-cells touchend.resize-cells",this.onMouseUp).on(this.j.ew,"mousemove.table touchmove.table",this.onMouseMove),this.startX=e.clientX,this.j.lock(l),this.resizeHandler.classList.add("jodit-table-resizer_moved");var o,r=this.workTable.getBoundingClientRect();if(this.minX=0,this.maxX=1e6,null!=this.wholeTable)r=this.workTable.parentNode.getBoundingClientRect(),this.minX=r.left,this.maxX=this.minX+r.width;else{var a=i.Table.formalCoordinate(this.workTable,this.workCell,!0);i.Table.formalMatrix(this.workTable,function(e,r,i){a[1]===i&&(o=e.getBoundingClientRect(),t.minX=Math.max(o.left+n.NEARBY/2,t.minX)),a[1]+(t.isRTL?-1:1)===i&&(o=e.getBoundingClientRect(),t.maxX=Math.min(o.left+o.width-n.NEARBY/2,t.maxX));});}return!1;}},t.prototype.onMouseMove=function(e){if(this.drag){this.j.e.fire("closeAllPopups");var t=e.clientX,o=(0,a.offset)(this.resizeHandler.parentNode||this.j.od.documentElement,this.j,this.j.od,!0);this.minX>t&&(t=this.minX),t>this.maxX&&(t=this.maxX),this.resizeDelta=t-this.startX+(this.j.o.iframe?o.left:0),this.resizeHandler.style.left=t-(this.j.o.iframe?0:o.left)+"px";var r=this.j.s.sel;r&&r.removeAllRanges();}},t.prototype.onMouseUp=function(e){(this.selectMode||this.drag)&&(this.selectMode=!1,this.j.unlock()),this.resizeHandler&&this.drag&&(this.drag=!1,this.j.e.off(this.j.ew,"mousemove.table touchmove.table",this.onMouseMove),this.resizeHandler.classList.remove("jodit-table-resizer_moved"),this.startX!==e.clientX&&(null==this.wholeTable?this.resizeColumns():this.resizeTable()),this.j.synchronizeValues(),this.j.s.focus());},t.prototype.resizeColumns=function(){var e=this.resizeDelta,t=[];i.Table.setColumnWidthByDelta(this.workTable,i.Table.formalCoordinate(this.workTable,this.workCell,!0)[1],e,!0,t);var o=(0,a.call)(this.isRTL?i.Dom.prev:i.Dom.next,this.workCell,i.Dom.isCell,this.workCell.parentNode);i.Table.setColumnWidthByDelta(this.workTable,i.Table.formalCoordinate(this.workTable,o)[1],-e,!1,t);},t.prototype.resizeTable=function(){var e=this.resizeDelta*(this.isRTL?-1:1),t=this.workTable.offsetWidth,o=(0,a.getContentWidth)(this.workTable.parentNode,this.j.ew),r=!this.wholeTable;if(this.isRTL?!r:r)this.workTable.style.width=(t+e)/o*100+"%";else{var n=this.isRTL?"marginRight":"marginLeft",i=parseInt(this.j.ew.getComputedStyle(this.workTable)[n]||"0",10);this.workTable.style.width=(t-e)/o*100+"%",this.workTable.style[n]=(i+e)/o*100+"%";}},t.prototype.setWorkCell=function(e,t){void 0===t&&(t=null),this.wholeTable=t,this.workCell=e,this.workTable=i.Dom.up(e,function(e){return i.Dom.isTag(e,"table");},this.j.editor);},t.prototype.calcHandlePosition=function(e,t,o,r){void 0===o&&(o=0),void 0===r&&(r=0);var s=(0,a.offset)(t,this.j,this.j.ed);if(o>n.NEARBY&&s.width-n.NEARBY>o)this.hideResizeHandle();else{var l=(0,a.offset)(this.j.workplace,this.j,this.j.od,!0),c=(0,a.offset)(e,this.j,this.j.ed);if(this.resizeHandler.style.left=(o>n.NEARBY?s.left+s.width:s.left)-l.left+r+"px",Object.assign(this.resizeHandler.style,{height:c.height+"px",top:c.top-l.top+"px"}),this.showResizeHandle(),o>n.NEARBY){var u=(0,a.call)(this.isRTL?i.Dom.prev:i.Dom.next,t,i.Dom.isCell,t.parentNode);this.setWorkCell(t,!!u&&null);}else{var d=(0,a.call)(this.isRTL?i.Dom.next:i.Dom.prev,t,i.Dom.isCell,t.parentNode);this.setWorkCell(d||t,!d||null);}}},t.prototype.afterInit=function(e){var t=this;e.o.table.allowCellResize&&e.e.off(this.j.ow,".resize-cells").off(".resize-cells").on("change.resize-cells afterCommand.resize-cells afterSetMode.resize-cells",function(){(0,a.$$)("table",e.editor).forEach(t.observe);}).on(this.j.ow,"scroll.resize-cells",function(){if(t.drag){var o=i.Dom.up(t.workCell,function(e){return i.Dom.isTag(e,"table");},e.editor);if(o){var r=o.getBoundingClientRect();t.resizeHandler.style.top=r.top+"px";}}}).on("beforeSetMode.resize-cells",function(){t.module.getAllSelectedCells().forEach(function(o){t.module.removeSelection(o),i.Table.normalizeTable(i.Dom.closest(o,"table",e.editor));});});},t.prototype.observe=function(e){var t=this;(0,a.dataBind)(e,l)||((0,a.dataBind)(e,l,!0),this.j.e.on(e,"mouseleave.resize-cells",function(e){t.resizeHandler&&t.resizeHandler!==e.relatedTarget&&t.hideResizeHandle();}).on(e,"mousemove.resize-cells touchmove.resize-cells",this.j.async.throttle(function(o){if(!t.j.isLocked){var r=i.Dom.up(o.target,i.Dom.isCell,e);r&&t.calcHandlePosition(e,r,o.offsetX);}},{timeout:this.j.defaultTimeout})),this.createResizeHandle());},t.prototype.beforeDestruct=function(e){e.events&&(e.e.off(this.j.ow,".resize-cells"),e.e.off(".resize-cells"));},r.__decorate([s.autobind],t.prototype,"onHandleMouseDown",null),r.__decorate([s.autobind],t.prototype,"onMouseMove",null),r.__decorate([s.autobind],t.prototype,"onMouseUp",null),r.__decorate([s.autobind],t.prototype,"observe",null),t;}(i.Plugin);t.resizeCells=c;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.selectCells=void 0;var r=o(145),n=o(365),i=o(148),a=o(185),s=o(535),l=o(147),c=o(231),u="table_processor_observer",d="onMoveTableSelectCell",p=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.requires=["select"],t.selectedCell=null,t.isSelectionMode=!1,t;}return r.__extends(t,e),Object.defineProperty(t.prototype,"module",{get:function(){return this.j.getInstance("Table",this.j.o);},enumerable:!1,configurable:!0}),t.prototype.afterInit=function(e){var t=this;e.o.table.allowCellSelection&&e.e.on("keydown.select-cells",function(e){e.key===l.KEY_TAB&&t.unselectCells();}).on("beforeCommand.select-cells",this.onExecCommand).on("afterCommand.select-cells",this.onAfterCommand).on(["clickEditor","mousedownTd","mousedownTh","touchstartTd","touchstartTh"].map(function(e){return e+".select-cells";}).join(" "),this.onStartSelection).on("clickTr clickTbody",function(){var e,o=t.module.getAllSelectedCells().length;if(o)return o>1&&(null===(e=t.j.s.sel)||void 0===e||e.removeAllRanges()),!1;});},t.prototype.onStartSelection=function(e){if(!this.j.o.readonly&&(this.unselectCells(),e!==this.j.editor)){var t=i.Dom.closest(e,"table",this.j.editor);if(e&&t)return e.firstChild||e.appendChild(this.j.createInside.element("br")),this.isSelectionMode=!0,this.selectedCell=e,this.module.addSelection(e),this.j.e.on(t,"mousemove.select-cells touchmove.select-cells",this.j.async.throttle(this.onMove.bind(this,t),{label:d,timeout:this.j.defaultTimeout/2})).on(t,"mouseup.select-cells touchend.select-cells",this.onStopSelection.bind(this,t)),!1;}},t.prototype.onOutsideClick=function(){this.selectedCell=null,this.onRemoveSelection();},t.prototype.onChange=function(){this.j.isLocked||this.isSelectionMode||this.onRemoveSelection();},t.prototype.onMove=function(e,t){var o,r=this;if((!this.j.o.readonly||this.j.isLocked)&&!this.j.isLockedNotBy(u)){var n=this.j.ed.elementFromPoint(t.clientX,t.clientY);if(n){var a=i.Dom.closest(n,["td","th"],e);if(a&&this.selectedCell){a!==this.selectedCell&&this.j.lock(u),this.unselectCells();for(var s=i.Table.getSelectedBound(e,[a,this.selectedCell]),l=i.Table.formalMatrix(e),c=s[0][0];s[1][0]>=c;c+=1)for(var d=s[0][1];s[1][1]>=d;d+=1)this.module.addSelection(l[c][d]);var p;this.module.getAllSelectedCells().length>1&&(null===(o=this.j.s.sel)||void 0===o||o.removeAllRanges()),this.j.e.fire("hidePopup"),t.stopPropagation(),p=r.j.createInside.fromHTML('<div style="color:rgba(0,0,0,0.01);width:0;height:0">&nbsp;</div>'),a.appendChild(p),r.j.async.setTimeout(function(){var e;null===(e=p.parentNode)||void 0===e||e.removeChild(p);},r.j.defaultTimeout/5);}}}},t.prototype.onRemoveSelection=function(e){var t;if(!(null===(t=null==e?void 0:e.buffer)||void 0===t?void 0:t.actionTrigger)&&!this.selectedCell&&this.module.getAllSelectedCells().length)return this.j.unlock(),this.unselectCells(),void this.j.e.fire("hidePopup","cells");this.isSelectionMode=!1,this.selectedCell=null;},t.prototype.onStopSelection=function(e,t){var o=this;if(this.selectedCell){this.isSelectionMode=!1,this.j.unlock();var r=this.j.ed.elementFromPoint(t.clientX,t.clientY);if(r){var n=i.Dom.closest(r,["td","th"],e);if(n){var s=i.Dom.closest(n,"table",e);if(!s||s===e){var l=i.Table.getSelectedBound(e,[n,this.selectedCell]),c=i.Table.formalMatrix(e),u=c[l[1][0]][l[1][1]],p=c[l[0][0]][l[0][1]];this.j.e.fire("showPopup",e,function(){var e=(0,a.position)(p,o.j),t=(0,a.position)(u,o.j);return{left:e.left,top:e.top,width:t.left-e.left+t.width,height:t.top-e.top+t.height};},"cells"),(0,a.$$)("table",this.j.editor).forEach(function(e){o.j.e.off(e,"mousemove.select-cells touchmove.select-cells mouseup.select-cells touchend.select-cells");}),this.j.async.clearTimeout(d);}}}}},t.prototype.unselectCells=function(e){var t=this.module,o=t.getAllSelectedCells();o.length&&o.forEach(function(o){e&&e===o||t.removeSelection(o);});},t.prototype.onExecCommand=function(e){if(/table(splitv|splitg|merge|empty|bin|binrow|bincolumn|addcolumn|addrow)/.test(e)){e=e.replace("table","");var t=this.module.getAllSelectedCells();if(t.length){var o=r.__read(t,1)[0];if(!o)return;var n=i.Dom.closest(o,"table",this.j.editor);if(!n)return;switch(e){case"splitv":i.Table.splitVertical(n,this.j);break;case"splitg":i.Table.splitHorizontal(n,this.j);break;case"merge":i.Table.mergeSelected(n,this.j);break;case"empty":t.forEach(function(e){return i.Dom.detach(e);});break;case"bin":i.Dom.safeRemove(n);break;case"binrow":new Set(t.map(function(e){return e.parentNode;})).forEach(function(e){i.Table.removeRow(n,e.rowIndex);});break;case"bincolumn":var a=new Set();t.reduce(function(e,t){return a.has(t.cellIndex)||(e.push(t),a.add(t.cellIndex)),e;},[]).forEach(function(e){i.Table.removeColumn(n,e.cellIndex);});break;case"addcolumnafter":case"addcolumnbefore":i.Table.appendColumn(n,o.cellIndex,"addcolumnafter"===e,this.j.createInside);break;case"addrowafter":case"addrowbefore":i.Table.appendRow(n,o.parentNode,"addrowafter"===e,this.j.createInside);}}return!1;}},t.prototype.onAfterCommand=function(e){/^justify/.test(e)&&this.module.getAllSelectedCells().forEach(function(t){return(0,s.alignElement)(e,t);});},t.prototype.beforeDestruct=function(e){this.onRemoveSelection(),e.e.off(".select-cells");},r.__decorate([c.autobind],t.prototype,"onStartSelection",null),r.__decorate([(0,c.watch)(":outsideClick")],t.prototype,"onOutsideClick",null),r.__decorate([(0,c.watch)(":change")],t.prototype,"onChange",null),r.__decorate([c.autobind],t.prototype,"onRemoveSelection",null),r.__decorate([c.autobind],t.prototype,"onStopSelection",null),r.__decorate([c.autobind],t.prototype,"onExecCommand",null),r.__decorate([c.autobind],t.prototype,"onAfterCommand",null),t;}(n.Plugin);t.selectCells=p;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.tableKeyboardNavigation=void 0;var r=o(147),n=o(229),i=o(148);t.tableKeyboardNavigation=function(e){e.e.off(".tableKeyboardNavigation").on("keydown.tableKeyboardNavigation",function(t){var o,a;if((t.key===r.KEY_TAB||t.key===r.KEY_LEFT||t.key===r.KEY_RIGHT||t.key===r.KEY_UP||t.key===r.KEY_DOWN)&&(o=e.s.current(),a=n.Dom.up(o,function(e){return e&&e.nodeName&&/^td|th$/i.test(e.nodeName);},e.editor))){var s=e.s.range;if(t.key===r.KEY_TAB||o===a||(t.key!==r.KEY_LEFT&&t.key!==r.KEY_UP||!(n.Dom.prev(o,function(e){return t.key===r.KEY_UP?n.Dom.isTag(e,"br"):Boolean(e);},a)||t.key!==r.KEY_UP&&n.Dom.isText(o)&&0!==s.startOffset))&&(t.key!==r.KEY_RIGHT&&t.key!==r.KEY_DOWN||!(n.Dom.next(o,function(e){return t.key===r.KEY_DOWN?n.Dom.isTag(e,"br"):Boolean(e);},a)||t.key!==r.KEY_DOWN&&n.Dom.isText(o)&&o.nodeValue&&s.startOffset!==o.nodeValue.length))){var l=n.Dom.up(a,function(e){return e&&/^table$/i.test(e.nodeName);},e.editor),c=null;switch(t.key){case r.KEY_TAB:case r.KEY_LEFT:var u=t.key===r.KEY_LEFT||t.shiftKey?"prev":"next";(c=n.Dom[u](a,function(e){return e&&/^td|th$/i.test(e.tagName);},l))||(i.Table.appendRow(l,"next"!==u&&l.querySelector("tr"),"next"===u,e.createInside),c=n.Dom[u](a,n.Dom.isCell,l));break;case r.KEY_UP:case r.KEY_DOWN:var d=0,p=0,f=i.Table.formalMatrix(l,function(e,t,o){e===a&&(d=t,p=o);});t.key===r.KEY_UP?void 0!==f[d-1]&&(c=f[d-1][p]):void 0!==f[d+1]&&(c=f[d+1][p]);}if(c){if(c.firstChild)t.key===r.KEY_TAB?e.s.select(c,!0):e.s.setCursorIn(c,t.key===r.KEY_RIGHT||t.key===r.KEY_DOWN);else{var h=e.createInside.element("br");c.appendChild(h),e.s.setCursorBefore(h);}return!1;}}}});};},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.table=void 0,t.table=function(e){e.registerButton({name:"table",group:"insert"});};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.tooltip=void 0;var r=o(145);o(599);var n=o(185),i=o(365),a=o(229),s=o(237),l=o(231),c=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.isOpened=!1,t.delayShowTimeout=0,t;}return r.__extends(t,e),t.prototype.afterInit=function(e){var o=this;this.container=e.c.div("jodit-tooltip"),(0,s.getContainer)(this.j,t).appendChild(this.container);var r=0;e.e.off(".tooltip").on("showTooltip.tooltip",function(t,n){e.async.clearTimeout(r),o.open(t,n);}).on("delayShowTooltip.tooltip",this.delayOpen).on("escape.tooltip",this.close).on("hideTooltip.tooltip change.tooltip scroll.tooltip changePlace.tooltip hidePopup.tooltip closeAllPopups.tooltip",function(){o.j.async.clearTimeout(o.delayShowTimeout),r=e.async.setTimeout(o.close,o.j.defaultTimeout);});},t.prototype.delayOpen=function(e,t){var o=this,r=this.j.o.showTooltipDelay||this.j.defaultTimeout;this.j.async.clearTimeout(this.delayShowTimeout),this.delayShowTimeout=this.j.async.setTimeout(function(){return o.open(e,t);},{timeout:r,label:"tooltip"});},t.prototype.open=function(e,t){this.container.classList.add("jodit-tooltip_visible"),this.container.innerHTML=t,this.isOpened=!0,this.setPosition(e);},t.prototype.setPosition=function(e){var t=e();(0,n.css)(this.container,{left:t.x,top:t.y});},t.prototype.close=function(){this.j.async.clearTimeout(this.delayShowTimeout),this.isOpened&&(this.isOpened=!1,this.container.classList.remove("jodit-tooltip_visible"),(0,n.css)(this.container,{left:-5e3}));},t.prototype.beforeDestruct=function(e){null==e||e.e.off(".tooltip"),this.close(),a.Dom.safeRemove(this.container);},r.__decorate([l.autobind],t.prototype,"delayOpen",null),r.__decorate([l.autobind],t.prototype,"close",null),t;}(i.Plugin);t.tooltip=c;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.tab=void 0;var r=o(145),n=o(365),i=o(231),a=o(147),s=o(601);o(603);var l=function(e){function t(){return null!==e&&e.apply(this,arguments)||this;}return r.__extends(t,e),t.prototype.afterInit=function(e){},t.prototype.onTab=function(e){if(e.key===a.KEY_TAB&&(0,s.onTabInsideLi)(this.j))return!1;},t.prototype.beforeDestruct=function(e){},r.__decorate([(0,i.watch)(":keydown.tab")],t.prototype,"onTab",null),t;}(n.Plugin);t.tab=l;},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),o(145).__exportStar(o(602),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.onTabInsideLi=void 0;var r=o(229);t.onTabInsideLi=function(e){if(!e.o.tab.tabInsideLiInsertNewList||!e.s.isCollapsed())return!1;var t=e.createInside.fake();e.s.insertNode(t);var o=r.Dom.closest(t,"li",e.editor);if(o&&e.s.cursorOnTheLeft(o)&&r.Dom.isTag(o.previousElementSibling,"li")){var n=r.Dom.closest(o,["ol","ul"],e.editor);if(n){var i=e.createInside.element(n.tagName),a=o.previousElementSibling;return i.appendChild(o),a.appendChild(i),e.s.setCursorAfter(t),r.Dom.safeRemove(t),!0;}}return r.Dom.safeRemove(t),!1;};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),o(146).Config.prototype.tab={tabInsideLiInsertNewList:!0};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=o(145);r.__exportStar(o(605),t),r.__exportStar(o(608),t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.preview=void 0,o(606);var r=o(146),n=o(147),i=o(607),a=o(323);r.Config.prototype.controls.preview={icon:"eye",command:"preview",mode:n.MODE_SOURCE+n.MODE_WYSIWYG,tooltip:"Preview"},t.preview=function(e){e.registerButton({name:"preview"}),e.registerCommand("preview",function(t,o,r){var n=new a.Dialog({language:e.o.language,theme:e.o.theme});n.setSize(1024,600).open("",e.i18n("Preview")).setModal(!0),(0,i.previewBox)(e,r,"px",n.getElm("content"));});};},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.previewBox=void 0;var r=o(185),n=o(229);t.previewBox=function(e,t,o,i){void 0===o&&(o="px"),void 0===i&&(i=null);var a=function(e,t){var o=[];try{(0,r.$$)("img",e.editor).forEach(function(i){var a=[(0,r.attr)(i,"width"),(0,r.attr)(i,"height"),i.src];(0,r.attr)(i,{width:i.offsetWidth+t,height:i.offsetHeight+t});var s=e.createInside.a();e.ed.body.appendChild(s),s.href=i.src,i.src=s.href,n.Dom.safeRemove(s),o.push(function(){var e;i.src=null!==(e=a[2])&&void 0!==e?e:"",(0,r.attr)(i,{width:a[0]||null,height:a[1]||null});});});}catch(e){throw o.forEach(function(e){return e();}),o.length=0,e;}return o;}(e,o);try{var s=e.e.fire("beforePreviewBox",t,o);if(null!=s)return s;var l=e.c.div("jodit__preview-box jodit-context");i&&i.appendChild(l),(0,r.css)(l,{position:"relative",padding:16});var c=e.value||"<div style='position: absolute;left:50%;top:50%;transform: translateX(-50%) translateY(-50%);color:#ccc;'>".concat(e.i18n("Empty"),"</div>");if(e.iframe){var u=e.create.element("iframe");(0,r.css)(u,{minWidth:800,minHeight:600,border:0}),l.appendChild(u);var d=u.contentWindow;if(d&&(e.e.fire("generateDocumentStructure.iframe",d.document,e),l=d.document.body,"function"==typeof ResizeObserver)){var p=new ResizeObserver(function(e){u.style.height=d.document.body.offsetHeight+20+"px";});p.observe(d.document.body),e.e.on("beforeDestruct",function(){p.unobserve(d.document.body);});}}else(0,r.css)(l,{minWidth:1024,minHeight:600,border:0});var f=function(t,o){var i=(0,r.isString)(o)?e.c.div():o;(0,r.isString)(o)&&(i.innerHTML=o);for(var a=0;i.childNodes.length>a;a+=1){var s=i.childNodes[a];if(n.Dom.isElement(s)){for(var l=t.ownerDocument.createElement(s.nodeName),c=0;s.attributes.length>c;c+=1)(0,r.attr)(l,s.attributes[c].nodeName,s.attributes[c].nodeValue);0===s.childNodes.length||n.Dom.isTag(s,["table"])?"SCRIPT"===s.nodeName?s.textContent&&(l.textContent=s.textContent):s.innerHTML&&(l.innerHTML=s.innerHTML):f(l,s);try{t.appendChild(l);}catch(e){}}else try{t.appendChild(s.cloneNode(!0));}catch(e){}}};return f(l,c),e.e.fire("afterPreviewBox",l),l;}finally{a.forEach(function(e){return e();});}};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.print=void 0;var r=o(146),n=o(237),i=o(229),a=o(185),s=o(147),l=o(607),c=o(609);r.Config.prototype.controls.print={exec:function(e){var t=e.create.element("iframe");Object.assign(t.style,{position:"fixed",right:0,bottom:0,width:0,height:0,border:0}),(0,n.getContainer)(e,r.Config).appendChild(t);var o=function(){e.e.off(e.ow,"mousemove",o),i.Dom.safeRemove(t);},s=t.contentWindow;if(s){e.e.on(s,"onbeforeunload onafterprint",o).on(e.ow,"mousemove",o),e.o.iframe?(e.e.fire("generateDocumentStructure.iframe",s.document,e),s.document.body.innerHTML=e.value):(s.document.write('<!doctype html><html lang="'+(0,a.defaultLanguage)(e.o.language)+'"><head><title></title></head><style>'+(0,c.generateCriticalCSS)(e)+"</style><body></body></html>"),s.document.close(),(0,l.previewBox)(e,void 0,"px",s.document.body));var u=s.document.createElement("style");u.innerHTML="@media print {\n\t\t\t\t\tbody {\n\t\t\t\t\t\t\t-webkit-print-color-adjust: exact;\n\t\t\t\t\t}\n\t\t\t}",s.document.head.appendChild(u),s.focus(),s.print();}},mode:s.MODE_SOURCE+s.MODE_WYSIWYG,tooltip:"Print"},t.print=function(e){e.registerButton({name:"print"});};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.generateCriticalCSS=void 0;var r=o(145),n=o(153);t.generateCriticalCSS=function(e){var t=function(e,t){return void 0===t&&(t=e.ownerDocument.styleSheets),(0,n.toArray)(t).map(function(e){try{return(0,n.toArray)(e.cssRules);}catch(e){}return[];}).flat().filter(function(t){try{return Boolean(t&&e.matches(t.selectorText));}catch(e){}return!1;});},o=function(){function o(o,n,i){var a=this;this.css={};var s=i||{},l=function(t){var o=t.selectorText.split(",").map(function(e){return e.trim();}).sort().join(",");!1===Boolean(a.css[o])&&(a.css[o]={});for(var n=t.style.cssText.split(/;(?![A-Za-z0-9])/),i=0;n.length>i;i++)if(n[i]){var s=n[i].split(":");s[0]=s[0].trim(),s[1]=s[1].trim(),a.css[o][s[0]]=s[1].replace(/var\(([^)]+)\)/g,function(t,o){var n=r.__read(o.split(","),2),i=n[0],a=n[1];return(e.ew.getComputedStyle(e.editor).getPropertyValue(i.trim())||a||t).trim();});}};!function(){for(var r=o.innerHeight,i=n.createTreeWalker(e.editor,NodeFilter.SHOW_ELEMENT,function(){return NodeFilter.FILTER_ACCEPT;});i.nextNode();){var a=i.currentNode;if(r>a.getBoundingClientRect().top||s.scanFullPage){var c=t(a);if(c)for(var u=0;c.length>u;u++)l(c[u]);}}}();}return o.prototype.generateCSS=function(){var e="";for(var t in this.css)if(!/:not\(/.test(t)){for(var o in e+=t+" { ",this.css[t])e+=o+": "+this.css[t][o]+"; ";e+="}\n";}return e;},o;}();try{return new o(e.ew,e.ed,{scanFullPage:!0}).generateCSS();}catch(e){}return"";};},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.xpath=void 0;var r=o(145);o(611);var n=o(146),i=o(147),a=o(303),s=o(229),l=o(185),c=o(365),u=o(332);n.Config.prototype.showXPathInStatusbar=!0;var d=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.onContext=function(e,o){return t.menu||(t.menu=new a.ContextMenu(t.j)),t.menu.show(o.clientX,o.clientY,[{icon:"bin",title:e===t.j.editor?"Clear":"Remove",exec:function(){e!==t.j.editor?s.Dom.safeRemove(e):t.j.value="",t.j.synchronizeValues();}},{icon:"select-all",title:"Select",exec:function(){t.j.s.select(e);}}]),!1;},t.onSelectPath=function(e,o){t.j.s.focus();var r=(0,l.attr)(o.target,"-path")||"/";if("/"===r)return t.j.execCommand("selectall"),!1;try{var n=t.j.ed.evaluate(r,t.j.editor,null,XPathResult.ANY_TYPE,null).iterateNext();if(n)return t.j.s.select(n),!1;}catch(e){}return t.j.s.select(e),!1;},t.tpl=function(e,o,r,n){var i=t.j.c.fromHTML('<span class="jodit-xpath__item"><a role="button" data-path="'.concat(o,'" title="').concat(n,'" tabindex="-1"\'>').concat((0,l.trim)(r),"</a></span>")),a=i.firstChild;return t.j.e.on(a,"click",t.onSelectPath.bind(t,e)).on(a,"contextmenu",t.onContext.bind(t,e)),i;},t.removeSelectAll=function(){t.selectAllButton&&(t.selectAllButton.destruct(),delete t.selectAllButton);},t.appendSelectAll=function(){t.removeSelectAll(),t.selectAllButton=(0,u.makeButton)(t.j,r.__assign({name:"selectall"},t.j.o.controls.selectall)),t.selectAllButton.state.size="tiny",t.container&&t.container.insertBefore(t.selectAllButton.container,t.container.firstChild);},t.calcPathImd=function(){if(!t.isDestructed){var e,o,r,n=t.j.s.current();t.container&&(t.container.innerHTML=i.INVISIBLE_SPACE),n&&s.Dom.up(n,function(n){n&&t.j.editor!==n&&!s.Dom.isText(n)&&(e=n.nodeName.toLowerCase(),o=(0,l.getXPathByElement)(n,t.j.editor).replace(/^\//,""),r=t.tpl(n,o,e,t.j.i18n("Select %s",e)),t.container&&t.container.insertBefore(r,t.container.firstChild));},t.j.editor),t.appendSelectAll();}},t.calcPath=t.j.async.debounce(t.calcPathImd,2*t.j.defaultTimeout),t;}return r.__extends(t,e),t.prototype.afterInit=function(){var e=this;this.j.o.showXPathInStatusbar&&(this.container=this.j.c.div("jodit-xpath"),this.j.e.off(".xpath").on("mouseup.xpath change.xpath keydown.xpath changeSelection.xpath",this.calcPath).on("afterSetMode.xpath afterInit.xpath changePlace.xpath",function(){e.j.o.showXPathInStatusbar&&e.container&&(e.j.statusbar.append(e.container),e.j.getRealMode()===i.MODE_WYSIWYG?e.calcPath():(e.container&&(e.container.innerHTML=i.INVISIBLE_SPACE),e.appendSelectAll()));}),this.calcPath());},t.prototype.beforeDestruct=function(){this.j&&this.j.events&&this.j.e.off(".xpath"),this.removeSelectAll(),this.menu&&this.menu.destruct(),s.Dom.safeRemove(this.container),delete this.menu,delete this.container;},t;}(c.Plugin);t.xpath=d;},function(e,t,o){"use strict";o.r(t);},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.palette=t.outdent=t.omega=t.ol=t.ok=t.merge=t.menu=t.lock=t.link=t.line_height=t.left=t.justify=t.italic=t.info_circle=t.indent=t.image=t.hr=t.fullsize=t.fontsize=t.font=t.folder=t.file=t.eye=t.eraser=t.enter=t.chevron=t.dots=t.dedent=t.cut=t.crop=t.copy=t.copyformat=t.check_square=t.check=t.chain_broken=t.center=t.cancel=t.brush=t.bold=t.bin=t.attachment=t.arrows_h=t.arrows_alt=t.angle_up=t.angle_right=t.angle_left=t.angle_down=t.addrow=t.addcolumn=t.about=void 0,t.video=t.valign=t.upload=t.update=t.unlock=t.unlink=t.undo=t.underline=t.ul=t.th_list=t.th=t.table=t.superscript=t.subscript=t.strikethrough=t.splitv=t.splitg=t.source=t.shrink=t.settings=t.select_all=t.search=t.save=t.right=t.resizer=t.resize_handler=t.resize=t.redo=t.print=t.plus=t.pencil=t.paste=t.paragraph=void 0;var r=o(613);t.about=r;var n=o(614);t.addcolumn=n;var i=o(615);t.addrow=i;var a=o(616);t.angle_down=a;var s=o(617);t.angle_left=s;var l=o(618);t.angle_right=l;var c=o(619);t.angle_up=c;var u=o(620);t.arrows_alt=u;var d=o(621);t.arrows_h=d;var p=o(622);t.attachment=p;var f=o(623);t.bin=f;var h=o(624);t.bold=h;var m=o(625);t.brush=m;var v=o(626);t.cancel=v;var g=o(627);t.center=g;var y=o(628);t.chain_broken=y;var b=o(629);t.check=b;var _=o(630);t.check_square=_;var w=o(631);t.chevron=w;var S=o(632);t.copyformat=S;var C=o(633);t.crop=C;var k=o(634);t.copy=k;var j=o(635);t.cut=j;var E=o(636);t.dedent=E;var x=o(637);t.dots=x;var I=o(638);t.enter=I;var T=o(639);t.eraser=T;var P=o(640);t.eye=P;var D=o(641);t.file=D;var z=o(642);t.folder=z;var M=o(643);t.font=M;var A=o(644);t.fontsize=A;var O=o(645);t.fullsize=O;var L=o(646);t.hr=L;var N=o(647);t.image=N;var B=o(648);t.indent=B;var R=o(649);t.info_circle=R;var q=o(650);t.italic=q;var F=o(651);t.justify=F;var H=o(652);t.left=H;var U=o(653);t.line_height=U;var V=o(654);t.link=V;var W=o(655);t.lock=W;var Y=o(656);t.menu=Y;var K=o(657);t.merge=K;var G=o(658);t.ok=G;var J=o(659);t.ol=J;var X=o(660);t.omega=X;var $=o(661);t.outdent=$;var Z=o(662);t.palette=Z;var Q=o(663);t.paragraph=Q;var ee=o(664);t.paste=ee;var te=o(665);t.pencil=te;var oe=o(666);t.plus=oe;var re=o(667);t.print=re;var ne=o(668);t.redo=ne;var ie=o(669);t.resize=ie;var ae=o(670);t.resize_handler=ae;var se=o(671);t.resizer=se;var le=o(672);t.right=le;var ce=o(673);t.save=ce;var ue=o(674);t.search=ue;var de=o(675);t.settings=de;var pe=o(676);t.select_all=pe;var fe=o(677);t.shrink=fe;var he=o(678);t.source=he;var me=o(679);t.splitg=me;var ve=o(680);t.splitv=ve;var ge=o(681);t.strikethrough=ge;var ye=o(682);t.subscript=ye;var be=o(683);t.superscript=be;var _e=o(684);t.table=_e;var we=o(685);t.th=we;var Se=o(686);t.th_list=Se;var Ce=o(687);t.ul=Ce;var ke=o(688);t.underline=ke;var je=o(689);t.undo=je;var Ee=o(690);t.unlink=Ee;var xe=o(691);t.unlock=xe;var Ie=o(692);t.update=Ie;var Te=o(693);t.upload=Te;var Pe=o(694);t.valign=Pe;var De=o(695);t.video=De;},function(e){e.exports='<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"> <path d="M1088 1256v240q0 16-12 28t-28 12h-240q-16 0-28-12t-12-28v-240q0-16 12-28t28-12h240q16 0 28 12t12 28zm316-600q0 54-15.5 101t-35 76.5-55 59.5-57.5 43.5-61 35.5q-41 23-68.5 65t-27.5 67q0 17-12 32.5t-28 15.5h-240q-15 0-25.5-18.5t-10.5-37.5v-45q0-83 65-156.5t143-108.5q59-27 84-56t25-76q0-42-46.5-74t-107.5-32q-65 0-108 29-35 25-107 115-13 16-31 16-12 0-25-8l-164-125q-13-10-15.5-25t5.5-28q160-266 464-266 80 0 161 31t146 83 106 127.5 41 158.5z"/> </svg>';},function(e){e.exports='<svg viewBox="0 0 18.151 18.151" xmlns="http://www.w3.org/2000/svg"> <g> <path stroke-width="0" d="M6.237,16.546H3.649V1.604h5.916v5.728c0.474-0.122,0.968-0.194,1.479-0.194 c0.042,0,0.083,0.006,0.125,0.006V0H2.044v18.15h5.934C7.295,17.736,6.704,17.19,6.237,16.546z"/> <path stroke-width="0" d="M11.169,8.275c-2.723,0-4.938,2.215-4.938,4.938s2.215,4.938,4.938,4.938s4.938-2.215,4.938-4.938 S13.892,8.275,11.169,8.275z M11.169,16.81c-1.983,0-3.598-1.612-3.598-3.598c0-1.983,1.614-3.597,3.598-3.597 s3.597,1.613,3.597,3.597C14.766,15.198,13.153,16.81,11.169,16.81z"/> <polygon stroke-width="0" points="11.792,11.073 10.502,11.073 10.502,12.578 9.03,12.578 9.03,13.868 10.502,13.868 10.502,15.352 11.792,15.352 11.792,13.868 13.309,13.868 13.309,12.578 11.792,12.578 "/> </g> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 432 432"> <g> <polygon points="203.688,96 0,96 0,144 155.688,144 "/> <polygon points="155.719,288 0,288 0,336 203.719,336 "/> <path d="M97.844,230.125c-3.701-3.703-5.856-8.906-5.856-14.141s2.154-10.438,5.856-14.141l9.844-9.844H0v48h107.719 L97.844,230.125z"/> <polygon points="232,176 232,96 112,216 232,336 232,256 432,256 432,176"/> </g> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1395 736q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1203 544q0 13-10 23l-393 393 393 393q10 10 10 23t-10 23l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1171 960q0 13-10 23l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1395 1184q0 13-10 23l-50 50q-10 10-23 10t-23-10l-393-393-393 393q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l466 466q10 10 10 23z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1411 541l-355 355 355 355 144-144q29-31 70-14 39 17 39 59v448q0 26-19 45t-45 19h-448q-42 0-59-40-17-39 14-69l144-144-355-355-355 355 144 144q31 30 14 69-17 40-59 40h-448q-26 0-45-19t-19-45v-448q0-42 40-59 39-17 69 14l144 144 355-355-355-355-144 144q-19 19-45 19-12 0-24-5-40-17-40-59v-448q0-26 19-45t45-19h448q42 0 59 40 17 39-14 69l-144 144 355 355 355-355-144-144q-31-30-14-69 17-40 59-40h448q26 0 45 19t19 45v448q0 42-39 59-13 5-25 5-26 0-45-19z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1792 896q0 26-19 45l-256 256q-19 19-45 19t-45-19-19-45v-128h-1024v128q0 26-19 45t-45 19-45-19l-256-256q-19-19-19-45t19-45l256-256q19-19 45-19t45 19 19 45v128h1024v-128q0-26 19-45t45-19 45 19l256 256q19 19 19 45z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1596 1385q0 117-79 196t-196 79q-135 0-235-100l-777-776q-113-115-113-271 0-159 110-270t269-111q158 0 273 113l605 606q10 10 10 22 0 16-30.5 46.5t-46.5 30.5q-13 0-23-10l-606-607q-79-77-181-77-106 0-179 75t-73 181q0 105 76 181l776 777q63 63 145 63 64 0 106-42t42-106q0-82-63-145l-581-581q-26-24-60-24-29 0-48 19t-19 48q0 32 25 59l410 410q10 10 10 22 0 16-31 47t-47 31q-12 0-22-10l-410-410q-63-61-63-149 0-82 57-139t139-57q88 0 149 63l581 581q100 98 100 235z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M704 1376v-704q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v704q0 14 9 23t23 9h64q14 0 23-9t9-23zm256 0v-704q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v704q0 14 9 23t23 9h64q14 0 23-9t9-23zm256 0v-704q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23v704q0 14 9 23t23 9h64q14 0 23-9t9-23zm-544-992h448l-48-117q-7-9-17-11h-317q-10 2-17 11zm928 32v64q0 14-9 23t-23 9h-96v948q0 83-47 143.5t-113 60.5h-832q-66 0-113-58.5t-47-141.5v-952h-96q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h309l70-167q15-37 54-63t79-26h320q40 0 79 26t54 63l70 167h309q14 0 23 9t9 23z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M747 1521q74 32 140 32 376 0 376-335 0-114-41-180-27-44-61.5-74t-67.5-46.5-80.5-25-84-10.5-94.5-2q-73 0-101 10 0 53-.5 159t-.5 158q0 8-1 67.5t-.5 96.5 4.5 83.5 12 66.5zm-14-746q42 7 109 7 82 0 143-13t110-44.5 74.5-89.5 25.5-142q0-70-29-122.5t-79-82-108-43.5-124-14q-50 0-130 13 0 50 4 151t4 152q0 27-.5 80t-.5 79q0 46 1 69zm-541 889l2-94q15-4 85-16t106-27q7-12 12.5-27t8.5-33.5 5.5-32.5 3-37.5.5-34v-65.5q0-982-22-1025-4-8-22-14.5t-44.5-11-49.5-7-48.5-4.5-30.5-3l-4-83q98-2 340-11.5t373-9.5q23 0 68.5.5t67.5.5q70 0 136.5 13t128.5 42 108 71 74 104.5 28 137.5q0 52-16.5 95.5t-39 72-64.5 57.5-73 45-84 40q154 35 256.5 134t102.5 248q0 100-35 179.5t-93.5 130.5-138 85.5-163.5 48.5-176 14q-44 0-132-3t-132-3q-106 0-307 11t-231 12z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M896 1152q0-36-20-69-1-1-15.5-22.5t-25.5-38-25-44-21-50.5q-4-16-21-16t-21 16q-7 23-21 50.5t-25 44-25.5 38-15.5 22.5q-20 33-20 69 0 53 37.5 90.5t90.5 37.5 90.5-37.5 37.5-90.5zm512-128q0 212-150 362t-362 150-362-150-150-362q0-145 81-275 6-9 62.5-90.5t101-151 99.5-178 83-201.5q9-30 34-47t51-17 51.5 17 33.5 47q28 93 83 201.5t99.5 178 101 151 62.5 90.5q81 127 81 275z"/> </svg>';},function(e){e.exports='<svg viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg"> <g stroke="none" stroke-width="1"> <path d="M14,1.4 L12.6,0 L7,5.6 L1.4,0 L0,1.4 L5.6,7 L0,12.6 L1.4,14 L7,8.4 L12.6,14 L14,12.6 L8.4,7 L14,1.4 Z"/> </g> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zm-384-384v128q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h896q26 0 45 19t19 45zm256-384v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zm-384-384v128q0 26-19 45t-45 19h-640q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h640q26 0 45 19t19 45z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M503 1271l-256 256q-10 9-23 9-12 0-23-9-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23zm169 41v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zm-224-224q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zm1264 128q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-334-335q-21-21-42-56l239-18 273 274q27 27 68 27.5t68-26.5l147-146q28-28 28-67 0-40-28-68l-274-275 18-239q35 21 56 42l336 336q84 86 84 204zm-617-724l-239 18-273-274q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l274 274-18 240q-35-21-56-42l-336-336q-84-86-84-204 0-120 85-203l147-146q83-83 203-83 121 0 204 85l334 335q21 21 42 56zm633 84q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zm-544-544v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zm407 151l-256 256q-11 9-23 9t-23-9q-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1472 930v318q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q63 0 117 25 15 7 18 23 3 17-9 29l-49 49q-10 10-23 10-3 0-9-2-23-6-45-6h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-254q0-13 9-22l64-64q10-10 23-10 6 0 12 3 20 8 20 29zm231-489l-814 814q-24 24-57 24t-57-24l-430-430q-24-24-24-57t24-57l110-110q24-24 57-24t57 24l263 263 647-647q24-24 57-24t57 24l110 110q24 24 24 57t-24 57z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"><path d="M813 1299l614-614q19-19 19-45t-19-45l-102-102q-19-19-45-19t-45 19l-467 467-211-211q-19-19-45-19t-45 19l-102 102q-19 19-19 45t19 45l358 358q19 19 45 19t45-19zm851-883v960q0 119-84.5 203.5t-203.5 84.5h-960q-119 0-203.5-84.5t-84.5-203.5v-960q0-119 84.5-203.5t203.5-84.5h960q119 0 203.5 84.5t84.5 203.5z"/></svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 10 10"> <path d="M.941 4.523a.75.75 0 1 1 1.06-1.06l3.006 3.005 3.005-3.005a.75.75 0 1 1 1.06 1.06l-3.549 3.55a.75.75 0 0 1-1.168-.136L.941 4.523z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 16 16"> <path stroke-width="0" d="M16 9v-6h-3v-1c0-0.55-0.45-1-1-1h-11c-0.55 0-1 0.45-1 1v3c0 0.55 0.45 1 1 1h11c0.55 0 1-0.45 1-1v-1h2v4h-9v2h-0.5c-0.276 0-0.5 0.224-0.5 0.5v5c0 0.276 0.224 0.5 0.5 0.5h2c0.276 0 0.5-0.224 0.5-0.5v-5c0-0.276-0.224-0.5-0.5-0.5h-0.5v-1h9zM12 3h-11v-1h11v1z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M621 1280h595v-595zm-45-45l595-595h-595v595zm1152 77v192q0 14-9 23t-23 9h-224v224q0 14-9 23t-23 9h-192q-14 0-23-9t-9-23v-224h-864q-14 0-23-9t-9-23v-864h-224q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h224v-224q0-14 9-23t23-9h192q14 0 23 9t9 23v224h851l246-247q10-9 23-9t23 9q9 10 9 23t-9 23l-247 246v851h224q14 0 23 9t9 23z"/> </svg>';},function(e){e.exports='<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"> <path d="M24.89,6.61H22.31V4.47A2.47,2.47,0,0,0,19.84,2H6.78A2.47,2.47,0,0,0,4.31,4.47V22.92a2.47,2.47,0,0,0,2.47,2.47H9.69V27.2a2.8,2.8,0,0,0,2.8,2.8h12.4a2.8,2.8,0,0,0,2.8-2.8V9.41A2.8,2.8,0,0,0,24.89,6.61ZM6.78,23.52a.61.61,0,0,1-.61-.6V4.47a.61.61,0,0,1,.61-.6H19.84a.61.61,0,0,1,.61.6V6.61h-8a2.8,2.8,0,0,0-2.8,2.8V23.52Zm19,3.68a.94.94,0,0,1-.94.93H12.49a.94.94,0,0,1-.94-.93V9.41a.94.94,0,0,1,.94-.93h12.4a.94.94,0,0,1,.94.93Z"/> <path d="M23.49,13.53h-9.6a.94.94,0,1,0,0,1.87h9.6a.94.94,0,1,0,0-1.87Z"/> <path d="M23.49,17.37h-9.6a.94.94,0,1,0,0,1.87h9.6a.94.94,0,1,0,0-1.87Z"/> <path d="M23.49,21.22h-9.6a.93.93,0,1,0,0,1.86h9.6a.93.93,0,1,0,0-1.86Z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M960 896q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zm300 64l507 398q28 20 25 56-5 35-35 51l-128 64q-13 7-29 7-17 0-31-8l-690-387-110 66q-8 4-12 5 14 49 10 97-7 77-56 147.5t-132 123.5q-132 84-277 84-136 0-222-78-90-84-79-207 7-76 56-147t131-124q132-84 278-84 83 0 151 31 9-13 22-22l122-73-122-73q-13-9-22-22-68 31-151 31-146 0-278-84-82-53-131-124t-56-147q-5-59 15.5-113t63.5-93q85-79 222-79 145 0 277 84 83 52 132 123t56 148q4 48-10 97 4 1 12 5l110 66 690-387q14-8 31-8 16 0 29 7l128 64q30 16 35 51 3 36-25 56zm-681-260q46-42 21-108t-106-117q-92-59-192-59-74 0-113 36-46 42-21 108t106 117q92 59 192 59 74 0 113-36zm-85 745q81-51 106-117t-21-108q-39-36-113-36-100 0-192 59-81 51-106 117t21 108q39 36 113 36 100 0 192-59zm178-613l96 58v-11q0-36 33-56l14-8-79-47-26 26q-3 3-10 11t-12 12q-2 2-4 3.5t-3 2.5zm224 224l96 32 736-576-128-64-768 431v113l-160 96 9 8q2 2 7 6 4 4 11 12t11 12l26 26zm704 416l128-64-520-408-177 138q-2 3-13 7z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M384 544v576q0 13-9.5 22.5t-22.5 9.5q-14 0-23-9l-288-288q-9-9-9-23t9-23l288-288q9-9 23-9 13 0 22.5 9.5t9.5 22.5zm1408 768v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 24 24" > <circle cx="12" cy="12" r="2.2"/> <circle cx="12" cy="5" r="2.2"/> <circle cx="12" cy="19" r="2.2"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 128 128" xml:space="preserve"> <polygon points="112.4560547,23.3203125 112.4560547,75.8154297 31.4853516,75.8154297 31.4853516,61.953125 16.0131836,72.6357422 0.5410156,83.3164063 16.0131836,93.9990234 31.4853516,104.6796875 31.4853516,90.8183594 112.4560547,90.8183594 112.4560547,90.8339844 127.4589844,90.8339844 127.4589844,23.3203125"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M832 1408l336-384h-768l-336 384h768zm1013-1077q15 34 9.5 71.5t-30.5 65.5l-896 1024q-38 44-96 44h-768q-38 0-69.5-20.5t-47.5-54.5q-15-34-9.5-71.5t30.5-65.5l896-1024q38-44 96-44h768q38 0 69.5 20.5t47.5 54.5z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1664 960q-152-236-381-353 61 104 61 225 0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-121 61-225-229 117-381 353 133 205 333.5 326.5t434.5 121.5 434.5-121.5 333.5-326.5zm-720-384q0-20-14-34t-34-14q-125 0-214.5 89.5t-89.5 214.5q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zm848 384q0 34-20 69-140 230-376.5 368.5t-499.5 138.5-499.5-139-376.5-368q-20-35-20-69t20-69q140-229 376.5-368t499.5-139 499.5 139 376.5 368q20 35 20 69z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1152 512v-472q22 14 36 28l408 408q14 14 28 36h-472zm-128 32q0 40 28 68t68 28h544v1056q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h800v544z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1728 608v704q0 92-66 158t-158 66h-1216q-92 0-158-66t-66-158v-960q0-92 66-158t158-66h320q92 0 158 66t66 158v32h672q92 0 158 66t66 158z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M789 559l-170 450q33 0 136.5 2t160.5 2q19 0 57-2-87-253-184-452zm-725 1105l2-79q23-7 56-12.5t57-10.5 49.5-14.5 44.5-29 31-50.5l237-616 280-724h128q8 14 11 21l205 480q33 78 106 257.5t114 274.5q15 34 58 144.5t72 168.5q20 45 35 57 19 15 88 29.5t84 20.5q6 38 6 57 0 4-.5 13t-.5 13q-63 0-190-8t-191-8q-76 0-215 7t-178 8q0-43 4-78l131-28q1 0 12.5-2.5t15.5-3.5 14.5-4.5 15-6.5 11-8 9-11 2.5-14q0-16-31-96.5t-72-177.5-42-100l-450-2q-26 58-76.5 195.5t-50.5 162.5q0 22 14 37.5t43.5 24.5 48.5 13.5 57 8.5 41 4q1 19 1 58 0 9-2 27-58 0-174.5-10t-174.5-10q-8 0-26.5 4t-21.5 4q-80 14-188 14z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1744 1408q33 0 42 18.5t-11 44.5l-126 162q-20 26-49 26t-49-26l-126-162q-20-26-11-44.5t42-18.5h80v-1024h-80q-33 0-42-18.5t11-44.5l126-162q20-26 49-26t49 26l126 162q20 26 11 44.5t-42 18.5h-80v1024h80zm-1663-1279l54 27q12 5 211 5 44 0 132-2t132-2q36 0 107.5.5t107.5.5h293q6 0 21 .5t20.5 0 16-3 17.5-9 15-17.5l42-1q4 0 14 .5t14 .5q2 112 2 336 0 80-5 109-39 14-68 18-25-44-54-128-3-9-11-48t-14.5-73.5-7.5-35.5q-6-8-12-12.5t-15.5-6-13-2.5-18-.5-16.5.5q-17 0-66.5-.5t-74.5-.5-64 2-71 6q-9 81-8 136 0 94 2 388t2 455q0 16-2.5 71.5t0 91.5 12.5 69q40 21 124 42.5t120 37.5q5 40 5 50 0 14-3 29l-34 1q-76 2-218-8t-207-10q-50 0-151 9t-152 9q-3-51-3-52v-9q17-27 61.5-43t98.5-29 78-27q19-42 19-383 0-101-3-303t-3-303v-117q0-2 .5-15.5t.5-25-1-25.5-3-24-5-14q-11-12-162-12-33 0-93 12t-80 26q-19 13-34 72.5t-31.5 111-42.5 53.5q-42-26-56-44v-383z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 24 24"> <path stroke-width="0" d="M22,20.6L3.4,2H8V0H0v8h2V3.4L20.6,22H16v2h8v-8h-2V20.6z M16,0v2h4.7l-6.3,6.3l1.4,1.4L22,3.5V8h2V0H16z M8.3,14.3L2,20.6V16H0v8h8v-2H3.5l6.3-6.3L8.3,14.3z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1600 736v192q0 40-28 68t-68 28h-1216q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h1216q40 0 68 28t28 68z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M576 576q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm1024 384v448h-1408v-192l320-320 160 160 512-512zm96-704h-1600q-13 0-22.5 9.5t-9.5 22.5v1216q0 13 9.5 22.5t22.5 9.5h1600q13 0 22.5-9.5t9.5-22.5v-1216q0-13-9.5-22.5t-22.5-9.5zm160 32v1216q0 66-47 113t-113 47h-1600q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1600q66 0 113 47t47 113z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M352 832q0 14-9 23l-288 288q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-576q0-13 9.5-22.5t22.5-9.5q14 0 23 9l288 288q9 9 9 23zm1440 480v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1152 1376v-160q0-14-9-23t-23-9h-96v-512q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v160q0 14 9 23t23 9h96v320h-96q-14 0-23 9t-9 23v160q0 14 9 23t23 9h448q14 0 23-9t9-23zm-128-896v-160q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v160q0 14 9 23t23 9h192q14 0 23-9t9-23zm640 416q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M384 1662l17-85q6-2 81.5-21.5t111.5-37.5q28-35 41-101 1-7 62-289t114-543.5 52-296.5v-25q-24-13-54.5-18.5t-69.5-8-58-5.5l19-103q33 2 120 6.5t149.5 7 120.5 2.5q48 0 98.5-2.5t121-7 98.5-6.5q-5 39-19 89-30 10-101.5 28.5t-108.5 33.5q-8 19-14 42.5t-9 40-7.5 45.5-6.5 42q-27 148-87.5 419.5t-77.5 355.5q-2 9-13 58t-20 90-16 83.5-6 57.5l1 18q17 4 185 31-3 44-16 99-11 0-32.5 1.5t-32.5 1.5q-29 0-87-10t-86-10q-138-2-206-2-51 0-143 9t-121 11z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zm0-384v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zm0-384v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zm0-384v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zm-384-384v128q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1280q26 0 45 19t19 45zm256-384v128q0 26-19 45t-45 19h-1536q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1536q26 0 45 19t19 45zm-384-384v128q0 26-19 45t-45 19h-1152q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1152q26 0 45 19t19 45z"/> </svg>';},function(e){e.exports='<svg fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> <path d="M5.09668 6.99707H7.17358L4.17358 3.99707L1.17358 6.99707H3.09668V17.0031H1.15881L4.15881 20.0031L7.15881 17.0031H5.09668V6.99707Z"/> <path d="M22.8412 7H8.84119V5H22.8412V7Z"/> <path d="M22.8412 11H8.84119V9H22.8412V11Z"/> <path d="M8.84119 15H22.8412V13H8.84119V15Z"/> <path d="M22.8412 19H8.84119V17H22.8412V19Z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1520 1216q0-40-28-68l-208-208q-28-28-68-28-42 0-72 32 3 3 19 18.5t21.5 21.5 15 19 13 25.5 3.5 27.5q0 40-28 68t-68 28q-15 0-27.5-3.5t-25.5-13-19-15-21.5-21.5-18.5-19q-33 31-33 73 0 40 28 68l206 207q27 27 68 27 40 0 68-26l147-146q28-28 28-67zm-703-705q0-40-28-68l-206-207q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l208 208q27 27 68 27 42 0 72-31-3-3-19-18.5t-21.5-21.5-15-19-13-25.5-3.5-27.5q0-40 28-68t68-28q15 0 27.5 3.5t25.5 13 19 15 21.5 21.5 18.5 19q33-31 33-73zm895 705q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-206-207q-83-83-83-203 0-123 88-209l-88-88q-86 88-208 88-120 0-204-84l-208-208q-84-84-84-204t85-203l147-146q83-83 203-83 121 0 204 85l206 207q83 83 83 203 0 123-88 209l88 88q86-88 208-88 120 0 204 84l208 208q84 84 84 204z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"><path d="M640 768h512v-192q0-106-75-181t-181-75-181 75-75 181v192zm832 96v576q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-576q0-40 28-68t68-28h32v-192q0-184 132-316t316-132 316 132 132 316v192h32q40 0 68 28t28 68z"/></svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"><path d="M1664 1344v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zm0-512v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45zm0-512v128q0 26-19 45t-45 19h-1408q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1408q26 0 45 19t19 45z"/></svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 312 312"> <g transform="translate(0.000000,312.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M50 3109 c0 -7 -11 -22 -25 -35 l-25 -23 0 -961 0 -961 32 -29 32 -30 501 -2 500 -3 3 -502 2 -502 31 -30 31 -31 958 0 958 0 23 25 c13 13 30 25 37 25 9 0 12 199 12 960 0 686 -3 960 -11 960 -6 0 -24 12 -40 28 l-29 27 -503 5 -502 5 -5 502 -5 503 -28 29 c-15 16 -27 34 -27 40 0 8 -274 11 -960 11 -710 0 -960 -3 -960 -11z m1738 -698 l2 -453 -40 -40 c-22 -22 -40 -43 -40 -47 0 -4 36 -42 79 -85 88 -87 82 -87 141 -23 l26 27 455 -2 454 -3 0 -775 0 -775 -775 0 -775 0 -3 450 -2 449 47 48 47 48 -82 80 c-44 44 -84 80 -87 80 -3 0 -25 -18 -48 -40 l-41 -40 -456 2 -455 3 -3 765 c-1 421 0 771 3 778 3 10 164 12 777 10 l773 -3 3 -454z"/> <path d="M607 2492 c-42 -42 -77 -82 -77 -87 0 -6 86 -96 190 -200 105 -104 190 -197 190 -205 0 -8 -41 -56 -92 -107 -65 -65 -87 -94 -77 -98 8 -3 138 -4 289 -3 l275 3 3 275 c1 151 0 281 -3 289 -4 10 -35 -14 -103 -82 -54 -53 -103 -97 -109 -97 -7 0 -99 88 -206 195 -107 107 -196 195 -198 195 -3 0 -39 -35 -82 -78z"/> <path d="M1470 1639 c-47 -49 -87 -91 -89 -94 -5 -6 149 -165 160 -165 9 0 189 179 189 188 0 12 -154 162 -165 161 -6 0 -48 -41 -95 -90z"/> <path d="M1797 1303 c-9 -8 -9 -568 0 -576 4 -4 50 36 103 88 54 52 101 95 106 95 5 0 95 -85 199 -190 104 -104 194 -190 200 -190 6 0 46 36 90 80 l79 79 -197 196 c-108 108 -197 199 -197 203 0 4 45 52 99 106 55 55 98 103 95 108 -6 10 -568 11 -577 1z"/> </g> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 32 32"> <path d="M27 4l-15 15-7-7-5 5 12 12 20-20z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path stroke-width="0" d="M381 1620q0 80-54.5 126t-135.5 46q-106 0-172-66l57-88q49 45 106 45 29 0 50.5-14.5t21.5-42.5q0-64-105-56l-26-56q8-10 32.5-43.5t42.5-54 37-38.5v-1q-16 0-48.5 1t-48.5 1v53h-106v-152h333v88l-95 115q51 12 81 49t30 88zm2-627v159h-362q-6-36-6-54 0-51 23.5-93t56.5-68 66-47.5 56.5-43.5 23.5-45q0-25-14.5-38.5t-39.5-13.5q-46 0-81 58l-85-59q24-51 71.5-79.5t105.5-28.5q73 0 123 41.5t50 112.5q0 50-34 91.5t-75 64.5-75.5 50.5-35.5 52.5h127v-60h105zm1409 319v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-14 9-23t23-9h1216q13 0 22.5 9.5t9.5 22.5zm-1408-899v99h-335v-99h107q0-41 .5-122t.5-121v-12h-2q-8 17-50 54l-71-76 136-127h106v404h108zm1408 387v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-14 9-23t23-9h1216q13 0 22.5 9.5t9.5 22.5zm0-512v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 270 270"> <path d="m240.443652,220.45085l-47.410809,0l0,-10.342138c13.89973,-8.43655 25.752896,-19.844464 34.686646,-33.469923c11.445525,-17.455846 17.496072,-37.709239 17.496072,-58.570077c0,-59.589197 -49.208516,-108.068714 -109.693558,-108.068714s-109.69263,48.479517 -109.69263,108.069628c0,20.860839 6.050547,41.113316 17.497001,58.570077c8.93375,13.625459 20.787845,25.032458 34.686646,33.469008l0,10.342138l-47.412666,0c-10.256959,0 -18.571354,8.191376 -18.571354,18.296574c0,10.105198 8.314395,18.296574 18.571354,18.296574l65.98402,0c10.256959,0 18.571354,-8.191376 18.571354,-18.296574l0,-39.496814c0,-7.073455 -4.137698,-13.51202 -10.626529,-16.537358c-25.24497,-11.772016 -41.557118,-37.145704 -41.557118,-64.643625c0,-39.411735 32.545369,-71.476481 72.549922,-71.476481c40.004553,0 72.550851,32.064746 72.550851,71.476481c0,27.497006 -16.312149,52.87161 -41.557118,64.643625c-6.487902,3.026253 -10.6256,9.464818 -10.6256,16.537358l0,39.496814c0,10.105198 8.314395,18.296574 18.571354,18.296574l65.982163,0c10.256959,0 18.571354,-8.191376 18.571354,-18.296574c0,-10.105198 -8.314395,-18.296574 -18.571354,-18.296574z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M384 544v576q0 13-9.5 22.5t-22.5 9.5q-14 0-23-9l-288-288q-9-9-9-23t9-23l288-288q9-9 23-9 13 0 22.5 9.5t9.5 22.5zm1408 768v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1088q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1088q13 0 22.5 9.5t9.5 22.5zm0-384v192q0 13-9.5 22.5t-22.5 9.5h-1728q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1728q13 0 22.5 9.5t9.5 22.5z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' x="0px" y="0px" viewBox="0 0 459 459"> <g> <path d="M229.5,0C102,0,0,102,0,229.5S102,459,229.5,459c20.4,0,38.25-17.85,38.25-38.25c0-10.2-2.55-17.85-10.2-25.5 c-5.1-7.65-10.2-15.3-10.2-25.5c0-20.4,17.851-38.25,38.25-38.25h45.9c71.4,0,127.5-56.1,127.5-127.5C459,91.8,357,0,229.5,0z M89.25,229.5c-20.4,0-38.25-17.85-38.25-38.25S68.85,153,89.25,153s38.25,17.85,38.25,38.25S109.65,229.5,89.25,229.5z M165.75,127.5c-20.4,0-38.25-17.85-38.25-38.25S145.35,51,165.75,51S204,68.85,204,89.25S186.15,127.5,165.75,127.5z M293.25,127.5c-20.4,0-38.25-17.85-38.25-38.25S272.85,51,293.25,51s38.25,17.85,38.25,38.25S313.65,127.5,293.25,127.5z M369.75,229.5c-20.4,0-38.25-17.85-38.25-38.25S349.35,153,369.75,153S408,170.85,408,191.25S390.15,229.5,369.75,229.5z" /> </g> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"><path d="M1534 189v73q0 29-18.5 61t-42.5 32q-50 0-54 1-26 6-32 31-3 11-3 64v1152q0 25-18 43t-43 18h-108q-25 0-43-18t-18-43v-1218h-143v1218q0 25-17.5 43t-43.5 18h-108q-26 0-43.5-18t-17.5-43v-496q-147-12-245-59-126-58-192-179-64-117-64-259 0-166 88-286 88-118 209-159 111-37 417-37h479q25 0 43 18t18 43z"/></svg>';},function(e){e.exports='<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <path stroke-width="0" d="M10.5 20H2a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h1V3l2.03-.4a3 3 0 0 1 5.94 0L13 3v1h1a2 2 0 0 1 2 2v1h-2V6h-1v1H3V6H2v12h5v2h3.5zM8 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm2 4h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-8a2 2 0 0 1-2-2v-8c0-1.1.9-2 2-2zm0 2v8h8v-8h-8z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"><path d="M491 1536l91-91-235-235-91 91v107h128v128h107zm523-928q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zm-54-192l416 416-832 832h-416v-416zm683 96q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z"/></svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"><path d="M1600 736v192q0 40-28 68t-68 28h-416v416q0 40-28 68t-68 28h-192q-40 0-68-28t-28-68v-416h-416q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h416v-416q0-40 28-68t68-28h192q40 0 68 28t28 68v416h416q40 0 68 28t28 68z"/></svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M448 1536h896v-256h-896v256zm0-640h896v-384h-160q-40 0-68-28t-28-68v-160h-640v640zm1152 64q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zm128 0v416q0 13-9.5 22.5t-22.5 9.5h-224v160q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-160h-224q-13 0-22.5-9.5t-9.5-22.5v-416q0-79 56.5-135.5t135.5-56.5h64v-544q0-40 28-68t68-28h672q40 0 88 20t76 48l152 152q28 28 48 76t20 88v256h64q79 0 135.5 56.5t56.5 135.5z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1664 256v448q0 26-19 45t-45 19h-448q-42 0-59-40-17-39 14-69l138-138q-148-137-349-137-104 0-198.5 40.5t-163.5 109.5-109.5 163.5-40.5 198.5 40.5 198.5 109.5 163.5 163.5 109.5 198.5 40.5q119 0 225-52t179-147q7-10 23-12 14 0 25 9l137 138q9 8 9.5 20.5t-7.5 22.5q-109 132-264 204.5t-327 72.5q-156 0-298-61t-245-164-164-245-61-298 61-298 164-245 245-164 298-61q147 0 284.5 55.5t244.5 156.5l130-129q29-31 70-14 39 17 39 59z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 24 24"> <g transform="translate(-251.000000, -443.000000)"> <g transform="translate(215.000000, 119.000000)"/> <path d="M252,448 L256,448 L256,444 L252,444 L252,448 Z M257,448 L269,448 L269,446 L257,446 L257,448 Z M257,464 L269,464 L269,462 L257,462 L257,464 Z M270,444 L270,448 L274,448 L274,444 L270,444 Z M252,462 L252,466 L256,466 L256,462 L252,462 Z M270,462 L270,466 L274,466 L274,462 L270,462 Z M254,461 L256,461 L256,449 L254,449 L254,461 Z M270,461 L272,461 L272,449 L270,449 L270,461 Z"/> </g> </svg>';},function(e){e.exports='<svg viewBox="0 0 13 13" xmlns="http://www.w3.org/2000/svg"> <path d="M5.9814 11.8049C5.59087 11.4144 5.59087 10.7812 5.9814 10.3907L10.224 6.14806C10.6146 5.75754 11.2477 5.75754 11.6383 6.14806C12.0288 6.53859 12.0288 7.17175 11.6383 7.56228L7.39561 11.8049C7.00509 12.1954 6.37192 12.1954 5.9814 11.8049Z"/> <path d="M0.707107 12.0208C0.316582 11.6303 0.316582 10.9971 0.707107 10.6066L10.6066 0.707121C10.9971 0.316597 11.6303 0.316596 12.0208 0.707121C12.4113 1.09764 12.4113 1.73081 12.0208 2.12133L2.12132 12.0208C1.7308 12.4114 1.09763 12.4114 0.707107 12.0208Z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M844 472q0 60-19 113.5t-63 92.5-105 39q-76 0-138-57.5t-92-135.5-30-151q0-60 19-113.5t63-92.5 105-39q77 0 138.5 57.5t91.5 135 30 151.5zm-342 483q0 80-42 139t-119 59q-76 0-141.5-55.5t-100.5-133.5-35-152q0-80 42-139.5t119-59.5q76 0 141.5 55.5t100.5 134 35 152.5zm394-27q118 0 255 97.5t229 237 92 254.5q0 46-17 76.5t-48.5 45-64.5 20-76 5.5q-68 0-187.5-45t-182.5-45q-66 0-192.5 44.5t-200.5 44.5q-183 0-183-146 0-86 56-191.5t139.5-192.5 187.5-146 193-59zm239-211q-61 0-105-39t-63-92.5-19-113.5q0-74 30-151.5t91.5-135 138.5-57.5q61 0 105 39t63 92.5 19 113.5q0 73-30 151t-92 135.5-138 57.5zm432-104q77 0 119 59.5t42 139.5q0 74-35 152t-100.5 133.5-141.5 55.5q-77 0-119-59t-42-139q0-74 35-152.5t100.5-134 141.5-55.5z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1792 1344v128q0 26-19 45t-45 19h-1664q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1664q26 0 45 19t19 45zm0-384v128q0 26-19 45t-45 19h-1280q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1280q26 0 45 19t19 45zm0-384v128q0 26-19 45t-45 19h-1536q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1536q26 0 45 19t19 45zm0-384v128q0 26-19 45t-45 19h-1152q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h1152q26 0 45 19t19 45z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M512 1536h768v-384h-768v384zm896 0h128v-896q0-14-10-38.5t-20-34.5l-281-281q-10-10-34-20t-39-10v416q0 40-28 68t-68 28h-576q-40 0-68-28t-28-68v-416h-128v1280h128v-416q0-40 28-68t68-28h832q40 0 68 28t28 68v416zm-384-928v-320q0-13-9.5-22.5t-22.5-9.5h-192q-13 0-22.5 9.5t-9.5 22.5v320q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5-9.5t9.5-22.5zm640 32v928q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1344q0-40 28-68t68-28h928q40 0 88 20t76 48l280 280q28 28 48 76t20 88z"/> </svg>';},function(e){e.exports='<svg viewBox="0 0 500 500" xmlns="http://www.w3.org/2000/svg"> <path clip-rule="evenodd" d="M306.39,154.09c19.628,4.543,35.244,21.259,39.787,39.523 c1.551,8.54,8.998,14.989,17.904,14.989c9.991,0,18.168-8.175,18.168-18.17c0-13.083-10.991-32.98-25.985-47.881 c-14.719-14.537-32.252-24.802-46.695-24.802c-9.991,0-18.172,8.45-18.172,18.446C291.396,145.094,297.847,152.546,306.39,154.09z M56.629,392.312c-14.09,14.08-14.09,36.979,0,51.059c14.08,14.092,36.981,14.092,50.965,0l104.392-104.303 c24.347,15.181,53.062,23.991,83.953,23.991c87.857,0,158.995-71.142,158.995-158.999c0-87.854-71.138-158.995-158.995-158.995 c-87.856,0-158.995,71.141-158.995,158.995c0,30.802,8.819,59.606,23.992,83.953L56.629,392.312z M182.371,204.06 c0-62.687,50.875-113.568,113.568-113.568s113.569,50.881,113.569,113.568c0,62.694-50.876,113.569-113.569,113.569 S182.371,266.754,182.371,204.06z" fill-rule="evenodd"/> </svg>';},function(e){e.exports='<svg viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"> <path stroke="null" d="m42.276011,26.302547c0.098397,-0.76605 0.172194,-1.54407 0.172194,-2.33406s-0.073797,-1.56801 -0.172194,-2.33406l5.202718,-3.961917c0.467384,-0.359086 0.602679,-1.005441 0.29519,-1.532101l-4.919828,-8.29489c-0.307489,-0.51469 -0.947067,-0.730142 -1.500548,-0.51469l-6.125186,2.405877c-1.266856,-0.945594 -2.656707,-1.747553 -4.157255,-2.357999l-0.922468,-6.343855c-0.110696,-0.562568 -0.614979,-1.005441 -1.229957,-1.005441l-9.839656,0c-0.614979,0 -1.119261,0.442873 -1.217657,1.005441l-0.922468,6.343855c-1.500548,0.610446 -2.890399,1.400436 -4.157255,2.357999l-6.125186,-2.405877c-0.553481,-0.203482 -1.193058,0 -1.500548,0.51469l-4.919828,8.29489c-0.307489,0.51469 -0.172194,1.161045 0.29519,1.532101l5.190419,3.961917c-0.098397,0.76605 -0.172194,1.54407 -0.172194,2.33406s0.073797,1.56801 0.172194,2.33406l-5.190419,3.961917c-0.467384,0.359086 -0.602679,1.005441 -0.29519,1.532101l4.919828,8.29489c0.307489,0.51469 0.947067,0.730142 1.500548,0.51469l6.125186,-2.405877c1.266856,0.945594 2.656707,1.747553 4.157255,2.357999l0.922468,6.343855c0.098397,0.562568 0.602679,1.005441 1.217657,1.005441l9.839656,0c0.614979,0 1.119261,-0.442873 1.217657,-1.005441l0.922468,-6.343855c1.500548,-0.610446 2.890399,-1.400436 4.157255,-2.357999l6.125186,2.405877c0.553481,0.203482 1.193058,0 1.500548,-0.51469l4.919828,-8.29489c0.307489,-0.51469 0.172194,-1.161045 -0.29519,-1.532101l-5.190419,-3.961917zm-18.277162,6.044617c-4.759934,0 -8.609699,-3.746465 -8.609699,-8.378677s3.849766,-8.378677 8.609699,-8.378677s8.609699,3.746465 8.609699,8.378677s-3.849766,8.378677 -8.609699,8.378677z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 18 18"> <g fill-rule="evenodd" stroke="none" stroke-width="1"> <g transform="translate(-381.000000, -381.000000)"> <g transform="translate(381.000000, 381.000000)"> <path d="M0,2 L2,2 L2,0 C0.9,0 0,0.9 0,2 L0,2 Z M0,10 L2,10 L2,8 L0,8 L0,10 L0,10 Z M4,18 L6,18 L6,16 L4,16 L4,18 L4,18 Z M0,6 L2,6 L2,4 L0,4 L0,6 L0,6 Z M10,0 L8,0 L8,2 L10,2 L10,0 L10,0 Z M16,0 L16,2 L18,2 C18,0.9 17.1,0 16,0 L16,0 Z M2,18 L2,16 L0,16 C0,17.1 0.9,18 2,18 L2,18 Z M0,14 L2,14 L2,12 L0,12 L0,14 L0,14 Z M6,0 L4,0 L4,2 L6,2 L6,0 L6,0 Z M8,18 L10,18 L10,16 L8,16 L8,18 L8,18 Z M16,10 L18,10 L18,8 L16,8 L16,10 L16,10 Z M16,18 C17.1,18 18,17.1 18,16 L16,16 L16,18 L16,18 Z M16,6 L18,6 L18,4 L16,4 L16,6 L16,6 Z M16,14 L18,14 L18,12 L16,12 L16,14 L16,14 Z M12,18 L14,18 L14,16 L12,16 L12,18 L12,18 Z M12,2 L14,2 L14,0 L12,0 L12,2 L12,2 Z M4,14 L14,14 L14,4 L4,4 L4,14 L4,14 Z M6,6 L12,6 L12,12 L6,12 L6,6 L6,6 Z"/> </g> </g> </g> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M896 960v448q0 26-19 45t-45 19-45-19l-144-144-332 332q-10 10-23 10t-23-10l-114-114q-10-10-10-23t10-23l332-332-144-144q-19-19-19-45t19-45 45-19h448q26 0 45 19t19 45zm755-672q0 13-10 23l-332 332 144 144q19 19 19 45t-19 45-45 19h-448q-26 0-45-19t-19-45v-448q0-26 19-45t45-19 45 19l144 144 332-332q10-10 23-10t23 10l114 114q10 10 10 23z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M553 1399l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23t-10 23l-393 393 393 393q10 10 10 23t-10 23zm591-1067l-373 1291q-4 13-15.5 19.5t-23.5 2.5l-62-17q-13-4-19.5-15.5t-2.5-24.5l373-1291q4-13 15.5-19.5t23.5-2.5l62 17q13 4 19.5 15.5t2.5 24.5zm657 651l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23t-10 23z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 48 48"> <path d="M6 42h4v-4h-4v4zm4-28h-4v4h4v-4zm-4 20h4v-4h-4v4zm8 8h4v-4h-4v4zm-4-36h-4v4h4v-4zm8 0h-4v4h4v-4zm16 0h-4v4h4v-4zm-8 8h-4v4h4v-4zm0-8h-4v4h4v-4zm12 28h4v-4h-4v4zm-16 8h4v-4h-4v4zm-16-16h36v-4h-36v4zm32-20v4h4v-4h-4zm0 12h4v-4h-4v4zm-16 16h4v-4h-4v4zm8 8h4v-4h-4v4zm8 0h4v-4h-4v4z"/> <path d="M0 0h48v48h-48z" fill="none"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 48 48"> <path d="M6 18h4v-4h-4v4zm0-8h4v-4h-4v4zm8 32h4v-4h-4v4zm0-16h4v-4h-4v4zm-8 0h4v-4h-4v4zm0 16h4v-4h-4v4zm0-8h4v-4h-4v4zm8-24h4v-4h-4v4zm24 24h4v-4h-4v4zm-16 8h4v-36h-4v36zm16 0h4v-4h-4v4zm0-16h4v-4h-4v4zm0-20v4h4v-4h-4zm0 12h4v-4h-4v4zm-8-8h4v-4h-4v4zm0 32h4v-4h-4v4zm0-16h4v-4h-4v4z"/> <path d="M0 0h48v48h-48z" fill="none"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1760 896q14 0 23 9t9 23v64q0 14-9 23t-23 9h-1728q-14 0-23-9t-9-23v-64q0-14 9-23t23-9h1728zm-1277-64q-28-35-51-80-48-97-48-188 0-181 134-309 133-127 393-127 50 0 167 19 66 12 177 48 10 38 21 118 14 123 14 183 0 18-5 45l-12 3-84-6-14-2q-50-149-103-205-88-91-210-91-114 0-182 59-67 58-67 146 0 73 66 140t279 129q69 20 173 66 58 28 95 52h-743zm507 256h411q7 39 7 92 0 111-41 212-23 55-71 104-37 35-109 81-80 48-153 66-80 21-203 21-114 0-195-23l-140-40q-57-16-72-28-8-8-8-22v-13q0-108-2-156-1-30 0-68l2-37v-44l102-2q15 34 30 71t22.5 56 12.5 27q35 57 80 94 43 36 105 57 59 22 132 22 64 0 139-27 77-26 122-86 47-61 47-129 0-84-81-157-34-29-137-71z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1025 1369v167h-248l-159-252-24-42q-8-9-11-21h-3l-9 21q-10 20-25 44l-155 250h-258v-167h128l197-291-185-272h-137v-168h276l139 228q2 4 23 42 8 9 11 21h3q3-9 11-21l25-42 140-228h257v168h-125l-184 267 204 296h109zm639 217v206h-514l-4-27q-3-45-3-46 0-64 26-117t65-86.5 84-65 84-54.5 65-54 26-64q0-38-29.5-62.5t-70.5-24.5q-51 0-97 39-14 11-36 38l-105-92q26-37 63-66 80-65 188-65 110 0 178 59.5t68 158.5q0 66-34.5 118.5t-84 86-99.5 62.5-87 63-41 73h232v-80h126z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1025 1369v167h-248l-159-252-24-42q-8-9-11-21h-3l-9 21q-10 20-25 44l-155 250h-258v-167h128l197-291-185-272h-137v-168h276l139 228q2 4 23 42 8 9 11 21h3q3-9 11-21l25-42 140-228h257v168h-125l-184 267 204 296h109zm637-679v206h-514l-3-27q-4-28-4-46 0-64 26-117t65-86.5 84-65 84-54.5 65-54 26-64q0-38-29.5-62.5t-70.5-24.5q-51 0-97 39-14 11-36 38l-105-92q26-37 63-66 83-65 188-65 110 0 178 59.5t68 158.5q0 56-24.5 103t-62 76.5-81.5 58.5-82 50.5-65.5 51.5-30.5 63h232v-80h126z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M576 1376v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm0-384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm-512-768v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm-512-768v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm0-384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm128-320v1088q0 66-47 113t-113 47h-1344q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1344q66 0 113 47t47 113z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M512 1248v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm0-512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm640 512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm-640-1024v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm640 512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm640 512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm-640-1024v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm640 512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm0-512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M512 1248v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm0-512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm1280 512v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68zm-1280-1024v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm1280 512v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68zm0-512v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path stroke-width="0" d="M384 1408q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm0-512q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zm-1408-928q0 80-56 136t-136 56-136-56-56-136 56-136 136-56 136 56 56 136zm1408 416v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5zm0-512v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M176 223q-37-2-45-4l-3-88q13-1 40-1 60 0 112 4 132 7 166 7 86 0 168-3 116-4 146-5 56 0 86-2l-1 14 2 64v9q-60 9-124 9-60 0-79 25-13 14-13 132 0 13 .5 32.5t.5 25.5l1 229 14 280q6 124 51 202 35 59 96 92 88 47 177 47 104 0 191-28 56-18 99-51 48-36 65-64 36-56 53-114 21-73 21-229 0-79-3.5-128t-11-122.5-13.5-159.5l-4-59q-5-67-24-88-34-35-77-34l-100 2-14-3 2-86h84l205 10q76 3 196-10l18 2q6 38 6 51 0 7-4 31-45 12-84 13-73 11-79 17-15 15-15 41 0 7 1.5 27t1.5 31q8 19 22 396 6 195-15 304-15 76-41 122-38 65-112 123-75 57-182 89-109 33-255 33-167 0-284-46-119-47-179-122-61-76-83-195-16-80-16-237v-333q0-188-17-213-25-36-147-39zm1488 1409v-64q0-14-9-23t-23-9h-1472q-14 0-23 9t-9 23v64q0 14 9 23t23 9h1472q14 0 23-9t9-23z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1664 896q0 156-61 298t-164 245-245 164-298 61q-172 0-327-72.5t-264-204.5q-7-10-6.5-22.5t8.5-20.5l137-138q10-9 25-9 16 2 23 12 73 95 179 147t225 52q104 0 198.5-40.5t163.5-109.5 109.5-163.5 40.5-198.5-40.5-198.5-109.5-163.5-163.5-109.5-198.5-40.5q-98 0-188 35.5t-160 101.5l137 138q31 30 14 69-17 40-59 40h-448q-26 0-45-19t-19-45v-448q0-42 40-59 39-17 69 14l130 129q107-101 244.5-156.5t284.5-55.5q156 0 298 61t245 164 164 245 61 298z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M503 1271l-256 256q-10 9-23 9-12 0-23-9-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23zm169 41v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zm-224-224q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zm1264 128q0 120-85 203l-147 146q-83 83-203 83-121 0-204-85l-334-335q-21-21-42-56l239-18 273 274q27 27 68 27.5t68-26.5l147-146q28-28 28-67 0-40-28-68l-274-275 18-239q35 21 56 42l336 336q84 86 84 204zm-617-724l-239 18-273-274q-28-28-68-28-39 0-68 27l-147 146q-28 28-28 67 0 40 28 68l274 274-18 240q-35-21-56-42l-336-336q-84-86-84-204 0-120 85-203l147-146q83-83 203-83 121 0 204 85l334 335q21 21 42 56zm633 84q0 14-9 23t-23 9h-320q-14 0-23-9t-9-23 9-23 23-9h320q14 0 23 9t9 23zm-544-544v320q0 14-9 23t-23 9-23-9-9-23v-320q0-14 9-23t23-9 23 9 9 23zm407 151l-256 256q-11 9-23 9t-23-9q-9-10-9-23t9-23l256-256q10-9 23-9t23 9q9 10 9 23t-9 23z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1728 576v256q0 26-19 45t-45 19h-64q-26 0-45-19t-19-45v-256q0-106-75-181t-181-75-181 75-75 181v192h96q40 0 68 28t28 68v576q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-576q0-40 28-68t68-28h672v-192q0-185 131.5-316.5t316.5-131.5 316.5 131.5 131.5 316.5z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1639 1056q0 5-1 7-64 268-268 434.5t-478 166.5q-146 0-282.5-55t-243.5-157l-129 129q-19 19-45 19t-45-19-19-45v-448q0-26 19-45t45-19h448q26 0 45 19t19 45-19 45l-137 137q71 66 161 102t187 36q134 0 250-65t186-179q11-17 53-117 8-23 30-23h192q13 0 22.5 9.5t9.5 22.5zm25-800v448q0 26-19 45t-45 19h-448q-26 0-45-19t-19-45 19-45l138-138q-148-137-349-137-134 0-250 65t-186 179q-11 17-53 117-8 23-30 23h-199q-13 0-22.5-9.5t-9.5-22.5v-7q65-268 270-434.5t480-166.5q146 0 284 55.5t245 156.5l130-129q19-19 45-19t45 19 19 45z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1344 1472q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zm256 0q0-26-19-45t-45-19-45 19-19 45 19 45 45 19 45-19 19-45zm128-224v320q0 40-28 68t-68 28h-1472q-40 0-68-28t-28-68v-320q0-40 28-68t68-28h427q21 56 70.5 92t110.5 36h256q61 0 110.5-36t70.5-92h427q40 0 68 28t28 68zm-325-648q-17 40-59 40h-256v448q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-448h-256q-42 0-59-40-17-39 14-69l448-448q18-19 45-19t45 19l448 448q31 30 14 69z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1216 320q0 26-19 45t-45 19h-128v1024h128q26 0 45 19t19 45-19 45l-256 256q-19 19-45 19t-45-19l-256-256q-19-19-19-45t19-45 45-19h128v-1024h-128q-26 0-45-19t-19-45 19-45l256-256q19-19 45-19t45 19l256 256q19 19 19 45z"/> </svg>';},function(e){e.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 1792 1792"> <path d="M1792 352v1088q0 42-39 59-13 5-25 5-27 0-45-19l-403-403v166q0 119-84.5 203.5t-203.5 84.5h-704q-119 0-203.5-84.5t-84.5-203.5v-704q0-119 84.5-203.5t203.5-84.5h704q119 0 203.5 84.5t84.5 203.5v165l403-402q18-19 45-19 12 0 25 5 39 17 39 59z"/> </svg>';}],t={};function o(r){var n=t[r];if(void 0!==n)return n.exports;var i=t[r]={exports:{}};return e[r].call(i.exports,i,i.exports,o),i.exports;}o.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")();}catch(e){if("object"==typeof window)return window;}}(),o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0});};var r={};return function(){"use strict";var e=r;Object.defineProperty(e,"__esModule",{value:!0}),e.Jodit=void 0,o(1),"undefined"!=typeof window&&o(2);var t=o(144);Object.defineProperty(e,"Jodit",{enumerable:!0,get:function(){return t.Jodit;}});var n=o(410),i=o(231),a=o(147),s=o(148),l=o(430),c=o(612);Object.keys(a).forEach(function(e){t.Jodit[e]=a[e];});var u=function(e){return"__esModule"!==e;};Object.keys(c).filter(u).forEach(function(e){s.Icon.set(e.replace("_","-"),c[e]);}),Object.keys(s).filter(u).forEach(function(e){t.Jodit.modules[e]=s[e];}),Object.keys(i).filter(u).forEach(function(e){t.Jodit.decorators[e]=i[e];}),["Confirm","Alert","Prompt"].forEach(function(e){t.Jodit[e]=s[e];}),Object.keys(l).filter(u).forEach(function(e){t.Jodit.plugins.add(e,l[e]);}),Object.keys(n.default).filter(u).forEach(function(e){t.Jodit.lang[e]=n.default[e];});}(),r;}();});

/***/ }),

/***/ 89:
/***/ (function(__unused_webpack_module, exports) {

"use strict";
var __webpack_unused_export__;


__webpack_unused_export__ = ({
  value: true
}); // runtime helper for setting properties on components
// in a tree-shakable way

exports.Z = (sfc, props) => {
  const target = sfc.__vccOpts || sfc;

  for (const [key, val] of props) {
    target[key] = val;
  }

  return target;
};

/***/ })

/******/ 	});
/************************************************************************/
/******/ 	// The module cache
/******/ 	var __webpack_module_cache__ = {};
/******/ 	
/******/ 	// The require function
/******/ 	function __webpack_require__(moduleId) {
/******/ 		// Check if module is in cache
/******/ 		var cachedModule = __webpack_module_cache__[moduleId];
/******/ 		if (cachedModule !== undefined) {
/******/ 			return cachedModule.exports;
/******/ 		}
/******/ 		// Create a new module (and put it into the cache)
/******/ 		var module = __webpack_module_cache__[moduleId] = {
/******/ 			// no module.id needed
/******/ 			// no module.loaded needed
/******/ 			exports: {}
/******/ 		};
/******/ 	
/******/ 		// Execute the module function
/******/ 		__webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/ 	
/******/ 		// Return the exports of the module
/******/ 		return module.exports;
/******/ 	}
/******/ 	
/************************************************************************/
/******/ 	/* webpack/runtime/define property getters */
/******/ 	!function() {
/******/ 		// define getter functions for harmony exports
/******/ 		__webpack_require__.d = function(exports, definition) {
/******/ 			for(var key in definition) {
/******/ 				if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ 					Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ 				}
/******/ 			}
/******/ 		};
/******/ 	}();
/******/ 	
/******/ 	/* webpack/runtime/global */
/******/ 	!function() {
/******/ 		__webpack_require__.g = (function() {
/******/ 			if (typeof globalThis === 'object') return globalThis;
/******/ 			try {
/******/ 				return this || new Function('return this')();
/******/ 			} catch (e) {
/******/ 				if (typeof window === 'object') return window;
/******/ 			}
/******/ 		})();
/******/ 	}();
/******/ 	
/******/ 	/* webpack/runtime/hasOwnProperty shorthand */
/******/ 	!function() {
/******/ 		__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
/******/ 	}();
/******/ 	
/******/ 	/* webpack/runtime/make namespace object */
/******/ 	!function() {
/******/ 		// define __esModule on exports
/******/ 		__webpack_require__.r = function(exports) {
/******/ 			if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ 				Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ 			}
/******/ 			Object.defineProperty(exports, '__esModule', { value: true });
/******/ 		};
/******/ 	}();
/******/ 	
/******/ 	/* webpack/runtime/publicPath */
/******/ 	!function() {
/******/ 		__webpack_require__.p = "";
/******/ 	}();
/******/ 	
/************************************************************************/
var __webpack_exports__ = {};
// This entry need to be wrapped in an IIFE because it need to be in strict mode.
!function() {
"use strict";
// ESM COMPAT FLAG
__webpack_require__.r(__webpack_exports__);

// EXPORTS
__webpack_require__.d(__webpack_exports__, {
  "Jodit": function() { return /* reexport */ jodit_min.Jodit; },
  "JoditEditor": function() { return /* reexport */ JoditEditor; },
  "default": function() { return /* binding */ entry_lib; }
});

;// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
/* eslint-disable no-var */
// This file is imported into lib/wc client bundles.

if (typeof window !== 'undefined') {
  var currentScript = window.document.currentScript
  if (false) { var getCurrentScript; }

  var src = currentScript && currentScript.src.match(/(.+\/)[^/]+\.js(\?.*)?$/)
  if (src) {
    __webpack_require__.p = src[1] // eslint-disable-line
  }
}

// Indicate to webpack that this file can be concatenated
/* harmony default export */ var setPublicPath = (null);

;// CONCATENATED MODULE: external {"commonjs":"vue","commonjs2":"vue","root":"Vue"}
var external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject = require("vue");
;// CONCATENATED MODULE: ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!./node_modules/vue-loader/dist/templateLoader.js??ruleSet[1].rules[4]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/JoditEditor.vue?vue&type=template&id=2aaf888a&ts=true

const _hoisted_1 = {
  ref: "editorTab"
};
function render(_ctx, _cache, $props, $setup, $data, $options) {
  return (0,external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject.openBlock)(), (0,external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject.createElementBlock)("textarea", _hoisted_1, null, 512);
}
;// CONCATENATED MODULE: ./src/components/JoditEditor.vue?vue&type=template&id=2aaf888a&ts=true

// EXTERNAL MODULE: ./node_modules/jodit/build/jodit.min.js
var jodit_min = __webpack_require__(1918);
;// CONCATENATED MODULE: ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/components/JoditEditor.vue?vue&type=script&lang=ts

 // import { MODE_WYSIWYG } from 'jodit/types/core/constants'


/* harmony default export */ var JoditEditorvue_type_script_lang_ts = ((0,external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject.defineComponent)({
  name: 'Jodit-Ts-Vue3',
  emits: ['update:modelValue'],
  props: {
    modelValue: {
      type: String,
      required: false
    },
    editorOptions: {
      type: Object,
      required: false,
      default: () => {
        return {
          language: navigator.language?.replace('-', '_')?.toLocaleLowerCase() ?? "auto",
          // sourceEditorCDNUrlsJS: ['https://cdnjs.cloudflare.com/ajax/libs/ace/1.4.12/ace.js'],
          // beautifyHTMLCDNUrlsJS: [
          //     'https://cdnjs.cloudflare.com/ajax/libs/js-beautify/1.13.0/beautify.min.js',
          //     'https://cdnjs.cloudflare.com/ajax/libs/js-beautify/1.13.0/beautify-html.min.js'
          // ],
          // uploader: {
          //     insertImageAsBase64URI: true,
          //     // url: 'http://localhost:8181/index-test.php?action=fileUpload',
          //     // format: 'json',
          //     // headers: {
          //     //     'X-CSRF-Token': 'token'
          //     // }
          //     // url: "http://192.168.2.26:8000/confknowledge/addZyFile"
          //     url: "http://192.168.2.26:8000/confknowledge/addZyFile",
          //     imagesExtensions: [
          //         "jpg",
          //         "png",
          //         "jpeg",
          //         "gif"
          //     ],
          //     //headers: {"token":`${db.token}`},
          //     // filesVariableName: 'files',
          //     filesVariableName: function (t) { return "files[" + t + "]" },
          //     // withCredentials: false,
          //     // pathVariableName: "path",
          //     // format: "json",
          //     // method: "POST",
          //     prepareData: function (formdata) {
          //         console.log(formdata)
          //         let file = formdata.getAll("files[0]")[0];
          //         //formdata.append("createTime", (Date.now() / 1000) | 0);
          //         formdata.append("file", file);
          //         return formdata;
          //     },
          //     isSuccess: function (e) {
          //         // console.log("shuju"+e.data);
          //         return e.data;
          //     },
          //     getMessage: function (e) {
          //         return void 0 !== e.data.messages && Array.isArray(e.data.messages) ? e.data.messages.join("") : ""
          //     },
          //     process: function (resp) {
          //         var ss = this;
          //         console.log(resp);
          //         var arrfile = [];
          //         //arrfile.push(resp.data);
          //         arrfile.unshift(resp.data);
          //         this.path = arrfile[0];
          //         return {
          //             file: arrfile, //[this.options.uploader.filesVariableName] || [],
          //             path: arrfile[0],
          //             baseurl: '',
          //             error: resp.msg,
          //             msg: resp.msg,
          //             isImages: arrfile[0]
          //         };
          //         //return resp.data;
          //     },
          //     // error: function (e) {
          //     //     // this.jodit.events.fire("errorMessage", e.message, "error", 4e3)
          //     // },
          //     defaultHandlerSuccess: function (data, resp) {
          //         this.s.insertImage(data.baseurl + data['isImages']);
          //         // console.log(data,resp)
          //         // var i, field = 'files';
          //         //     for (i = 0; i < data[file].length; i += 1) {
          //         //         this.s.insertImage(data.baseurl + data[file][i]);
          //         //     }
          //     },
          //     defaultHandlerError: function (e) {
          //         this.jodit.events.fire("errorMessage", e.message)
          //     },
          //     // contentType: function (e) {
          //     //     return (void 0 === this.jodit.ownerWindow.FormData || "string" == typeof e) &&
          //     //         "application/x-www-form-urlencoded; charset=UTF-8"
          //     // }
          // },
          // filebrowser: {
          //     // saveStateInStorage: false,
          //     saveStateInStorage: {
          //         storeLastOpenedFolder: false
          //     },
          //     ajax: {
          //         url: 'http://localhost:8181/index-test.php'
          //     },
          //     uploader: {
          //         url: 'uploader.php',
          //         format: 'json',
          //         filesVariableName: 'fils'
          //         //... all options from [uploader](http://xdsoft.net/jodit/doc/Jodit.defaultOptions.html#uploader)
          //     }
          // },
          // height: 200,
          // theme: 'dark',//summer
          // textIcons: false,
          // iframe: false,
          // iframeStyle: '*,.jodit_wysiwyg {color:red;}',
          // height: 'auto',
          // minHeight: 400,
          // maxHeight: 600,
          defaultMode: 'MODE_SOURCE' //MODE_WYSIWYG、MODE_SOURCE
          // imageDefaultWidth: '100%',
          // observer: {
          //     timeout: 100
          // },
          // commandToHotkeys: {
          //     'openreplacedialog': 'ctrl+p'
          // },

        };
      }
    }
  },

  setup(props, ctx) {
    let editorTab = (0,external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject.ref)();
    let editor = null;
    const editorConfig = (0,external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject.computed)(() => {
      const config = { ...props.editorOptions
      };
      return config;
    });
    (0,external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject.onMounted)(() => {
      editor = jodit_min.Jodit.make(editorTab.value, editorConfig.value);
      editor.value = props.modelValue ?? "";
      editor.events.on('change', newValue => ctx.emit('update:modelValue', newValue));
    });
    (0,external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject.onBeforeUnmount)(() => {
      editor?.destruct();
    });
    return {
      editorTab
    };
  }

}));
;// CONCATENATED MODULE: ./src/components/JoditEditor.vue?vue&type=script&lang=ts
 
// EXTERNAL MODULE: ./node_modules/vue-loader/dist/exportHelper.js
var exportHelper = __webpack_require__(89);
;// CONCATENATED MODULE: ./src/components/JoditEditor.vue




;
const __exports__ = /*#__PURE__*/(0,exportHelper/* default */.Z)(JoditEditorvue_type_script_lang_ts, [['render',render]])

/* harmony default export */ var JoditEditor = (__exports__);
;// CONCATENATED MODULE: ./src/components/editor.ts

/* harmony default export */ var editor = ({
  install: app => {
    app.component('jodit-editor', JoditEditor);
  }
});


;// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js


/* harmony default export */ var entry_lib = (editor);


}();
module.exports = __webpack_exports__;
/******/ })()
;
//# sourceMappingURL=jodit-ts-vue3.common.js.map