tp-react-elements-dev 1.6.9 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Form/FormConstants.d.ts +1 -5
- package/dist/components/Form/FormRender.d.ts +3 -11
- package/dist/components/RichTextEditor/RichTextEditor.d.ts +5 -0
- package/dist/index.css +1 -1
- package/dist/index.esm.css +1 -1
- package/dist/index.esm.js +330 -785
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +330 -785
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
package/dist/index.esm.js
CHANGED
|
@@ -8337,7 +8337,7 @@ var getDisplayName = /*#__PURE__*/Object.freeze({
|
|
|
8337
8337
|
|
|
8338
8338
|
var require$$6 = /*@__PURE__*/getAugmentedNamespace(getDisplayName);
|
|
8339
8339
|
|
|
8340
|
-
const _excluded$
|
|
8340
|
+
const _excluded$1m = ["values", "unit", "step"];
|
|
8341
8341
|
const sortBreakpointsValues = values => {
|
|
8342
8342
|
const breakpointsAsArray = Object.keys(values).map(key => ({
|
|
8343
8343
|
key,
|
|
@@ -8371,7 +8371,7 @@ function createBreakpoints(breakpoints) {
|
|
|
8371
8371
|
unit = 'px',
|
|
8372
8372
|
step = 5
|
|
8373
8373
|
} = breakpoints,
|
|
8374
|
-
other = _objectWithoutPropertiesLoose(breakpoints, _excluded$
|
|
8374
|
+
other = _objectWithoutPropertiesLoose(breakpoints, _excluded$1m);
|
|
8375
8375
|
const sortedValues = sortBreakpointsValues(values);
|
|
8376
8376
|
const keys = Object.keys(sortedValues);
|
|
8377
8377
|
function up(key) {
|
|
@@ -8494,11 +8494,6 @@ function removeUnusedBreakpoints(breakpointKeys, style) {
|
|
|
8494
8494
|
return acc;
|
|
8495
8495
|
}, style);
|
|
8496
8496
|
}
|
|
8497
|
-
function mergeBreakpointsInOrder(breakpointsInput, ...styles) {
|
|
8498
|
-
const emptyBreakpoints = createEmptyBreakpointObject(breakpointsInput);
|
|
8499
|
-
const mergedOutput = [emptyBreakpoints, ...styles].reduce((prev, next) => deepmerge$1(prev, next), {});
|
|
8500
|
-
return removeUnusedBreakpoints(Object.keys(emptyBreakpoints), mergedOutput);
|
|
8501
|
-
}
|
|
8502
8497
|
|
|
8503
8498
|
// compute base for responsive values; e.g.,
|
|
8504
8499
|
// [1,2,3] => {xs: true, sm: true, md: true}
|
|
@@ -8583,7 +8578,7 @@ function getStyleValue$1(themeMapping, transform, propValueFinal, userValue = pr
|
|
|
8583
8578
|
}
|
|
8584
8579
|
return value;
|
|
8585
8580
|
}
|
|
8586
|
-
function style$
|
|
8581
|
+
function style$2(options) {
|
|
8587
8582
|
const {
|
|
8588
8583
|
prop,
|
|
8589
8584
|
cssProperty = options.prop,
|
|
@@ -8744,12 +8739,12 @@ function resolveCssProperty(props, keys, prop, transformer) {
|
|
|
8744
8739
|
const propValue = props[prop];
|
|
8745
8740
|
return handleBreakpoints(props, propValue, styleFromPropValue);
|
|
8746
8741
|
}
|
|
8747
|
-
function style$
|
|
8742
|
+
function style$1(props, keys) {
|
|
8748
8743
|
const transformer = createUnarySpacing(props.theme);
|
|
8749
8744
|
return Object.keys(props).map(prop => resolveCssProperty(props, keys, prop, transformer)).reduce(merge, {});
|
|
8750
8745
|
}
|
|
8751
8746
|
function margin(props) {
|
|
8752
|
-
return style$
|
|
8747
|
+
return style$1(props, marginKeys);
|
|
8753
8748
|
}
|
|
8754
8749
|
margin.propTypes = process.env.NODE_ENV !== 'production' ? marginKeys.reduce((obj, key) => {
|
|
8755
8750
|
obj[key] = responsivePropType;
|
|
@@ -8757,7 +8752,7 @@ margin.propTypes = process.env.NODE_ENV !== 'production' ? marginKeys.reduce((ob
|
|
|
8757
8752
|
}, {}) : {};
|
|
8758
8753
|
margin.filterProps = marginKeys;
|
|
8759
8754
|
function padding(props) {
|
|
8760
|
-
return style$
|
|
8755
|
+
return style$1(props, paddingKeys);
|
|
8761
8756
|
}
|
|
8762
8757
|
padding.propTypes = process.env.NODE_ENV !== 'production' ? paddingKeys.reduce((obj, key) => {
|
|
8763
8758
|
obj[key] = responsivePropType;
|
|
@@ -8830,7 +8825,7 @@ function borderTransform(value) {
|
|
|
8830
8825
|
return `${value}px solid`;
|
|
8831
8826
|
}
|
|
8832
8827
|
function createBorderStyle(prop, transform) {
|
|
8833
|
-
return style$
|
|
8828
|
+
return style$2({
|
|
8834
8829
|
prop,
|
|
8835
8830
|
themeKey: 'borders',
|
|
8836
8831
|
transform
|
|
@@ -8917,31 +8912,31 @@ rowGap.propTypes = process.env.NODE_ENV !== 'production' ? {
|
|
|
8917
8912
|
rowGap: responsivePropType
|
|
8918
8913
|
} : {};
|
|
8919
8914
|
rowGap.filterProps = ['rowGap'];
|
|
8920
|
-
const gridColumn = style$
|
|
8915
|
+
const gridColumn = style$2({
|
|
8921
8916
|
prop: 'gridColumn'
|
|
8922
8917
|
});
|
|
8923
|
-
const gridRow = style$
|
|
8918
|
+
const gridRow = style$2({
|
|
8924
8919
|
prop: 'gridRow'
|
|
8925
8920
|
});
|
|
8926
|
-
const gridAutoFlow = style$
|
|
8921
|
+
const gridAutoFlow = style$2({
|
|
8927
8922
|
prop: 'gridAutoFlow'
|
|
8928
8923
|
});
|
|
8929
|
-
const gridAutoColumns = style$
|
|
8924
|
+
const gridAutoColumns = style$2({
|
|
8930
8925
|
prop: 'gridAutoColumns'
|
|
8931
8926
|
});
|
|
8932
|
-
const gridAutoRows = style$
|
|
8927
|
+
const gridAutoRows = style$2({
|
|
8933
8928
|
prop: 'gridAutoRows'
|
|
8934
8929
|
});
|
|
8935
|
-
const gridTemplateColumns = style$
|
|
8930
|
+
const gridTemplateColumns = style$2({
|
|
8936
8931
|
prop: 'gridTemplateColumns'
|
|
8937
8932
|
});
|
|
8938
|
-
const gridTemplateRows = style$
|
|
8933
|
+
const gridTemplateRows = style$2({
|
|
8939
8934
|
prop: 'gridTemplateRows'
|
|
8940
8935
|
});
|
|
8941
|
-
const gridTemplateAreas = style$
|
|
8936
|
+
const gridTemplateAreas = style$2({
|
|
8942
8937
|
prop: 'gridTemplateAreas'
|
|
8943
8938
|
});
|
|
8944
|
-
const gridArea = style$
|
|
8939
|
+
const gridArea = style$2({
|
|
8945
8940
|
prop: 'gridArea'
|
|
8946
8941
|
});
|
|
8947
8942
|
compose(gap, columnGap, rowGap, gridColumn, gridRow, gridAutoFlow, gridAutoColumns, gridAutoRows, gridTemplateColumns, gridTemplateRows, gridTemplateAreas, gridArea);
|
|
@@ -8952,18 +8947,18 @@ function paletteTransform(value, userValue) {
|
|
|
8952
8947
|
}
|
|
8953
8948
|
return value;
|
|
8954
8949
|
}
|
|
8955
|
-
const color = style$
|
|
8950
|
+
const color = style$2({
|
|
8956
8951
|
prop: 'color',
|
|
8957
8952
|
themeKey: 'palette',
|
|
8958
8953
|
transform: paletteTransform
|
|
8959
8954
|
});
|
|
8960
|
-
const bgcolor = style$
|
|
8955
|
+
const bgcolor = style$2({
|
|
8961
8956
|
prop: 'bgcolor',
|
|
8962
8957
|
cssProperty: 'backgroundColor',
|
|
8963
8958
|
themeKey: 'palette',
|
|
8964
8959
|
transform: paletteTransform
|
|
8965
8960
|
});
|
|
8966
|
-
const backgroundColor = style$
|
|
8961
|
+
const backgroundColor = style$2({
|
|
8967
8962
|
prop: 'backgroundColor',
|
|
8968
8963
|
themeKey: 'palette',
|
|
8969
8964
|
transform: paletteTransform
|
|
@@ -8973,7 +8968,7 @@ compose(color, bgcolor, backgroundColor);
|
|
|
8973
8968
|
function sizingTransform(value) {
|
|
8974
8969
|
return value <= 1 && value !== 0 ? `${value * 100}%` : value;
|
|
8975
8970
|
}
|
|
8976
|
-
const width = style$
|
|
8971
|
+
const width = style$2({
|
|
8977
8972
|
prop: 'width',
|
|
8978
8973
|
transform: sizingTransform
|
|
8979
8974
|
});
|
|
@@ -9001,33 +8996,33 @@ const maxWidth = props => {
|
|
|
9001
8996
|
return null;
|
|
9002
8997
|
};
|
|
9003
8998
|
maxWidth.filterProps = ['maxWidth'];
|
|
9004
|
-
const minWidth = style$
|
|
8999
|
+
const minWidth = style$2({
|
|
9005
9000
|
prop: 'minWidth',
|
|
9006
9001
|
transform: sizingTransform
|
|
9007
9002
|
});
|
|
9008
|
-
const height = style$
|
|
9003
|
+
const height = style$2({
|
|
9009
9004
|
prop: 'height',
|
|
9010
9005
|
transform: sizingTransform
|
|
9011
9006
|
});
|
|
9012
|
-
const maxHeight = style$
|
|
9007
|
+
const maxHeight = style$2({
|
|
9013
9008
|
prop: 'maxHeight',
|
|
9014
9009
|
transform: sizingTransform
|
|
9015
9010
|
});
|
|
9016
|
-
const minHeight = style$
|
|
9011
|
+
const minHeight = style$2({
|
|
9017
9012
|
prop: 'minHeight',
|
|
9018
9013
|
transform: sizingTransform
|
|
9019
9014
|
});
|
|
9020
|
-
style$
|
|
9015
|
+
style$2({
|
|
9021
9016
|
prop: 'size',
|
|
9022
9017
|
cssProperty: 'width',
|
|
9023
9018
|
transform: sizingTransform
|
|
9024
9019
|
});
|
|
9025
|
-
style$
|
|
9020
|
+
style$2({
|
|
9026
9021
|
prop: 'size',
|
|
9027
9022
|
cssProperty: 'height',
|
|
9028
9023
|
transform: sizingTransform
|
|
9029
9024
|
});
|
|
9030
|
-
const boxSizing = style$
|
|
9025
|
+
const boxSizing = style$2({
|
|
9031
9026
|
prop: 'boxSizing'
|
|
9032
9027
|
});
|
|
9033
9028
|
compose(width, maxWidth, minWidth, height, maxHeight, minHeight, boxSizing);
|
|
@@ -9515,7 +9510,7 @@ function applyStyles$2(key, styles) {
|
|
|
9515
9510
|
return {};
|
|
9516
9511
|
}
|
|
9517
9512
|
|
|
9518
|
-
const _excluded$
|
|
9513
|
+
const _excluded$1l = ["breakpoints", "palette", "spacing", "shape"];
|
|
9519
9514
|
function createTheme$2(options = {}, ...args) {
|
|
9520
9515
|
const {
|
|
9521
9516
|
breakpoints: breakpointsInput = {},
|
|
@@ -9523,7 +9518,7 @@ function createTheme$2(options = {}, ...args) {
|
|
|
9523
9518
|
spacing: spacingInput,
|
|
9524
9519
|
shape: shapeInput = {}
|
|
9525
9520
|
} = options,
|
|
9526
|
-
other = _objectWithoutPropertiesLoose(options, _excluded$
|
|
9521
|
+
other = _objectWithoutPropertiesLoose(options, _excluded$1l);
|
|
9527
9522
|
const breakpoints = createBreakpoints(breakpointsInput);
|
|
9528
9523
|
const spacing = createSpacing(spacingInput);
|
|
9529
9524
|
let muiTheme = deepmerge$1({
|
|
@@ -9558,7 +9553,7 @@ var createTheme$1 = /*#__PURE__*/Object.freeze({
|
|
|
9558
9553
|
|
|
9559
9554
|
var require$$7 = /*@__PURE__*/getAugmentedNamespace(createTheme$1);
|
|
9560
9555
|
|
|
9561
|
-
const _excluded$
|
|
9556
|
+
const _excluded$1k = ["sx"];
|
|
9562
9557
|
const splitProps = props => {
|
|
9563
9558
|
var _props$theme$unstable, _props$theme;
|
|
9564
9559
|
const result = {
|
|
@@ -9579,7 +9574,7 @@ function extendSxProp(props) {
|
|
|
9579
9574
|
const {
|
|
9580
9575
|
sx: inSx
|
|
9581
9576
|
} = props,
|
|
9582
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
9577
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$1k);
|
|
9583
9578
|
const {
|
|
9584
9579
|
systemProps,
|
|
9585
9580
|
otherProps
|
|
@@ -9628,7 +9623,7 @@ var _capitalize = _interopRequireDefault$6(require$$5);
|
|
|
9628
9623
|
var _getDisplayName = _interopRequireDefault$6(require$$6);
|
|
9629
9624
|
var _createTheme = _interopRequireDefault$6(require$$7);
|
|
9630
9625
|
var _styleFunctionSx = _interopRequireDefault$6(require$$8);
|
|
9631
|
-
const _excluded$
|
|
9626
|
+
const _excluded$1j = ["ownerState"],
|
|
9632
9627
|
_excluded2$d = ["variants"],
|
|
9633
9628
|
_excluded3$6 = ["name", "slot", "skipVariantsResolver", "skipSx", "overridesResolver"];
|
|
9634
9629
|
/* eslint-disable no-underscore-dangle */
|
|
@@ -9675,7 +9670,7 @@ function processStyleArg$1(callableStyle, _ref) {
|
|
|
9675
9670
|
let {
|
|
9676
9671
|
ownerState
|
|
9677
9672
|
} = _ref,
|
|
9678
|
-
props = (0, _objectWithoutPropertiesLoose2.default)(_ref, _excluded$
|
|
9673
|
+
props = (0, _objectWithoutPropertiesLoose2.default)(_ref, _excluded$1j);
|
|
9679
9674
|
const resolvedStylesArg = typeof callableStyle === 'function' ? callableStyle((0, _extends2.default)({
|
|
9680
9675
|
ownerState
|
|
9681
9676
|
}, props)) : callableStyle;
|
|
@@ -10425,7 +10420,7 @@ const green = {
|
|
|
10425
10420
|
A700: '#00c853'
|
|
10426
10421
|
};
|
|
10427
10422
|
|
|
10428
|
-
const _excluded$
|
|
10423
|
+
const _excluded$1i = ["mode", "contrastThreshold", "tonalOffset"];
|
|
10429
10424
|
const light = {
|
|
10430
10425
|
// The colors used to style the text.
|
|
10431
10426
|
text: {
|
|
@@ -10594,7 +10589,7 @@ function createPalette(palette) {
|
|
|
10594
10589
|
contrastThreshold = 3,
|
|
10595
10590
|
tonalOffset = 0.2
|
|
10596
10591
|
} = palette,
|
|
10597
|
-
other = _objectWithoutPropertiesLoose(palette, _excluded$
|
|
10592
|
+
other = _objectWithoutPropertiesLoose(palette, _excluded$1i);
|
|
10598
10593
|
const primary = palette.primary || getDefaultPrimary(mode);
|
|
10599
10594
|
const secondary = palette.secondary || getDefaultSecondary(mode);
|
|
10600
10595
|
const error = palette.error || getDefaultError(mode);
|
|
@@ -10718,7 +10713,7 @@ const theme2 = createTheme({ palette: {
|
|
|
10718
10713
|
return paletteOutput;
|
|
10719
10714
|
}
|
|
10720
10715
|
|
|
10721
|
-
const _excluded$
|
|
10716
|
+
const _excluded$1h = ["fontFamily", "fontSize", "fontWeightLight", "fontWeightRegular", "fontWeightMedium", "fontWeightBold", "htmlFontSize", "allVariants", "pxToRem"];
|
|
10722
10717
|
function round$2(value) {
|
|
10723
10718
|
return Math.round(value * 1e5) / 1e5;
|
|
10724
10719
|
}
|
|
@@ -10749,7 +10744,7 @@ function createTypography(palette, typography) {
|
|
|
10749
10744
|
allVariants,
|
|
10750
10745
|
pxToRem: pxToRem2
|
|
10751
10746
|
} = _ref,
|
|
10752
|
-
other = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
10747
|
+
other = _objectWithoutPropertiesLoose(_ref, _excluded$1h);
|
|
10753
10748
|
if (process.env.NODE_ENV !== 'production') {
|
|
10754
10749
|
if (typeof fontSize !== 'number') {
|
|
10755
10750
|
console.error('MUI: `fontSize` is required to be a number.');
|
|
@@ -10816,7 +10811,7 @@ function createShadow(...px) {
|
|
|
10816
10811
|
// Values from https://github.com/material-components/material-components-web/blob/be8747f94574669cb5e7add1a7c54fa41a89cec7/packages/mdc-elevation/_variables.scss
|
|
10817
10812
|
const shadows = ['none', createShadow(0, 2, 1, -1, 0, 1, 1, 0, 0, 1, 3, 0), createShadow(0, 3, 1, -2, 0, 2, 2, 0, 0, 1, 5, 0), createShadow(0, 3, 3, -2, 0, 3, 4, 0, 0, 1, 8, 0), createShadow(0, 2, 4, -1, 0, 4, 5, 0, 0, 1, 10, 0), createShadow(0, 3, 5, -1, 0, 5, 8, 0, 0, 1, 14, 0), createShadow(0, 3, 5, -1, 0, 6, 10, 0, 0, 1, 18, 0), createShadow(0, 4, 5, -2, 0, 7, 10, 1, 0, 2, 16, 1), createShadow(0, 5, 5, -3, 0, 8, 10, 1, 0, 3, 14, 2), createShadow(0, 5, 6, -3, 0, 9, 12, 1, 0, 3, 16, 2), createShadow(0, 6, 6, -3, 0, 10, 14, 1, 0, 4, 18, 3), createShadow(0, 6, 7, -4, 0, 11, 15, 1, 0, 4, 20, 3), createShadow(0, 7, 8, -4, 0, 12, 17, 2, 0, 5, 22, 4), createShadow(0, 7, 8, -4, 0, 13, 19, 2, 0, 5, 24, 4), createShadow(0, 7, 9, -4, 0, 14, 21, 2, 0, 5, 26, 4), createShadow(0, 8, 9, -5, 0, 15, 22, 2, 0, 6, 28, 5), createShadow(0, 8, 10, -5, 0, 16, 24, 2, 0, 6, 30, 5), createShadow(0, 8, 11, -5, 0, 17, 26, 2, 0, 6, 32, 5), createShadow(0, 9, 11, -5, 0, 18, 28, 2, 0, 7, 34, 6), createShadow(0, 9, 12, -6, 0, 19, 29, 2, 0, 7, 36, 6), createShadow(0, 10, 13, -6, 0, 20, 31, 3, 0, 8, 38, 7), createShadow(0, 10, 13, -6, 0, 21, 33, 3, 0, 8, 40, 7), createShadow(0, 10, 14, -6, 0, 22, 35, 3, 0, 8, 42, 7), createShadow(0, 11, 14, -7, 0, 23, 36, 3, 0, 9, 44, 8), createShadow(0, 11, 15, -7, 0, 24, 38, 3, 0, 9, 46, 8)];
|
|
10818
10813
|
|
|
10819
|
-
const _excluded$
|
|
10814
|
+
const _excluded$1g = ["duration", "easing", "delay"];
|
|
10820
10815
|
// Follow https://material.google.com/motion/duration-easing.html#duration-easing-natural-easing-curves
|
|
10821
10816
|
// to learn the context in which each easing should be used.
|
|
10822
10817
|
const easing = {
|
|
@@ -10867,7 +10862,7 @@ function createTransitions(inputTransitions) {
|
|
|
10867
10862
|
easing: easingOption = mergedEasing.easeInOut,
|
|
10868
10863
|
delay = 0
|
|
10869
10864
|
} = options,
|
|
10870
|
-
other = _objectWithoutPropertiesLoose(options, _excluded$
|
|
10865
|
+
other = _objectWithoutPropertiesLoose(options, _excluded$1g);
|
|
10871
10866
|
if (process.env.NODE_ENV !== 'production') {
|
|
10872
10867
|
const isString = value => typeof value === 'string';
|
|
10873
10868
|
// IE11 support, replace with Number.isNaN
|
|
@@ -10916,7 +10911,7 @@ const zIndex = {
|
|
|
10916
10911
|
tooltip: 1500
|
|
10917
10912
|
};
|
|
10918
10913
|
|
|
10919
|
-
const _excluded$
|
|
10914
|
+
const _excluded$1f = ["breakpoints", "mixins", "spacing", "palette", "transitions", "typography", "shape"];
|
|
10920
10915
|
function createTheme(options = {}, ...args) {
|
|
10921
10916
|
const {
|
|
10922
10917
|
mixins: mixinsInput = {},
|
|
@@ -10924,7 +10919,7 @@ function createTheme(options = {}, ...args) {
|
|
|
10924
10919
|
transitions: transitionsInput = {},
|
|
10925
10920
|
typography: typographyInput = {}
|
|
10926
10921
|
} = options,
|
|
10927
|
-
other = _objectWithoutPropertiesLoose(options, _excluded$
|
|
10922
|
+
other = _objectWithoutPropertiesLoose(options, _excluded$1f);
|
|
10928
10923
|
if (options.vars) {
|
|
10929
10924
|
throw new Error(process.env.NODE_ENV !== "production" ? `MUI: \`vars\` is a private field used for CSS variables support.
|
|
10930
10925
|
Please use another name.` : formatMuiErrorMessage$1(18));
|
|
@@ -10982,7 +10977,7 @@ Please use another name.` : formatMuiErrorMessage$1(18));
|
|
|
10982
10977
|
return muiTheme;
|
|
10983
10978
|
}
|
|
10984
10979
|
|
|
10985
|
-
const defaultTheme$
|
|
10980
|
+
const defaultTheme$2 = createTheme();
|
|
10986
10981
|
|
|
10987
10982
|
var THEME_ID = '$$material';
|
|
10988
10983
|
|
|
@@ -10995,7 +10990,7 @@ const rootShouldForwardProp = prop => slotShouldForwardProp(prop) && prop !== 'c
|
|
|
10995
10990
|
|
|
10996
10991
|
const styled$1 = _default({
|
|
10997
10992
|
themeId: THEME_ID,
|
|
10998
|
-
defaultTheme: defaultTheme$
|
|
10993
|
+
defaultTheme: defaultTheme$2,
|
|
10999
10994
|
rootShouldForwardProp
|
|
11000
10995
|
});
|
|
11001
10996
|
|
|
@@ -11083,7 +11078,7 @@ function useThemeProps$1({
|
|
|
11083
11078
|
return useThemeProps$2({
|
|
11084
11079
|
props,
|
|
11085
11080
|
name,
|
|
11086
|
-
defaultTheme: defaultTheme$
|
|
11081
|
+
defaultTheme: defaultTheme$2,
|
|
11087
11082
|
themeId: THEME_ID
|
|
11088
11083
|
});
|
|
11089
11084
|
}
|
|
@@ -11870,7 +11865,7 @@ function mergeSlotProps(parameters) {
|
|
|
11870
11865
|
};
|
|
11871
11866
|
}
|
|
11872
11867
|
|
|
11873
|
-
const _excluded$
|
|
11868
|
+
const _excluded$1e = ["elementType", "externalSlotProps", "ownerState", "skipResolvingSlotProps"];
|
|
11874
11869
|
/**
|
|
11875
11870
|
* @ignore - do not document.
|
|
11876
11871
|
* Builds the props to be passed into the slot of an unstyled component.
|
|
@@ -11887,7 +11882,7 @@ function useSlotProps(parameters) {
|
|
|
11887
11882
|
ownerState,
|
|
11888
11883
|
skipResolvingSlotProps = false
|
|
11889
11884
|
} = parameters,
|
|
11890
|
-
rest = _objectWithoutPropertiesLoose(parameters, _excluded$
|
|
11885
|
+
rest = _objectWithoutPropertiesLoose(parameters, _excluded$1e);
|
|
11891
11886
|
const resolvedComponentsProps = skipResolvingSlotProps ? {} : resolveComponentProps(externalSlotProps, ownerState);
|
|
11892
11887
|
const {
|
|
11893
11888
|
props: mergedProps,
|
|
@@ -14706,7 +14701,7 @@ function getPopperUtilityClass(slot) {
|
|
|
14706
14701
|
}
|
|
14707
14702
|
generateUtilityClasses(COMPONENT_NAME, ['root']);
|
|
14708
14703
|
|
|
14709
|
-
const _excluded$
|
|
14704
|
+
const _excluded$1d = ["anchorEl", "children", "direction", "disablePortal", "modifiers", "open", "placement", "popperOptions", "popperRef", "slotProps", "slots", "TransitionProps", "ownerState"],
|
|
14710
14705
|
_excluded2$c = ["anchorEl", "children", "container", "direction", "disablePortal", "keepMounted", "modifiers", "open", "placement", "popperOptions", "popperRef", "style", "transition", "slotProps", "slots"];
|
|
14711
14706
|
function flipPlacement(placement, direction) {
|
|
14712
14707
|
if (direction === 'ltr') {
|
|
@@ -14734,7 +14729,7 @@ function isHTMLElement(element) {
|
|
|
14734
14729
|
function isVirtualElement(element) {
|
|
14735
14730
|
return !isHTMLElement(element);
|
|
14736
14731
|
}
|
|
14737
|
-
const useUtilityClasses$
|
|
14732
|
+
const useUtilityClasses$V = () => {
|
|
14738
14733
|
const slots = {
|
|
14739
14734
|
root: ['root']
|
|
14740
14735
|
};
|
|
@@ -14759,7 +14754,7 @@ const PopperTooltip = /*#__PURE__*/React$1.forwardRef(function PopperTooltip(pro
|
|
|
14759
14754
|
// @ts-ignore internal logic
|
|
14760
14755
|
// prevent from spreading to DOM, it can come from the parent component e.g. Select.
|
|
14761
14756
|
} = props,
|
|
14762
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
14757
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$1d);
|
|
14763
14758
|
const tooltipRef = React$1.useRef(null);
|
|
14764
14759
|
const ownRef = useForkRef(tooltipRef, forwardedRef);
|
|
14765
14760
|
const popperRef = React$1.useRef(null);
|
|
@@ -14844,7 +14839,7 @@ const PopperTooltip = /*#__PURE__*/React$1.forwardRef(function PopperTooltip(pro
|
|
|
14844
14839
|
if (TransitionProps !== null) {
|
|
14845
14840
|
childProps.TransitionProps = TransitionProps;
|
|
14846
14841
|
}
|
|
14847
|
-
const classes = useUtilityClasses$
|
|
14842
|
+
const classes = useUtilityClasses$V();
|
|
14848
14843
|
const Root = (_slots$root = slots.root) != null ? _slots$root : 'div';
|
|
14849
14844
|
const rootProps = useSlotProps({
|
|
14850
14845
|
elementType: Root,
|
|
@@ -15070,7 +15065,7 @@ process.env.NODE_ENV !== "production" ? Popper$1.propTypes /* remove-proptypes *
|
|
|
15070
15065
|
transition: PropTypes.bool
|
|
15071
15066
|
} : void 0;
|
|
15072
15067
|
|
|
15073
|
-
const _excluded$
|
|
15068
|
+
const _excluded$1c = ["onChange", "maxRows", "minRows", "style", "value"];
|
|
15074
15069
|
function getStyleValue(value) {
|
|
15075
15070
|
return parseInt(value, 10) || 0;
|
|
15076
15071
|
}
|
|
@@ -15112,7 +15107,7 @@ const TextareaAutosize = /*#__PURE__*/React$1.forwardRef(function TextareaAutosi
|
|
|
15112
15107
|
style,
|
|
15113
15108
|
value
|
|
15114
15109
|
} = props,
|
|
15115
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
15110
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$1c);
|
|
15116
15111
|
const {
|
|
15117
15112
|
current: isControlled
|
|
15118
15113
|
} = React$1.useRef(value != null);
|
|
@@ -16326,7 +16321,7 @@ process.env.NODE_ENV !== "production" ? GlobalStyles$1.propTypes /* remove-propt
|
|
|
16326
16321
|
themeId: PropTypes.string
|
|
16327
16322
|
} : void 0;
|
|
16328
16323
|
|
|
16329
|
-
const _excluded$
|
|
16324
|
+
const _excluded$1b = ["className", "component"];
|
|
16330
16325
|
function createBox(options = {}) {
|
|
16331
16326
|
const {
|
|
16332
16327
|
themeId,
|
|
@@ -16344,7 +16339,7 @@ function createBox(options = {}) {
|
|
|
16344
16339
|
className,
|
|
16345
16340
|
component = 'div'
|
|
16346
16341
|
} = _extendSxProp,
|
|
16347
|
-
other = _objectWithoutPropertiesLoose(_extendSxProp, _excluded$
|
|
16342
|
+
other = _objectWithoutPropertiesLoose(_extendSxProp, _excluded$1b);
|
|
16348
16343
|
return /*#__PURE__*/jsxRuntimeExports.jsx(BoxRoot, _extends$1({
|
|
16349
16344
|
as: component,
|
|
16350
16345
|
ref: ref,
|
|
@@ -16355,7 +16350,7 @@ function createBox(options = {}) {
|
|
|
16355
16350
|
return Box;
|
|
16356
16351
|
}
|
|
16357
16352
|
|
|
16358
|
-
const _excluded$
|
|
16353
|
+
const _excluded$1a = ["ownerState"],
|
|
16359
16354
|
_excluded2$b = ["variants"],
|
|
16360
16355
|
_excluded3$5 = ["name", "slot", "skipVariantsResolver", "skipSx", "overridesResolver"];
|
|
16361
16356
|
function isEmpty$2(obj) {
|
|
@@ -16399,7 +16394,7 @@ function processStyleArg(callableStyle, _ref) {
|
|
|
16399
16394
|
let {
|
|
16400
16395
|
ownerState
|
|
16401
16396
|
} = _ref,
|
|
16402
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
16397
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded$1a);
|
|
16403
16398
|
const resolvedStylesArg = typeof callableStyle === 'function' ? callableStyle(_extends$1({
|
|
16404
16399
|
ownerState
|
|
16405
16400
|
}, props)) : callableStyle;
|
|
@@ -16890,9 +16885,9 @@ function toPropertyKey(t) {
|
|
|
16890
16885
|
return "symbol" == _typeof$1(i) ? i : i + "";
|
|
16891
16886
|
}
|
|
16892
16887
|
|
|
16893
|
-
const _excluded$
|
|
16894
|
-
const defaultTheme$
|
|
16895
|
-
const defaultCreateStyledComponent
|
|
16888
|
+
const _excluded$19 = ["className", "component", "disableGutters", "fixed", "maxWidth", "classes"];
|
|
16889
|
+
const defaultTheme$1 = createTheme$2();
|
|
16890
|
+
const defaultCreateStyledComponent = styled('div', {
|
|
16896
16891
|
name: 'MuiContainer',
|
|
16897
16892
|
slot: 'Root',
|
|
16898
16893
|
overridesResolver: (props, styles) => {
|
|
@@ -16902,12 +16897,12 @@ const defaultCreateStyledComponent$1 = styled('div', {
|
|
|
16902
16897
|
return [styles.root, styles[`maxWidth${capitalize$1(String(ownerState.maxWidth))}`], ownerState.fixed && styles.fixed, ownerState.disableGutters && styles.disableGutters];
|
|
16903
16898
|
}
|
|
16904
16899
|
});
|
|
16905
|
-
const useThemePropsDefault
|
|
16900
|
+
const useThemePropsDefault = inProps => useThemeProps$2({
|
|
16906
16901
|
props: inProps,
|
|
16907
16902
|
name: 'MuiContainer',
|
|
16908
|
-
defaultTheme: defaultTheme$
|
|
16903
|
+
defaultTheme: defaultTheme$1
|
|
16909
16904
|
});
|
|
16910
|
-
const useUtilityClasses$
|
|
16905
|
+
const useUtilityClasses$U = (ownerState, componentName) => {
|
|
16911
16906
|
const getContainerUtilityClass = slot => {
|
|
16912
16907
|
return generateUtilityClass$1(componentName, slot);
|
|
16913
16908
|
};
|
|
@@ -16925,8 +16920,8 @@ const useUtilityClasses$V = (ownerState, componentName) => {
|
|
|
16925
16920
|
function createContainer(options = {}) {
|
|
16926
16921
|
const {
|
|
16927
16922
|
// This will allow adding custom styled fn (for example for custom sx style function)
|
|
16928
|
-
createStyledComponent = defaultCreateStyledComponent
|
|
16929
|
-
useThemeProps = useThemePropsDefault
|
|
16923
|
+
createStyledComponent = defaultCreateStyledComponent,
|
|
16924
|
+
useThemeProps = useThemePropsDefault,
|
|
16930
16925
|
componentName = 'MuiContainer'
|
|
16931
16926
|
} = options;
|
|
16932
16927
|
const ContainerRoot = createStyledComponent(({
|
|
@@ -16986,7 +16981,7 @@ function createContainer(options = {}) {
|
|
|
16986
16981
|
fixed = false,
|
|
16987
16982
|
maxWidth = 'lg'
|
|
16988
16983
|
} = props,
|
|
16989
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
16984
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$19);
|
|
16990
16985
|
const ownerState = _extends$1({}, props, {
|
|
16991
16986
|
component,
|
|
16992
16987
|
disableGutters,
|
|
@@ -16995,7 +16990,7 @@ function createContainer(options = {}) {
|
|
|
16995
16990
|
});
|
|
16996
16991
|
|
|
16997
16992
|
// @ts-ignore module augmentation fails if custom breakpoints are used
|
|
16998
|
-
const classes = useUtilityClasses$
|
|
16993
|
+
const classes = useUtilityClasses$U(ownerState, componentName);
|
|
16999
16994
|
return (
|
|
17000
16995
|
/*#__PURE__*/
|
|
17001
16996
|
// @ts-ignore theme is injected by the styled util
|
|
@@ -17022,168 +17017,9 @@ function createContainer(options = {}) {
|
|
|
17022
17017
|
return Container;
|
|
17023
17018
|
}
|
|
17024
17019
|
|
|
17025
|
-
const _excluded$1a = ["component", "direction", "spacing", "divider", "children", "className", "useFlexGap"];
|
|
17026
|
-
const defaultTheme$1 = createTheme$2();
|
|
17027
|
-
// widening Theme to any so that the consumer can own the theme structure.
|
|
17028
|
-
const defaultCreateStyledComponent = styled('div', {
|
|
17029
|
-
name: 'MuiStack',
|
|
17030
|
-
slot: 'Root',
|
|
17031
|
-
overridesResolver: (props, styles) => styles.root
|
|
17032
|
-
});
|
|
17033
|
-
function useThemePropsDefault(props) {
|
|
17034
|
-
return useThemeProps$2({
|
|
17035
|
-
props,
|
|
17036
|
-
name: 'MuiStack',
|
|
17037
|
-
defaultTheme: defaultTheme$1
|
|
17038
|
-
});
|
|
17039
|
-
}
|
|
17040
|
-
|
|
17041
|
-
/**
|
|
17042
|
-
* Return an array with the separator React element interspersed between
|
|
17043
|
-
* each React node of the input children.
|
|
17044
|
-
*
|
|
17045
|
-
* > joinChildren([1,2,3], 0)
|
|
17046
|
-
* [1,0,2,0,3]
|
|
17047
|
-
*/
|
|
17048
|
-
function joinChildren(children, separator) {
|
|
17049
|
-
const childrenArray = React$1.Children.toArray(children).filter(Boolean);
|
|
17050
|
-
return childrenArray.reduce((output, child, index) => {
|
|
17051
|
-
output.push(child);
|
|
17052
|
-
if (index < childrenArray.length - 1) {
|
|
17053
|
-
output.push( /*#__PURE__*/React$1.cloneElement(separator, {
|
|
17054
|
-
key: `separator-${index}`
|
|
17055
|
-
}));
|
|
17056
|
-
}
|
|
17057
|
-
return output;
|
|
17058
|
-
}, []);
|
|
17059
|
-
}
|
|
17060
|
-
const getSideFromDirection = direction => {
|
|
17061
|
-
return {
|
|
17062
|
-
row: 'Left',
|
|
17063
|
-
'row-reverse': 'Right',
|
|
17064
|
-
column: 'Top',
|
|
17065
|
-
'column-reverse': 'Bottom'
|
|
17066
|
-
}[direction];
|
|
17067
|
-
};
|
|
17068
|
-
const style$1 = ({
|
|
17069
|
-
ownerState,
|
|
17070
|
-
theme
|
|
17071
|
-
}) => {
|
|
17072
|
-
let styles = _extends$1({
|
|
17073
|
-
display: 'flex',
|
|
17074
|
-
flexDirection: 'column'
|
|
17075
|
-
}, handleBreakpoints({
|
|
17076
|
-
theme
|
|
17077
|
-
}, resolveBreakpointValues({
|
|
17078
|
-
values: ownerState.direction,
|
|
17079
|
-
breakpoints: theme.breakpoints.values
|
|
17080
|
-
}), propValue => ({
|
|
17081
|
-
flexDirection: propValue
|
|
17082
|
-
})));
|
|
17083
|
-
if (ownerState.spacing) {
|
|
17084
|
-
const transformer = createUnarySpacing(theme);
|
|
17085
|
-
const base = Object.keys(theme.breakpoints.values).reduce((acc, breakpoint) => {
|
|
17086
|
-
if (typeof ownerState.spacing === 'object' && ownerState.spacing[breakpoint] != null || typeof ownerState.direction === 'object' && ownerState.direction[breakpoint] != null) {
|
|
17087
|
-
acc[breakpoint] = true;
|
|
17088
|
-
}
|
|
17089
|
-
return acc;
|
|
17090
|
-
}, {});
|
|
17091
|
-
const directionValues = resolveBreakpointValues({
|
|
17092
|
-
values: ownerState.direction,
|
|
17093
|
-
base
|
|
17094
|
-
});
|
|
17095
|
-
const spacingValues = resolveBreakpointValues({
|
|
17096
|
-
values: ownerState.spacing,
|
|
17097
|
-
base
|
|
17098
|
-
});
|
|
17099
|
-
if (typeof directionValues === 'object') {
|
|
17100
|
-
Object.keys(directionValues).forEach((breakpoint, index, breakpoints) => {
|
|
17101
|
-
const directionValue = directionValues[breakpoint];
|
|
17102
|
-
if (!directionValue) {
|
|
17103
|
-
const previousDirectionValue = index > 0 ? directionValues[breakpoints[index - 1]] : 'column';
|
|
17104
|
-
directionValues[breakpoint] = previousDirectionValue;
|
|
17105
|
-
}
|
|
17106
|
-
});
|
|
17107
|
-
}
|
|
17108
|
-
const styleFromPropValue = (propValue, breakpoint) => {
|
|
17109
|
-
if (ownerState.useFlexGap) {
|
|
17110
|
-
return {
|
|
17111
|
-
gap: getValue(transformer, propValue)
|
|
17112
|
-
};
|
|
17113
|
-
}
|
|
17114
|
-
return {
|
|
17115
|
-
// The useFlexGap={false} implement relies on each child to give up control of the margin.
|
|
17116
|
-
// We need to reset the margin to avoid double spacing.
|
|
17117
|
-
'& > :not(style):not(style)': {
|
|
17118
|
-
margin: 0
|
|
17119
|
-
},
|
|
17120
|
-
'& > :not(style) ~ :not(style)': {
|
|
17121
|
-
[`margin${getSideFromDirection(breakpoint ? directionValues[breakpoint] : ownerState.direction)}`]: getValue(transformer, propValue)
|
|
17122
|
-
}
|
|
17123
|
-
};
|
|
17124
|
-
};
|
|
17125
|
-
styles = deepmerge$1(styles, handleBreakpoints({
|
|
17126
|
-
theme
|
|
17127
|
-
}, spacingValues, styleFromPropValue));
|
|
17128
|
-
}
|
|
17129
|
-
styles = mergeBreakpointsInOrder(theme.breakpoints, styles);
|
|
17130
|
-
return styles;
|
|
17131
|
-
};
|
|
17132
|
-
function createStack(options = {}) {
|
|
17133
|
-
const {
|
|
17134
|
-
// This will allow adding custom styled fn (for example for custom sx style function)
|
|
17135
|
-
createStyledComponent = defaultCreateStyledComponent,
|
|
17136
|
-
useThemeProps = useThemePropsDefault,
|
|
17137
|
-
componentName = 'MuiStack'
|
|
17138
|
-
} = options;
|
|
17139
|
-
const useUtilityClasses = () => {
|
|
17140
|
-
const slots = {
|
|
17141
|
-
root: ['root']
|
|
17142
|
-
};
|
|
17143
|
-
return composeClasses(slots, slot => generateUtilityClass$1(componentName, slot), {});
|
|
17144
|
-
};
|
|
17145
|
-
const StackRoot = createStyledComponent(style$1);
|
|
17146
|
-
const Stack = /*#__PURE__*/React$1.forwardRef(function Grid(inProps, ref) {
|
|
17147
|
-
const themeProps = useThemeProps(inProps);
|
|
17148
|
-
const props = extendSxProp(themeProps); // `color` type conflicts with html color attribute.
|
|
17149
|
-
const {
|
|
17150
|
-
component = 'div',
|
|
17151
|
-
direction = 'column',
|
|
17152
|
-
spacing = 0,
|
|
17153
|
-
divider,
|
|
17154
|
-
children,
|
|
17155
|
-
className,
|
|
17156
|
-
useFlexGap = false
|
|
17157
|
-
} = props,
|
|
17158
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$1a);
|
|
17159
|
-
const ownerState = {
|
|
17160
|
-
direction,
|
|
17161
|
-
spacing,
|
|
17162
|
-
useFlexGap
|
|
17163
|
-
};
|
|
17164
|
-
const classes = useUtilityClasses();
|
|
17165
|
-
return /*#__PURE__*/jsxRuntimeExports.jsx(StackRoot, _extends$1({
|
|
17166
|
-
as: component,
|
|
17167
|
-
ownerState: ownerState,
|
|
17168
|
-
ref: ref,
|
|
17169
|
-
className: clsx(classes.root, className)
|
|
17170
|
-
}, other, {
|
|
17171
|
-
children: divider ? joinChildren(children, divider) : children
|
|
17172
|
-
}));
|
|
17173
|
-
});
|
|
17174
|
-
process.env.NODE_ENV !== "production" ? Stack.propTypes /* remove-proptypes */ = {
|
|
17175
|
-
children: PropTypes.node,
|
|
17176
|
-
direction: PropTypes.oneOfType([PropTypes.oneOf(['column-reverse', 'column', 'row-reverse', 'row']), PropTypes.arrayOf(PropTypes.oneOf(['column-reverse', 'column', 'row-reverse', 'row'])), PropTypes.object]),
|
|
17177
|
-
divider: PropTypes.node,
|
|
17178
|
-
spacing: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.number, PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.string]),
|
|
17179
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
|
|
17180
|
-
} : void 0;
|
|
17181
|
-
return Stack;
|
|
17182
|
-
}
|
|
17183
|
-
|
|
17184
17020
|
function GlobalStyles(props) {
|
|
17185
17021
|
return /*#__PURE__*/jsxRuntimeExports.jsx(GlobalStyles$1, _extends$1({}, props, {
|
|
17186
|
-
defaultTheme: defaultTheme$
|
|
17022
|
+
defaultTheme: defaultTheme$2,
|
|
17187
17023
|
themeId: THEME_ID
|
|
17188
17024
|
}));
|
|
17189
17025
|
}
|
|
@@ -17234,7 +17070,7 @@ function getInputBaseUtilityClass(slot) {
|
|
|
17234
17070
|
}
|
|
17235
17071
|
const inputBaseClasses = generateUtilityClasses$1('MuiInputBase', ['root', 'formControl', 'focused', 'disabled', 'adornedStart', 'adornedEnd', 'error', 'sizeSmall', 'multiline', 'colorSecondary', 'fullWidth', 'hiddenLabel', 'readOnly', 'input', 'inputSizeSmall', 'inputMultiline', 'inputTypeSearch', 'inputAdornedStart', 'inputAdornedEnd', 'inputHiddenLabel']);
|
|
17236
17072
|
|
|
17237
|
-
const _excluded$
|
|
17073
|
+
const _excluded$18 = ["aria-describedby", "autoComplete", "autoFocus", "className", "color", "components", "componentsProps", "defaultValue", "disabled", "disableInjectingGlobalStyles", "endAdornment", "error", "fullWidth", "id", "inputComponent", "inputProps", "inputRef", "margin", "maxRows", "minRows", "multiline", "name", "onBlur", "onChange", "onClick", "onFocus", "onKeyDown", "onKeyUp", "placeholder", "readOnly", "renderSuffix", "rows", "size", "slotProps", "slots", "startAdornment", "type", "value"];
|
|
17238
17074
|
const rootOverridesResolver = (props, styles) => {
|
|
17239
17075
|
const {
|
|
17240
17076
|
ownerState
|
|
@@ -17247,7 +17083,7 @@ const inputOverridesResolver = (props, styles) => {
|
|
|
17247
17083
|
} = props;
|
|
17248
17084
|
return [styles.input, ownerState.size === 'small' && styles.inputSizeSmall, ownerState.multiline && styles.inputMultiline, ownerState.type === 'search' && styles.inputTypeSearch, ownerState.startAdornment && styles.inputAdornedStart, ownerState.endAdornment && styles.inputAdornedEnd, ownerState.hiddenLabel && styles.inputHiddenLabel];
|
|
17249
17085
|
};
|
|
17250
|
-
const useUtilityClasses$
|
|
17086
|
+
const useUtilityClasses$T = ownerState => {
|
|
17251
17087
|
const {
|
|
17252
17088
|
classes,
|
|
17253
17089
|
color,
|
|
@@ -17463,7 +17299,7 @@ const InputBase = /*#__PURE__*/React$1.forwardRef(function InputBase(inProps, re
|
|
|
17463
17299
|
type = 'text',
|
|
17464
17300
|
value: valueProp
|
|
17465
17301
|
} = props,
|
|
17466
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
17302
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$18);
|
|
17467
17303
|
const value = inputPropsProp.value != null ? inputPropsProp.value : valueProp;
|
|
17468
17304
|
const {
|
|
17469
17305
|
current: isControlled
|
|
@@ -17637,7 +17473,7 @@ const InputBase = /*#__PURE__*/React$1.forwardRef(function InputBase(inProps, re
|
|
|
17637
17473
|
startAdornment,
|
|
17638
17474
|
type
|
|
17639
17475
|
});
|
|
17640
|
-
const classes = useUtilityClasses$
|
|
17476
|
+
const classes = useUtilityClasses$T(ownerState);
|
|
17641
17477
|
const Root = slots.root || components.Root || InputBaseRoot;
|
|
17642
17478
|
const rootProps = slotProps.root || componentsProps.root || {};
|
|
17643
17479
|
const Input = slots.input || components.Input || InputBaseComponent;
|
|
@@ -17924,8 +17760,8 @@ function getInputUtilityClass(slot) {
|
|
|
17924
17760
|
}
|
|
17925
17761
|
const inputClasses = _extends$1({}, inputBaseClasses, generateUtilityClasses$1('MuiInput', ['root', 'underline', 'input']));
|
|
17926
17762
|
|
|
17927
|
-
const _excluded$
|
|
17928
|
-
const useUtilityClasses$
|
|
17763
|
+
const _excluded$17 = ["disableUnderline", "components", "componentsProps", "fullWidth", "inputComponent", "multiline", "slotProps", "slots", "type"];
|
|
17764
|
+
const useUtilityClasses$S = ownerState => {
|
|
17929
17765
|
const {
|
|
17930
17766
|
classes,
|
|
17931
17767
|
disableUnderline
|
|
@@ -18035,8 +17871,8 @@ const Input = /*#__PURE__*/React$1.forwardRef(function Input(inProps, ref) {
|
|
|
18035
17871
|
slots = {},
|
|
18036
17872
|
type = 'text'
|
|
18037
17873
|
} = props,
|
|
18038
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
18039
|
-
const classes = useUtilityClasses$
|
|
17874
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$17);
|
|
17875
|
+
const classes = useUtilityClasses$S(props);
|
|
18040
17876
|
const ownerState = {
|
|
18041
17877
|
disableUnderline
|
|
18042
17878
|
};
|
|
@@ -18256,8 +18092,8 @@ function getFilledInputUtilityClass(slot) {
|
|
|
18256
18092
|
}
|
|
18257
18093
|
const filledInputClasses = _extends$1({}, inputBaseClasses, generateUtilityClasses$1('MuiFilledInput', ['root', 'underline', 'input']));
|
|
18258
18094
|
|
|
18259
|
-
const _excluded$
|
|
18260
|
-
const useUtilityClasses$
|
|
18095
|
+
const _excluded$16 = ["disableUnderline", "components", "componentsProps", "fullWidth", "hiddenLabel", "inputComponent", "multiline", "slotProps", "slots", "type"];
|
|
18096
|
+
const useUtilityClasses$R = ownerState => {
|
|
18261
18097
|
const {
|
|
18262
18098
|
classes,
|
|
18263
18099
|
disableUnderline
|
|
@@ -18441,14 +18277,14 @@ const FilledInput = /*#__PURE__*/React$1.forwardRef(function FilledInput(inProps
|
|
|
18441
18277
|
slots = {},
|
|
18442
18278
|
type = 'text'
|
|
18443
18279
|
} = props,
|
|
18444
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
18280
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$16);
|
|
18445
18281
|
const ownerState = _extends$1({}, props, {
|
|
18446
18282
|
fullWidth,
|
|
18447
18283
|
inputComponent,
|
|
18448
18284
|
multiline,
|
|
18449
18285
|
type
|
|
18450
18286
|
});
|
|
18451
|
-
const classes = useUtilityClasses$
|
|
18287
|
+
const classes = useUtilityClasses$R(props);
|
|
18452
18288
|
const filledInputComponentsProps = {
|
|
18453
18289
|
root: {
|
|
18454
18290
|
ownerState
|
|
@@ -18671,7 +18507,7 @@ process.env.NODE_ENV !== "production" ? FilledInput.propTypes /* remove-proptype
|
|
|
18671
18507
|
FilledInput.muiName = 'Input';
|
|
18672
18508
|
|
|
18673
18509
|
var _span$3;
|
|
18674
|
-
const _excluded$
|
|
18510
|
+
const _excluded$15 = ["children", "classes", "className", "label", "notched"];
|
|
18675
18511
|
const NotchedOutlineRoot$1 = styled$1('fieldset', {
|
|
18676
18512
|
shouldForwardProp: rootShouldForwardProp
|
|
18677
18513
|
})({
|
|
@@ -18748,7 +18584,7 @@ function NotchedOutline(props) {
|
|
|
18748
18584
|
label,
|
|
18749
18585
|
notched
|
|
18750
18586
|
} = props,
|
|
18751
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
18587
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$15);
|
|
18752
18588
|
const withLabel = label != null && label !== '';
|
|
18753
18589
|
const ownerState = _extends$1({}, props, {
|
|
18754
18590
|
notched,
|
|
@@ -18803,8 +18639,8 @@ function getOutlinedInputUtilityClass(slot) {
|
|
|
18803
18639
|
}
|
|
18804
18640
|
const outlinedInputClasses = _extends$1({}, inputBaseClasses, generateUtilityClasses$1('MuiOutlinedInput', ['root', 'notchedOutline', 'input']));
|
|
18805
18641
|
|
|
18806
|
-
const _excluded$
|
|
18807
|
-
const useUtilityClasses$
|
|
18642
|
+
const _excluded$14 = ["components", "fullWidth", "inputComponent", "label", "multiline", "notched", "slots", "type"];
|
|
18643
|
+
const useUtilityClasses$Q = ownerState => {
|
|
18808
18644
|
const {
|
|
18809
18645
|
classes
|
|
18810
18646
|
} = ownerState;
|
|
@@ -18922,8 +18758,8 @@ const OutlinedInput = /*#__PURE__*/React$1.forwardRef(function OutlinedInput(inP
|
|
|
18922
18758
|
slots = {},
|
|
18923
18759
|
type = 'text'
|
|
18924
18760
|
} = props,
|
|
18925
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
18926
|
-
const classes = useUtilityClasses$
|
|
18761
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$14);
|
|
18762
|
+
const classes = useUtilityClasses$Q(props);
|
|
18927
18763
|
const muiFormControl = useFormControl();
|
|
18928
18764
|
const fcs = formControlState({
|
|
18929
18765
|
props,
|
|
@@ -19141,8 +18977,8 @@ function getFormLabelUtilityClasses(slot) {
|
|
|
19141
18977
|
}
|
|
19142
18978
|
const formLabelClasses = generateUtilityClasses$1('MuiFormLabel', ['root', 'colorSecondary', 'focused', 'disabled', 'error', 'filled', 'required', 'asterisk']);
|
|
19143
18979
|
|
|
19144
|
-
const _excluded$
|
|
19145
|
-
const useUtilityClasses$
|
|
18980
|
+
const _excluded$13 = ["children", "className", "color", "component", "disabled", "error", "filled", "focused", "required"];
|
|
18981
|
+
const useUtilityClasses$P = ownerState => {
|
|
19146
18982
|
const {
|
|
19147
18983
|
classes,
|
|
19148
18984
|
color,
|
|
@@ -19206,7 +19042,7 @@ const FormLabel = /*#__PURE__*/React$1.forwardRef(function FormLabel(inProps, re
|
|
|
19206
19042
|
className,
|
|
19207
19043
|
component = 'label'
|
|
19208
19044
|
} = props,
|
|
19209
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
19045
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$13);
|
|
19210
19046
|
const muiFormControl = useFormControl();
|
|
19211
19047
|
const fcs = formControlState({
|
|
19212
19048
|
props,
|
|
@@ -19222,7 +19058,7 @@ const FormLabel = /*#__PURE__*/React$1.forwardRef(function FormLabel(inProps, re
|
|
|
19222
19058
|
focused: fcs.focused,
|
|
19223
19059
|
required: fcs.required
|
|
19224
19060
|
});
|
|
19225
|
-
const classes = useUtilityClasses$
|
|
19061
|
+
const classes = useUtilityClasses$P(ownerState);
|
|
19226
19062
|
return /*#__PURE__*/jsxRuntimeExports.jsxs(FormLabelRoot, _extends$1({
|
|
19227
19063
|
as: component,
|
|
19228
19064
|
ownerState: ownerState,
|
|
@@ -19296,8 +19132,8 @@ function getInputLabelUtilityClasses(slot) {
|
|
|
19296
19132
|
}
|
|
19297
19133
|
generateUtilityClasses$1('MuiInputLabel', ['root', 'focused', 'disabled', 'error', 'required', 'asterisk', 'formControl', 'sizeSmall', 'shrink', 'animated', 'standard', 'filled', 'outlined']);
|
|
19298
19134
|
|
|
19299
|
-
const _excluded$
|
|
19300
|
-
const useUtilityClasses$
|
|
19135
|
+
const _excluded$12 = ["disableAnimation", "margin", "shrink", "variant", "className"];
|
|
19136
|
+
const useUtilityClasses$O = ownerState => {
|
|
19301
19137
|
const {
|
|
19302
19138
|
classes,
|
|
19303
19139
|
formControl,
|
|
@@ -19398,7 +19234,7 @@ const InputLabel = /*#__PURE__*/React$1.forwardRef(function InputLabel(inProps,
|
|
|
19398
19234
|
shrink: shrinkProp,
|
|
19399
19235
|
className
|
|
19400
19236
|
} = props,
|
|
19401
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
19237
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$12);
|
|
19402
19238
|
const muiFormControl = useFormControl();
|
|
19403
19239
|
let shrink = shrinkProp;
|
|
19404
19240
|
if (typeof shrink === 'undefined' && muiFormControl) {
|
|
@@ -19418,7 +19254,7 @@ const InputLabel = /*#__PURE__*/React$1.forwardRef(function InputLabel(inProps,
|
|
|
19418
19254
|
required: fcs.required,
|
|
19419
19255
|
focused: fcs.focused
|
|
19420
19256
|
});
|
|
19421
|
-
const classes = useUtilityClasses$
|
|
19257
|
+
const classes = useUtilityClasses$O(ownerState);
|
|
19422
19258
|
return /*#__PURE__*/jsxRuntimeExports.jsx(InputLabelRoot, _extends$1({
|
|
19423
19259
|
"data-shrink": shrink,
|
|
19424
19260
|
ownerState: ownerState,
|
|
@@ -19501,8 +19337,8 @@ function getFormControlUtilityClasses(slot) {
|
|
|
19501
19337
|
}
|
|
19502
19338
|
generateUtilityClasses$1('MuiFormControl', ['root', 'marginNone', 'marginNormal', 'marginDense', 'fullWidth', 'disabled']);
|
|
19503
19339
|
|
|
19504
|
-
const _excluded$
|
|
19505
|
-
const useUtilityClasses$
|
|
19340
|
+
const _excluded$11 = ["children", "className", "color", "component", "disabled", "error", "focused", "fullWidth", "hiddenLabel", "margin", "required", "size", "variant"];
|
|
19341
|
+
const useUtilityClasses$N = ownerState => {
|
|
19506
19342
|
const {
|
|
19507
19343
|
classes,
|
|
19508
19344
|
margin,
|
|
@@ -19587,7 +19423,7 @@ const FormControl = /*#__PURE__*/React$1.forwardRef(function FormControl(inProps
|
|
|
19587
19423
|
size = 'medium',
|
|
19588
19424
|
variant = 'outlined'
|
|
19589
19425
|
} = props,
|
|
19590
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
19426
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$11);
|
|
19591
19427
|
const ownerState = _extends$1({}, props, {
|
|
19592
19428
|
color,
|
|
19593
19429
|
component,
|
|
@@ -19600,7 +19436,7 @@ const FormControl = /*#__PURE__*/React$1.forwardRef(function FormControl(inProps
|
|
|
19600
19436
|
size,
|
|
19601
19437
|
variant
|
|
19602
19438
|
});
|
|
19603
|
-
const classes = useUtilityClasses$
|
|
19439
|
+
const classes = useUtilityClasses$N(ownerState);
|
|
19604
19440
|
const [adornedStart, setAdornedStart] = React$1.useState(() => {
|
|
19605
19441
|
// We need to iterate through the children and find the Input in order
|
|
19606
19442
|
// to fully support server-side rendering.
|
|
@@ -19781,8 +19617,8 @@ function getFormHelperTextUtilityClasses(slot) {
|
|
|
19781
19617
|
const formHelperTextClasses = generateUtilityClasses$1('MuiFormHelperText', ['root', 'error', 'disabled', 'sizeSmall', 'sizeMedium', 'contained', 'focused', 'filled', 'required']);
|
|
19782
19618
|
|
|
19783
19619
|
var _span$2;
|
|
19784
|
-
const _excluded$
|
|
19785
|
-
const useUtilityClasses$
|
|
19620
|
+
const _excluded$10 = ["children", "className", "component", "disabled", "error", "filled", "focused", "margin", "required", "variant"];
|
|
19621
|
+
const useUtilityClasses$M = ownerState => {
|
|
19786
19622
|
const {
|
|
19787
19623
|
classes,
|
|
19788
19624
|
contained,
|
|
@@ -19840,7 +19676,7 @@ const FormHelperText = /*#__PURE__*/React$1.forwardRef(function FormHelperText(i
|
|
|
19840
19676
|
className,
|
|
19841
19677
|
component = 'p'
|
|
19842
19678
|
} = props,
|
|
19843
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
19679
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$10);
|
|
19844
19680
|
const muiFormControl = useFormControl();
|
|
19845
19681
|
const fcs = formControlState({
|
|
19846
19682
|
props,
|
|
@@ -19858,7 +19694,7 @@ const FormHelperText = /*#__PURE__*/React$1.forwardRef(function FormHelperText(i
|
|
|
19858
19694
|
focused: fcs.focused,
|
|
19859
19695
|
required: fcs.required
|
|
19860
19696
|
});
|
|
19861
|
-
const classes = useUtilityClasses$
|
|
19697
|
+
const classes = useUtilityClasses$M(ownerState);
|
|
19862
19698
|
return /*#__PURE__*/jsxRuntimeExports.jsx(FormHelperTextRoot, _extends$1({
|
|
19863
19699
|
as: component,
|
|
19864
19700
|
ownerState: ownerState,
|
|
@@ -20208,8 +20044,8 @@ function getListUtilityClass(slot) {
|
|
|
20208
20044
|
}
|
|
20209
20045
|
generateUtilityClasses$1('MuiList', ['root', 'padding', 'dense', 'subheader']);
|
|
20210
20046
|
|
|
20211
|
-
const _excluded
|
|
20212
|
-
const useUtilityClasses$
|
|
20047
|
+
const _excluded$$ = ["children", "className", "component", "dense", "disablePadding", "subheader"];
|
|
20048
|
+
const useUtilityClasses$L = ownerState => {
|
|
20213
20049
|
const {
|
|
20214
20050
|
classes,
|
|
20215
20051
|
disablePadding,
|
|
@@ -20256,7 +20092,7 @@ const List = /*#__PURE__*/React$1.forwardRef(function List(inProps, ref) {
|
|
|
20256
20092
|
disablePadding = false,
|
|
20257
20093
|
subheader
|
|
20258
20094
|
} = props,
|
|
20259
|
-
other = _objectWithoutPropertiesLoose(props, _excluded
|
|
20095
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$$);
|
|
20260
20096
|
const context = React$1.useMemo(() => ({
|
|
20261
20097
|
dense
|
|
20262
20098
|
}), [dense]);
|
|
@@ -20265,7 +20101,7 @@ const List = /*#__PURE__*/React$1.forwardRef(function List(inProps, ref) {
|
|
|
20265
20101
|
dense,
|
|
20266
20102
|
disablePadding
|
|
20267
20103
|
});
|
|
20268
|
-
const classes = useUtilityClasses$
|
|
20104
|
+
const classes = useUtilityClasses$L(ownerState);
|
|
20269
20105
|
return /*#__PURE__*/jsxRuntimeExports.jsx(ListContext.Provider, {
|
|
20270
20106
|
value: context,
|
|
20271
20107
|
children: /*#__PURE__*/jsxRuntimeExports.jsxs(ListRoot, _extends$1({
|
|
@@ -20322,7 +20158,7 @@ process.env.NODE_ENV !== "production" ? List.propTypes /* remove-proptypes */ =
|
|
|
20322
20158
|
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
|
|
20323
20159
|
} : void 0;
|
|
20324
20160
|
|
|
20325
|
-
const _excluded
|
|
20161
|
+
const _excluded$_ = ["actions", "autoFocus", "autoFocusItem", "children", "className", "disabledItemsFocusable", "disableListWrap", "onKeyDown", "variant"];
|
|
20326
20162
|
function nextItem(list, item, disableListWrap) {
|
|
20327
20163
|
if (list === item) {
|
|
20328
20164
|
return list.firstChild;
|
|
@@ -20404,7 +20240,7 @@ const MenuList = /*#__PURE__*/React$1.forwardRef(function MenuList(props, ref) {
|
|
|
20404
20240
|
onKeyDown,
|
|
20405
20241
|
variant = 'selectedMenu'
|
|
20406
20242
|
} = props,
|
|
20407
|
-
other = _objectWithoutPropertiesLoose(props, _excluded
|
|
20243
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$_);
|
|
20408
20244
|
const listRef = React$1.useRef(null);
|
|
20409
20245
|
const textCriteriaRef = React$1.useRef({
|
|
20410
20246
|
keys: [],
|
|
@@ -22017,7 +21853,7 @@ TransitionGroup.propTypes = process.env.NODE_ENV !== "production" ? {
|
|
|
22017
21853
|
TransitionGroup.defaultProps = defaultProps;
|
|
22018
21854
|
|
|
22019
21855
|
function useTheme$2() {
|
|
22020
|
-
const theme = useTheme$4(defaultTheme$
|
|
21856
|
+
const theme = useTheme$4(defaultTheme$2);
|
|
22021
21857
|
if (process.env.NODE_ENV !== 'production') {
|
|
22022
21858
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
22023
21859
|
React$1.useDebugValue(theme);
|
|
@@ -22040,7 +21876,7 @@ function getTransitionProps(props, options) {
|
|
|
22040
21876
|
};
|
|
22041
21877
|
}
|
|
22042
21878
|
|
|
22043
|
-
const _excluded$
|
|
21879
|
+
const _excluded$Z = ["addEndListener", "appear", "children", "easing", "in", "onEnter", "onEntered", "onEntering", "onExit", "onExited", "onExiting", "style", "timeout", "TransitionComponent"];
|
|
22044
21880
|
function getScale(value) {
|
|
22045
21881
|
return `scale(${value}, ${value ** 2})`;
|
|
22046
21882
|
}
|
|
@@ -22084,7 +21920,7 @@ const Grow = /*#__PURE__*/React$1.forwardRef(function Grow(props, ref) {
|
|
|
22084
21920
|
// eslint-disable-next-line react/prop-types
|
|
22085
21921
|
TransitionComponent = Transition
|
|
22086
21922
|
} = props,
|
|
22087
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
21923
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$Z);
|
|
22088
21924
|
const timer = useTimeout();
|
|
22089
21925
|
const autoTimeout = React$1.useRef();
|
|
22090
21926
|
const theme = useTheme$2();
|
|
@@ -22282,7 +22118,7 @@ process.env.NODE_ENV !== "production" ? Grow.propTypes /* remove-proptypes */ =
|
|
|
22282
22118
|
} : void 0;
|
|
22283
22119
|
Grow.muiSupportAuto = true;
|
|
22284
22120
|
|
|
22285
|
-
const _excluded$
|
|
22121
|
+
const _excluded$Y = ["addEndListener", "appear", "children", "easing", "in", "onEnter", "onEntered", "onEntering", "onExit", "onExited", "onExiting", "style", "timeout", "TransitionComponent"];
|
|
22286
22122
|
const styles = {
|
|
22287
22123
|
entering: {
|
|
22288
22124
|
opacity: 1
|
|
@@ -22319,7 +22155,7 @@ const Fade = /*#__PURE__*/React$1.forwardRef(function Fade(props, ref) {
|
|
|
22319
22155
|
// eslint-disable-next-line react/prop-types
|
|
22320
22156
|
TransitionComponent = Transition
|
|
22321
22157
|
} = props,
|
|
22322
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
22158
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$Y);
|
|
22323
22159
|
const nodeRef = React$1.useRef(null);
|
|
22324
22160
|
const handleRef = useForkRef(nodeRef, children.ref, ref);
|
|
22325
22161
|
const normalizedTransitionCallback = callback => maybeIsAppearing => {
|
|
@@ -22479,8 +22315,8 @@ function getBackdropUtilityClass(slot) {
|
|
|
22479
22315
|
}
|
|
22480
22316
|
generateUtilityClasses$1('MuiBackdrop', ['root', 'invisible']);
|
|
22481
22317
|
|
|
22482
|
-
const _excluded$
|
|
22483
|
-
const useUtilityClasses$
|
|
22318
|
+
const _excluded$X = ["children", "className", "component", "components", "componentsProps", "invisible", "open", "slotProps", "slots", "TransitionComponent", "transitionDuration"];
|
|
22319
|
+
const useUtilityClasses$K = ownerState => {
|
|
22484
22320
|
const {
|
|
22485
22321
|
classes,
|
|
22486
22322
|
invisible
|
|
@@ -22534,12 +22370,12 @@ const Backdrop = /*#__PURE__*/React$1.forwardRef(function Backdrop(inProps, ref)
|
|
|
22534
22370
|
TransitionComponent = Fade,
|
|
22535
22371
|
transitionDuration
|
|
22536
22372
|
} = props,
|
|
22537
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
22373
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$X);
|
|
22538
22374
|
const ownerState = _extends$1({}, props, {
|
|
22539
22375
|
component,
|
|
22540
22376
|
invisible
|
|
22541
22377
|
});
|
|
22542
|
-
const classes = useUtilityClasses$
|
|
22378
|
+
const classes = useUtilityClasses$K(ownerState);
|
|
22543
22379
|
const rootSlotProps = (_slotProps$root = slotProps.root) != null ? _slotProps$root : componentsProps.root;
|
|
22544
22380
|
return /*#__PURE__*/jsxRuntimeExports.jsx(TransitionComponent, _extends$1({
|
|
22545
22381
|
in: open,
|
|
@@ -22659,8 +22495,8 @@ function getModalUtilityClass(slot) {
|
|
|
22659
22495
|
}
|
|
22660
22496
|
generateUtilityClasses$1('MuiModal', ['root', 'hidden', 'backdrop']);
|
|
22661
22497
|
|
|
22662
|
-
const _excluded$
|
|
22663
|
-
const useUtilityClasses$
|
|
22498
|
+
const _excluded$W = ["BackdropComponent", "BackdropProps", "classes", "className", "closeAfterTransition", "children", "container", "component", "components", "componentsProps", "disableAutoFocus", "disableEnforceFocus", "disableEscapeKeyDown", "disablePortal", "disableRestoreFocus", "disableScrollLock", "hideBackdrop", "keepMounted", "onBackdropClick", "onClose", "onTransitionEnter", "onTransitionExited", "open", "slotProps", "slots", "theme"];
|
|
22499
|
+
const useUtilityClasses$J = ownerState => {
|
|
22664
22500
|
const {
|
|
22665
22501
|
open,
|
|
22666
22502
|
exited,
|
|
@@ -22747,7 +22583,7 @@ const Modal = /*#__PURE__*/React$1.forwardRef(function Modal(inProps, ref) {
|
|
|
22747
22583
|
slots
|
|
22748
22584
|
// eslint-disable-next-line react/prop-types
|
|
22749
22585
|
} = props,
|
|
22750
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
22586
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$W);
|
|
22751
22587
|
const propsWithDefaults = _extends$1({}, props, {
|
|
22752
22588
|
closeAfterTransition,
|
|
22753
22589
|
disableAutoFocus,
|
|
@@ -22773,7 +22609,7 @@ const Modal = /*#__PURE__*/React$1.forwardRef(function Modal(inProps, ref) {
|
|
|
22773
22609
|
const ownerState = _extends$1({}, propsWithDefaults, {
|
|
22774
22610
|
exited
|
|
22775
22611
|
});
|
|
22776
|
-
const classes = useUtilityClasses$
|
|
22612
|
+
const classes = useUtilityClasses$J(ownerState);
|
|
22777
22613
|
const childProps = {};
|
|
22778
22614
|
if (children.props.tabIndex === undefined) {
|
|
22779
22615
|
childProps.tabIndex = '-1';
|
|
@@ -23040,8 +22876,8 @@ function getPaperUtilityClass(slot) {
|
|
|
23040
22876
|
}
|
|
23041
22877
|
generateUtilityClasses$1('MuiPaper', ['root', 'rounded', 'outlined', 'elevation', 'elevation0', 'elevation1', 'elevation2', 'elevation3', 'elevation4', 'elevation5', 'elevation6', 'elevation7', 'elevation8', 'elevation9', 'elevation10', 'elevation11', 'elevation12', 'elevation13', 'elevation14', 'elevation15', 'elevation16', 'elevation17', 'elevation18', 'elevation19', 'elevation20', 'elevation21', 'elevation22', 'elevation23', 'elevation24']);
|
|
23042
22878
|
|
|
23043
|
-
const _excluded$
|
|
23044
|
-
const useUtilityClasses$
|
|
22879
|
+
const _excluded$V = ["className", "component", "elevation", "square", "variant"];
|
|
22880
|
+
const useUtilityClasses$I = ownerState => {
|
|
23045
22881
|
const {
|
|
23046
22882
|
square,
|
|
23047
22883
|
elevation,
|
|
@@ -23095,14 +22931,14 @@ const Paper = /*#__PURE__*/React$1.forwardRef(function Paper(inProps, ref) {
|
|
|
23095
22931
|
square = false,
|
|
23096
22932
|
variant = 'elevation'
|
|
23097
22933
|
} = props,
|
|
23098
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
22934
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$V);
|
|
23099
22935
|
const ownerState = _extends$1({}, props, {
|
|
23100
22936
|
component,
|
|
23101
22937
|
elevation,
|
|
23102
22938
|
square,
|
|
23103
22939
|
variant
|
|
23104
22940
|
});
|
|
23105
|
-
const classes = useUtilityClasses$
|
|
22941
|
+
const classes = useUtilityClasses$I(ownerState);
|
|
23106
22942
|
if (process.env.NODE_ENV !== 'production') {
|
|
23107
22943
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
|
23108
22944
|
const theme = useTheme$2();
|
|
@@ -23175,7 +23011,7 @@ function getPopoverUtilityClass(slot) {
|
|
|
23175
23011
|
}
|
|
23176
23012
|
generateUtilityClasses$1('MuiPopover', ['root', 'paper']);
|
|
23177
23013
|
|
|
23178
|
-
const _excluded$
|
|
23014
|
+
const _excluded$U = ["onEntering"],
|
|
23179
23015
|
_excluded2$a = ["action", "anchorEl", "anchorOrigin", "anchorPosition", "anchorReference", "children", "className", "container", "elevation", "marginThreshold", "open", "PaperProps", "slots", "slotProps", "transformOrigin", "TransitionComponent", "transitionDuration", "TransitionProps", "disableScrollLock"],
|
|
23180
23016
|
_excluded3$4 = ["slotProps"];
|
|
23181
23017
|
function getOffsetTop(rect, vertical) {
|
|
@@ -23206,7 +23042,7 @@ function getTransformOriginValue(transformOrigin) {
|
|
|
23206
23042
|
function resolveAnchorEl(anchorEl) {
|
|
23207
23043
|
return typeof anchorEl === 'function' ? anchorEl() : anchorEl;
|
|
23208
23044
|
}
|
|
23209
|
-
const useUtilityClasses$
|
|
23045
|
+
const useUtilityClasses$H = ownerState => {
|
|
23210
23046
|
const {
|
|
23211
23047
|
classes
|
|
23212
23048
|
} = ownerState;
|
|
@@ -23273,7 +23109,7 @@ const Popover = /*#__PURE__*/React$1.forwardRef(function Popover(inProps, ref) {
|
|
|
23273
23109
|
} = {},
|
|
23274
23110
|
disableScrollLock = false
|
|
23275
23111
|
} = props,
|
|
23276
|
-
TransitionProps = _objectWithoutPropertiesLoose(props.TransitionProps, _excluded$
|
|
23112
|
+
TransitionProps = _objectWithoutPropertiesLoose(props.TransitionProps, _excluded$U),
|
|
23277
23113
|
other = _objectWithoutPropertiesLoose(props, _excluded2$a);
|
|
23278
23114
|
const externalPaperSlotProps = (_slotProps$paper = slotProps == null ? void 0 : slotProps.paper) != null ? _slotProps$paper : PaperPropsProp;
|
|
23279
23115
|
const paperRef = React$1.useRef();
|
|
@@ -23289,7 +23125,7 @@ const Popover = /*#__PURE__*/React$1.forwardRef(function Popover(inProps, ref) {
|
|
|
23289
23125
|
transitionDuration: transitionDurationProp,
|
|
23290
23126
|
TransitionProps
|
|
23291
23127
|
});
|
|
23292
|
-
const classes = useUtilityClasses$
|
|
23128
|
+
const classes = useUtilityClasses$H(ownerState);
|
|
23293
23129
|
|
|
23294
23130
|
// Returns the top/left offset of the position
|
|
23295
23131
|
// to attach to on the anchor element (or body if none is provided)
|
|
@@ -23691,7 +23527,7 @@ function getMenuUtilityClass(slot) {
|
|
|
23691
23527
|
}
|
|
23692
23528
|
generateUtilityClasses$1('MuiMenu', ['root', 'paper', 'list']);
|
|
23693
23529
|
|
|
23694
|
-
const _excluded$
|
|
23530
|
+
const _excluded$T = ["onEntering"],
|
|
23695
23531
|
_excluded2$9 = ["autoFocus", "children", "className", "disableAutoFocusItem", "MenuListProps", "onClose", "open", "PaperProps", "PopoverClasses", "transitionDuration", "TransitionProps", "variant", "slots", "slotProps"];
|
|
23696
23532
|
const RTL_ORIGIN = {
|
|
23697
23533
|
vertical: 'top',
|
|
@@ -23701,7 +23537,7 @@ const LTR_ORIGIN = {
|
|
|
23701
23537
|
vertical: 'top',
|
|
23702
23538
|
horizontal: 'left'
|
|
23703
23539
|
};
|
|
23704
|
-
const useUtilityClasses$
|
|
23540
|
+
const useUtilityClasses$G = ownerState => {
|
|
23705
23541
|
const {
|
|
23706
23542
|
classes
|
|
23707
23543
|
} = ownerState;
|
|
@@ -23762,7 +23598,7 @@ const Menu$1 = /*#__PURE__*/React$1.forwardRef(function Menu(inProps, ref) {
|
|
|
23762
23598
|
slots = {},
|
|
23763
23599
|
slotProps = {}
|
|
23764
23600
|
} = props,
|
|
23765
|
-
TransitionProps = _objectWithoutPropertiesLoose(props.TransitionProps, _excluded$
|
|
23601
|
+
TransitionProps = _objectWithoutPropertiesLoose(props.TransitionProps, _excluded$T),
|
|
23766
23602
|
other = _objectWithoutPropertiesLoose(props, _excluded2$9);
|
|
23767
23603
|
const isRtl = useRtl();
|
|
23768
23604
|
const ownerState = _extends$1({}, props, {
|
|
@@ -23775,7 +23611,7 @@ const Menu$1 = /*#__PURE__*/React$1.forwardRef(function Menu(inProps, ref) {
|
|
|
23775
23611
|
TransitionProps,
|
|
23776
23612
|
variant
|
|
23777
23613
|
});
|
|
23778
|
-
const classes = useUtilityClasses$
|
|
23614
|
+
const classes = useUtilityClasses$G(ownerState);
|
|
23779
23615
|
const autoFocusItem = autoFocus && !disableAutoFocusItem && open;
|
|
23780
23616
|
const menuListActionsRef = React$1.useRef(null);
|
|
23781
23617
|
const handleEntering = (element, isAppearing) => {
|
|
@@ -23985,8 +23821,8 @@ function getNativeSelectUtilityClasses(slot) {
|
|
|
23985
23821
|
}
|
|
23986
23822
|
const nativeSelectClasses = generateUtilityClasses$1('MuiNativeSelect', ['root', 'select', 'multiple', 'filled', 'outlined', 'standard', 'disabled', 'icon', 'iconOpen', 'iconFilled', 'iconOutlined', 'iconStandard', 'nativeInput', 'error']);
|
|
23987
23823
|
|
|
23988
|
-
const _excluded$
|
|
23989
|
-
const useUtilityClasses$
|
|
23824
|
+
const _excluded$S = ["className", "disabled", "error", "IconComponent", "inputRef", "variant"];
|
|
23825
|
+
const useUtilityClasses$F = ownerState => {
|
|
23990
23826
|
const {
|
|
23991
23827
|
classes,
|
|
23992
23828
|
variant,
|
|
@@ -24112,13 +23948,13 @@ const NativeSelectInput = /*#__PURE__*/React$1.forwardRef(function NativeSelectI
|
|
|
24112
23948
|
inputRef,
|
|
24113
23949
|
variant = 'standard'
|
|
24114
23950
|
} = props,
|
|
24115
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
23951
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$S);
|
|
24116
23952
|
const ownerState = _extends$1({}, props, {
|
|
24117
23953
|
disabled,
|
|
24118
23954
|
variant,
|
|
24119
23955
|
error
|
|
24120
23956
|
});
|
|
24121
|
-
const classes = useUtilityClasses$
|
|
23957
|
+
const classes = useUtilityClasses$F(ownerState);
|
|
24122
23958
|
return /*#__PURE__*/jsxRuntimeExports.jsxs(React$1.Fragment, {
|
|
24123
23959
|
children: [/*#__PURE__*/jsxRuntimeExports.jsx(NativeSelectSelect, _extends$1({
|
|
24124
23960
|
ownerState: ownerState,
|
|
@@ -24194,7 +24030,7 @@ function getSelectUtilityClasses(slot) {
|
|
|
24194
24030
|
const selectClasses = generateUtilityClasses$1('MuiSelect', ['root', 'select', 'multiple', 'filled', 'outlined', 'standard', 'disabled', 'focused', 'icon', 'iconOpen', 'iconFilled', 'iconOutlined', 'iconStandard', 'nativeInput', 'error']);
|
|
24195
24031
|
|
|
24196
24032
|
var _span$1;
|
|
24197
|
-
const _excluded$
|
|
24033
|
+
const _excluded$R = ["aria-describedby", "aria-label", "autoFocus", "autoWidth", "children", "className", "defaultOpen", "defaultValue", "disabled", "displayEmpty", "error", "IconComponent", "inputRef", "labelId", "MenuProps", "multiple", "name", "onBlur", "onChange", "onClose", "onFocus", "onOpen", "open", "readOnly", "renderValue", "SelectDisplayProps", "tabIndex", "type", "value", "variant"];
|
|
24198
24034
|
const SelectSelect = styled$1('div', {
|
|
24199
24035
|
name: 'MuiSelect',
|
|
24200
24036
|
slot: 'Select',
|
|
@@ -24261,7 +24097,7 @@ function areEqualValues(a, b) {
|
|
|
24261
24097
|
function isEmpty$1(display) {
|
|
24262
24098
|
return display == null || typeof display === 'string' && !display.trim();
|
|
24263
24099
|
}
|
|
24264
|
-
const useUtilityClasses$
|
|
24100
|
+
const useUtilityClasses$E = ownerState => {
|
|
24265
24101
|
const {
|
|
24266
24102
|
classes,
|
|
24267
24103
|
variant,
|
|
@@ -24317,7 +24153,7 @@ const SelectInput = /*#__PURE__*/React$1.forwardRef(function SelectInput(props,
|
|
|
24317
24153
|
value: valueProp,
|
|
24318
24154
|
variant = 'standard'
|
|
24319
24155
|
} = props,
|
|
24320
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
24156
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$R);
|
|
24321
24157
|
const [value, setValueState] = useControlled({
|
|
24322
24158
|
controlled: valueProp,
|
|
24323
24159
|
default: defaultValue,
|
|
@@ -24604,7 +24440,7 @@ const SelectInput = /*#__PURE__*/React$1.forwardRef(function SelectInput(props,
|
|
|
24604
24440
|
open,
|
|
24605
24441
|
error
|
|
24606
24442
|
});
|
|
24607
|
-
const classes = useUtilityClasses$
|
|
24443
|
+
const classes = useUtilityClasses$E(ownerState);
|
|
24608
24444
|
const paperProps = _extends$1({}, MenuProps.PaperProps, (_MenuProps$slotProps = MenuProps.slotProps) == null ? void 0 : _MenuProps$slotProps.paper);
|
|
24609
24445
|
const listboxId = useId();
|
|
24610
24446
|
return /*#__PURE__*/jsxRuntimeExports.jsxs(React$1.Fragment, {
|
|
@@ -24832,8 +24668,8 @@ function getSvgIconUtilityClass(slot) {
|
|
|
24832
24668
|
}
|
|
24833
24669
|
generateUtilityClasses$1('MuiSvgIcon', ['root', 'colorPrimary', 'colorSecondary', 'colorAction', 'colorError', 'colorDisabled', 'fontSizeInherit', 'fontSizeSmall', 'fontSizeMedium', 'fontSizeLarge']);
|
|
24834
24670
|
|
|
24835
|
-
const _excluded$
|
|
24836
|
-
const useUtilityClasses$
|
|
24671
|
+
const _excluded$Q = ["children", "className", "color", "component", "fontSize", "htmlColor", "inheritViewBox", "titleAccess", "viewBox"];
|
|
24672
|
+
const useUtilityClasses$D = ownerState => {
|
|
24837
24673
|
const {
|
|
24838
24674
|
color,
|
|
24839
24675
|
fontSize,
|
|
@@ -24900,7 +24736,7 @@ const SvgIcon = /*#__PURE__*/React$1.forwardRef(function SvgIcon(inProps, ref) {
|
|
|
24900
24736
|
titleAccess,
|
|
24901
24737
|
viewBox = '0 0 24 24'
|
|
24902
24738
|
} = props,
|
|
24903
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
24739
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$Q);
|
|
24904
24740
|
const hasSvgAsChild = /*#__PURE__*/React$1.isValidElement(children) && children.type === 'svg';
|
|
24905
24741
|
const ownerState = _extends$1({}, props, {
|
|
24906
24742
|
color,
|
|
@@ -24915,7 +24751,7 @@ const SvgIcon = /*#__PURE__*/React$1.forwardRef(function SvgIcon(inProps, ref) {
|
|
|
24915
24751
|
if (!inheritViewBox) {
|
|
24916
24752
|
more.viewBox = viewBox;
|
|
24917
24753
|
}
|
|
24918
|
-
const classes = useUtilityClasses$
|
|
24754
|
+
const classes = useUtilityClasses$D(ownerState);
|
|
24919
24755
|
return /*#__PURE__*/jsxRuntimeExports.jsxs(SvgIconRoot, _extends$1({
|
|
24920
24756
|
as: component,
|
|
24921
24757
|
className: clsx(classes.root, className),
|
|
@@ -25027,9 +24863,9 @@ var ArrowDropDownIcon$1 = createSvgIcon$1( /*#__PURE__*/jsxRuntimeExports.jsx("p
|
|
|
25027
24863
|
d: "M7 10l5 5 5-5z"
|
|
25028
24864
|
}), 'ArrowDropDown');
|
|
25029
24865
|
|
|
25030
|
-
const _excluded$
|
|
24866
|
+
const _excluded$P = ["autoWidth", "children", "classes", "className", "defaultOpen", "displayEmpty", "IconComponent", "id", "input", "inputProps", "label", "labelId", "MenuProps", "multiple", "native", "onClose", "onOpen", "open", "renderValue", "SelectDisplayProps", "variant"],
|
|
25031
24867
|
_excluded2$8 = ["root"];
|
|
25032
|
-
const useUtilityClasses$
|
|
24868
|
+
const useUtilityClasses$C = ownerState => {
|
|
25033
24869
|
const {
|
|
25034
24870
|
classes
|
|
25035
24871
|
} = ownerState;
|
|
@@ -25072,7 +24908,7 @@ const Select = /*#__PURE__*/React$1.forwardRef(function Select(inProps, ref) {
|
|
|
25072
24908
|
SelectDisplayProps,
|
|
25073
24909
|
variant: variantProp = 'outlined'
|
|
25074
24910
|
} = props,
|
|
25075
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
24911
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$P);
|
|
25076
24912
|
const inputComponent = native ? NativeSelectInput : SelectInput;
|
|
25077
24913
|
const muiFormControl = useFormControl();
|
|
25078
24914
|
const fcs = formControlState({
|
|
@@ -25085,7 +24921,7 @@ const Select = /*#__PURE__*/React$1.forwardRef(function Select(inProps, ref) {
|
|
|
25085
24921
|
variant,
|
|
25086
24922
|
classes: classesProp
|
|
25087
24923
|
});
|
|
25088
|
-
const classes = useUtilityClasses$
|
|
24924
|
+
const classes = useUtilityClasses$C(ownerState);
|
|
25089
24925
|
const restOfClasses = _objectWithoutPropertiesLoose(classes, _excluded2$8);
|
|
25090
24926
|
const InputComponent = input || {
|
|
25091
24927
|
standard: /*#__PURE__*/jsxRuntimeExports.jsx(StyledInput, {
|
|
@@ -25295,13 +25131,13 @@ function getTextFieldUtilityClass(slot) {
|
|
|
25295
25131
|
}
|
|
25296
25132
|
generateUtilityClasses$1('MuiTextField', ['root']);
|
|
25297
25133
|
|
|
25298
|
-
const _excluded$
|
|
25134
|
+
const _excluded$O = ["autoComplete", "autoFocus", "children", "className", "color", "defaultValue", "disabled", "error", "FormHelperTextProps", "fullWidth", "helperText", "id", "InputLabelProps", "inputProps", "InputProps", "inputRef", "label", "maxRows", "minRows", "multiline", "name", "onBlur", "onChange", "onFocus", "placeholder", "required", "rows", "select", "SelectProps", "type", "value", "variant"];
|
|
25299
25135
|
const variantComponent = {
|
|
25300
25136
|
standard: Input,
|
|
25301
25137
|
filled: FilledInput,
|
|
25302
25138
|
outlined: OutlinedInput
|
|
25303
25139
|
};
|
|
25304
|
-
const useUtilityClasses$
|
|
25140
|
+
const useUtilityClasses$B = ownerState => {
|
|
25305
25141
|
const {
|
|
25306
25142
|
classes
|
|
25307
25143
|
} = ownerState;
|
|
@@ -25387,7 +25223,7 @@ const TextField = /*#__PURE__*/React$1.forwardRef(function TextField(inProps, re
|
|
|
25387
25223
|
value,
|
|
25388
25224
|
variant = 'outlined'
|
|
25389
25225
|
} = props,
|
|
25390
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
25226
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$O);
|
|
25391
25227
|
const ownerState = _extends$1({}, props, {
|
|
25392
25228
|
autoFocus,
|
|
25393
25229
|
color,
|
|
@@ -25399,7 +25235,7 @@ const TextField = /*#__PURE__*/React$1.forwardRef(function TextField(inProps, re
|
|
|
25399
25235
|
select,
|
|
25400
25236
|
variant
|
|
25401
25237
|
});
|
|
25402
|
-
const classes = useUtilityClasses$
|
|
25238
|
+
const classes = useUtilityClasses$B(ownerState);
|
|
25403
25239
|
if (process.env.NODE_ENV !== 'production') {
|
|
25404
25240
|
if (select && !children) {
|
|
25405
25241
|
console.error('MUI: `children` must be passed when using the `TextField` component with `select`.');
|
|
@@ -25649,18 +25485,6 @@ process.env.NODE_ENV !== "production" ? TextField.propTypes /* remove-proptypes
|
|
|
25649
25485
|
variant: PropTypes.oneOf(['filled', 'outlined', 'standard'])
|
|
25650
25486
|
} : void 0;
|
|
25651
25487
|
|
|
25652
|
-
// Ported from Compass
|
|
25653
|
-
// https://github.com/Compass/compass/blob/master/core/stylesheets/compass/typography/_units.scss
|
|
25654
|
-
// Emulate the sass function "unit"
|
|
25655
|
-
function getUnit(input) {
|
|
25656
|
-
return String(input).match(/[\d.\-+]*\s*(.*)/)[1] || '';
|
|
25657
|
-
}
|
|
25658
|
-
|
|
25659
|
-
// Emulate the sass function "unitless"
|
|
25660
|
-
function toUnitless(length) {
|
|
25661
|
-
return parseFloat(length);
|
|
25662
|
-
}
|
|
25663
|
-
|
|
25664
25488
|
const boxClasses = generateUtilityClasses$1('MuiBox', ['root']);
|
|
25665
25489
|
|
|
25666
25490
|
const defaultTheme = createTheme();
|
|
@@ -25810,15 +25634,15 @@ process.env.NODE_ENV !== "production" ? Ripple.propTypes = {
|
|
|
25810
25634
|
|
|
25811
25635
|
const touchRippleClasses = generateUtilityClasses$1('MuiTouchRipple', ['root', 'ripple', 'rippleVisible', 'ripplePulsate', 'child', 'childLeaving', 'childPulsate']);
|
|
25812
25636
|
|
|
25813
|
-
const _excluded$
|
|
25814
|
-
let _
|
|
25815
|
-
_t
|
|
25816
|
-
_t2
|
|
25817
|
-
_t3
|
|
25818
|
-
_t4
|
|
25637
|
+
const _excluded$N = ["center", "classes", "className"];
|
|
25638
|
+
let _ = t => t,
|
|
25639
|
+
_t,
|
|
25640
|
+
_t2,
|
|
25641
|
+
_t3,
|
|
25642
|
+
_t4;
|
|
25819
25643
|
const DURATION = 550;
|
|
25820
25644
|
const DELAY_RIPPLE = 80;
|
|
25821
|
-
const enterKeyframe = keyframes(_t
|
|
25645
|
+
const enterKeyframe = keyframes(_t || (_t = _`
|
|
25822
25646
|
0% {
|
|
25823
25647
|
transform: scale(0);
|
|
25824
25648
|
opacity: 0.1;
|
|
@@ -25829,7 +25653,7 @@ const enterKeyframe = keyframes(_t$1 || (_t$1 = _$1`
|
|
|
25829
25653
|
opacity: 0.3;
|
|
25830
25654
|
}
|
|
25831
25655
|
`));
|
|
25832
|
-
const exitKeyframe = keyframes(_t2
|
|
25656
|
+
const exitKeyframe = keyframes(_t2 || (_t2 = _`
|
|
25833
25657
|
0% {
|
|
25834
25658
|
opacity: 1;
|
|
25835
25659
|
}
|
|
@@ -25838,7 +25662,7 @@ const exitKeyframe = keyframes(_t2$1 || (_t2$1 = _$1`
|
|
|
25838
25662
|
opacity: 0;
|
|
25839
25663
|
}
|
|
25840
25664
|
`));
|
|
25841
|
-
const pulsateKeyframe = keyframes(_t3
|
|
25665
|
+
const pulsateKeyframe = keyframes(_t3 || (_t3 = _`
|
|
25842
25666
|
0% {
|
|
25843
25667
|
transform: scale(1);
|
|
25844
25668
|
}
|
|
@@ -25871,7 +25695,7 @@ const TouchRippleRoot = styled$1('span', {
|
|
|
25871
25695
|
const TouchRippleRipple = styled$1(Ripple, {
|
|
25872
25696
|
name: 'MuiTouchRipple',
|
|
25873
25697
|
slot: 'Ripple'
|
|
25874
|
-
})(_t4
|
|
25698
|
+
})(_t4 || (_t4 = _`
|
|
25875
25699
|
opacity: 0;
|
|
25876
25700
|
position: absolute;
|
|
25877
25701
|
|
|
@@ -25939,7 +25763,7 @@ const TouchRipple = /*#__PURE__*/React$1.forwardRef(function TouchRipple(inProps
|
|
|
25939
25763
|
classes = {},
|
|
25940
25764
|
className
|
|
25941
25765
|
} = props,
|
|
25942
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
25766
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$N);
|
|
25943
25767
|
const [ripples, setRipples] = React$1.useState([]);
|
|
25944
25768
|
const nextKey = React$1.useRef(0);
|
|
25945
25769
|
const rippleCallback = React$1.useRef(null);
|
|
@@ -26133,8 +25957,8 @@ function getButtonBaseUtilityClass(slot) {
|
|
|
26133
25957
|
}
|
|
26134
25958
|
const buttonBaseClasses = generateUtilityClasses$1('MuiButtonBase', ['root', 'disabled', 'focusVisible']);
|
|
26135
25959
|
|
|
26136
|
-
const _excluded$
|
|
26137
|
-
const useUtilityClasses$
|
|
25960
|
+
const _excluded$M = ["action", "centerRipple", "children", "className", "component", "disabled", "disableRipple", "disableTouchRipple", "focusRipple", "focusVisibleClassName", "LinkComponent", "onBlur", "onClick", "onContextMenu", "onDragLeave", "onFocus", "onFocusVisible", "onKeyDown", "onKeyUp", "onMouseDown", "onMouseLeave", "onMouseUp", "onTouchEnd", "onTouchMove", "onTouchStart", "tabIndex", "TouchRippleProps", "touchRippleRef", "type"];
|
|
25961
|
+
const useUtilityClasses$A = ownerState => {
|
|
26138
25962
|
const {
|
|
26139
25963
|
disabled,
|
|
26140
25964
|
focusVisible,
|
|
@@ -26234,7 +26058,7 @@ const ButtonBase = /*#__PURE__*/React$1.forwardRef(function ButtonBase(inProps,
|
|
|
26234
26058
|
touchRippleRef,
|
|
26235
26059
|
type
|
|
26236
26060
|
} = props,
|
|
26237
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
26061
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$M);
|
|
26238
26062
|
const buttonRef = React$1.useRef(null);
|
|
26239
26063
|
const rippleRef = React$1.useRef(null);
|
|
26240
26064
|
const handleRippleRef = useForkRef(rippleRef, touchRippleRef);
|
|
@@ -26401,7 +26225,7 @@ const ButtonBase = /*#__PURE__*/React$1.forwardRef(function ButtonBase(inProps,
|
|
|
26401
26225
|
tabIndex,
|
|
26402
26226
|
focusVisible
|
|
26403
26227
|
});
|
|
26404
|
-
const classes = useUtilityClasses$
|
|
26228
|
+
const classes = useUtilityClasses$A(ownerState);
|
|
26405
26229
|
return /*#__PURE__*/jsxRuntimeExports.jsxs(ButtonBaseRoot, _extends$1({
|
|
26406
26230
|
as: ComponentProp,
|
|
26407
26231
|
className: clsx(classes.root, className),
|
|
@@ -26596,8 +26420,8 @@ function getIconButtonUtilityClass(slot) {
|
|
|
26596
26420
|
}
|
|
26597
26421
|
const iconButtonClasses = generateUtilityClasses$1('MuiIconButton', ['root', 'disabled', 'colorInherit', 'colorPrimary', 'colorSecondary', 'colorError', 'colorInfo', 'colorSuccess', 'colorWarning', 'edgeStart', 'edgeEnd', 'sizeSmall', 'sizeMedium', 'sizeLarge']);
|
|
26598
26422
|
|
|
26599
|
-
const _excluded$
|
|
26600
|
-
const useUtilityClasses$
|
|
26423
|
+
const _excluded$L = ["edge", "children", "className", "color", "disabled", "disableFocusRipple", "size"];
|
|
26424
|
+
const useUtilityClasses$z = ownerState => {
|
|
26601
26425
|
const {
|
|
26602
26426
|
classes,
|
|
26603
26427
|
disabled,
|
|
@@ -26697,7 +26521,7 @@ const IconButton = /*#__PURE__*/React$1.forwardRef(function IconButton(inProps,
|
|
|
26697
26521
|
disableFocusRipple = false,
|
|
26698
26522
|
size = 'medium'
|
|
26699
26523
|
} = props,
|
|
26700
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
26524
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$L);
|
|
26701
26525
|
const ownerState = _extends$1({}, props, {
|
|
26702
26526
|
edge,
|
|
26703
26527
|
color,
|
|
@@ -26705,7 +26529,7 @@ const IconButton = /*#__PURE__*/React$1.forwardRef(function IconButton(inProps,
|
|
|
26705
26529
|
disableFocusRipple,
|
|
26706
26530
|
size
|
|
26707
26531
|
});
|
|
26708
|
-
const classes = useUtilityClasses$
|
|
26532
|
+
const classes = useUtilityClasses$z(ownerState);
|
|
26709
26533
|
return /*#__PURE__*/jsxRuntimeExports.jsx(IconButtonRoot, _extends$1({
|
|
26710
26534
|
className: clsx(classes.root, className),
|
|
26711
26535
|
centerRipple: true,
|
|
@@ -26794,8 +26618,8 @@ function getTypographyUtilityClass(slot) {
|
|
|
26794
26618
|
}
|
|
26795
26619
|
generateUtilityClasses$1('MuiTypography', ['root', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'subtitle1', 'subtitle2', 'body1', 'body2', 'inherit', 'button', 'caption', 'overline', 'alignLeft', 'alignRight', 'alignCenter', 'alignJustify', 'noWrap', 'gutterBottom', 'paragraph']);
|
|
26796
26620
|
|
|
26797
|
-
const _excluded$
|
|
26798
|
-
const useUtilityClasses$
|
|
26621
|
+
const _excluded$K = ["align", "className", "component", "gutterBottom", "noWrap", "paragraph", "variant", "variantMapping"];
|
|
26622
|
+
const useUtilityClasses$y = ownerState => {
|
|
26799
26623
|
const {
|
|
26800
26624
|
align,
|
|
26801
26625
|
gutterBottom,
|
|
@@ -26881,7 +26705,7 @@ const Typography = /*#__PURE__*/React$1.forwardRef(function Typography(inProps,
|
|
|
26881
26705
|
variant = 'body1',
|
|
26882
26706
|
variantMapping = defaultVariantMapping
|
|
26883
26707
|
} = props,
|
|
26884
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
26708
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$K);
|
|
26885
26709
|
const ownerState = _extends$1({}, props, {
|
|
26886
26710
|
align,
|
|
26887
26711
|
color,
|
|
@@ -26894,7 +26718,7 @@ const Typography = /*#__PURE__*/React$1.forwardRef(function Typography(inProps,
|
|
|
26894
26718
|
variantMapping
|
|
26895
26719
|
});
|
|
26896
26720
|
const Component = component || (paragraph ? 'p' : variantMapping[variant] || defaultVariantMapping[variant]) || 'span';
|
|
26897
|
-
const classes = useUtilityClasses$
|
|
26721
|
+
const classes = useUtilityClasses$y(ownerState);
|
|
26898
26722
|
return /*#__PURE__*/jsxRuntimeExports.jsx(TypographyRoot, _extends$1({
|
|
26899
26723
|
as: Component,
|
|
26900
26724
|
ref: ref,
|
|
@@ -26997,7 +26821,7 @@ function useTheme$1(defaultTheme = null) {
|
|
|
26997
26821
|
}
|
|
26998
26822
|
default_1$5 = useThemeWithoutDefault.default = useTheme$1;
|
|
26999
26823
|
|
|
27000
|
-
const _excluded$
|
|
26824
|
+
const _excluded$J = ["anchorEl", "component", "components", "componentsProps", "container", "disablePortal", "keepMounted", "modifiers", "open", "placement", "popperOptions", "popperRef", "transition", "slots", "slotProps"];
|
|
27001
26825
|
const PopperRoot = styled$1(Popper$1, {
|
|
27002
26826
|
name: 'MuiPopper',
|
|
27003
26827
|
slot: 'Root',
|
|
@@ -27040,7 +26864,7 @@ const Popper = /*#__PURE__*/React$1.forwardRef(function Popper(inProps, ref) {
|
|
|
27040
26864
|
slots,
|
|
27041
26865
|
slotProps
|
|
27042
26866
|
} = props,
|
|
27043
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
26867
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$J);
|
|
27044
26868
|
const RootComponent = (_slots$root = slots == null ? void 0 : slots.root) != null ? _slots$root : components == null ? void 0 : components.Root;
|
|
27045
26869
|
const otherProps = _extends$1({
|
|
27046
26870
|
anchorEl,
|
|
@@ -27198,8 +27022,8 @@ function getListSubheaderUtilityClass(slot) {
|
|
|
27198
27022
|
}
|
|
27199
27023
|
generateUtilityClasses$1('MuiListSubheader', ['root', 'colorPrimary', 'colorInherit', 'gutters', 'inset', 'sticky']);
|
|
27200
27024
|
|
|
27201
|
-
const _excluded$
|
|
27202
|
-
const useUtilityClasses$
|
|
27025
|
+
const _excluded$I = ["className", "color", "component", "disableGutters", "disableSticky", "inset"];
|
|
27026
|
+
const useUtilityClasses$x = ownerState => {
|
|
27203
27027
|
const {
|
|
27204
27028
|
classes,
|
|
27205
27029
|
color,
|
|
@@ -27260,7 +27084,7 @@ const ListSubheader = /*#__PURE__*/React$1.forwardRef(function ListSubheader(inP
|
|
|
27260
27084
|
disableSticky = false,
|
|
27261
27085
|
inset = false
|
|
27262
27086
|
} = props,
|
|
27263
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
27087
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$I);
|
|
27264
27088
|
const ownerState = _extends$1({}, props, {
|
|
27265
27089
|
color,
|
|
27266
27090
|
component,
|
|
@@ -27268,7 +27092,7 @@ const ListSubheader = /*#__PURE__*/React$1.forwardRef(function ListSubheader(inP
|
|
|
27268
27092
|
disableSticky,
|
|
27269
27093
|
inset
|
|
27270
27094
|
});
|
|
27271
|
-
const classes = useUtilityClasses$
|
|
27095
|
+
const classes = useUtilityClasses$x(ownerState);
|
|
27272
27096
|
return /*#__PURE__*/jsxRuntimeExports.jsx(ListSubheaderRoot, _extends$1({
|
|
27273
27097
|
as: component,
|
|
27274
27098
|
className: clsx(classes.root, className),
|
|
@@ -27334,8 +27158,8 @@ function getChipUtilityClass(slot) {
|
|
|
27334
27158
|
}
|
|
27335
27159
|
const chipClasses = generateUtilityClasses$1('MuiChip', ['root', 'sizeSmall', 'sizeMedium', 'colorError', 'colorInfo', 'colorPrimary', 'colorSecondary', 'colorSuccess', 'colorWarning', 'disabled', 'clickable', 'clickableColorPrimary', 'clickableColorSecondary', 'deletable', 'deletableColorPrimary', 'deletableColorSecondary', 'outlined', 'filled', 'outlinedPrimary', 'outlinedSecondary', 'filledPrimary', 'filledSecondary', 'avatar', 'avatarSmall', 'avatarMedium', 'avatarColorPrimary', 'avatarColorSecondary', 'icon', 'iconSmall', 'iconMedium', 'iconColorPrimary', 'iconColorSecondary', 'label', 'labelSmall', 'labelMedium', 'deleteIcon', 'deleteIconSmall', 'deleteIconMedium', 'deleteIconColorPrimary', 'deleteIconColorSecondary', 'deleteIconOutlinedColorPrimary', 'deleteIconOutlinedColorSecondary', 'deleteIconFilledColorPrimary', 'deleteIconFilledColorSecondary', 'focusVisible']);
|
|
27336
27160
|
|
|
27337
|
-
const _excluded$
|
|
27338
|
-
const useUtilityClasses$
|
|
27161
|
+
const _excluded$H = ["avatar", "className", "clickable", "color", "component", "deleteIcon", "disabled", "icon", "label", "onClick", "onDelete", "onKeyDown", "onKeyUp", "size", "variant", "tabIndex", "skipFocusWhenDisabled"];
|
|
27162
|
+
const useUtilityClasses$w = ownerState => {
|
|
27339
27163
|
const {
|
|
27340
27164
|
classes,
|
|
27341
27165
|
disabled,
|
|
@@ -27620,7 +27444,7 @@ const Chip = /*#__PURE__*/React$1.forwardRef(function Chip(inProps, ref) {
|
|
|
27620
27444
|
tabIndex,
|
|
27621
27445
|
skipFocusWhenDisabled = false // TODO v6: Rename to `focusableWhenDisabled`.
|
|
27622
27446
|
} = props,
|
|
27623
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
27447
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$H);
|
|
27624
27448
|
const chipRef = React$1.useRef(null);
|
|
27625
27449
|
const handleRef = useForkRef(chipRef, ref);
|
|
27626
27450
|
const handleDeleteIconClick = event => {
|
|
@@ -27666,7 +27490,7 @@ const Chip = /*#__PURE__*/React$1.forwardRef(function Chip(inProps, ref) {
|
|
|
27666
27490
|
clickable,
|
|
27667
27491
|
variant
|
|
27668
27492
|
});
|
|
27669
|
-
const classes = useUtilityClasses$
|
|
27493
|
+
const classes = useUtilityClasses$w(ownerState);
|
|
27670
27494
|
const moreProps = component === ButtonBase ? _extends$1({
|
|
27671
27495
|
component: ComponentProp || 'div',
|
|
27672
27496
|
focusVisibleClassName: classes.focusVisible
|
|
@@ -27827,12 +27651,12 @@ function getAutocompleteUtilityClass(slot) {
|
|
|
27827
27651
|
const autocompleteClasses = generateUtilityClasses$1('MuiAutocomplete', ['root', 'expanded', 'fullWidth', 'focused', 'focusVisible', 'tag', 'tagSizeSmall', 'tagSizeMedium', 'hasPopupIcon', 'hasClearIcon', 'inputRoot', 'input', 'inputFocused', 'endAdornment', 'clearIndicator', 'popupIndicator', 'popupIndicatorOpen', 'popper', 'popperDisablePortal', 'paper', 'listbox', 'loading', 'noOptions', 'option', 'groupLabel', 'groupUl']);
|
|
27828
27652
|
|
|
27829
27653
|
var _ClearIcon, _ArrowDropDownIcon;
|
|
27830
|
-
const _excluded$
|
|
27654
|
+
const _excluded$G = ["autoComplete", "autoHighlight", "autoSelect", "blurOnSelect", "ChipProps", "className", "clearIcon", "clearOnBlur", "clearOnEscape", "clearText", "closeText", "componentsProps", "defaultValue", "disableClearable", "disableCloseOnSelect", "disabled", "disabledItemsFocusable", "disableListWrap", "disablePortal", "filterOptions", "filterSelectedOptions", "forcePopupIcon", "freeSolo", "fullWidth", "getLimitTagsText", "getOptionDisabled", "getOptionKey", "getOptionLabel", "isOptionEqualToValue", "groupBy", "handleHomeEndKeys", "id", "includeInputInList", "inputValue", "limitTags", "ListboxComponent", "ListboxProps", "loading", "loadingText", "multiple", "noOptionsText", "onChange", "onClose", "onHighlightChange", "onInputChange", "onOpen", "open", "openOnFocus", "openText", "options", "PaperComponent", "PopperComponent", "popupIcon", "readOnly", "renderGroup", "renderInput", "renderOption", "renderTags", "selectOnFocus", "size", "slotProps", "value"],
|
|
27831
27655
|
_excluded2$7 = ["ref"],
|
|
27832
27656
|
_excluded3$3 = ["key"],
|
|
27833
27657
|
_excluded4 = ["key"];
|
|
27834
27658
|
const useThemeProps = createUseThemeProps();
|
|
27835
|
-
const useUtilityClasses$
|
|
27659
|
+
const useUtilityClasses$v = ownerState => {
|
|
27836
27660
|
const {
|
|
27837
27661
|
classes,
|
|
27838
27662
|
disablePortal,
|
|
@@ -28271,7 +28095,7 @@ const Autocomplete = /*#__PURE__*/React$1.forwardRef(function Autocomplete(inPro
|
|
|
28271
28095
|
size = 'medium',
|
|
28272
28096
|
slotProps = {}
|
|
28273
28097
|
} = props,
|
|
28274
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
28098
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$G);
|
|
28275
28099
|
/* eslint-enable @typescript-eslint/no-unused-vars */
|
|
28276
28100
|
|
|
28277
28101
|
const {
|
|
@@ -28330,7 +28154,7 @@ const Autocomplete = /*#__PURE__*/React$1.forwardRef(function Autocomplete(inPro
|
|
|
28330
28154
|
popupOpen,
|
|
28331
28155
|
size
|
|
28332
28156
|
});
|
|
28333
|
-
const classes = useUtilityClasses$
|
|
28157
|
+
const classes = useUtilityClasses$v(ownerState);
|
|
28334
28158
|
let startAdornment;
|
|
28335
28159
|
if (multiple && value.length > 0) {
|
|
28336
28160
|
const getCustomizedTagProps = params => _extends$1({
|
|
@@ -28964,8 +28788,8 @@ if (process.env.NODE_ENV !== 'production') {
|
|
|
28964
28788
|
ButtonGroupButtonContext.displayName = 'ButtonGroupButtonContext';
|
|
28965
28789
|
}
|
|
28966
28790
|
|
|
28967
|
-
const _excluded$
|
|
28968
|
-
const useUtilityClasses$
|
|
28791
|
+
const _excluded$F = ["children", "color", "component", "className", "disabled", "disableElevation", "disableFocusRipple", "endIcon", "focusVisibleClassName", "fullWidth", "size", "startIcon", "type", "variant"];
|
|
28792
|
+
const useUtilityClasses$u = ownerState => {
|
|
28969
28793
|
const {
|
|
28970
28794
|
color,
|
|
28971
28795
|
disableElevation,
|
|
@@ -29191,7 +29015,7 @@ const Button = /*#__PURE__*/React$1.forwardRef(function Button(inProps, ref) {
|
|
|
29191
29015
|
type,
|
|
29192
29016
|
variant = 'text'
|
|
29193
29017
|
} = props,
|
|
29194
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
29018
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$F);
|
|
29195
29019
|
const ownerState = _extends$1({}, props, {
|
|
29196
29020
|
color,
|
|
29197
29021
|
component,
|
|
@@ -29203,7 +29027,7 @@ const Button = /*#__PURE__*/React$1.forwardRef(function Button(inProps, ref) {
|
|
|
29203
29027
|
type,
|
|
29204
29028
|
variant
|
|
29205
29029
|
});
|
|
29206
|
-
const classes = useUtilityClasses$
|
|
29030
|
+
const classes = useUtilityClasses$u(ownerState);
|
|
29207
29031
|
const startIcon = startIconProp && /*#__PURE__*/jsxRuntimeExports.jsx(ButtonStartIcon, {
|
|
29208
29032
|
className: classes.startIcon,
|
|
29209
29033
|
ownerState: ownerState,
|
|
@@ -29329,8 +29153,8 @@ function getSwitchBaseUtilityClass(slot) {
|
|
|
29329
29153
|
}
|
|
29330
29154
|
generateUtilityClasses$1('PrivateSwitchBase', ['root', 'checked', 'disabled', 'input', 'edgeStart', 'edgeEnd']);
|
|
29331
29155
|
|
|
29332
|
-
const _excluded$
|
|
29333
|
-
const useUtilityClasses$
|
|
29156
|
+
const _excluded$E = ["autoFocus", "checked", "checkedIcon", "className", "defaultChecked", "disabled", "disableFocusRipple", "edge", "icon", "id", "inputProps", "inputRef", "name", "onBlur", "onChange", "onFocus", "readOnly", "required", "tabIndex", "type", "value"];
|
|
29157
|
+
const useUtilityClasses$t = ownerState => {
|
|
29334
29158
|
const {
|
|
29335
29159
|
classes,
|
|
29336
29160
|
checked,
|
|
@@ -29395,7 +29219,7 @@ const SwitchBase = /*#__PURE__*/React$1.forwardRef(function SwitchBase(props, re
|
|
|
29395
29219
|
type,
|
|
29396
29220
|
value
|
|
29397
29221
|
} = props,
|
|
29398
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
29222
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$E);
|
|
29399
29223
|
const [checked, setCheckedState] = useControlled({
|
|
29400
29224
|
controlled: checkedProp,
|
|
29401
29225
|
default: Boolean(defaultChecked),
|
|
@@ -29444,7 +29268,7 @@ const SwitchBase = /*#__PURE__*/React$1.forwardRef(function SwitchBase(props, re
|
|
|
29444
29268
|
disableFocusRipple,
|
|
29445
29269
|
edge
|
|
29446
29270
|
});
|
|
29447
|
-
const classes = useUtilityClasses$
|
|
29271
|
+
const classes = useUtilityClasses$t(ownerState);
|
|
29448
29272
|
return /*#__PURE__*/jsxRuntimeExports.jsxs(SwitchBaseRoot, _extends$1({
|
|
29449
29273
|
component: "span",
|
|
29450
29274
|
className: clsx(classes.root, className),
|
|
@@ -29602,8 +29426,8 @@ function getCheckboxUtilityClass(slot) {
|
|
|
29602
29426
|
}
|
|
29603
29427
|
const checkboxClasses = generateUtilityClasses$1('MuiCheckbox', ['root', 'checked', 'disabled', 'indeterminate', 'colorPrimary', 'colorSecondary', 'sizeSmall', 'sizeMedium']);
|
|
29604
29428
|
|
|
29605
|
-
const _excluded$
|
|
29606
|
-
const useUtilityClasses$
|
|
29429
|
+
const _excluded$D = ["checkedIcon", "color", "icon", "indeterminate", "indeterminateIcon", "inputProps", "size", "className"];
|
|
29430
|
+
const useUtilityClasses$s = ownerState => {
|
|
29607
29431
|
const {
|
|
29608
29432
|
classes,
|
|
29609
29433
|
indeterminate,
|
|
@@ -29666,7 +29490,7 @@ const Checkbox = /*#__PURE__*/React$1.forwardRef(function Checkbox(inProps, ref)
|
|
|
29666
29490
|
size = 'medium',
|
|
29667
29491
|
className
|
|
29668
29492
|
} = props,
|
|
29669
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
29493
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$D);
|
|
29670
29494
|
const icon = indeterminate ? indeterminateIconProp : iconProp;
|
|
29671
29495
|
const indeterminateIcon = indeterminate ? indeterminateIconProp : checkedIcon;
|
|
29672
29496
|
const ownerState = _extends$1({}, props, {
|
|
@@ -29674,7 +29498,7 @@ const Checkbox = /*#__PURE__*/React$1.forwardRef(function Checkbox(inProps, ref)
|
|
|
29674
29498
|
indeterminate,
|
|
29675
29499
|
size
|
|
29676
29500
|
});
|
|
29677
|
-
const classes = useUtilityClasses$
|
|
29501
|
+
const classes = useUtilityClasses$s(ownerState);
|
|
29678
29502
|
return /*#__PURE__*/jsxRuntimeExports.jsx(CheckboxRoot, _extends$1({
|
|
29679
29503
|
type: "checkbox",
|
|
29680
29504
|
inputProps: _extends$1({
|
|
@@ -29865,7 +29689,7 @@ if (process.env.NODE_ENV !== 'production') {
|
|
|
29865
29689
|
DialogContext.displayName = 'DialogContext';
|
|
29866
29690
|
}
|
|
29867
29691
|
|
|
29868
|
-
const _excluded$
|
|
29692
|
+
const _excluded$C = ["aria-describedby", "aria-labelledby", "BackdropComponent", "BackdropProps", "children", "className", "disableEscapeKeyDown", "fullScreen", "fullWidth", "maxWidth", "onBackdropClick", "onClick", "onClose", "open", "PaperComponent", "PaperProps", "scroll", "TransitionComponent", "transitionDuration", "TransitionProps"];
|
|
29869
29693
|
const DialogBackdrop = styled$1(Backdrop, {
|
|
29870
29694
|
name: 'MuiDialog',
|
|
29871
29695
|
slot: 'Backdrop',
|
|
@@ -29874,7 +29698,7 @@ const DialogBackdrop = styled$1(Backdrop, {
|
|
|
29874
29698
|
// Improve scrollable dialog support.
|
|
29875
29699
|
zIndex: -1
|
|
29876
29700
|
});
|
|
29877
|
-
const useUtilityClasses$
|
|
29701
|
+
const useUtilityClasses$r = ownerState => {
|
|
29878
29702
|
const {
|
|
29879
29703
|
classes,
|
|
29880
29704
|
scroll,
|
|
@@ -30028,7 +29852,7 @@ const Dialog = /*#__PURE__*/React$1.forwardRef(function Dialog(inProps, ref) {
|
|
|
30028
29852
|
transitionDuration = defaultTransitionDuration,
|
|
30029
29853
|
TransitionProps
|
|
30030
29854
|
} = props,
|
|
30031
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
29855
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$C);
|
|
30032
29856
|
const ownerState = _extends$1({}, props, {
|
|
30033
29857
|
disableEscapeKeyDown,
|
|
30034
29858
|
fullScreen,
|
|
@@ -30036,7 +29860,7 @@ const Dialog = /*#__PURE__*/React$1.forwardRef(function Dialog(inProps, ref) {
|
|
|
30036
29860
|
maxWidth,
|
|
30037
29861
|
scroll
|
|
30038
29862
|
});
|
|
30039
|
-
const classes = useUtilityClasses$
|
|
29863
|
+
const classes = useUtilityClasses$r(ownerState);
|
|
30040
29864
|
const backdropClick = React$1.useRef();
|
|
30041
29865
|
const handleMouseDown = event => {
|
|
30042
29866
|
// We don't want to close the dialog when clicking the dialog content.
|
|
@@ -30251,8 +30075,8 @@ function getDialogActionsUtilityClass(slot) {
|
|
|
30251
30075
|
}
|
|
30252
30076
|
generateUtilityClasses$1('MuiDialogActions', ['root', 'spacing']);
|
|
30253
30077
|
|
|
30254
|
-
const _excluded$
|
|
30255
|
-
const useUtilityClasses$
|
|
30078
|
+
const _excluded$B = ["className", "disableSpacing"];
|
|
30079
|
+
const useUtilityClasses$q = ownerState => {
|
|
30256
30080
|
const {
|
|
30257
30081
|
classes,
|
|
30258
30082
|
disableSpacing
|
|
@@ -30293,11 +30117,11 @@ const DialogActions = /*#__PURE__*/React$1.forwardRef(function DialogActions(inP
|
|
|
30293
30117
|
className,
|
|
30294
30118
|
disableSpacing = false
|
|
30295
30119
|
} = props,
|
|
30296
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
30120
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$B);
|
|
30297
30121
|
const ownerState = _extends$1({}, props, {
|
|
30298
30122
|
disableSpacing
|
|
30299
30123
|
});
|
|
30300
|
-
const classes = useUtilityClasses$
|
|
30124
|
+
const classes = useUtilityClasses$q(ownerState);
|
|
30301
30125
|
return /*#__PURE__*/jsxRuntimeExports.jsx(DialogActionsRoot, _extends$1({
|
|
30302
30126
|
className: clsx(classes.root, className),
|
|
30303
30127
|
ownerState: ownerState,
|
|
@@ -30342,8 +30166,8 @@ function getDialogTitleUtilityClass(slot) {
|
|
|
30342
30166
|
}
|
|
30343
30167
|
const dialogTitleClasses = generateUtilityClasses$1('MuiDialogTitle', ['root']);
|
|
30344
30168
|
|
|
30345
|
-
const _excluded$
|
|
30346
|
-
const useUtilityClasses$
|
|
30169
|
+
const _excluded$A = ["className", "dividers"];
|
|
30170
|
+
const useUtilityClasses$p = ownerState => {
|
|
30347
30171
|
const {
|
|
30348
30172
|
classes,
|
|
30349
30173
|
dividers
|
|
@@ -30389,11 +30213,11 @@ const DialogContent = /*#__PURE__*/React$1.forwardRef(function DialogContent(inP
|
|
|
30389
30213
|
className,
|
|
30390
30214
|
dividers = false
|
|
30391
30215
|
} = props,
|
|
30392
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
30216
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$A);
|
|
30393
30217
|
const ownerState = _extends$1({}, props, {
|
|
30394
30218
|
dividers
|
|
30395
30219
|
});
|
|
30396
|
-
const classes = useUtilityClasses$
|
|
30220
|
+
const classes = useUtilityClasses$p(ownerState);
|
|
30397
30221
|
return /*#__PURE__*/jsxRuntimeExports.jsx(DialogContentRoot, _extends$1({
|
|
30398
30222
|
className: clsx(classes.root, className),
|
|
30399
30223
|
ownerState: ownerState,
|
|
@@ -30428,8 +30252,8 @@ process.env.NODE_ENV !== "production" ? DialogContent.propTypes /* remove-propty
|
|
|
30428
30252
|
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object])
|
|
30429
30253
|
} : void 0;
|
|
30430
30254
|
|
|
30431
|
-
const _excluded$
|
|
30432
|
-
const useUtilityClasses$
|
|
30255
|
+
const _excluded$z = ["className", "id"];
|
|
30256
|
+
const useUtilityClasses$o = ownerState => {
|
|
30433
30257
|
const {
|
|
30434
30258
|
classes
|
|
30435
30259
|
} = ownerState;
|
|
@@ -30455,9 +30279,9 @@ const DialogTitle = /*#__PURE__*/React$1.forwardRef(function DialogTitle(inProps
|
|
|
30455
30279
|
className,
|
|
30456
30280
|
id: idProp
|
|
30457
30281
|
} = props,
|
|
30458
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
30282
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$z);
|
|
30459
30283
|
const ownerState = props;
|
|
30460
|
-
const classes = useUtilityClasses$
|
|
30284
|
+
const classes = useUtilityClasses$o(ownerState);
|
|
30461
30285
|
const {
|
|
30462
30286
|
titleId = idProp
|
|
30463
30287
|
} = React$1.useContext(DialogContext);
|
|
@@ -30502,8 +30326,8 @@ function getDividerUtilityClass(slot) {
|
|
|
30502
30326
|
}
|
|
30503
30327
|
const dividerClasses = generateUtilityClasses$1('MuiDivider', ['root', 'absolute', 'fullWidth', 'inset', 'middle', 'flexItem', 'light', 'vertical', 'withChildren', 'withChildrenVertical', 'textAlignRight', 'textAlignLeft', 'wrapper', 'wrapperVertical']);
|
|
30504
30328
|
|
|
30505
|
-
const _excluded$
|
|
30506
|
-
const useUtilityClasses$
|
|
30329
|
+
const _excluded$y = ["absolute", "children", "className", "component", "flexItem", "light", "orientation", "role", "textAlign", "variant"];
|
|
30330
|
+
const useUtilityClasses$n = ownerState => {
|
|
30507
30331
|
const {
|
|
30508
30332
|
absolute,
|
|
30509
30333
|
children,
|
|
@@ -30644,7 +30468,7 @@ const Divider = /*#__PURE__*/React$1.forwardRef(function Divider(inProps, ref) {
|
|
|
30644
30468
|
textAlign = 'center',
|
|
30645
30469
|
variant = 'fullWidth'
|
|
30646
30470
|
} = props,
|
|
30647
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
30471
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$y);
|
|
30648
30472
|
const ownerState = _extends$1({}, props, {
|
|
30649
30473
|
absolute,
|
|
30650
30474
|
component,
|
|
@@ -30655,7 +30479,7 @@ const Divider = /*#__PURE__*/React$1.forwardRef(function Divider(inProps, ref) {
|
|
|
30655
30479
|
textAlign,
|
|
30656
30480
|
variant
|
|
30657
30481
|
});
|
|
30658
|
-
const classes = useUtilityClasses$
|
|
30482
|
+
const classes = useUtilityClasses$n(ownerState);
|
|
30659
30483
|
return /*#__PURE__*/jsxRuntimeExports.jsx(DividerRoot, _extends$1({
|
|
30660
30484
|
as: component,
|
|
30661
30485
|
className: clsx(classes.root, className),
|
|
@@ -30740,7 +30564,7 @@ process.env.NODE_ENV !== "production" ? Divider.propTypes /* remove-proptypes */
|
|
|
30740
30564
|
variant: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['fullWidth', 'inset', 'middle']), PropTypes.string])
|
|
30741
30565
|
} : void 0;
|
|
30742
30566
|
|
|
30743
|
-
const _excluded$
|
|
30567
|
+
const _excluded$x = ["addEndListener", "appear", "children", "container", "direction", "easing", "in", "onEnter", "onEntered", "onEntering", "onExit", "onExited", "onExiting", "style", "timeout", "TransitionComponent"];
|
|
30744
30568
|
function getTranslateValue(direction, node, resolvedContainer) {
|
|
30745
30569
|
const rect = node.getBoundingClientRect();
|
|
30746
30570
|
const containerRect = resolvedContainer && resolvedContainer.getBoundingClientRect();
|
|
@@ -30829,7 +30653,7 @@ const Slide = /*#__PURE__*/React$1.forwardRef(function Slide(props, ref) {
|
|
|
30829
30653
|
// eslint-disable-next-line react/prop-types
|
|
30830
30654
|
TransitionComponent = Transition
|
|
30831
30655
|
} = props,
|
|
30832
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
30656
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$x);
|
|
30833
30657
|
const childrenRef = React$1.useRef(null);
|
|
30834
30658
|
const handleRef = useForkRef(children.ref, childrenRef, ref);
|
|
30835
30659
|
const normalizedTransitionCallback = callback => isAppearing => {
|
|
@@ -31051,62 +30875,6 @@ process.env.NODE_ENV !== "production" ? Slide.propTypes /* remove-proptypes */ =
|
|
|
31051
30875
|
})])
|
|
31052
30876
|
} : void 0;
|
|
31053
30877
|
|
|
31054
|
-
const Stack = createStack({
|
|
31055
|
-
createStyledComponent: styled$1('div', {
|
|
31056
|
-
name: 'MuiStack',
|
|
31057
|
-
slot: 'Root',
|
|
31058
|
-
overridesResolver: (props, styles) => styles.root
|
|
31059
|
-
}),
|
|
31060
|
-
useThemeProps: inProps => useThemeProps$1({
|
|
31061
|
-
props: inProps,
|
|
31062
|
-
name: 'MuiStack'
|
|
31063
|
-
})
|
|
31064
|
-
});
|
|
31065
|
-
process.env.NODE_ENV !== "production" ? Stack.propTypes /* remove-proptypes */ = {
|
|
31066
|
-
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
31067
|
-
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
31068
|
-
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
31069
|
-
// └─────────────────────────────────────────────────────────────────────┘
|
|
31070
|
-
/**
|
|
31071
|
-
* The content of the component.
|
|
31072
|
-
*/
|
|
31073
|
-
children: PropTypes.node,
|
|
31074
|
-
/**
|
|
31075
|
-
* The component used for the root node.
|
|
31076
|
-
* Either a string to use a HTML element or a component.
|
|
31077
|
-
*/
|
|
31078
|
-
component: PropTypes.elementType,
|
|
31079
|
-
/**
|
|
31080
|
-
* Defines the `flex-direction` style property.
|
|
31081
|
-
* It is applied for all screen sizes.
|
|
31082
|
-
* @default 'column'
|
|
31083
|
-
*/
|
|
31084
|
-
direction: PropTypes.oneOfType([PropTypes.oneOf(['column-reverse', 'column', 'row-reverse', 'row']), PropTypes.arrayOf(PropTypes.oneOf(['column-reverse', 'column', 'row-reverse', 'row'])), PropTypes.object]),
|
|
31085
|
-
/**
|
|
31086
|
-
* Add an element between each child.
|
|
31087
|
-
*/
|
|
31088
|
-
divider: PropTypes.node,
|
|
31089
|
-
/**
|
|
31090
|
-
* Defines the space between immediate children.
|
|
31091
|
-
* @default 0
|
|
31092
|
-
*/
|
|
31093
|
-
spacing: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.number, PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.string]),
|
|
31094
|
-
/**
|
|
31095
|
-
* The system prop, which allows defining system overrides as well as additional CSS styles.
|
|
31096
|
-
*/
|
|
31097
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
31098
|
-
/**
|
|
31099
|
-
* If `true`, the CSS flexbox `gap` is used instead of applying `margin` to children.
|
|
31100
|
-
*
|
|
31101
|
-
* While CSS `gap` removes the [known limitations](https://mui.com/joy-ui/react-stack/#limitations),
|
|
31102
|
-
* it is not fully supported in some browsers. We recommend checking https://caniuse.com/?search=flex%20gap before using this flag.
|
|
31103
|
-
*
|
|
31104
|
-
* To enable this flag globally, follow the [theme's default props](https://mui.com/material-ui/customization/theme-components/#default-props) configuration.
|
|
31105
|
-
* @default false
|
|
31106
|
-
*/
|
|
31107
|
-
useFlexGap: PropTypes.bool
|
|
31108
|
-
} : void 0;
|
|
31109
|
-
|
|
31110
30878
|
/**
|
|
31111
30879
|
* @ignore - internal component.
|
|
31112
30880
|
*/
|
|
@@ -31132,7 +30900,7 @@ const gridClasses = generateUtilityClasses$1('MuiGrid', ['root', 'container', 'i
|
|
|
31132
30900
|
// grid sizes for all breakpoints
|
|
31133
30901
|
...GRID_SIZES.map(size => `grid-xs-${size}`), ...GRID_SIZES.map(size => `grid-sm-${size}`), ...GRID_SIZES.map(size => `grid-md-${size}`), ...GRID_SIZES.map(size => `grid-lg-${size}`), ...GRID_SIZES.map(size => `grid-xl-${size}`)]);
|
|
31134
30902
|
|
|
31135
|
-
const _excluded$
|
|
30903
|
+
const _excluded$w = ["className", "columns", "columnSpacing", "component", "container", "direction", "item", "rowSpacing", "spacing", "wrap", "zeroMinWidth"];
|
|
31136
30904
|
function getOffset(val) {
|
|
31137
30905
|
const parse = parseFloat(val);
|
|
31138
30906
|
return `${parse}${String(val).replace(String(parse), '') || 'px'}`;
|
|
@@ -31441,7 +31209,7 @@ function resolveSpacingClasses(spacing, breakpoints) {
|
|
|
31441
31209
|
});
|
|
31442
31210
|
return classes;
|
|
31443
31211
|
}
|
|
31444
|
-
const useUtilityClasses$
|
|
31212
|
+
const useUtilityClasses$m = ownerState => {
|
|
31445
31213
|
const {
|
|
31446
31214
|
classes,
|
|
31447
31215
|
container,
|
|
@@ -31492,7 +31260,7 @@ const Grid = /*#__PURE__*/React$1.forwardRef(function Grid(inProps, ref) {
|
|
|
31492
31260
|
wrap = 'wrap',
|
|
31493
31261
|
zeroMinWidth = false
|
|
31494
31262
|
} = props,
|
|
31495
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
31263
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$w);
|
|
31496
31264
|
const rowSpacing = rowSpacingProp || spacing;
|
|
31497
31265
|
const columnSpacing = columnSpacingProp || spacing;
|
|
31498
31266
|
const columnsContext = React$1.useContext(GridContext);
|
|
@@ -31520,7 +31288,7 @@ const Grid = /*#__PURE__*/React$1.forwardRef(function Grid(inProps, ref) {
|
|
|
31520
31288
|
}, breakpointsValues, {
|
|
31521
31289
|
breakpoints: breakpoints.keys
|
|
31522
31290
|
});
|
|
31523
|
-
const classes = useUtilityClasses$
|
|
31291
|
+
const classes = useUtilityClasses$m(ownerState);
|
|
31524
31292
|
return /*#__PURE__*/jsxRuntimeExports.jsx(GridContext.Provider, {
|
|
31525
31293
|
value: columns,
|
|
31526
31294
|
children: /*#__PURE__*/jsxRuntimeExports.jsx(GridRoot, _extends$1({
|
|
@@ -31680,14 +31448,14 @@ function getInputAdornmentUtilityClass(slot) {
|
|
|
31680
31448
|
const inputAdornmentClasses = generateUtilityClasses$1('MuiInputAdornment', ['root', 'filled', 'standard', 'outlined', 'positionStart', 'positionEnd', 'disablePointerEvents', 'hiddenLabel', 'sizeSmall']);
|
|
31681
31449
|
|
|
31682
31450
|
var _span;
|
|
31683
|
-
const _excluded$
|
|
31451
|
+
const _excluded$v = ["children", "className", "component", "disablePointerEvents", "disableTypography", "position", "variant"];
|
|
31684
31452
|
const overridesResolver$3 = (props, styles) => {
|
|
31685
31453
|
const {
|
|
31686
31454
|
ownerState
|
|
31687
31455
|
} = props;
|
|
31688
31456
|
return [styles.root, styles[`position${capitalize$1(ownerState.position)}`], ownerState.disablePointerEvents === true && styles.disablePointerEvents, styles[ownerState.variant]];
|
|
31689
31457
|
};
|
|
31690
|
-
const useUtilityClasses$
|
|
31458
|
+
const useUtilityClasses$l = ownerState => {
|
|
31691
31459
|
const {
|
|
31692
31460
|
classes,
|
|
31693
31461
|
disablePointerEvents,
|
|
@@ -31745,7 +31513,7 @@ const InputAdornment = /*#__PURE__*/React$1.forwardRef(function InputAdornment(i
|
|
|
31745
31513
|
position,
|
|
31746
31514
|
variant: variantProp
|
|
31747
31515
|
} = props,
|
|
31748
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
31516
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$v);
|
|
31749
31517
|
const muiFormControl = useFormControl() || {};
|
|
31750
31518
|
let variant = variantProp;
|
|
31751
31519
|
if (variantProp && muiFormControl.variant) {
|
|
@@ -31765,7 +31533,7 @@ const InputAdornment = /*#__PURE__*/React$1.forwardRef(function InputAdornment(i
|
|
|
31765
31533
|
position,
|
|
31766
31534
|
variant
|
|
31767
31535
|
});
|
|
31768
|
-
const classes = useUtilityClasses$
|
|
31536
|
+
const classes = useUtilityClasses$l(ownerState);
|
|
31769
31537
|
return /*#__PURE__*/jsxRuntimeExports.jsx(FormControlContext.Provider, {
|
|
31770
31538
|
value: null,
|
|
31771
31539
|
children: /*#__PURE__*/jsxRuntimeExports.jsx(InputAdornmentRoot, _extends$1({
|
|
@@ -31847,8 +31615,8 @@ function getListItemSecondaryActionClassesUtilityClass(slot) {
|
|
|
31847
31615
|
}
|
|
31848
31616
|
generateUtilityClasses$1('MuiListItemSecondaryAction', ['root', 'disableGutters']);
|
|
31849
31617
|
|
|
31850
|
-
const _excluded$
|
|
31851
|
-
const useUtilityClasses$
|
|
31618
|
+
const _excluded$u = ["className"];
|
|
31619
|
+
const useUtilityClasses$k = ownerState => {
|
|
31852
31620
|
const {
|
|
31853
31621
|
disableGutters,
|
|
31854
31622
|
classes
|
|
@@ -31889,12 +31657,12 @@ const ListItemSecondaryAction = /*#__PURE__*/React$1.forwardRef(function ListIte
|
|
|
31889
31657
|
const {
|
|
31890
31658
|
className
|
|
31891
31659
|
} = props,
|
|
31892
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
31660
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$u);
|
|
31893
31661
|
const context = React$1.useContext(ListContext);
|
|
31894
31662
|
const ownerState = _extends$1({}, props, {
|
|
31895
31663
|
disableGutters: context.disableGutters
|
|
31896
31664
|
});
|
|
31897
|
-
const classes = useUtilityClasses$
|
|
31665
|
+
const classes = useUtilityClasses$k(ownerState);
|
|
31898
31666
|
return /*#__PURE__*/jsxRuntimeExports.jsx(ListItemSecondaryActionRoot, _extends$1({
|
|
31899
31667
|
className: clsx(classes.root, className),
|
|
31900
31668
|
ownerState: ownerState,
|
|
@@ -31925,7 +31693,7 @@ process.env.NODE_ENV !== "production" ? ListItemSecondaryAction.propTypes /* rem
|
|
|
31925
31693
|
} : void 0;
|
|
31926
31694
|
ListItemSecondaryAction.muiName = 'ListItemSecondaryAction';
|
|
31927
31695
|
|
|
31928
|
-
const _excluded$
|
|
31696
|
+
const _excluded$t = ["className"],
|
|
31929
31697
|
_excluded2$6 = ["alignItems", "autoFocus", "button", "children", "className", "component", "components", "componentsProps", "ContainerComponent", "ContainerProps", "dense", "disabled", "disableGutters", "disablePadding", "divider", "focusVisibleClassName", "secondaryAction", "selected", "slotProps", "slots"];
|
|
31930
31698
|
const overridesResolver$2 = (props, styles) => {
|
|
31931
31699
|
const {
|
|
@@ -31933,7 +31701,7 @@ const overridesResolver$2 = (props, styles) => {
|
|
|
31933
31701
|
} = props;
|
|
31934
31702
|
return [styles.root, ownerState.dense && styles.dense, ownerState.alignItems === 'flex-start' && styles.alignItemsFlexStart, ownerState.divider && styles.divider, !ownerState.disableGutters && styles.gutters, !ownerState.disablePadding && styles.padding, ownerState.button && styles.button, ownerState.hasSecondaryAction && styles.secondaryAction];
|
|
31935
31703
|
};
|
|
31936
|
-
const useUtilityClasses$
|
|
31704
|
+
const useUtilityClasses$j = ownerState => {
|
|
31937
31705
|
const {
|
|
31938
31706
|
alignItems,
|
|
31939
31707
|
button,
|
|
@@ -32067,7 +31835,7 @@ const ListItem = /*#__PURE__*/React$1.forwardRef(function ListItem(inProps, ref)
|
|
|
32067
31835
|
slotProps = {},
|
|
32068
31836
|
slots = {}
|
|
32069
31837
|
} = props,
|
|
32070
|
-
ContainerProps = _objectWithoutPropertiesLoose(props.ContainerProps, _excluded$
|
|
31838
|
+
ContainerProps = _objectWithoutPropertiesLoose(props.ContainerProps, _excluded$t),
|
|
32071
31839
|
other = _objectWithoutPropertiesLoose(props, _excluded2$6);
|
|
32072
31840
|
const context = React$1.useContext(ListContext);
|
|
32073
31841
|
const childContext = React$1.useMemo(() => ({
|
|
@@ -32101,7 +31869,7 @@ const ListItem = /*#__PURE__*/React$1.forwardRef(function ListItem(inProps, ref)
|
|
|
32101
31869
|
hasSecondaryAction,
|
|
32102
31870
|
selected
|
|
32103
31871
|
});
|
|
32104
|
-
const classes = useUtilityClasses$
|
|
31872
|
+
const classes = useUtilityClasses$j(ownerState);
|
|
32105
31873
|
const handleRef = useForkRef(listItemRef, ref);
|
|
32106
31874
|
const Root = slots.root || components.Root || ListItemRoot;
|
|
32107
31875
|
const rootProps = slotProps.root || componentsProps.root || {};
|
|
@@ -32330,8 +32098,8 @@ function getListItemTextUtilityClass(slot) {
|
|
|
32330
32098
|
}
|
|
32331
32099
|
const listItemTextClasses = generateUtilityClasses$1('MuiListItemText', ['root', 'multiline', 'dense', 'inset', 'primary', 'secondary']);
|
|
32332
32100
|
|
|
32333
|
-
const _excluded$
|
|
32334
|
-
const useUtilityClasses$
|
|
32101
|
+
const _excluded$s = ["children", "className", "disableTypography", "inset", "primary", "primaryTypographyProps", "secondary", "secondaryTypographyProps"];
|
|
32102
|
+
const useUtilityClasses$i = ownerState => {
|
|
32335
32103
|
const {
|
|
32336
32104
|
classes,
|
|
32337
32105
|
inset,
|
|
@@ -32387,7 +32155,7 @@ const ListItemText = /*#__PURE__*/React$1.forwardRef(function ListItemText(inPro
|
|
|
32387
32155
|
secondary: secondaryProp,
|
|
32388
32156
|
secondaryTypographyProps
|
|
32389
32157
|
} = props,
|
|
32390
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
32158
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$s);
|
|
32391
32159
|
const {
|
|
32392
32160
|
dense
|
|
32393
32161
|
} = React$1.useContext(ListContext);
|
|
@@ -32400,7 +32168,7 @@ const ListItemText = /*#__PURE__*/React$1.forwardRef(function ListItemText(inPro
|
|
|
32400
32168
|
secondary: !!secondary,
|
|
32401
32169
|
dense
|
|
32402
32170
|
});
|
|
32403
|
-
const classes = useUtilityClasses$
|
|
32171
|
+
const classes = useUtilityClasses$i(ownerState);
|
|
32404
32172
|
if (primary != null && primary.type !== Typography && !disableTypography) {
|
|
32405
32173
|
primary = /*#__PURE__*/jsxRuntimeExports.jsx(Typography, _extends$1({
|
|
32406
32174
|
variant: dense ? 'body2' : 'body1',
|
|
@@ -32489,14 +32257,14 @@ function getMenuItemUtilityClass(slot) {
|
|
|
32489
32257
|
}
|
|
32490
32258
|
const menuItemClasses = generateUtilityClasses$1('MuiMenuItem', ['root', 'focusVisible', 'dense', 'disabled', 'divider', 'gutters', 'selected']);
|
|
32491
32259
|
|
|
32492
|
-
const _excluded$
|
|
32260
|
+
const _excluded$r = ["autoFocus", "component", "dense", "divider", "disableGutters", "focusVisibleClassName", "role", "tabIndex", "className"];
|
|
32493
32261
|
const overridesResolver$1 = (props, styles) => {
|
|
32494
32262
|
const {
|
|
32495
32263
|
ownerState
|
|
32496
32264
|
} = props;
|
|
32497
32265
|
return [styles.root, ownerState.dense && styles.dense, ownerState.divider && styles.divider, !ownerState.disableGutters && styles.gutters];
|
|
32498
32266
|
};
|
|
32499
|
-
const useUtilityClasses$
|
|
32267
|
+
const useUtilityClasses$h = ownerState => {
|
|
32500
32268
|
const {
|
|
32501
32269
|
disabled,
|
|
32502
32270
|
dense,
|
|
@@ -32611,7 +32379,7 @@ const MenuItem = /*#__PURE__*/React$1.forwardRef(function MenuItem(inProps, ref)
|
|
|
32611
32379
|
tabIndex: tabIndexProp,
|
|
32612
32380
|
className
|
|
32613
32381
|
} = props,
|
|
32614
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$
|
|
32382
|
+
other = _objectWithoutPropertiesLoose(props, _excluded$r);
|
|
32615
32383
|
const context = React$1.useContext(ListContext);
|
|
32616
32384
|
const childContext = React$1.useMemo(() => ({
|
|
32617
32385
|
dense: dense || context.dense || false,
|
|
@@ -32632,7 +32400,7 @@ const MenuItem = /*#__PURE__*/React$1.forwardRef(function MenuItem(inProps, ref)
|
|
|
32632
32400
|
divider,
|
|
32633
32401
|
disableGutters
|
|
32634
32402
|
});
|
|
32635
|
-
const classes = useUtilityClasses$
|
|
32403
|
+
const classes = useUtilityClasses$h(props);
|
|
32636
32404
|
const handleRef = useForkRef(menuItemRef, ref);
|
|
32637
32405
|
let tabIndex;
|
|
32638
32406
|
if (!props.disabled) {
|
|
@@ -32729,219 +32497,6 @@ process.env.NODE_ENV !== "production" ? MenuItem.propTypes /* remove-proptypes *
|
|
|
32729
32497
|
tabIndex: PropTypes.number
|
|
32730
32498
|
} : void 0;
|
|
32731
32499
|
|
|
32732
|
-
function getSkeletonUtilityClass(slot) {
|
|
32733
|
-
return generateUtilityClass$1('MuiSkeleton', slot);
|
|
32734
|
-
}
|
|
32735
|
-
generateUtilityClasses$1('MuiSkeleton', ['root', 'text', 'rectangular', 'rounded', 'circular', 'pulse', 'wave', 'withChildren', 'fitContent', 'heightAuto']);
|
|
32736
|
-
|
|
32737
|
-
const _excluded$r = ["animation", "className", "component", "height", "style", "variant", "width"];
|
|
32738
|
-
let _ = t => t,
|
|
32739
|
-
_t,
|
|
32740
|
-
_t2,
|
|
32741
|
-
_t3,
|
|
32742
|
-
_t4;
|
|
32743
|
-
const useUtilityClasses$h = ownerState => {
|
|
32744
|
-
const {
|
|
32745
|
-
classes,
|
|
32746
|
-
variant,
|
|
32747
|
-
animation,
|
|
32748
|
-
hasChildren,
|
|
32749
|
-
width,
|
|
32750
|
-
height
|
|
32751
|
-
} = ownerState;
|
|
32752
|
-
const slots = {
|
|
32753
|
-
root: ['root', variant, animation, hasChildren && 'withChildren', hasChildren && !width && 'fitContent', hasChildren && !height && 'heightAuto']
|
|
32754
|
-
};
|
|
32755
|
-
return composeClasses(slots, getSkeletonUtilityClass, classes);
|
|
32756
|
-
};
|
|
32757
|
-
const pulseKeyframe = keyframes(_t || (_t = _`
|
|
32758
|
-
0% {
|
|
32759
|
-
opacity: 1;
|
|
32760
|
-
}
|
|
32761
|
-
|
|
32762
|
-
50% {
|
|
32763
|
-
opacity: 0.4;
|
|
32764
|
-
}
|
|
32765
|
-
|
|
32766
|
-
100% {
|
|
32767
|
-
opacity: 1;
|
|
32768
|
-
}
|
|
32769
|
-
`));
|
|
32770
|
-
const waveKeyframe = keyframes(_t2 || (_t2 = _`
|
|
32771
|
-
0% {
|
|
32772
|
-
transform: translateX(-100%);
|
|
32773
|
-
}
|
|
32774
|
-
|
|
32775
|
-
50% {
|
|
32776
|
-
/* +0.5s of delay between each loop */
|
|
32777
|
-
transform: translateX(100%);
|
|
32778
|
-
}
|
|
32779
|
-
|
|
32780
|
-
100% {
|
|
32781
|
-
transform: translateX(100%);
|
|
32782
|
-
}
|
|
32783
|
-
`));
|
|
32784
|
-
const SkeletonRoot = styled$1('span', {
|
|
32785
|
-
name: 'MuiSkeleton',
|
|
32786
|
-
slot: 'Root',
|
|
32787
|
-
overridesResolver: (props, styles) => {
|
|
32788
|
-
const {
|
|
32789
|
-
ownerState
|
|
32790
|
-
} = props;
|
|
32791
|
-
return [styles.root, styles[ownerState.variant], ownerState.animation !== false && styles[ownerState.animation], ownerState.hasChildren && styles.withChildren, ownerState.hasChildren && !ownerState.width && styles.fitContent, ownerState.hasChildren && !ownerState.height && styles.heightAuto];
|
|
32792
|
-
}
|
|
32793
|
-
})(({
|
|
32794
|
-
theme,
|
|
32795
|
-
ownerState
|
|
32796
|
-
}) => {
|
|
32797
|
-
const radiusUnit = getUnit(theme.shape.borderRadius) || 'px';
|
|
32798
|
-
const radiusValue = toUnitless(theme.shape.borderRadius);
|
|
32799
|
-
return _extends$1({
|
|
32800
|
-
display: 'block',
|
|
32801
|
-
// Create a "on paper" color with sufficient contrast retaining the color
|
|
32802
|
-
backgroundColor: theme.vars ? theme.vars.palette.Skeleton.bg : alpha(theme.palette.text.primary, theme.palette.mode === 'light' ? 0.11 : 0.13),
|
|
32803
|
-
height: '1.2em'
|
|
32804
|
-
}, ownerState.variant === 'text' && {
|
|
32805
|
-
marginTop: 0,
|
|
32806
|
-
marginBottom: 0,
|
|
32807
|
-
height: 'auto',
|
|
32808
|
-
transformOrigin: '0 55%',
|
|
32809
|
-
transform: 'scale(1, 0.60)',
|
|
32810
|
-
borderRadius: `${radiusValue}${radiusUnit}/${Math.round(radiusValue / 0.6 * 10) / 10}${radiusUnit}`,
|
|
32811
|
-
'&:empty:before': {
|
|
32812
|
-
content: '"\\00a0"'
|
|
32813
|
-
}
|
|
32814
|
-
}, ownerState.variant === 'circular' && {
|
|
32815
|
-
borderRadius: '50%'
|
|
32816
|
-
}, ownerState.variant === 'rounded' && {
|
|
32817
|
-
borderRadius: (theme.vars || theme).shape.borderRadius
|
|
32818
|
-
}, ownerState.hasChildren && {
|
|
32819
|
-
'& > *': {
|
|
32820
|
-
visibility: 'hidden'
|
|
32821
|
-
}
|
|
32822
|
-
}, ownerState.hasChildren && !ownerState.width && {
|
|
32823
|
-
maxWidth: 'fit-content'
|
|
32824
|
-
}, ownerState.hasChildren && !ownerState.height && {
|
|
32825
|
-
height: 'auto'
|
|
32826
|
-
});
|
|
32827
|
-
}, ({
|
|
32828
|
-
ownerState
|
|
32829
|
-
}) => ownerState.animation === 'pulse' && css$1(_t3 || (_t3 = _`
|
|
32830
|
-
animation: ${0} 2s ease-in-out 0.5s infinite;
|
|
32831
|
-
`), pulseKeyframe), ({
|
|
32832
|
-
ownerState,
|
|
32833
|
-
theme
|
|
32834
|
-
}) => ownerState.animation === 'wave' && css$1(_t4 || (_t4 = _`
|
|
32835
|
-
position: relative;
|
|
32836
|
-
overflow: hidden;
|
|
32837
|
-
|
|
32838
|
-
/* Fix bug in Safari https://bugs.webkit.org/show_bug.cgi?id=68196 */
|
|
32839
|
-
-webkit-mask-image: -webkit-radial-gradient(white, black);
|
|
32840
|
-
|
|
32841
|
-
&::after {
|
|
32842
|
-
animation: ${0} 2s linear 0.5s infinite;
|
|
32843
|
-
background: linear-gradient(
|
|
32844
|
-
90deg,
|
|
32845
|
-
transparent,
|
|
32846
|
-
${0},
|
|
32847
|
-
transparent
|
|
32848
|
-
);
|
|
32849
|
-
content: '';
|
|
32850
|
-
position: absolute;
|
|
32851
|
-
transform: translateX(-100%); /* Avoid flash during server-side hydration */
|
|
32852
|
-
bottom: 0;
|
|
32853
|
-
left: 0;
|
|
32854
|
-
right: 0;
|
|
32855
|
-
top: 0;
|
|
32856
|
-
}
|
|
32857
|
-
`), waveKeyframe, (theme.vars || theme).palette.action.hover));
|
|
32858
|
-
const Skeleton = /*#__PURE__*/React$1.forwardRef(function Skeleton(inProps, ref) {
|
|
32859
|
-
const props = useThemeProps$1({
|
|
32860
|
-
props: inProps,
|
|
32861
|
-
name: 'MuiSkeleton'
|
|
32862
|
-
});
|
|
32863
|
-
const {
|
|
32864
|
-
animation = 'pulse',
|
|
32865
|
-
className,
|
|
32866
|
-
component = 'span',
|
|
32867
|
-
height,
|
|
32868
|
-
style,
|
|
32869
|
-
variant = 'text',
|
|
32870
|
-
width
|
|
32871
|
-
} = props,
|
|
32872
|
-
other = _objectWithoutPropertiesLoose(props, _excluded$r);
|
|
32873
|
-
const ownerState = _extends$1({}, props, {
|
|
32874
|
-
animation,
|
|
32875
|
-
component,
|
|
32876
|
-
variant,
|
|
32877
|
-
hasChildren: Boolean(other.children)
|
|
32878
|
-
});
|
|
32879
|
-
const classes = useUtilityClasses$h(ownerState);
|
|
32880
|
-
return /*#__PURE__*/jsxRuntimeExports.jsx(SkeletonRoot, _extends$1({
|
|
32881
|
-
as: component,
|
|
32882
|
-
ref: ref,
|
|
32883
|
-
className: clsx(classes.root, className),
|
|
32884
|
-
ownerState: ownerState
|
|
32885
|
-
}, other, {
|
|
32886
|
-
style: _extends$1({
|
|
32887
|
-
width,
|
|
32888
|
-
height
|
|
32889
|
-
}, style)
|
|
32890
|
-
}));
|
|
32891
|
-
});
|
|
32892
|
-
process.env.NODE_ENV !== "production" ? Skeleton.propTypes /* remove-proptypes */ = {
|
|
32893
|
-
// ┌────────────────────────────── Warning ──────────────────────────────┐
|
|
32894
|
-
// │ These PropTypes are generated from the TypeScript type definitions. │
|
|
32895
|
-
// │ To update them, edit the d.ts file and run `pnpm proptypes`. │
|
|
32896
|
-
// └─────────────────────────────────────────────────────────────────────┘
|
|
32897
|
-
/**
|
|
32898
|
-
* The animation.
|
|
32899
|
-
* If `false` the animation effect is disabled.
|
|
32900
|
-
* @default 'pulse'
|
|
32901
|
-
*/
|
|
32902
|
-
animation: PropTypes.oneOf(['pulse', 'wave', false]),
|
|
32903
|
-
/**
|
|
32904
|
-
* Optional children to infer width and height from.
|
|
32905
|
-
*/
|
|
32906
|
-
children: PropTypes.node,
|
|
32907
|
-
/**
|
|
32908
|
-
* Override or extend the styles applied to the component.
|
|
32909
|
-
*/
|
|
32910
|
-
classes: PropTypes.object,
|
|
32911
|
-
/**
|
|
32912
|
-
* @ignore
|
|
32913
|
-
*/
|
|
32914
|
-
className: PropTypes.string,
|
|
32915
|
-
/**
|
|
32916
|
-
* The component used for the root node.
|
|
32917
|
-
* Either a string to use a HTML element or a component.
|
|
32918
|
-
*/
|
|
32919
|
-
component: PropTypes.elementType,
|
|
32920
|
-
/**
|
|
32921
|
-
* Height of the skeleton.
|
|
32922
|
-
* Useful when you don't want to adapt the skeleton to a text element but for instance a card.
|
|
32923
|
-
*/
|
|
32924
|
-
height: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
|
|
32925
|
-
/**
|
|
32926
|
-
* @ignore
|
|
32927
|
-
*/
|
|
32928
|
-
style: PropTypes.object,
|
|
32929
|
-
/**
|
|
32930
|
-
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
32931
|
-
*/
|
|
32932
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
32933
|
-
/**
|
|
32934
|
-
* The type of content that will be rendered.
|
|
32935
|
-
* @default 'text'
|
|
32936
|
-
*/
|
|
32937
|
-
variant: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['circular', 'rectangular', 'rounded', 'text']), PropTypes.string]),
|
|
32938
|
-
/**
|
|
32939
|
-
* Width of the skeleton.
|
|
32940
|
-
* Useful when the skeleton is inside an inline element with no width of its own.
|
|
32941
|
-
*/
|
|
32942
|
-
width: PropTypes.oneOfType([PropTypes.number, PropTypes.string])
|
|
32943
|
-
} : void 0;
|
|
32944
|
-
|
|
32945
32500
|
function getTooltipUtilityClass(slot) {
|
|
32946
32501
|
return generateUtilityClass$1('MuiTooltip', slot);
|
|
32947
32502
|
}
|
|
@@ -52455,7 +52010,7 @@ const DateRangePickerComponent = ({ props }) => {
|
|
|
52455
52010
|
} }, { children: jsxRuntimeExports.jsx(DateRangePickerExporter, { open: true, toggle: toggle, initialDateRange: dateRange, closeOnClickOutside: true, onChange: (range) => setDateRange(range) }) })) })))] })));
|
|
52456
52011
|
};
|
|
52457
52012
|
|
|
52458
|
-
const useStyles$
|
|
52013
|
+
const useStyles$1 = makeStyles((theme) => ({
|
|
52459
52014
|
option: {
|
|
52460
52015
|
fontSize: "11px",
|
|
52461
52016
|
fontFamily: "Roboto-Reg",
|
|
@@ -52468,7 +52023,7 @@ const useStyles$2 = makeStyles((theme) => ({
|
|
|
52468
52023
|
},
|
|
52469
52024
|
}));
|
|
52470
52025
|
const SingleSelect = ({ props }) => {
|
|
52471
|
-
const classes = useStyles$
|
|
52026
|
+
const classes = useStyles$1();
|
|
52472
52027
|
// const valueRender = props.item.options?.find(
|
|
52473
52028
|
// (item) => item.value === props.getValues(props.item.name)
|
|
52474
52029
|
// );
|
|
@@ -52732,7 +52287,7 @@ const FormRenderFileUpload = ({ props }) => {
|
|
|
52732
52287
|
}, sx: { width: "100%" } })] })), jsxRuntimeExports.jsx(ErrorMessageComponent, { children: jsxRuntimeExports.jsx(s, { errors: props.errors, name: props.item.name }) })] }));
|
|
52733
52288
|
};
|
|
52734
52289
|
|
|
52735
|
-
const useStyles
|
|
52290
|
+
const useStyles = makeStyles((theme) => ({
|
|
52736
52291
|
option: {
|
|
52737
52292
|
fontSize: "11px",
|
|
52738
52293
|
fontFamily: "Roboto-Reg",
|
|
@@ -52745,7 +52300,7 @@ const useStyles$1 = makeStyles((theme) => ({
|
|
|
52745
52300
|
},
|
|
52746
52301
|
}));
|
|
52747
52302
|
const SingleSelectNonAutoComplete = ({ props }) => {
|
|
52748
|
-
useStyles
|
|
52303
|
+
useStyles();
|
|
52749
52304
|
return (jsxRuntimeExports.jsxs(FormControl, Object.assign({ fullWidth: true, sx: { position: "relative" } }, { children: [jsxRuntimeExports.jsx(InputLabel, Object.assign({ id: "demo-simple-select-label" }, { children: props.item.label })), jsxRuntimeExports.jsx(Select, Object.assign({ labelId: "demo-simple-select-label", id: "demo-simple-select",
|
|
52750
52305
|
// {...props.register(props.item.name)}
|
|
52751
52306
|
value: props.getValues(props.item.name), label: `${props.item.label}${props.item.required ? " *" : ""}`, onChange: (e) => props.setValue(props.item.name, e.target.value), onBlur: (e) => {
|
|
@@ -52780,92 +52335,35 @@ const FormActiveSwitch = ({ props }) => {
|
|
|
52780
52335
|
return (jsxRuntimeExports.jsx("div", { children: jsxRuntimeExports.jsxs("div", Object.assign({ className: "m-form__input" }, { children: [item.label && (jsxRuntimeExports.jsx("span", Object.assign({ style: { fontSize: "12px", fontWeight: 400, paddingRight: 10 } }, { children: item.label }))), jsxRuntimeExports.jsxs("span", Object.assign({ className: "switch prestashop-switch fixed-width-lg" }, { children: [jsxRuntimeExports.jsx("input", { checked: active, id: `${item.name}_on`, name: item.name, type: "radio", value: "Active", onChange: handleSwitchChange }), jsxRuntimeExports.jsx("label", Object.assign({ htmlFor: `${item.name}_on`, style: { fontFamily: "Roboto-Reg", textTransform: "none" } }, { children: item.label1 ? item.label1 : "Active" })), jsxRuntimeExports.jsx("input", { checked: !active, id: `${item.name}_off`, name: item.name, type: "radio", value: "In Active", onChange: handleSwitchChange }), jsxRuntimeExports.jsx("label", Object.assign({ htmlFor: `${item.name}_off`, style: { fontFamily: "Roboto-Reg", textTransform: "none" } }, { children: item.label2 ? item.label2 : "In Active" })), jsxRuntimeExports.jsx("a", { className: "slide-button btn" })] }))] })) }));
|
|
52781
52336
|
};
|
|
52782
52337
|
|
|
52783
|
-
|
|
52784
|
-
|
|
52785
|
-
|
|
52786
|
-
|
|
52787
|
-
|
|
52788
|
-
option2: {
|
|
52789
|
-
|
|
52790
|
-
|
|
52791
|
-
|
|
52792
|
-
|
|
52793
|
-
|
|
52794
|
-
|
|
52795
|
-
const
|
|
52796
|
-
const
|
|
52797
|
-
|
|
52798
|
-
|
|
52799
|
-
|
|
52800
|
-
|
|
52801
|
-
|
|
52802
|
-
|
|
52803
|
-
|
|
52804
|
-
|
|
52805
|
-
|
|
52806
|
-
|
|
52807
|
-
|
|
52808
|
-
|
|
52809
|
-
|
|
52810
|
-
|
|
52811
|
-
|
|
52812
|
-
setIsLoading(true);
|
|
52813
|
-
props.item.AxiosInstance
|
|
52814
|
-
.get(props.item.ApiInstance + `&${props.item.searchInstance}=${searchValue}`, { signal, headers: {
|
|
52815
|
-
Authorization: `Bearer ${'eyJhbGciOiJodHRwOi8vd3d3LnczLm9yZy8yMDAxLzA0L3htbGRzaWctbW9yZSNobWFjLXNoYTUxMiIsInR5cCI6IkpXVCJ9.eyJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoidHAwMjAiLCJVc2VyTmFtZSI6InRwMDIwIiwiVXNlcklkIjoiMjkiLCJBcHBsaWNhdGlvblR5cGUiOiJUQ0EiLCJSb2xlSWQiOiIxIiwiZXhwIjoxNzMwODc0NTcyfQ.ggDsISUnLFA6m2Bu2aOiyKasSmI2WFzw-gxO0umUpyoICDrZLXoJ15OsyKGrf9y6dy41D9Q0RvX__xU09zJRgA'}`
|
|
52816
|
-
} })
|
|
52817
|
-
.then((res) => {
|
|
52818
|
-
setOptionsFetched(res.data);
|
|
52819
|
-
setIsLoading(false);
|
|
52820
|
-
props.item.setLoadedPaginationOptions && props.item.setLoadedPaginationOptions(res.data);
|
|
52821
|
-
})
|
|
52822
|
-
.catch((err) => {
|
|
52823
|
-
console.log(err, "error");
|
|
52824
|
-
});
|
|
52825
|
-
return () => controller.abort();
|
|
52826
|
-
// }
|
|
52827
|
-
}, [searchValue, props.getValues(props.item.name), props.item.ApiInstance, (_a = props === null || props === void 0 ? void 0 : props.item) === null || _a === void 0 ? void 0 : _a.autoFIll]);
|
|
52828
|
-
useEffect(() => {
|
|
52829
|
-
var _a;
|
|
52830
|
-
if ((_a = props.item) === null || _a === void 0 ? void 0 : _a.ApiInstanceReferal) {
|
|
52831
|
-
setSearchValue("");
|
|
52832
|
-
}
|
|
52833
|
-
}, [(_b = props.item) === null || _b === void 0 ? void 0 : _b.ApiInstanceReferal]);
|
|
52834
|
-
const isOptionEqualToValue = (option, value) => (option === null || option === void 0 ? void 0 : option.value) === (value === null || value === void 0 ? void 0 : value.value); // Assuming there's a 'value' property in your options
|
|
52835
|
-
return (jsxRuntimeExports.jsx(Controller, { control: props.control, name: props.item.name, render: ({ field }) => {
|
|
52836
|
-
var _a, _b;
|
|
52837
|
-
return (jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, { children: [jsxRuntimeExports.jsx(Autocomplete, Object.assign({}, field, { value: props.getValues(props.item.name)
|
|
52838
|
-
? optionsFetched === null || optionsFetched === void 0 ? void 0 : optionsFetched.find((item) => (item === null || item === void 0 ? void 0 : item.value) === props.getValues(props.item.name))
|
|
52839
|
-
: null, onChange: (_, newValue) => {
|
|
52840
|
-
var _a, _b;
|
|
52841
|
-
// field.onChange(newValue);
|
|
52842
|
-
props.setValue(props.item.name, newValue === null || newValue === void 0 ? void 0 : newValue.value);
|
|
52843
|
-
((_a = props === null || props === void 0 ? void 0 : props.item) === null || _a === void 0 ? void 0 : _a.onChangeFn) &&
|
|
52844
|
-
((_b = props === null || props === void 0 ? void 0 : props.item) === null || _b === void 0 ? void 0 : _b.onChangeFn(newValue === null || newValue === void 0 ? void 0 : newValue.value));
|
|
52845
|
-
(props === null || props === void 0 ? void 0 : props.clearErrors) && (props === null || props === void 0 ? void 0 : props.clearErrors(props.item.name));
|
|
52846
|
-
}, size: "small", sx: {
|
|
52847
|
-
"& .MuiAutocomplete-input": {
|
|
52848
|
-
padding: "0px 0px 0px 5px !important",
|
|
52849
|
-
},
|
|
52850
|
-
"& .css-erkti9-MuiFormLabel-root-MuiInputLabel-root ": {
|
|
52851
|
-
top: "-5px",
|
|
52852
|
-
},
|
|
52853
|
-
}, disabled: props.item.disable, options: optionsFetched, classes: {
|
|
52854
|
-
option: props.item.size === "extrasmall"
|
|
52855
|
-
? classes.option
|
|
52856
|
-
: classes.option2,
|
|
52857
|
-
}, getOptionLabel: (option) => option.label, renderInput: (params) => {
|
|
52858
|
-
return (jsxRuntimeExports.jsx(Tooltip, Object.assign({ title: params.inputProps.value && params.inputProps.value }, { children: jsxRuntimeExports.jsx(TextField, Object.assign({}, params, { onChange: (e) => {
|
|
52859
|
-
setSearchValue(e.target.value);
|
|
52860
|
-
}, placeholder: props.item.placeholder, label: props.item.label })) })));
|
|
52861
|
-
}, PaperComponent: ({ children }) => (jsxRuntimeExports.jsx("div", Object.assign({ style: {
|
|
52862
|
-
background: "#fff",
|
|
52863
|
-
} }, { children: isLoading ? (jsxRuntimeExports.jsxs(Stack, Object.assign({ padding: 2, spacing: 1 }, { children: [jsxRuntimeExports.jsx(Skeleton, { variant: "rectangular", width: "100%", height: 20 }), jsxRuntimeExports.jsx(Skeleton, { variant: "rectangular", width: "100%", height: 20 }), jsxRuntimeExports.jsx(Skeleton, { variant: "rectangular", width: "100%", height: 20 }), jsxRuntimeExports.jsx(Skeleton, { variant: "rectangular", width: "100%", height: 20 }), jsxRuntimeExports.jsx(Skeleton, { variant: "rectangular", width: "100%", height: 20 }), jsxRuntimeExports.jsx(Skeleton, { variant: "rectangular", width: "100%", height: 20 })] }))) : (children) }))), isOptionEqualToValue: isOptionEqualToValue })), ((_a = props === null || props === void 0 ? void 0 : props.item) === null || _a === void 0 ? void 0 : _a.helperText) && (jsxRuntimeExports.jsxs("span", Object.assign({ style: {
|
|
52864
|
-
fontFamily: "Roboto-Reg",
|
|
52865
|
-
fontSize: "11px",
|
|
52866
|
-
color: "#3651d3",
|
|
52867
|
-
} }, { children: ["(", (_b = props === null || props === void 0 ? void 0 : props.item) === null || _b === void 0 ? void 0 : _b.helperText, ")"] }))), jsxRuntimeExports.jsx(ErrorMessageComponent, { children: jsxRuntimeExports.jsx(s, { errors: props.errors, name: props.item.name }) })] }));
|
|
52868
|
-
} }));
|
|
52338
|
+
var joditReact = {exports: {}};
|
|
52339
|
+
|
|
52340
|
+
/*! For license information please see jodit-react.js.LICENSE.txt */
|
|
52341
|
+
|
|
52342
|
+
(function (module, exports) {
|
|
52343
|
+
!function(t,e){module.exports=e(React__default);}(self,(t=>(()=>{var e={922:t=>{t.exports=function(t){var e=[];return e.toString=function(){return this.map((function(e){var i="",o=void 0!==e[5];return e[4]&&(i+="@supports (".concat(e[4],") {")),e[2]&&(i+="@media ".concat(e[2]," {")),o&&(i+="@layer".concat(e[5].length>0?" ".concat(e[5]):""," {")),i+=t(e),o&&(i+="}"),e[2]&&(i+="}"),e[4]&&(i+="}"),i})).join("")},e.i=function(t,i,o,n,r){"string"==typeof t&&(t=[[null,t,void 0]]);var s={};if(o)for(var a=0;a<this.length;a++){var l=this[a][0];null!=l&&(s[l]=!0);}for(var c=0;c<t.length;c++){var d=[].concat(t[c]);o&&s[d[0]]||(void 0!==r&&(void 0===d[5]||(d[1]="@layer".concat(d[5].length>0?" ".concat(d[5]):""," {").concat(d[1],"}")),d[5]=r),i&&(d[2]?(d[1]="@media ".concat(d[2]," {").concat(d[1],"}"),d[2]=i):d[2]=i),n&&(d[4]?(d[1]="@supports (".concat(d[4],") {").concat(d[1],"}"),d[4]=n):d[4]="".concat(n)),e.push(d));}},e};},155:t=>{t.exports=function(t,e){return e||(e={}),t?(t=String(t.__esModule?t.default:t),/^['"].*['"]$/.test(t)&&(t=t.slice(1,-1)),e.hash&&(t+=e.hash),/["'() \t\n]|(%20)/.test(t)||e.needQuotes?'"'.concat(t.replace(/"/g,'\\"').replace(/\n/g,"\\n"),'"'):t):t};},499:t=>{t.exports=function(t){return t[1]};},714:t=>{t.exports=function(){var t={26318:function(t,e,i){function o(t){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o(t)}function n(t,e,i){var n=i.value;if("function"!=typeof n)throw new TypeError("@boundMethod decorator can only be applied to methods not: ".concat(o(n)));var r=!1;return {configurable:!0,get:function(){if(r||this===t.prototype||this.hasOwnProperty(e)||"function"!=typeof n)return n;var i=n.bind(this);return r=!0,Object.defineProperty(this,e,{configurable:!0,get:function(){return i},set:function(t){n=t,delete this[e];}}),r=!1,i},set:function(t){n=t;}}}function r(t){var e;return "undefined"!=typeof Reflect&&"function"==typeof Reflect.ownKeys?e=Reflect.ownKeys(t.prototype):(e=Object.getOwnPropertyNames(t.prototype),"function"==typeof Object.getOwnPropertySymbols&&(e=e.concat(Object.getOwnPropertySymbols(t.prototype)))),e.forEach((function(e){if("constructor"!==e){var i=Object.getOwnPropertyDescriptor(t.prototype,e);"function"==typeof i.value&&Object.defineProperty(t.prototype,e,n(t,e,i));}})),t}function s(){return 1===arguments.length?r.apply(void 0,arguments):n.apply(void 0,arguments)}i.d(e,{Ay:function(){return s}});},36115:function(t,e,i){i.d(e,{T:function(){return n}});var o=i(17352);class n{constructor(){this.cache=!0,this.defaultTimeout=100,this.namespace="",this.safeMode=!1,this.width="auto",this.height="auto",this.safePluginsList=["about","enter","backspace","size","bold","hotkeys"],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.zIndex=0,this.readonly=!1,this.disabled=!1,this.activeButtonsInReadOnly=["source","fullsize","print","about","dots","selectall"],this.allowCommandsInReadOnly=["selectall","preview","print"],this.toolbarButtonSize="middle",this.allowTabNavigation=!1,this.inline=!1,this.theme="default",this.saveModeInStorage=!1,this.editorClassName=!1,this.className=!1,this.style=!1,this.containerStyle=!1,this.styleValues={},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=200,this.useNativeTooltip=!1,this.defaultActionOnPaste=o.INSERT_AS_HTML,this.enter=o.PARAGRAPH,this.iframe=!1,this.editHTMLDocumentMode=!1,this.enterBlock="br"!==this.enter?this.enter:o.PARAGRAPH,this.defaultMode=o.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.events={},this.textIcons=!1,this.showBrowserColorPicker=!0;}static get defaultOptions(){return n.__defaultOptions||(n.__defaultOptions=new n),n.__defaultOptions}}n.prototype.controls={};},86302:function(t,e,i){i.d(e,{j:function(){return p}});var o=i(17352),n=i(59146),r=i(99951),s=i(69052),a=i(2461),l=i(25376),c=i(92039),d=i(98253),u=i(35642),h=(i(28712),i(21567));class p{constructor(){var t,e,i,o,n;this.timers=new Map,this.__callbacks=new Map,this.__queueMicrotaskNative=null!==(t=null===queueMicrotask||void 0===queueMicrotask?void 0:queueMicrotask.bind(window))&&void 0!==t?t:Promise.resolve().then.bind(Promise.resolve()),this.promisesRejections=new Set,this.requestsIdle=new Set,this.requestsRaf=new Set,this.requestIdleCallbackNative=null!==(i=null===(e=window.requestIdleCallback)||void 0===e?void 0:e.bind(window))&&void 0!==i?i:(t,e)=>{var i;const o=Date.now();return this.setTimeout((()=>{t({didTimeout:!1,timeRemaining:()=>Math.max(0,50-(Date.now()-o))});}),null!==(i=null==e?void 0:e.timeout)&&void 0!==i?i:1)},this.__cancelIdleCallbackNative=null!==(n=null===(o=window.cancelIdleCallback)||void 0===o?void 0:o.bind(window))&&void 0!==n?n:t=>{this.clearTimeout(t);},this.isDestructed=!1;}delay(t){return this.promise((e=>this.setTimeout(e,t)))}setTimeout(t,e,...i){if(this.isDestructed)return 0;let o={};(0, u.R)(e)&&(e=0),(0, a.E)(e)||(o=e,e=o.timeout||0),o.label&&this.clearLabel(o.label);const r=(0, n.w)(t,e,...i),s=o.label||r;return this.timers.set(s,r),this.__callbacks.set(s,t),r}updateTimeout(t,e){if(!t||!this.timers.has(t))return null;const i=this.__callbacks.get(t);return this.setTimeout(i,{label:t,timeout:e})}clearLabel(t){t&&this.timers.has(t)&&((0, n.D)(this.timers.get(t)),this.timers.delete(t),this.__callbacks.delete(t));}clearTimeout(t){if((0, d.K)(t))return this.clearLabel(t);(0, n.D)(t),this.timers.delete(t),this.__callbacks.delete(t);}debounce(t,e,i=!1){let o=0,a=!1;const d=[],u=(...e)=>{if(!a){o=0;const i=t(...e);if(a=!0,d.length){const t=()=>{d.forEach((t=>t())),d.length=0;};(0, c.y)(i)?i.finally(t):t();}}},h=(...r)=>{a=!1,e?(!o&&i&&u(...r),(0, n.D)(o),o=this.setTimeout((()=>u(...r)),(0, s.T)(e)?e():e),this.timers.set(t,o)):u(...r);};return (0, l.Q)(e)&&e.promisify?(...t)=>{const e=this.promise((t=>{d.push(t);})).catch((t=>{if((0, r.z)(t))return null;throw t}));return h(...t),e}:h}microDebounce(t,e=!1){let i,o=!1,n=!0;return (...r)=>{i=r,o?n=!0:(n=!0,e&&(n=!1,t(...i)),o=!0,this.__queueMicrotaskNative((()=>{o=!1,this.isDestructed||n&&t(...i);})));}}throttle(t,e,i=!1){let o,n,r,a=null;return (...i)=>{o=!0,r=i,e?a||(n=()=>{o?(t(...r),o=!1,a=this.setTimeout(n,(0, s.T)(e)?e():e),this.timers.set(n,a)):a=null;},n()):t(...r);}}promise(t){let e=()=>{};const i=new Promise(((i,o)=>{e=()=>o((0, h.h)("Abort async")),this.promisesRejections.add(e),t(i,o);}));return i.finally||"undefined"==typeof process||o.IS_ES_NEXT||(i.finally=t=>(i.then(t).catch(t),i)),i.finally((()=>{this.promisesRejections.delete(e);})).catch((()=>null)),i.rejectCallback=e,i}promiseState(t){if(t.status)return t.status;if(!Promise.race)return new Promise((e=>{t.then((t=>(e("fulfilled"),t)),(t=>{throw e("rejected"),t})),this.setTimeout((()=>{e("pending");}),100);}));const e={};return Promise.race([t,e]).then((t=>t===e?"pending":"fulfilled"),(()=>"rejected"))}requestIdleCallback(t,e){const i=this.requestIdleCallbackNative(t,e);return this.requestsIdle.add(i),i}requestIdlePromise(t){return this.promise((e=>{const i=this.requestIdleCallback((()=>e(i)),t);}))}cancelIdleCallback(t){return this.requestsIdle.delete(t),this.__cancelIdleCallbackNative(t)}requestAnimationFrame(t){const e=requestAnimationFrame(t);return this.requestsRaf.add(e),e}cancelAnimationFrame(t){this.requestsRaf.delete(t),cancelAnimationFrame(t);}clear(){this.requestsIdle.forEach((t=>this.cancelIdleCallback(t))),this.requestsRaf.forEach((t=>this.cancelAnimationFrame(t))),this.timers.forEach((t=>(0, n.D)(this.timers.get(t)))),this.timers.clear(),this.promisesRejections.forEach((t=>t())),this.promisesRejections.clear();}destruct(){this.clear(),this.isDestructed=!0;}}},64890:function(t,e,i){i.d(e,{j:function(){return o.j}});var o=i(86302);},37474:function(t,e,i){i.d(e,{u:function(){return l}});var o=i(64890),n=i(64567),r=i(56298),s=i(65147);const a=new Map;class l{get componentName(){return this.__componentName||(this.__componentName="jodit-"+(0, s.kebabCase)(((0, s.isFunction)(this.className)?this.className():"")||(0, s.getClassName)(this))),this.__componentName}getFullElName(t,e,i){const o=[this.componentName];return t&&(t=t.replace(/[^a-z0-9-]/gi,"-"),o.push(`__${t}`)),e&&(o.push("_",e),o.push("_",(0, s.isVoid)(i)?"true":i.toString())),o.join("")}get ownerDocument(){return this.ow.document}get od(){return this.ownerDocument}get ow(){return this.ownerWindow}get(t,e){return (0, s.get)(t,e||this)}get isReady(){return this.componentStatus===n.f.ready}get isDestructed(){return this.componentStatus===n.f.destructed}get isInDestruct(){return n.f.beforeDestruct===this.componentStatus||n.f.destructed===this.componentStatus}bindDestruct(t){return t.hookStatus(n.f.beforeDestruct,(()=>!this.isInDestruct&&this.destruct())),this}constructor(){this.async=new o.j,this.ownerWindow=window,this.__componentStatus=n.f.beforeInit,this.uid="jodit-uid-"+(0, r.w9)();}destruct(){this.setStatus(n.f.destructed),this.async&&(this.async.destruct(),this.async=void 0),a.get(this)&&a.delete(this),this.ownerWindow=void 0;}get componentStatus(){return this.__componentStatus}set componentStatus(t){this.setStatus(t);}setStatus(t){return this.setStatusComponent(t,this)}setStatusComponent(t,e){if(t===this.__componentStatus)return;e===this&&(this.__componentStatus=t);const i=Object.getPrototypeOf(this);i&&(0, s.isFunction)(i.setStatusComponent)&&i.setStatusComponent(t,e);const o=a.get(this),n=null==o?void 0:o[t];n&&n.length&&n.forEach((t=>t(e)));}hookStatus(t,e){let i=a.get(this);i||(i={},a.set(this,i)),i[t]||(i[t]=[]),i[t].push(e);}static isInstanceOf(t,e){return t instanceof e}}l.STATUSES=n.f;},77753:function(t,e,i){i.d(e,{f:function(){return n.f},uA:function(){return o.u},vG:function(){return r.v}});var o=i(37474),n=i(64567),r=i(7982);},64567:function(t,e,i){i.d(e,{f:function(){return o}});const o={beforeInit:"beforeInit",ready:"ready",beforeDestruct:"beforeDestruct",destructed:"destructed"};},7982:function(t,e,i){i.d(e,{v:function(){return n}});var o=i(37474);class n extends o.u{get j(){return this.jodit}get defaultTimeout(){return this.j.defaultTimeout}i18n(t,...e){return this.j.i18n(t,...e)}setParentView(t){return this.jodit=t,t.components.add(this),this}constructor(t){super(),this.setParentView(t);}destruct(){return this.j.components.delete(this),super.destruct()}}},17352:function(t,e,i){i.r(e),i.d(e,{ACCURACY:function(){return J},APP_VERSION:function(){return o},BASE_PATH:function(){return at},BR:function(){return F},CLIPBOARD_ID:function(){return dt},COMMAND_KEYS:function(){return H},EMULATE_DBLCLICK_TIMEOUT:function(){return Q},ES:function(){return n},FAT_MODE:function(){return c},HOMEPAGE:function(){return d},INSEPARABLE_TAGS:function(){return C},INSERT_AS_HTML:function(){return tt},INSERT_AS_TEXT:function(){return it},INSERT_CLEAR_HTML:function(){return et},INSERT_ONLY_TEXT:function(){return ot},INVISIBLE_SPACE:function(){return p},INVISIBLE_SPACE_REG_EXP:function(){return g},INVISIBLE_SPACE_REG_EXP_END:function(){return m},INVISIBLE_SPACE_REG_EXP_START:function(){return b},IS_BLOCK:function(){return w},IS_ES_MODERN:function(){return r},IS_ES_NEXT:function(){return s},IS_IE:function(){return Y},IS_INLINE:function(){return y},IS_MAC:function(){return rt},IS_PROD:function(){return a},IS_TEST:function(){return l},KEY_ALIASES:function(){return st},KEY_ALT:function(){return L},KEY_BACKSPACE:function(){return T},KEY_DELETE:function(){return D},KEY_DOWN:function(){return N},KEY_ENTER:function(){return I},KEY_ESC:function(){return A},KEY_F3:function(){return q},KEY_LEFT:function(){return M},KEY_META:function(){return z},KEY_RIGHT:function(){return R},KEY_SPACE:function(){return B},KEY_TAB:function(){return E},KEY_UP:function(){return P},LIST_TAGS:function(){return j},MARKER_CLASS:function(){return Z},MODE_SOURCE:function(){return U},MODE_SPLIT:function(){return $},MODE_WYSIWYG:function(){return W},NBSP_SPACE:function(){return f},NEARBY:function(){return O},NO_EMPTY_TAGS:function(){return S},PARAGRAPH:function(){return V},PASSIVE_EVENTS:function(){return ht},SAFE_COUNT_CHANGE_CALL:function(){return nt},SET_TEST:function(){return u},SOURCE_CONSUMER:function(){return ut},SPACE_REG_EXP:function(){return _},SPACE_REG_EXP_END:function(){return x},SPACE_REG_EXP_START:function(){return v},TEMP_ATTR:function(){return lt},TEXT_HTML:function(){return G},TEXT_PLAIN:function(){return K},TEXT_RTF:function(){return X},TOKENS:function(){return h},lang:function(){return ct}});const o="4.2.10",n="es2018",r=!0,s=!1,a=!0;let l=!1;const c=!0,d="https://xdsoft.net/jodit/",u=()=>l=!0,h={},p="\ufeff",f=" ",g=()=>/[\uFEFF]/g,m=()=>/[\uFEFF]+$/g,b=()=>/^[\uFEFF]+/g,_=()=>/[\s\n\t\r\uFEFF\u200b]+/g,v=()=>/^[\s\n\t\r\uFEFF\u200b]+/g,x=()=>/[\s\n\t\r\uFEFF\u200b]+$/g,w=/^(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,y=/^(STRONG|SPAN|I|EM|B|SUP|SUB|A|U)$/i,j=new Set(["ul","ol"]),k=["img","video","svg","iframe","script","input","textarea","link","jodit","jodit-media"],C=new Set([...k,"br","hr"]),S=new Set(k),z="Meta",T="Backspace",E="Tab",I="Enter",A="Escape",L="Alt",M="ArrowLeft",P="ArrowUp",R="ArrowRight",N="ArrowDown",B="Space",D="Delete",q="F3",O=5,J=10,H=[z,T,D,P,N,R,M,I,A,q,E],F="br",V="p",W=1,U=2,$=3,Y="undefined"!=typeof navigator&&(-1!==navigator.userAgent.indexOf("MSIE")||/rv:11.0/i.test(navigator.userAgent)),K=Y?"text":"text/plain",G=Y?"html":"text/html",X=Y?"rtf":"text/rtf",Z="jodit-selection_marker",Q=300,tt="insert_as_html",et="insert_clear_html",it="insert_as_text",ot="insert_only_text",nt=10,rt="undefined"!=typeof window&&/Mac|iPod|iPhone|iPad/.test(window.navigator.platform),st={add:"+",break:"pause",cmd:"meta",command:"meta",ctl:"control",ctrl:"control",del:"delete",down:"arrowdown",esc:"escape",ins:"insert",left:"arrowleft",mod:rt?"meta":"control",opt:"alt",option:"alt",return:"enter",right:"arrowright",space:" ",spacebar:" ",up:"arrowup",win:"meta",windows:"meta"},at=(()=>{if("undefined"==typeof document)return "";const t=document.currentScript,e=t=>{const e=t.split("/");return /\.js/.test(e[e.length-1])?e.slice(0,e.length-1).join("/")+"/":t};if(t)return e(t.src);const i=document.querySelectorAll("script[src]");return i&&i.length?e(i[i.length-1].src):window.location.href})(),lt="data-jodit-temp",ct={},dt="clipboard",ut="source-consumer",ht=new Set(["touchstart","touchend","scroll","mousewheel","mousemove","touchmove"]);},92852:function(t,e,i){i.d(e,{X:function(){return s}});var o=i(17352),n=i(55186),r=i(65147);i(28712);class s{get doc(){return (0, r.isFunction)(this.document)?this.document():this.document}constructor(t,e){this.document=t,this.createAttributes=e;}element(t,e,i){const o=this.doc.createElement(t.toLowerCase());return this.applyCreateAttributes(o),e&&((0, r.isPlainObject)(e)?(0, r.attr)(o,e):i=e),i&&(0, r.asArray)(i).forEach((t=>o.appendChild((0, r.isString)(t)?this.fromHTML(t):t))),o}div(t,e,i){const o=this.element("div",e,i);return t&&(o.className=t),o}sandbox(){var t;const e=this.element("iframe",{sandbox:"allow-same-origin"});this.doc.body.appendChild(e);const i=null===(t=e.contentWindow)||void 0===t?void 0:t.document;if(!i)throw Error("Iframe error");return i.open(),i.write("<!DOCTYPE html><html><head></head><body></body></html>"),i.close(),[i.body,e]}span(t,e,i){const o=this.element("span",e,i);return t&&(o.className=t),o}a(t,e,i){const o=this.element("a",e,i);return t&&(o.className=t),o}text(t){return this.doc.createTextNode(t)}fake(){return this.text(o.INVISIBLE_SPACE)}fragment(){return this.doc.createDocumentFragment()}fromHTML(t,e){const i=this.div();i.innerHTML=t.toString();const o=i.firstChild===i.lastChild&&i.firstChild?i.firstChild:i;if(n.J.safeRemove(o),e){const t=(0, r.refs)(o);Object.keys(e).forEach((i=>{const o=t[i];o&&!1===e[i]&&n.J.hide(o);}));}return o}applyCreateAttributes(t){if(this.createAttributes){const e=this.createAttributes;if(e&&e[t.tagName.toLowerCase()]){const i=e[t.tagName.toLowerCase()];(0, r.isFunction)(i)?i(t):(0, r.isPlainObject)(i)&&(0, r.attr)(t,i);}}}}},40594:function(t,e,i){i.d(e,{X:function(){return o.X}});var o=i(92852);},11961:function(t,e,i){i.d(e,{d:function(){return o.Ay}});var o=i(26318);},87875:function(t,e,i){i.d(e,{OK:function(){return c},PO:function(){return a},PP:function(){return l}});var o=i(64567),n=i(55186),r=i(9823),s=i(76166);function a(t,e){const i=Object.getOwnPropertyDescriptor(t,e);return !i||(0, r.Tn)(i.get)?null:i.value}function l(t,e,i){const o=i.get;if(!o)throw (0, s.z3)("Getter property descriptor expected");i.get=function(){const t=o.call(this);return t&&!0===t.noCache||Object.defineProperty(this,e,{configurable:i.configurable,enumerable:i.enumerable,writable:!1,value:t}),t};}function c(t,e,i){const a=i.value;if(!(0, r.Tn)(a))throw (0, s.z3)("Handler must be a Function");let l=!0;const c=new WeakMap;i.value=function(...t){var e;if(l&&c.has(this.constructor))return null===(e=c.get(this.constructor))||void 0===e?void 0:e.cloneNode(!0);const i=a.apply(this,t);return l&&n.J.isElement(i)&&c.set(this.constructor,i),l?i.cloneNode(!0):i},t.hookStatus(o.f.ready,(t=>{const e=(0, r.hH)(t)?t:t.jodit;l=Boolean(e.options.cache);}));}},24767:function(t,e,i){function o(t){class e extends t{constructor(...t){super(...t),this.constructor===e&&(this instanceof e||Object.setPrototypeOf(this,e.prototype),this.setStatus("ready"));}}return e}i.d(e,{s:function(){return o}});},37075:function(t,e,i){i.d(e,{n:function(){return a},s:function(){return s}});var o=i(77753),n=i(9823),r=(i(28712),i(50156));function s(t,e=!1,i="debounce"){return (s,a)=>{const l=s[a];if(!(0, n.Tn)(l))throw (0, r.z3)("Handler must be a Function");return s.hookStatus(o.f.ready,(o=>{const{async:r}=o,s=(0, n.Tn)(t)?t(o):t,l=(0, n.Et)(s)||(0, n.Qd)(s)?s:o.defaultTimeout;Object.defineProperty(o,a,{configurable:!0,value:r[i](o[a].bind(o),l,e)});})),{configurable:!0,get(){return l.bind(this)}}}}function a(t,e=!1){return s(t,e,"throttle")}},1963:function(t,e,i){i.d(e,{C:function(){return n}});var o=i(69052);function n(...t){return e=>{const i=e.prototype;for(let e=0;t.length>e;e++){const n=t[e],r=Object.getOwnPropertyNames(n.prototype);for(let t=0;r.length>t;t++){const e=r[t],s=Object.getOwnPropertyDescriptor(n.prototype,e);null!=s&&(0, o.T)(s.value)&&!(0, o.T)(i[e])&&Object.defineProperty(i,e,{enumerable:!0,configurable:!0,writable:!0,value:function(...t){return s.value.call(this,...t)}});}}}}},71151:function(t,e,i){i.d(e,{A:function(){return r}});var o=i(69052),n=i(50156);function r(t){return (e,i)=>{if(!(0, o.T)(e[i]))throw (0, n.z3)("Handler must be a Function");e.hookStatus(t,(t=>{t[i].call(t);}));}}},86285:function(t,e,i){i.d(e,{N:function(){return s}});var o=i(77753),n=i(69052),r=i(50156);function s(){return (t,e)=>{if(!(0, n.T)(t[e]))throw (0, r.z3)("Handler must be a Function");t.hookStatus(o.f.ready,(t=>{const{async:i}=t,o=t[e];t[e]=(...e)=>i.requestIdleCallback(o.bind(t,...e));}));}}},22664:function(t,e,i){i.r(e),i.d(e,{autobind:function(){return o.d},cache:function(){return n.PP},cacheHTML:function(){return n.OK},cached:function(){return n.PO},component:function(){return r.s},debounce:function(){return s.s},derive:function(){return a.C},getPropertyDescriptor:function(){return p.N},hook:function(){return l.A},idle:function(){return c.N},nonenumerable:function(){return d.m},persistent:function(){return u.y},throttle:function(){return s.n},wait:function(){return h.u},watch:function(){return p.w}});var o=i(11961),n=i(87875),r=i(24767),s=i(37075),a=i(1963),l=i(71151),c=i(86285),d=i(48791),u=i(33087),h=i(48647),p=i(66927);},48791:function(t,e,i){i.d(e,{m:function(){return o}});const o=(t,e)=>{!1!==(Object.getOwnPropertyDescriptor(t,e)||{}).enumerable&&Object.defineProperty(t,e,{enumerable:!1,set(t){Object.defineProperty(this,e,{enumerable:!1,writable:!0,value:t});}});};},33087:function(t,e,i){i.d(e,{y:function(){return r}});var o=i(64567),n=i(12041);function r(t,e){t.hookStatus(o.f.ready,(t=>{const i=(0, n.h)(t)?t:t.jodit,o=`${i.options.namespace}${t.componentName}_prop_${e}`,r=t[e];Object.defineProperty(t,e,{get(){var t;return null!==(t=i.storage.get(o))&&void 0!==t?t:r},set(t){i.storage.set(o,t);}});}));}},48647:function(t,e,i){i.d(e,{u:function(){return s}});var o=i(64567),n=i(69052),r=i(50156);function s(t){return (e,i)=>{if(!(0, n.T)(e[i]))throw (0, r.z3)("Handler must be a Function");e.hookStatus(o.f.ready,(e=>{const{async:o}=e,n=e[i];let r=0;Object.defineProperty(e,i,{configurable:!0,value:function i(...s){o.clearTimeout(r),t(e)?n.apply(e,s):r=o.setTimeout((()=>i(...s)),10);}});}));}}},66927:function(t,e,i){i.d(e,{N:function(){return d},w:function(){return u}});var o=i(64567),n=i(32332),r=i(42589),s=i(69052),a=i(25376),l=i(12041),c=i(50156);function d(t,e){let i;do{i=Object.getOwnPropertyDescriptor(t,e),t=Object.getPrototypeOf(t);}while(!i&&t);return i}function u(t,e){return (i,u)=>{var h;if(!(0, s.T)(i[u]))throw (0, c.z3)("Handler must be a Function");const p=null===(h=null==e?void 0:e.immediately)||void 0===h||h,f=null==e?void 0:e.context,g=e=>{const o=(0, l.h)(e)?e:e.jodit;let c=(t,...i)=>{if(!e.isInDestruct)return e[u](t,...i)};p||(c=e.async.microDebounce(c,!0)),(0, r.u)(t).forEach((t=>{if(/:/.test(t)){const[i,n]=t.split(":");let r=f;return i.length&&(r=e.get(i)),(0, s.T)(r)&&(r=r(e)),o.events.on(r||e,n,c),r||o.events.on(n,c),void e.hookStatus("beforeDestruct",(()=>{o.events.off(r||e,n,c).off(n,c);}))}const r=t.split("."),[l]=r,u=r.slice(1);let h=e[l];(0, a.Q)(h)&&(0, n.s)(h).on(`change.${u.join(".")}`,c);const p=d(i,l);Object.defineProperty(e,l,{configurable:!0,set(t){const i=h;i!==t&&(h=t,p&&p.set&&p.set.call(e,t),(0, a.Q)(h)&&(h=(0, n.s)(h),h.on(`change.${u.join(".")}`,c)),c(l,i,h));},get:()=>p&&p.get?p.get.call(e):h});}));};(0, s.T)(i.hookStatus)?i.hookStatus(o.f.ready,g):g(i);}}},55186:function(t,e,i){i.d(e,{J:function(){return l}});var o=i(17352),n=i(42448),r=i(9823),s=i(59101),a=i(97369);class l{constructor(){throw new Error("Dom is static module")}static detach(t){for(;t&&t.firstChild;)t.removeChild(t.firstChild);}static wrapInline(t,e,i){let o,n=t,s=t;i.s.save();let a=!1;do{a=!1,o=n.previousSibling,o&&!l.isBlock(o)&&(a=!0,n=o);}while(a);do{a=!1,o=s.nextSibling,o&&!l.isBlock(o)&&(a=!0,s=o);}while(a);const c=(0, r.Kg)(e)?i.createInside.element(e):e;n.parentNode&&n.parentNode.insertBefore(c,n);let d=n;for(;d&&(d=n.nextSibling,c.appendChild(n),n!==s&&d);)n=d;return i.s.restore(),c}static wrap(t,e,i){const o=(0, r.Kg)(e)?i.element(e):e;if(l.isNode(t)){if(!t.parentNode)throw (0, a.error)("Element should be in DOM");t.parentNode.insertBefore(o,t),o.appendChild(t);}else {const e=t.extractContents();t.insertNode(o),o.appendChild(e);}return o}static unwrap(t){const e=t.parentNode;if(e){for(;t.firstChild;)e.insertBefore(t.firstChild,t);l.safeRemove(t);}}static between(t,e,i){let o=t;for(;o&&o!==e&&(t===o||!i(o));){let t=o.firstChild||o.nextSibling;if(!t){for(;o&&!o.nextSibling;)o=o.parentNode;t=null==o?void 0:o.nextSibling;}o=t;}}static replace(t,e,i,o=!1,s=!1){(0, r.AH)(e)&&(e=i.fromHTML(e));const a=(0, r.Kg)(e)?i.element(e):e;if(!s)for(;t.firstChild;)a.appendChild(t.firstChild);return o&&l.isElement(t)&&l.isElement(a)&&(0, n.$)(t.attributes).forEach((t=>{a.setAttribute(t.name,t.value);})),t.parentNode&&t.parentNode.replaceChild(a,t),a}static isEmptyTextNode(t){return l.isText(t)&&(!t.nodeValue||0===t.nodeValue.replace(o.INVISIBLE_SPACE_REG_EXP(),"").trim().length)}static isEmptyContent(t){return l.each(t,(t=>l.isEmptyTextNode(t)))}static isContentEditable(t,e){return l.isNode(t)&&!l.closest(t,(t=>l.isElement(t)&&"false"===t.getAttribute("contenteditable")),e)}static isEmpty(t,e=o.NO_EMPTY_TAGS){if(!t)return !0;let i;i=(0, r.Tn)(e)?e:t=>e.has(t.nodeName.toLowerCase());const n=t=>null==t.nodeValue||0===(0, s.Bq)(t.nodeValue).length;return l.isText(t)?n(t):!(l.isElement(t)&&i(t))&&l.each(t,(t=>{if(l.isText(t)&&!n(t)||l.isElement(t)&&i(t))return !1}))}static isNode(t){return Boolean(t&&(0, r.Kg)(t.nodeName)&&"number"==typeof t.nodeType&&t.childNodes&&(0, r.Tn)(t.appendChild))}static isCell(t){return l.isNode(t)&&("TD"===t.nodeName||"TH"===t.nodeName)}static isList(t){return l.isTag(t,o.LIST_TAGS)}static isLeaf(t){return l.isTag(t,"li")}static isImage(t){return l.isNode(t)&&/^(img|svg|picture|canvas)$/i.test(t.nodeName)}static isBlock(t){return !(0, r.Rd)(t)&&"object"==typeof t&&l.isNode(t)&&o.IS_BLOCK.test(t.nodeName)}static isText(t){return Boolean(t&&t.nodeType===Node.TEXT_NODE)}static isComment(t){return Boolean(t&&t.nodeType===Node.COMMENT_NODE)}static isElement(t){var e;if(!l.isNode(t))return !1;const i=null===(e=t.ownerDocument)||void 0===e?void 0:e.defaultView;return Boolean(i&&t.nodeType===Node.ELEMENT_NODE)}static isFragment(t){var e;if(!l.isNode(t))return !1;const i=null===(e=t.ownerDocument)||void 0===e?void 0:e.defaultView;return Boolean(i&&t.nodeType===Node.DOCUMENT_FRAGMENT_NODE)}static isHTMLElement(t){var e;if(!l.isNode(t))return !1;const i=null===(e=t.ownerDocument)||void 0===e?void 0:e.defaultView;return Boolean(i&&t instanceof i.HTMLElement)}static isInlineBlock(t){return l.isElement(t)&&!/^(BR|HR)$/i.test(t.tagName)&&-1!==["inline","inline-block"].indexOf((0, a.css)(t,"display").toString())}static canSplitBlock(t){return !(0, r.Rd)(t)&&l.isHTMLElement(t)&&l.isBlock(t)&&!/^(TD|TH|CAPTION|FORM)$/.test(t.nodeName)&&void 0!==t.style&&!/^(fixed|absolute)/i.test(t.style.position)}static last(t,e){let i=null==t?void 0:t.lastChild;if(!i)return null;do{if(e(i))return i;let o=i.lastChild;if(o||(o=i.previousSibling),!o&&i.parentNode!==t){do{i=i.parentNode;}while(i&&!(null==i?void 0:i.previousSibling)&&i.parentNode!==t);o=null==i?void 0:i.previousSibling;}i=o;}while(i);return null}static prev(t,e,i,o=!0){return l.find(t,e,i,!1,o)}static next(t,e,i,o=!0){return l.find(t,e,i,!0,o)}static prevWithClass(t,e){return l.prev(t,(t=>l.isElement(t)&&t.classList.contains(e)),t.parentNode)}static nextWithClass(t,e){return l.next(t,(t=>l.isElement(t)&&t.classList.contains(e)),t.parentNode)}static find(t,e,i,o=!0,n=!0){const r=this.nextGen(t,i,o,n);let s=r.next();for(;!s.done;){if(e(s.value))return s.value;s=r.next();}return null}static*nextGen(t,e,i=!0,o=!0){const n=[];let r=t;do{let e=i?r.nextSibling:r.previousSibling;for(;e;)n.unshift(e),e=i?e.nextSibling:e.previousSibling;yield*this.runInStack(t,n,i,o),r=r.parentNode;}while(r&&r!==e);return null}static each(t,e,i=!0){const o=this.eachGen(t,i);let n=o.next();for(;!n.done;){if(!1===e(n.value))return !1;n=o.next();}return !0}static eachGen(t,e=!0){return this.runInStack(t,[t],e)}static*runInStack(t,e,i,o=!0){for(;e.length;){const n=e.pop();if(o){let t=i?n.lastChild:n.firstChild;for(;t;)e.push(t),t=i?t.previousSibling:t.nextSibling;}t!==n&&(yield n);}}static findWithCurrent(t,e,i,o="nextSibling",n="firstChild"){let r=t;do{if(e(r))return r||null;if(n&&r&&r[n]){const t=l.findWithCurrent(r[n],e,r,o,n);if(t)return t}for(;r&&!r[o]&&r!==i;)r=r.parentNode;r&&r[o]&&r!==i&&(r=r[o]);}while(r&&r!==i);return null}static findSibling(t,e=!0,i=(t=>!l.isEmptyTextNode(t))){let o=l.sibling(t,e);for(;o&&!i(o);)o=l.sibling(o,e);return o&&i(o)?o:null}static findNotEmptySibling(t,e){return l.findSibling(t,e,(t=>{var e;return !l.isEmptyTextNode(t)&&Boolean(!l.isText(t)||(null===(e=t.nodeValue)||void 0===e?void 0:e.length)&&(0, s.Bq)(t.nodeValue))}))}static findNotEmptyNeighbor(t,e,i){return (0, a.call)(e?l.prev:l.next,t,(t=>Boolean(t&&(!(l.isText(t)||l.isComment(t))||(0, s.Bq)((null==t?void 0:t.nodeValue)||"").length))),i)}static sibling(t,e){return e?t.previousSibling:t.nextSibling}static up(t,e,i,o=!1){let n=t;if(!n)return null;do{if(e(n))return n;if(n===i||!n.parentNode)break;n=n.parentNode;}while(n&&n!==i);return n===i&&o&&e(n)?n:null}static closest(t,e,i){let o;const n=t=>t.toLowerCase();if((0, r.Tn)(e))o=e;else if((0, r.cy)(e)||(0, r.vM)(e)){const t=(0, r.vM)(e)?e:new Set(e.map(n));o=e=>Boolean(e&&t.has(n(e.nodeName)));}else o=t=>Boolean(t&&n(e)===n(t.nodeName));return l.up(t,o,i)}static furthest(t,e,i){let o=null,n=null==t?void 0:t.parentElement;for(;n&&n!==i;)e(n)&&(o=n),n=null==n?void 0:n.parentElement;return o}static appendChildFirst(t,e){const i=t.firstChild;i?i!==e&&t.insertBefore(e,i):t.appendChild(e);}static after(t,e){const{parentNode:i}=t;i&&(i.lastChild===t?i.appendChild(e):i.insertBefore(e,t.nextSibling));}static before(t,e){const{parentNode:i}=t;i&&i.insertBefore(e,t);}static prepend(t,e){t.insertBefore(e,t.firstChild);}static append(t,e){(0, r.cy)(e)?e.forEach((e=>{this.append(t,e);})):t.appendChild(e);}static moveContent(t,e,i=!1,o=(()=>!0)){const r=(t.ownerDocument||document).createDocumentFragment();(0, n.$)(t.childNodes).filter((t=>!!o(t)||(l.safeRemove(t),!1))).forEach((t=>{r.appendChild(t);})),i&&e.firstChild?e.insertBefore(r,e.firstChild):e.appendChild(r);}static isOrContains(t,e,i=!1){return t===e?!i:Boolean(e&&t&&this.up(e,(e=>e===t),t,!0))}static safeRemove(...t){t.forEach((t=>l.isNode(t)&&t.parentNode&&t.parentNode.removeChild(t)));}static safeInsertNode(t,e){t.collapsed||t.deleteContents();const i=l.isFragment(e)?e.lastChild:e;t.startContainer===t.endContainer&&t.collapsed&&l.isTag(t.startContainer,o.INSEPARABLE_TAGS)?l.after(t.startContainer,e):(t.insertNode(e),i&&t.setStartBefore(i)),t.collapse(!0),[e.nextSibling,e.previousSibling].forEach((t=>l.isText(t)&&!t.nodeValue&&l.safeRemove(t)));}static hide(t){t&&((0, a.dataBind)(t,"__old_display",t.style.display),t.style.display="none");}static show(t){if(!t)return;const e=(0, a.dataBind)(t,"__old_display");"none"===t.style.display&&(t.style.display=e||"");}static isTag(t,e){if(!this.isElement(t))return !1;const i=t.tagName.toLowerCase(),o=t.tagName.toUpperCase();if(e instanceof Set)return e.has(i)||e.has(o);if(Array.isArray(e))throw new TypeError("Dom.isTag does not support array");return i===e||o===e}static markTemporary(t,e){return e&&(0, a.attr)(t,e),(0, a.attr)(t,o.TEMP_ATTR,!0),t}static isTemporary(t){return !!l.isElement(t)&&((0, r.rg)(t)||"true"===(0, a.attr)(t,o.TEMP_ATTR))}static replaceTemporaryFromString(t){return t.replace(/<([a-z]+)[^>]+data-jodit-temp[^>]+>(.+?)<\/\1>/gi,"$2")}static temporaryList(t){return (0, a.$$)(`[${o.TEMP_ATTR}]`,t)}}},71842:function(t,e,i){i.d(e,{J:function(){return o.J},p:function(){return n.p}});var o=i(55186),n=i(8453);},8453:function(t,e,i){i.d(e,{p:function(){return a}});var o=i(31635),n=i(22664),r=i(55186),s=i(43431);class a extends s.h{setWork(t){return this.isWorked&&this.break(),this.workNodes=r.J.eachGen(t,!this.options.reverse),this.isFinished=!1,this.startIdleRequest(),this}constructor(t,e={}){super(),this.async=t,this.options=e,this.workNodes=null,this.hadAffect=!1,this.isWorked=!1,this.isFinished=!1,this.idleId=0;}startIdleRequest(){var t;this.idleId=this.async.requestIdleCallback(this.workPerform,{timeout:null!==(t=this.options.timeout)&&void 0!==t?t:10});}break(t){this.isWorked&&(this.stop(),this.emit("break",t));}end(){this.isWorked&&(this.stop(),this.emit("end",this.hadAffect),this.hadAffect=!1);}stop(){this.isWorked=!1,this.isFinished=!0,this.workNodes=null,this.async.cancelIdleCallback(this.idleId);}destruct(){super.destruct(),this.stop();}workPerform(t){var e;if(this.workNodes){this.isWorked=!0;let i=0;const o=null!==(e=this.options.timeoutChunkSize)&&void 0!==e?e:50;for(;!this.isFinished&&(t.timeRemaining()>0||t.didTimeout&&o>=i);){const t=this.workNodes.next();if(i+=1,this.visitNode(t.value)&&(this.hadAffect=!0),t.done)return void this.end()}}else this.end();this.isFinished||this.startIdleRequest();}visitNode(t){var e;return !(!t||void 0!==this.options.whatToShow&&t.nodeType!==this.options.whatToShow)&&null!==(e=this.emit("visit",t))&&void 0!==e&&e}}(0, o.Cg)([n.autobind],a.prototype,"workPerform",null);},50658:function(t,e,i){i.d(e,{b:function(){return d}});var o=i(17352),n=i(42589),r=i(37923),s=i(69052),a=i(98253),l=i(50156),c=i(10004);class d{mute(t){return this.__mutedEvents.add(null!=t?t:"*"),this}isMuted(t){return !(!t||!this.__mutedEvents.has(t))||this.__mutedEvents.has("*")}unmute(t){return this.__mutedEvents.delete(null!=t?t:"*"),this}__eachEvent(t,e){(0, n.u)(t).map((t=>t.trim())).forEach((t=>{const i=t.split(".");e.call(this,i[0],i[1]||c.X);}));}__getStore(t){if(!t)throw (0, l.z3)("Need subject");if(void 0===t[this.__key]){const e=new c.d;Object.defineProperty(t,this.__key,{enumerable:!1,configurable:!0,writable:!0,value:e});}return t[this.__key]}__removeStoreFromSubject(t){void 0!==t[this.__key]&&Object.defineProperty(t,this.__key,{enumerable:!1,configurable:!0,writable:!0,value:void 0});}__triggerNativeEvent(t,e){const i=this.__doc.createEvent("HTMLEvents");(0, a.K)(e)?i.initEvent(e,!0,!0):(i.initEvent(e.type,e.bubbles,e.cancelable),["screenX","screenY","clientX","clientY","target","srcElement","currentTarget","timeStamp","which","keyCode"].forEach((t=>{Object.defineProperty(i,t,{value:e[t],enumerable:!0});})),Object.defineProperty(i,"originalEvent",{value:e,enumerable:!0})),t.dispatchEvent(i);}get current(){return this.currents[this.currents.length-1]}on(t,e,i,n){let c,d,h,p;if((0, a.K)(t)||(0, a.B)(t)?(c=this,d=t,h=e,p=i):(c=t,d=e,h=i,p=n),!(0, a.K)(d)&&!(0, a.B)(d)||0===d.length)throw (0, l.z3)("Need events names");if(!(0, s.T)(h))throw (0, l.z3)("Need event handler");if((0, r.c)(c))return c.forEach((t=>{this.on(t,d,h,p);})),this;const f=c,g=this.__getStore(f),m=this;let b=function(t,...e){if(!m.isMuted(t))return h&&h.call(this,...e)};return u(f)&&(b=function(t){if(!m.isMuted(t.type))return m.__prepareEvent(t),h&&!1===h.call(this,t)?(t.preventDefault(),t.stopImmediatePropagation(),!1):void 0}),this.__eachEvent(d,((t,e)=>{var i,n;if(0===t.length)throw (0, l.z3)("Need event name");if(!1===g.indexOf(t,e,h)&&(g.set(t,e,{event:t,originalCallback:h,syntheticCallback:b},null==p?void 0:p.top),u(f))){const e=o.PASSIVE_EVENTS.has(t)?{passive:!0,capture:null!==(i=null==p?void 0:p.capture)&&void 0!==i&&i}:null!==(n=null==p?void 0:p.capture)&&void 0!==n&&n;b.options=e,f.addEventListener(t,b,e),this.__memoryDOMSubjectToHandler(f,b);}})),this}__memoryDOMSubjectToHandler(t,e){const i=this.__domEventsMap.get(t)||new Set;i.add(e),this.__domEventsMap.set(t,i);}__unmemoryDOMSubjectToHandler(t,e){const i=this.__domEventsMap,o=i.get(t)||new Set;o.delete(e),o.size?i.set(t,o):i.delete(t);}one(t,e,i,o){let n,r,s,l;(0, a.K)(t)||(0, a.B)(t)?(n=this,r=t,s=e,l=i):(n=t,r=e,s=i,l=o);const c=(...t)=>(this.off(n,r,c),s(...t));return this.on(n,r,c,l),this}off(t,e,i){let o,n,l;if((0, a.K)(t)||(0, a.B)(t)?(o=this,n=t,l=e):(o=t,n=e,l=i),(0, r.c)(o))return o.forEach((t=>{this.off(t,n,l);})),this;const d=o,h=this.__getStore(d);if(!(0, a.K)(n)&&!(0, a.B)(n)||0===n.length)return h.namespaces().forEach((t=>{this.off(d,"."+t);})),this.__removeStoreFromSubject(d),this;const p=t=>{var e;u(d)&&(d.removeEventListener(t.event,t.syntheticCallback,null!==(e=t.syntheticCallback.options)&&void 0!==e&&e),this.__unmemoryDOMSubjectToHandler(d,t.syntheticCallback));},f=(t,e)=>{if(""===t)return void h.events(e).forEach((t=>{""!==t&&f(t,e);}));const i=h.get(t,e);if(i&&i.length)if((0, s.T)(l)){const o=h.indexOf(t,e,l);!1!==o&&(p(i[o]),i.splice(o,1),i.length||h.clearEvents(e,t));}else i.forEach(p),i.length=0,h.clearEvents(e,t);};return this.__eachEvent(n,((t,e)=>{e===c.X?h.namespaces().forEach((e=>{f(t,e);})):f(t,e);})),h.isEmpty()&&this.__removeStoreFromSubject(d),this}stopPropagation(t,e){const i=(0, a.K)(t)?this:t,o=(0, a.K)(t)?t:e;if("string"!=typeof o)throw (0, l.z3)("Need event names");const n=this.__getStore(i);this.__eachEvent(o,((t,e)=>{const o=n.get(t,e);o&&this.__stopped.push(o),e===c.X&&n.namespaces(!0).forEach((e=>this.stopPropagation(i,t+"."+e)));}));}__removeStop(t){if(t){const e=this.__stopped.indexOf(t);-1!==e&&this.__stopped.splice(0,e+1);}}__isStopped(t){return void 0!==t&&-1!==this.__stopped.indexOf(t)}fire(t,e,...i){let o,n;const r=(0, a.K)(t)?this:t,s=(0, a.K)(t)?t:e,d=(0, a.K)(t)?[e,...i]:i;if(!u(r)&&!(0, a.K)(s))throw (0, l.z3)("Need events names");const h=this.__getStore(r);return !(0, a.K)(s)&&u(r)?this.__triggerNativeEvent(r,e):this.__eachEvent(s,((t,e)=>{if(u(r))this.__triggerNativeEvent(r,t);else {const i=h.get(t,e);if(i)try{[...i].every((e=>!this.__isStopped(i)&&(this.currents.push(t),n=e.syntheticCallback.call(r,t,...d),this.currents.pop(),void 0!==n&&(o=n),!0)));}finally{this.__removeStop(i);}e!==c.X||u(r)||h.namespaces().filter((t=>t!==e)).forEach((e=>{const i=this.fire.apply(this,[r,t+"."+e,...d]);void 0!==i&&(o=i);}));}})),o}constructor(t){this.__domEventsMap=new Map,this.__mutedEvents=new Set,this.__key="__JoditEventEmitterNamespaces",this.__doc=document,this.__prepareEvent=t=>{t.cancelBubble||(t.composed&&(0, s.T)(t.composedPath)&&t.composedPath()[0]&&Object.defineProperty(t,"target",{value:t.composedPath()[0],configurable:!0,enumerable:!0}),t.type.match(/^touch/)&&t.changedTouches&&t.changedTouches.length&&["clientX","clientY","pageX","pageY"].forEach((e=>{Object.defineProperty(t,e,{value:t.changedTouches[0][e],configurable:!0,enumerable:!0});})),t.originalEvent||(t.originalEvent=t),"paste"===t.type&&void 0===t.clipboardData&&this.__doc.defaultView.clipboardData&&Object.defineProperty(t,"clipboardData",{get:()=>this.__doc.defaultView.clipboardData,configurable:!0,enumerable:!0}));},this.currents=[],this.__stopped=[],this.__isDestructed=!1,t&&(this.__doc=t),this.__key+=(new Date).getTime();}destruct(){this.__isDestructed||(this.__isDestructed=!0,this.__domEventsMap.forEach(((t,e)=>{this.off(e);})),this.__domEventsMap.clear(),this.__mutedEvents.clear(),this.currents.length=0,this.__stopped.length=0,this.off(this),this.__getStore(this).clear(),this.__removeStoreFromSubject(this));}}function u(t){return (0, s.T)(t.addEventListener)}},43431:function(t,e,i){i.d(e,{h:function(){return o}});class o{constructor(){this.__map=new Map;}on(t,e){var i;return this.__map.has(t)||this.__map.set(t,new Set),null===(i=this.__map.get(t))||void 0===i||i.add(e),this}off(t,e){var i;return this.__map.has(t)&&(null===(i=this.__map.get(t))||void 0===i||i.delete(e)),this}destruct(){this.__map.clear();}emit(t,...e){var i;let o;return this.__map.has(t)&&(null===(i=this.__map.get(t))||void 0===i||i.forEach((t=>{o=t(...e);}))),o}}},50025:function(t,e,i){i.d(e,{Xr:function(){return s.X},bk:function(){return o.b},d$:function(){return s.d},h5:function(){return n.h},sH:function(){return r.s}});var o=i(50658),n=i(43431),r=i(32332),s=i(10004);},32332:function(t,e,i){i.d(e,{s:function(){return c}});var o=i(66927),n=i(37923),r=i(69810),s=i(25376);const a=Symbol("observable-object");function l(t){return void 0!==t[a]}function c(t){if(l(t))return t;const e={},i={},c=(e,o)=>(0, n.c)(e)?(e.map((t=>c(t,o))),t):(i[e]||(i[e]=[]),i[e].push(o),t),d=(o,...r)=>{if((0, n.c)(o))o.map((t=>d(t,...r)));else try{!e[o]&&i[o]&&(e[o]=!0,i[o].forEach((e=>e.call(t,...r))));}finally{e[o]=!1;}},u=(e,i=[])=>{const n={};l(e)||(Object.defineProperty(e,a,{enumerable:!1,value:!0}),Object.keys(e).forEach((a=>{const l=a,c=i.concat(l).filter((t=>t.length));n[l]=e[l];const h=(0, o.N)(e,l);Object.defineProperty(e,l,{set:e=>{const i=n[l];if(!(0, r.P)(n[l],e)){d(["beforeChange",`beforeChange.${c.join(".")}`],l,e),(0, s.Q)(e)&&u(e,c),h&&h.set?h.set.call(t,e):n[l]=e;const o=[];d(["change",...c.reduce(((t,e)=>(o.push(e),t.push(`change.${o.join(".")}`),t)),[])],c.join("."),i,(null==e?void 0:e.valueOf)?e.valueOf():e);}},get:()=>h&&h.get?h.get.call(t):n[l],enumerable:!0,configurable:!0}),(0, s.Q)(n[l])&&u(n[l],c);})),Object.defineProperty(t,"on",{value:c}));};return u(t),t}},10004:function(t,e,i){i.d(e,{X:function(){return n},d:function(){return r}});var o=i(42448);i(28712);const n="JoditEventDefaultNamespace";class r{constructor(){this.__store=new Map;}get(t,e){if(this.__store.has(e))return this.__store.get(e)[t]}indexOf(t,e,i){const o=this.get(t,e);if(o)for(let t=0;o.length>t;t+=1)if(o[t].originalCallback===i)return t;return !1}namespaces(t=!1){const e=(0, o.$)(this.__store.keys());return t?e.filter((t=>t!==n)):e}events(t){const e=this.__store.get(t);return e?Object.keys(e):[]}set(t,e,i,o=!1){let n=this.__store.get(e);n||(n={},this.__store.set(e,n)),void 0===n[t]&&(n[t]=[]),o?n[t].unshift(i):n[t].push(i);}clear(){this.__store.clear();}clearEvents(t,e){const i=this.__store.get(t);i&&i[e]&&(delete i[e],Object.keys(i).length||this.__store.delete(t));}isEmpty(){return 0===this.__store.size}}},56298:function(t,e,i){i.d(e,{JW:function(){return _},My:function(){return x},RR:function(){return w},VF:function(){return h},av:function(){return b},fg:function(){return m},w9:function(){return g}});var o=i(83044),n=i(98253),r=i(12041),s=i(449),a=i(75766),l=i(77402),c=i(17352),d=i(71842),u=i(50025);const h={};let p=1;const f=new Set;function g(){function t(){return p+=10*(Math.random()+1),Math.round(p).toString(16)}let e=t();for(;f.has(e);)e=t();return f.add(e),e}const m=new l.$,b={},_=t=>{Object.keys(t).forEach((e=>{c.lang[e]?Object.assign(c.lang[e],t[e]):c.lang[e]=t[e];}));},v=new WeakMap;function x(t,e,i="div",l=!1){const c=(0, n.K)(e)?e:e?(0, a.u)(e.prototype):"jodit-utils",u=v.get(t)||{},h=c+i,p=(0, r.h)(t)?t:t.j;if(!u[h]){let e=p.c,n=(0, o.y)(t)&&t.o.shadowRoot?t.o.shadowRoot:t.od.body;if(l&&(0, o.y)(t)&&t.od!==t.ed){e=t.createInside;const r="style"===i?t.ed.head:t.ed.body;n=(0, o.y)(t)&&t.o.shadowRoot?t.o.shadowRoot:r;}const r=e.element(i,{className:`jodit jodit-${(0, s.k)(c)}-container jodit-box`});r.classList.add(`jodit_theme_${p.o.theme||"default"}`),n.appendChild(r),u[h]=r,t.hookStatus("beforeDestruct",(()=>{d.J.safeRemove(r),delete u[h],Object.keys(u).length&&v.delete(t);})),v.set(t,u);}return u[h].classList.remove("jodit_theme_default","jodit_theme_dark"),u[h].classList.add(`jodit_theme_${p.o.theme||"default"}`),u[h]}const w=new u.bk;},82317:function(t,e,i){i.d(e,{_:function(){return n}});var o=i(37923);const n=t=>(0, o.c)(t)?t:[t];},32709:function(t,e,i){i.d(e,{$r:function(){return r.$},_j:function(){return o._},uM:function(){return n.u}});var o=i(82317),n=i(42589),r=i(42448);},42589:function(t,e,i){function o(t){return Array.isArray(t)?t:t.split(/[,\s]+/)}i.d(e,{u:function(){return o}});},42448:function(t,e,i){i.d(e,{$:function(){return r}});var o=i(34796),n=i(44210);const r=function(...t){var e;return ((0, o.a)(Array.from)?Array.from:null!==(e=(0, n.c)("Array.from"))&&void 0!==e?e:Array.from).apply(Array,t)};},89044:function(t,e,i){i.d(e,{D:function(){return o.D},w:function(){return o.w}});var o=i(59146);},59146:function(t,e,i){function o(t,e,...i){return e?window.setTimeout(t,e,...i):(t.call(null,...i),0)}function n(t){window.clearTimeout(t);}i.d(e,{D:function(){return n},w:function(){return o}});},78479:function(t,e,i){function o(){let t=!0;try{const e=document.createElement("input");e.type="color",e.value="!",t="color"===e.type&&"!"!==e.value;}catch(e){t=!1;}return t}i.d(e,{k:function(){return o}});},9823:function(t,e,i){i.d(e,{AH:function(){return c.A},Bo:function(){return y.B},CE:function(){return d.C},E6:function(){return h.E},Et:function(){return b.E},Gp:function(){return u.n4},Kg:function(){return y.K},Lm:function(){return s.L},Mj:function(){return f.M},P5:function(){return a.P},Qd:function(){return v.Q},Rd:function(){return S.R},Tn:function(){return l.T},a3:function(){return m.a},cy:function(){return r.c},hH:function(){return C.h},kC:function(){return o.k},kO:function(){return u.kO},kf:function(){return _.k},l6:function(){return z.l},mv:function(){return j.m},n4:function(){return a.n},pV:function(){return u.pV},rg:function(){return g.r},uV:function(){return k.u},vM:function(){return w.v},y0:function(){return p.y},yL:function(){return x.y},zf:function(){return n.z}});var o=i(78479),n=i(99951),r=i(37923),s=i(9810),a=i(69810),l=i(69052),c=i(53701),d=i(21811),u=i(10058),h=i(3947),p=i(83044),f=i(82201),g=i(71274),m=i(34796),b=i(2461),_=i(12461),v=i(25376),x=i(92039),w=i(53470),y=i(98253),j=i(6939),k=i(59082),C=i(12041),S=i(35642),z=i(76776);},99951:function(t,e,i){function o(t){return Boolean(t)&&t instanceof DOMException&&"AbortError"===t.name}i.d(e,{z:function(){return o}});},37923:function(t,e,i){function o(t){return Array.isArray(t)}i.d(e,{c:function(){return o}});},9810:function(t,e,i){function o(t){return "boolean"==typeof t}i.d(e,{L:function(){return o}});},69810:function(t,e,i){i.d(e,{P:function(){return r},n:function(){return n}});var o=i(28616);function n(t,e){return t===e||(0, o.A)(t)===(0, o.A)(e)}function r(t,e){return t===e}},69052:function(t,e,i){function o(t){return "function"==typeof t}i.d(e,{T:function(){return o}});},21811:function(t,e,i){function o(t){return -1!==t.search(/<meta.*?Microsoft Excel\s[\d].*?>/)||-1!==t.search(/<meta.*?Microsoft Word\s[\d].*?>/)||-1!==t.search(/style="[^"]*mso-/)&&-1!==t.search(/<font/)}i.d(e,{C:function(){return o}});},53701:function(t,e,i){i.d(e,{A:function(){return n}});var o=i(98253);const n=t=>(0, o.K)(t)&&/<([A-Za-z][A-Za-z0-9]*)\b[^>]*>(.*?)<\/\1>/m.test(t.replace(/[\r\n]/g,""));},10058:function(t,e,i){i.d(e,{kO:function(){return l},n4:function(){return s},pV:function(){return a}});var o=i(55186),n=i(69052),r=i(35642);function s(t){return !(0, r.R)(t)&&(0, n.T)(t.init)}function a(t){return !(0, r.R)(t)&&(0, n.T)(t.destruct)}function l(t){return !(0, r.R)(t)&&o.J.isElement(t.container)}},3947:function(t,e,i){i.d(e,{E:function(){return r}});var o=i(12461),n=i(98253);function r(t){return (0, n.K)(t)&&(0, o.k)(t)&&(t=parseFloat(t)),"number"==typeof t&&Number.isFinite(t)&&!(t%1)}},83044:function(t,e,i){i.d(e,{y:function(){return n}});var o=i(69052);function n(t){return Boolean(t&&t instanceof Object&&(0, o.T)(t.constructor)&&("undefined"!=typeof Jodit&&t instanceof Jodit||t.isJodit))}},82201:function(t,e,i){i.d(e,{M:function(){return n}});var o=i(98253);const n=t=>(0, o.K)(t)&&23===t.length&&/^[a-z0-9]{5}-[a-z0-9]{5}-[a-z0-9]{5}-[a-z0-9]{5}$/i.test(t);},71274:function(t,e,i){i.d(e,{r:function(){return r}});var o=i(17352),n=i(55186);function r(t){return n.J.isNode(t)&&n.J.isTag(t,"span")&&t.hasAttribute("data-"+o.MARKER_CLASS)}},34796:function(t,e,i){function o(t){return Boolean(t)&&"function"===(typeof t).toLowerCase()&&(t===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(t)))}i.d(e,{a:function(){return o}});},2461:function(t,e,i){function o(t){return "number"==typeof t&&!isNaN(t)&&isFinite(t)}i.d(e,{E:function(){return o}});},12461:function(t,e,i){i.d(e,{k:function(){return n}});var o=i(98253);function n(t){if((0, o.K)(t)){if(!t.match(/^([+-])?[0-9]+(\.?)([0-9]+)?(e[0-9]+)?$/))return !1;t=parseFloat(t);}return "number"==typeof t&&!isNaN(t)&&isFinite(t)}},25376:function(t,e,i){i.d(e,{Q:function(){return n}});var o=i(76776);function n(t){return !(!t||"object"!=typeof t||t.nodeType||(0, o.l)(t)||t.constructor&&!{}.hasOwnProperty.call(t.constructor.prototype,"isPrototypeOf"))}},92039:function(t,e,i){function o(t){return t&&"function"==typeof t.then}i.d(e,{y:function(){return o}});},53470:function(t,e,i){i.d(e,{v:function(){return n}});var o=i(69052);function n(t){return Boolean(t)&&(0, o.T)(t.has)&&(0, o.T)(t.add)&&(0, o.T)(t.delete)}},98253:function(t,e,i){i.d(e,{B:function(){return r},K:function(){return n}});var o=i(37923);function n(t){return "string"==typeof t}function r(t){return (0, o.c)(t)&&n(t[0])}},6939:function(t,e,i){function o(t){if(t.includes(" "))return !1;if("undefined"!=typeof URL)try{const e=new URL(t);return ["https:","http:","ftp:","file:","rtmp:"].includes(e.protocol)}catch(t){return !1}const e=document.createElement("a");return e.href=t,Boolean(e.hostname)}i.d(e,{m:function(){return o}});},59082:function(t,e,i){function o(t){return !!t.length&&!/[^0-9A-Za-zа-яА-ЯЁё\w\-_. ]/.test(t)&&t.trim().length>0}i.d(e,{u:function(){return o}});},12041:function(t,e,i){i.d(e,{h:function(){return n}});var o=i(69052);function n(t){return Boolean(t&&t instanceof Object&&(0, o.T)(t.constructor)&&t.isView)}},35642:function(t,e,i){function o(t){return null==t}i.d(e,{R:function(){return o}});},76776:function(t,e,i){function o(t){return null!=t&&t===t.window}i.d(e,{l:function(){return o}});},96768:function(t,e,i){i.d(e,{s:function(){return o}});const o=t=>{if("rgba(0, 0, 0, 0)"===t||""===t)return !1;if(!t)return "#000000";if("#"===t.substr(0,1))return t;const e=/([\s\n\t\r]*?)rgb\((\d+), (\d+), (\d+)\)/.exec(t)||/([\s\n\t\r]*?)rgba\((\d+), (\d+), (\d+), ([\d.]+)\)/.exec(t);if(!e)return "#000000";const i=parseInt(e[2],10),o=parseInt(e[3],10);let n=(parseInt(e[4],10)|o<<8|i<<16).toString(16).toUpperCase();for(;6>n.length;)n="0"+n;return e[1]+"#"+n};},93495:function(t,e,i){i.d(e,{s:function(){return o.s}});var o=i(96768);},56176:function(t,e,i){i.d(e,{Z:function(){return l}});var o=i(17352),n=i(55186),r=i(59101),s=i(58720);function a(t){return t.replace(/mso-[a-z-]+:[\s]*[^;]+;/gi,"").replace(/mso-[a-z-]+:[\s]*[^";']+$/gi,"").replace(/border[a-z-]*:[\s]*[^;]+;/gi,"").replace(/([0-9.]+)(pt|cm)/gi,((t,e,i)=>{switch(i.toLowerCase()){case"pt":return (1.328*parseFloat(e)).toFixed(0)+"px";case"cm":return (.02645833*parseFloat(e)).toFixed(0)+"px"}return t}))}function l(t){if(-1===t.indexOf("<html "))return t;t=(t=t.substring(t.indexOf("<html "),t.length)).substring(0,t.lastIndexOf("</html>")+7);const e=document.createElement("iframe");e.style.display="none",document.body.appendChild(e);let i="",l=[];try{const c=e.contentDocument||(e.contentWindow?e.contentWindow.document:null);if(c){c.open(),c.write(t),c.close();try{for(let t=0;c.styleSheets.length>t;t+=1){const e=c.styleSheets[t].cssRules;for(let t=0;e.length>t;t+=1)""!==e[t].selectorText&&(l=(0,s.$$)(e[t].selectorText,c.body),l.forEach((i=>{i.style.cssText=a(e[t].style.cssText+";"+i.style.cssText);})));}}catch(t){if(!o.IS_PROD)throw t}n.J.each(c.body,(t=>{if(n.J.isElement(t)){const e=t,i=e.getAttribute("style");i&&(e.style.cssText=a(i)),e.hasAttribute("style")&&!e.getAttribute("style")&&e.removeAttribute("style");}})),i=c.firstChild?(0,r.Bq)(c.body.innerHTML):"";}}catch(t){}finally{n.J.safeRemove(e);}return i&&(t=i),(0, r.Bq)(t.replace(/<(\/)?(html|colgroup|col|o:p)[^>]*>/g,"").replace(/<!--[^>]*>/g,""))}},94450:function(t,e,i){i.d(e,{w:function(){return s}});var o=i(55186),n=i(42448),r=i(59101);function s(t){-1!==t.indexOf("<html ")&&(t=(t=t.substring(t.indexOf("<html "),t.length)).substring(0,t.lastIndexOf("</html>")+7));let e="";try{const i=document.createElement("div");i.innerHTML=t;const r=[];i.firstChild&&o.J.each(i,(t=>{if(t)switch(t.nodeType){case Node.ELEMENT_NODE:switch(t.nodeName){case"STYLE":case"LINK":case"META":r.push(t);break;case"W:SDT":case"W:SDTPR":case"FONT":o.J.unwrap(t);break;default:(0,n.$)(t.attributes).forEach((e=>{-1===["src","href","rel","content"].indexOf(e.name.toLowerCase())&&t.removeAttribute(e.name);}));}break;case Node.TEXT_NODE:break;default:r.push(t);}})),o.J.safeRemove.apply(null,r),e=i.innerHTML;}catch(t){}return e&&(t=e),(t=t.split(/(\n)/).filter(r.Bq).join("\n")).replace(/<(\/)?(html|colgroup|col|o:p)[^>]*>/g,"").replace(/<!--[^>]*>/g,"")}},4960:function(t,e,i){function o(t){const e=document.createElement("div");return e.textContent=t,e.innerHTML}i.d(e,{G:function(){return o}});},16113:function(t,e,i){i.d(e,{Gq:function(){return r.G},HA:function(){return s.H},Kq:function(){return l.K},ZM:function(){return o.Z},t_:function(){return a.t},vn:function(){return a.v},wE:function(){return n.w}});var o=i(56176),n=i(94450),r=i(4960),s=i(10025),a=i(26328),l=i(61793);},10025:function(t,e,i){function o(t){return t.replace(/\r\n|\r|\n/g,"<br/>")}i.d(e,{H:function(){return o}});},26328:function(t,e,i){i.d(e,{t:function(){return r},v:function(){return s}});var o=i(55186),n=i(97369);function r(t,e){(o.J.isElement(t)||o.J.isFragment(t))&&(e.removeOnError&&(s(t),(0, n.$$)("[onerror]",t).forEach((t=>s(t,e)))),e.safeJavaScriptLink&&(s(t),(0, n.$$)('a[href^="javascript"]',t).forEach((t=>s(t,e)))));}function s(t,{safeJavaScriptLink:e,removeOnError:i}={safeJavaScriptLink:!0,removeOnError:!0}){if(!o.J.isElement(t))return !1;let r=!1;i&&t.hasAttribute("onerror")&&((0, n.attr)(t,"onerror",null),r=!0);const s=t.getAttribute("href");return e&&s&&0===s.trim().indexOf("javascript")&&((0, n.attr)(t,"href",location.protocol+"//"+s),r=!0),r}},61793:function(t,e,i){i.d(e,{K:function(){return d}});var o=i(55186),n=i(98253),r=i(59101),s=i(97369);const a=new Set(["div","p","br","h1","h2","h3","h4","h5","h6","hr"]),l=new Set(["script","style"]),c=new Set(["br","hr","input"]);function d(t,e=document,i=null){const u=e.createElement("div");return (0, n.K)(t)?u.innerHTML=t:u.appendChild(t),(0, s.$$)("*",u).forEach((t=>{const n=t.parentNode;if(!n)return;if(i&&o.J.isTag(t,i)){const n=t.nodeName.toLowerCase(),r=o.J.isTag(t,c)?`%%%jodit-single-${n}%%%`:`%%%jodit-${n}%%%${d(t.innerHTML,e,i)}%%%/jodit-${n}%%%`;return o.J.before(t,e.createTextNode(r)),void o.J.safeRemove(t)}if(o.J.isTag(t,l))return void o.J.safeRemove(t);if(!o.J.isTag(t,a))return;const r=t.nextSibling;o.J.isText(r)&&/^\s/.test(r.nodeValue||"")||r&&n.insertBefore(e.createTextNode(" "),r);})),(0, r.Bq)(u.innerText).replace(/%%%(\/)?jodit(-single)?-([\w\n]+)%%%/g,((t,e,i,o)=>`<${e?"/":""}${o}>`))}},65147:function(t,e,i){i.r(e),i.d(e,{CamelCaseToKebabCase:function(){return d.N},NUMBER_FIELDS_REG:function(){return l.b$},applyStyles:function(){return a.ZM},asArray:function(){return o._j},camelCase:function(){return d.xQ},cleanFromWord:function(){return a.wE},clearTimeout:function(){return n.D},colorToHex:function(){return s.s},fuzzySearchIndex:function(){return d.Hp},getContentWidth:function(){return c.y6},getScrollParent:function(){return c.mH},hasBrowserColorPicker:function(){return r.kC},hasContainer:function(){return r.kO},htmlspecialchars:function(){return a.Gq},i18n:function(){return d.Ru},innerWidth:function(){return c.xM},isAbortError:function(){return r.zf},isArray:function(){return r.cy},isBoolean:function(){return r.Lm},isDestructable:function(){return r.pV},isEqual:function(){return r.n4},isFastEqual:function(){return r.P5},isFunction:function(){return r.Tn},isHTML:function(){return r.AH},isHtmlFromWord:function(){return r.CE},isInitable:function(){return r.Gp},isInt:function(){return r.E6},isJoditObject:function(){return r.y0},isLicense:function(){return r.Mj},isMarker:function(){return r.rg},isNativeFunction:function(){return r.a3},isNumber:function(){return r.Et},isNumeric:function(){return r.kf},isPlainObject:function(){return r.Qd},isPromise:function(){return r.yL},isSet:function(){return r.vM},isString:function(){return r.Kg},isStringArray:function(){return r.Bo},isURL:function(){return r.mv},isValidName:function(){return r.uV},isViewObject:function(){return r.hH},isVoid:function(){return r.Rd},isWindow:function(){return r.l6},kebabCase:function(){return d.kW},nl2br:function(){return a.HA},normalizeColor:function(){return l.$2},normalizeCssNumericValue:function(){return l.n8},normalizeCssValue:function(){return l.iy},normalizeKeyAliases:function(){return l.jB},normalizeLicense:function(){return l.f},normalizePath:function(){return l.Fd},normalizeRelativePath:function(){return l.Vd},normalizeSize:function(){return l.rn},normalizeUrl:function(){return l.l2},offset:function(){return c.cY},position:function(){return c.G1},safeHTML:function(){return a.t_},sanitizeHTMLElement:function(){return a.vn},setTimeout:function(){return n.w},size:function(){return c.Ej},splitArray:function(){return o.uM},sprintf:function(){return d.nv},stringify:function(){return d.As},stripTags:function(){return a.Kq},toArray:function(){return o.$r},trim:function(){return d.Bq},trimChars:function(){return d.Gd},trimInv:function(){return d.gj},ucfirst:function(){return d.Z2}});var o=i(32709),n=i(89044),r=i(9823),s=i(93495),a=i(16113),l=i(65499),c=i(34125),d=i(6589),u=i(97369),h={};for(var p in u)0>["default","asArray","splitArray","toArray","clearTimeout","setTimeout","hasBrowserColorPicker","hasContainer","isAbortError","isArray","isBoolean","isDestructable","isEqual","isFastEqual","isFunction","isHTML","isHtmlFromWord","isInitable","isInt","isJoditObject","isLicense","isMarker","isNativeFunction","isNumber","isNumeric","isPlainObject","isPromise","isSet","isString","isStringArray","isURL","isValidName","isViewObject","isVoid","isWindow","colorToHex","applyStyles","cleanFromWord","htmlspecialchars","nl2br","safeHTML","sanitizeHTMLElement","stripTags","NUMBER_FIELDS_REG","normalizeColor","normalizeCssNumericValue","normalizeCssValue","normalizeKeyAliases","normalizeLicense","normalizePath","normalizeRelativePath","normalizeSize","normalizeUrl","getContentWidth","getScrollParent","innerWidth","offset","position","size","CamelCaseToKebabCase","camelCase","fuzzySearchIndex","i18n","kebabCase","sprintf","stringify","trim","trimChars","trimInv","ucfirst"].indexOf(p)&&(h[p]=function(t){return u[t]}.bind(0,p));i.d(e,h);},65499:function(t,e,i){i.d(e,{$2:function(){return o.$},Fd:function(){return a.F},Vd:function(){return l.V},b$:function(){return n.b$},f:function(){return s.f},iy:function(){return n.iy},jB:function(){return r.j},l2:function(){return d.l},n8:function(){return n.n8},rn:function(){return c.r}});var o=i(73446),n=i(59678),r=i(74995),s=i(31138),a=i(92998),l=i(13265),c=i(7920),d=i(39344);},73446:function(t,e,i){i.d(e,{$:function(){return r}});var o=i(96768),n=i(59101);const r=t=>{const e=["#"];let i=(0, o.s)(t);if(!i)return !1;if(i=(0, n.Bq)(i.toUpperCase()),i=i.substring(1),3===i.length){for(let t=0;3>t;t+=1)e.push(i[t]),e.push(i[t]);return e.join("")}return i.length>6&&(i=i.slice(0,6)),"#"+i};},59678:function(t,e,i){i.d(e,{b$:function(){return a},iy:function(){return c},n8:function(){return l}});var o=i(12461),n=i(35642),r=i(96768),s=i(449);const a=/^(left|top|bottom|right|width|min|max|height|margin|padding|fontsize|font-size)/i;function l(t,e){return !(0, n.R)(e)&&a.test(t)&&(0, o.k)(e.toString())?parseInt(e.toString(),10)+"px":e}function c(t,e){if("font-weight"===(0, s.k)(t)){switch(e.toString().toLowerCase()){case"700":case"bold":return 700;case"400":case"normal":return 400;case"900":case"heavy":return 900}return (0, o.k)(e)?Number(e):e}return /color/i.test(t)&&/^rgb/i.test(e.toString())&&(0, r.s)(e.toString())||e}},74995:function(t,e,i){i.d(e,{j:function(){return r}});var o=i(17352),n=i(59101);function r(t){const e={},i={meta:1,ctrl:2,control:2,alt:3,shift:4};return t.replace(/\+\+/g,"+add").split(/[\s]*\+[\s]*/).map((t=>(0, n.Bq)(t.toLowerCase()))).map((t=>o.KEY_ALIASES[t]||t)).sort(((t,e)=>i[t]&&!i[e]?-1:!i[t]&&i[e]?1:i[t]&&i[e]?i[t]-i[e]:t>e?1:-1)).filter((t=>!e[t]&&""!==t&&(e[t]=!0))).join("+")}},31138:function(t,e,i){i.d(e,{f:function(){return o}});const o=(t,e=8)=>{const i=[];for(;t.length;)i.push(t.substr(0,e)),t=t.substr(e);return i[1]=i[1].replace(/./g,"*"),i[2]=i[2].replace(/./g,"*"),i.join("-")};},92998:function(t,e,i){i.d(e,{F:function(){return n}});var o=i(59101);const n=(...t)=>t.filter((t=>(0, o.Bq)(t).length)).map(((e,i)=>(e=e.replace(/([^:])[\\/]+/g,"$1/"),i&&(e=e.replace(/^\//,"")),i!==t.length-1&&(e=e.replace(/\/$/,"")),e))).join("/");},13265:function(t,e,i){i.d(e,{V:function(){return o}});const o=t=>t.split("/").reduce(((t,e)=>{switch(e){case"":case".":break;case"..":t.pop();break;default:t.push(e);}return t}),[]).join("/")+(t.endsWith("/")?"/":"");},7920:function(t,e,i){i.d(e,{r:function(){return o}});const o=(t,e)=>/^[0-9]+$/.test(t.toString())?t+e:t.toString();},39344:function(t,e,i){i.d(e,{l:function(){return o}});const o=(...t)=>t.filter((t=>t.length)).map((t=>t.replace(/\/$/,""))).join("/").replace(/([^:])[\\/]+/g,"$1/");},73780:function(t,e,i){i.d(e,{y:function(){return o}});const o=(t,e)=>{const i=t=>parseInt(t,10),o=e.getComputedStyle(t);return t.offsetWidth-i(o.getPropertyValue("padding-left")||"0")-i(o.getPropertyValue("padding-right")||"0")};},98228:function(t,e,i){i.d(e,{m:function(){return r}});var o=i(55186),n=i(97369);function r(t){if(!t)return null;const e=o.J.isHTMLElement(t),i=e&&(0, n.css)(t,"overflowY");return e&&"visible"!==i&&"hidden"!==i&&t.scrollHeight>=t.clientHeight?t:r(t.parentNode)||document.scrollingElement||document.body}},34125:function(t,e,i){i.d(e,{Ej:function(){return s.E},G1:function(){return l.G},cY:function(){return a.c},mH:function(){return n.m},xM:function(){return r.x},y6:function(){return o.y}});var o=i(73780),n=i(98228),r=i(49744),s=i(95350),a=i(91594),l=i(27594);},49744:function(t,e,i){i.d(e,{x:function(){return o}});const o=(t,e)=>{const i=e.getComputedStyle(t);let o=t.clientWidth;return o-=parseFloat(i.paddingLeft||"0")+parseFloat(i.paddingRight||"0"),o};},95350:function(t,e,i){i.d(e,{E:function(){return n}});var o=i(9823);function n(t){return (0, o.Kg)(t)||(0, o.cy)(t)?t.length:(0, o.Qd)(t)?Object.keys(t).length:0}},91594:function(t,e,i){i.d(e,{c:function(){return o}});const o=(t,e,i,n=!1)=>{let r;try{r=t.getBoundingClientRect();}catch(t){r={top:0,bottom:0,left:0,right:0,width:0,height:0};}const s=i.body,a=i.documentElement||{clientTop:0,clientLeft:0,scrollTop:0,scrollLeft:0},l=i.defaultView||i.parentWindow,c=l.pageYOffset||a.scrollTop||s.scrollTop,d=l.pageXOffset||a.scrollLeft||s.scrollLeft,u=a.clientTop||s.clientTop||0,h=a.clientLeft||s.clientLeft||0;let p,f;const g=e.iframe;if(!n&&e&&e.options&&e.o.iframe&&g){const{top:t,left:i}=o(g,e,e.od,!0);p=r.top+t,f=r.left+i;}else p=r.top+c-u,f=r.left+d-h;return {top:Math.round(p),left:Math.round(f),width:r.width,height:r.height}};},27594:function(t,e,i){i.d(e,{G:function(){return n}});var o=i(83044);function n(t,e,i=!1){var r,s;const a=t.getBoundingClientRect();let l=a.left,c=a.top;if((0, o.y)(e)&&e.iframe&&e.ed.body.contains(t)&&!i){const{left:t,top:i}=n(e.iframe,e,!0);l+=t,c+=i;}return {left:Math.round(l),top:Math.round(c),width:Math.round(null!==(r=t.offsetWidth)&&void 0!==r?r:a.width),height:Math.round(null!==(s=t.offsetHeight)&&void 0!==s?s:a.height)}}},83260:function(t,e,i){i.d(e,{x:function(){return o}});const o=t=>t.replace(/([-_])(.)/g,((t,e,i)=>i.toUpperCase()));},67975:function(t,e,i){i.d(e,{H:function(){return n}});var o=i(17352);function n(t,e,i=0,n=1){let r=0,s=0,a=-1,l=0,c=0;for(s=i;t.length>r&&e.length>s;)t[r].toLowerCase()===e[s].toLowerCase()?(r++,l++,c=0,-1===a&&(a=s)):r>0&&(n>c||e[s]===o.INVISIBLE_SPACE?(c++,l++):(r=0,a=-1,l=0,c=0,s--)),s++;return r===t.length?[a,l]:[-1,0]}},91093:function(t,e,i){i.d(e,{R:function(){return c},n:function(){return l}});var o=i(17352),n=i(98253),r=i(10467),s=i(97369),a=i(36115);const l=(t,e)=>{if(!e||!e.length)return t;const i=/%([sd])/g;let o=i.exec(t),n=t,r=0;for(;o&&void 0!==e[r];)n=n.replace(o[0],e[r].toString()),r+=1,o=i.exec(t);return n};function c(t,e,i){if(!(0, n.K)(t))throw (0, s.error)("i18n: Need string in first argument");if(!t.length)return t;const c=Boolean(null==i?void 0:i.debugLanguage);let d={};const u=t=>e&&e.length?l(t,e):t,h=(0, s.defaultLanguage)(a.T.defaultOptions.language,a.T.defaultOptions.language),p=(0, s.defaultLanguage)(null==i?void 0:i.language,h),f=e=>{if(!e)return;if((0, n.K)(e[t]))return u(e[t]);const i=t.toLowerCase();if((0, n.K)(e[i]))return u(e[i]);const o=(0, r.Z)(t);return (0, n.K)(e[o])?u(e[o]):void 0};void 0!==o.lang[p]?d=o.lang[p]:c||(d=void 0!==o.lang[h]?o.lang[h]:o.lang.en);const g=null==i?void 0:i.i18n;if(g&&g[p]){const t=f(g[p]);if(t)return t}return f(d)||(!c&&o.lang.en&&(0, n.K)(o.lang.en[t])&&o.lang.en[t]?u(o.lang.en[t]):c?"{"+t+"}":u(t))}},6589:function(t,e,i){i.d(e,{As:function(){return a.A},Bq:function(){return l.Bq},Gd:function(){return l.Gd},Hp:function(){return n.H},N:function(){return s.N},Ru:function(){return r.R},Z2:function(){return c.Z},gj:function(){return l.gj},kW:function(){return s.k},nv:function(){return r.n},xQ:function(){return o.x}});var o=i(83260),n=i(67975),r=i(91093),s=i(449),a=i(28616),l=i(59101),c=i(10467);},449:function(t,e,i){i.d(e,{N:function(){return n},k:function(){return o}});const o=t=>t.replace(/([A-Z])([A-Z])([a-z])/g,"$1-$2$3").replace(/([a-z])([A-Z])/g,"$1-$2").replace(/[\s_]+/g,"-").toLowerCase(),n=t=>t.replace(/([A-Z])([A-Z])([a-z])/g,"$1-$2$3").replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();},28616:function(t,e,i){function o(t,e={}){if("object"!=typeof t)return String(t);const i=new Set(e.excludeKeys),o=new WeakMap;return JSON.stringify(t,((t,e)=>{if(!i.has(t)){if("object"==typeof e&&null!=e){if(o.get(e))return "[refObject]";o.set(e,!0);}return e}}),e.prettify)}i.d(e,{A:function(){return o}});},59101:function(t,e,i){i.d(e,{Bq:function(){return n},Gd:function(){return r},gj:function(){return s}});var o=i(17352);function n(t){return t.replace((0, o.SPACE_REG_EXP_END)(),"").replace((0, o.SPACE_REG_EXP_START)(),"")}function r(t,e){return t.replace(RegExp(`[${e}]+$`),"").replace(RegExp(`^[${e}]+`),"")}function s(t){return t.replace((0, o.INVISIBLE_SPACE_REG_EXP_END)(),"").replace((0, o.INVISIBLE_SPACE_REG_EXP_START)(),"")}},10467:function(t,e,i){function o(t){return t.length?t[0].toUpperCase()+t.substring(1):""}i.d(e,{Z:function(){return o}});},40080:function(t,e,i){i.d(e,{Mr:function(){return r},Op:function(){return a},Xm:function(){return s}});var o=i(71842),n=i(38322);function r(t,e){e&&"normal"!==e?"center"!==e?((0, n.A)(t,"float",e),(0, n.a)(t)):(0, n.A)(t,{float:"",display:"block",marginLeft:"auto",marginRight:"auto"}):((0, n.A)(t,"float")&&-1!==["right","left"].indexOf((0, n.A)(t,"float").toString().toLowerCase())&&(0, n.A)(t,"float",""),(0, n.a)(t));}function s(t){o.J.each(t,(t=>{o.J.isHTMLElement(t)&&t.style.textAlign&&(t.style.textAlign="",t.style.cssText.trim().length||t.removeAttribute("style"));}));}function a(t,e){if(o.J.isNode(e)&&o.J.isElement(e))switch(s(e),t.toLowerCase()){case"justifyfull":e.style.textAlign="justify";break;case"justifyright":e.style.textAlign="right";break;case"justifyleft":e.style.textAlign="left";break;case"justifycenter":e.style.textAlign="center";}}},27301:function(t,e,i){i.d(e,{Qt:function(){return c},S5:function(){return l},w4:function(){return a},x_:function(){return d}});var o=i(98253),n=i(60346);const r=new Map,s=t=>async(e,i)=>{if(r.has(i))return r.get(i);const o=t(e,i);return r.set(i,o),o},a=s(((t,e)=>t.async.promise(((i,o)=>{if(t.isInDestruct)return o();const r=t.c.element("script",{type:"text/javascript",async:!0,src:(0, n.X)(e)});t.od.body.appendChild(r),t.e.on(r,"error",o).on(r,"load",i);})))),l=s(((t,e)=>t.async.promise(((i,o)=>{if(t.isInDestruct)return o();const r=t.c.element("link");r.rel="stylesheet",r.media="all",r.crossOrigin="anonymous",!t.isInDestruct&&t.e.on(r,"load",(()=>i(r))).on(r,"error",o),r.href=(0, n.X)(e),t.o.shadowRoot?t.o.shadowRoot.appendChild(r):t.od.body.appendChild(r);}))));function c(t,e,i=0){return (0, o.K)(e[i])?a(t,e[i]).then((()=>c(t,e,i+1))):Promise.resolve()}function d(t,e,i=0){return (0, o.K)(e[i])?l(t,e[i]).then((()=>d(t,e,i+1))):Promise.resolve()}},26150:function(t,e,i){i.d(e,{C:function(){return s}});var o=i(9823),n=i(449),r=i(38322);function s(t,e,i){if(!t||!(0, o.Tn)(t.getAttribute))return null;if(!(0, o.Kg)(e))return Object.keys(e).forEach((i=>{const n=e[i];(0, o.Qd)(n)&&"style"===i?(0, r.A)(t,n):("className"===i&&(i="class"),s(t,i,n));})),null;let a=(0, n.N)(e);if(/^-/.test(a)){const e=s(t,`data${a}`);if(e)return e;a=a.substr(1);}if(void 0!==i){if(null!=i){let e=i.toString();return "IMG"!==t.nodeName||"width"!==a&&"height"!==a||(e=e.replace("px","")),t.setAttribute(a,e),e}t.hasAttribute(a)&&t.removeAttribute(a);}return t.getAttribute(a)}},65717:function(t,e,i){i.d(e,{T:function(){return o}});const o=t=>{const e=navigator.userAgent.toLowerCase(),i=/(firefox)[\s/]([\w.]+)/.exec(e)||/(chrome)[\s/]([\w.]+)/.exec(e)||/(webkit)[\s/]([\w.]+)/.exec(e)||/(opera)(?:.*version)[\s/]([\w.]+)/.exec(e)||/(msie)[\s]([\w.]+)/.exec(e)||/(trident)\/([\w.]+)/.exec(e)||0>e.indexOf("compatible")||[];return "version"===t?i[2]:"webkit"===t?"chrome"===i[1]||"webkit"===i[1]:"ff"===t?"firefox"===i[1]:"msie"===t?"trident"===i[1]||"msie"===i[1]:i[1]===t};},76104:function(t,e,i){i.d(e,{Z:function(){return n}});var o=i(25376);const n=(t,e)=>{const i=[],r=encodeURIComponent;for(const s in t)if(Object.prototype.hasOwnProperty.call(t,s)){const a=e?e+"["+s+"]":s,l=t[s];i.push((0, o.Q)(l)?n(l,a):r(a)+"="+r(l));}return i.join("&")};},60346:function(t,e,i){i.d(e,{X:function(){return o}});const o=t=>("file:"===window.location.protocol&&/^\/\//.test(t)&&(t="https:"+t),t);},86248:function(t,e,i){i.d(e,{V:function(){return u},t:function(){return d}});var o=i(37923),n=i(25376),r=i(98253),s=i(35642),a=i(49429),l=i(84976),c=i(36115);function d(t,e,i=0){if(Object.getPrototypeOf(t)!==Object.prototype)return t;const l=c.T.defaultOptions;if((0, r.K)(t.preset)){if(void 0!==l.presets[t.preset]){const e=l.presets[t.preset];Object.keys(e).forEach((i=>{(0, s.R)(t[i])&&(t[i]=e[i]);}));}delete t.preset;}const u={};return Object.keys(t).forEach((r=>{const s=t[r],l=e?e[r]:null;u[r]=(0, n.Q)(s)&&(0, n.Q)(l)&&!(0, a.mA)(s)?d(s,l,i+1):0!==i&&(0, o.c)(s)&&!(0, a.mA)(s)&&(0, o.c)(l)?[...s,...l.slice(s.length)]:s;})),Object.setPrototypeOf(u,e),u}function u(t){return (0, l.HP)(t,!1).reduce(((e,i)=>(e[i]=t[i],e)),{})}},82807:function(t,e,i){i.d(e,{m:function(){return r}});var o=i(6939),n=i(70807);const r=(t,e=400,i=345)=>{if(!(0, o.m)(t))return t;const r=document.createElement("a"),s=/(?:http?s?:\/\/)?(?:www\.)?(?:vimeo\.com)\/?(.+)/g;r.href=t,e||(e=400),i||(i=345);const a=r.protocol||"";switch(r.hostname){case"www.vimeo.com":case"vimeo.com":return s.test(t)?t.replace(s,'<iframe width="'+e+'" height="'+i+'" src="'+a+'//player.vimeo.com/video/$1" frameborder="0" allowfullscreen></iframe>'):t;case"youtube.com":case"www.youtube.com":case"youtu.be":case"www.youtu.be":{const o=r.search?(0, n.m)(r.search):{v:r.pathname.substr(1)};return o.v?'<iframe width="'+e+'" height="'+i+'" src="'+a+"//www.youtube.com/embed/"+o.v+'" frameborder="0" allowfullscreen></iframe>':t}}return t};},38322:function(t,e,i){i.d(e,{A:function(){return l},a:function(){return c}});var o=i(9810),n=i(25376),r=i(59678),s=i(83260),a=i(449);function l(t,e,i,c=!1){if((0, o.L)(i)&&(c=i,i=void 0),(0, n.Q)(e)||void 0!==i){const o=(t,e,i)=>{void 0===(i=(0, r.n8)(e,i))||null!=i&&l(t,e,!0)===(0, r.iy)(e,i)||(t.style[e]=i);};if((0, n.Q)(e)){const i=Object.keys(e);for(let n=0;i.length>n;n+=1)o(t,(0, s.x)(i[n]),e[i[n]]);}else o(t,(0, s.x)(e),i);return ""}const d=(0, a.k)(e),u=t.ownerDocument||document,h=!!u&&(u.defaultView||u.parentWindow),p=t.style[e];let f="";return void 0!==p&&""!==p?f=p:h&&!c&&(f=h.getComputedStyle(t).getPropertyValue(d)),r.b$.test(e)&&/^[-+]?[0-9.]+px$/.test(f.toString())&&(f=parseInt(f.toString(),10)),(0, r.iy)(e,f)}const c=t=>{"block"===l(t,"display")&&l(t,"display","");const{style:e}=t;"auto"===e.marginLeft&&"auto"===e.marginRight&&(e.marginLeft="",e.marginRight="");};},34446:function(t,e,i){i.d(e,{X:function(){return o}});const o=t=>{if("undefined"!=typeof navigator&&-1!==navigator.userAgent.indexOf("Mac OS X")){if(t.metaKey&&!t.altKey)return !0}else if(t.ctrlKey&&!t.altKey)return !0;return !1};},72197:function(t,e,i){i.d(e,{m:function(){return r}});var o=i(12041);const n=new WeakMap,r=(t,e,i)=>{let r=n.get(t);if(!r){r={},n.set(t,r);let e=null;(0, o.h)(t.j)&&(e=t.j.e),(0, o.h)(t)&&(e=t.e),e&&e.on("beforeDestruct",(()=>{n.delete(t);}));}return void 0===i?r[e]:(r[e]=i,i)};},17527:function(t,e,i){i.d(e,{e:function(){return n}});var o=i(98253);const n=(t,e="en")=>"auto"!==t&&(0, o.K)(t)?t:document.documentElement&&document.documentElement.lang?document.documentElement.lang:navigator.language?navigator.language.substring(0,2):e;},76166:function(t,e,i){i.d(e,{FI:function(){return r},fF:function(){return s},z3:function(){return n}});var o=i(20222);function n(t){return new TypeError(t)}function r(t){return new o.Rc(t)}function s(t){return new o.ZW(t)}},21567:function(t,e,i){function o(t="Aborted"){return new DOMException(t,"AbortError")}i.d(e,{h:function(){return o},r:function(){return n}});const n=i(99951).z;},30495:function(t,e,i){i.d(e,{R:function(){return o}});class o extends Error{constructor(t){super(t),Object.setPrototypeOf(this,o.prototype);}}},20222:function(t,e,i){i.d(e,{Rc:function(){return n.R},ZW:function(){return r.Z},h2:function(){return o.h},rV:function(){return o.r}});var o=i(21567),n=i(30495),r=i(34899);},34899:function(t,e,i){i.d(e,{Z:function(){return o}});class o extends TypeError{constructor(t){super(t),Object.setPrototypeOf(this,o.prototype);}}},50156:function(t,e,i){i.d(e,{FI:function(){return o.FI},Rc:function(){return n.Rc},ZW:function(){return n.ZW},fF:function(){return o.fF},h2:function(){return n.h2},rV:function(){return n.rV},z3:function(){return o.z3}});var o=i(76166),n=i(20222);},49429:function(t,e,i){i.d(e,{Hp:function(){return r},mA:function(){return n},y6:function(){return s}});var o=i(28616);function n(t){return t&&t.isAtom}function r(t){return Object.defineProperty(t,"isAtom",{enumerable:!1,value:!0,configurable:!1}),t}function s(t){return JSON.parse((0, o.A)(t))}},75766:function(t,e,i){i.d(e,{M:function(){return n},u:function(){return r}});var o=i(69052);const n=new Map,r=t=>{var e;if((0, o.T)(t.className))return t.className();const i=(null===(e=t.constructor)||void 0===e?void 0:e.originalConstructor)||t.constructor;if(n.has(i))return n.get(i);if(i.name)return i.name;const r=new RegExp(/^\s*function\s*(\S*)\s*\(/),s=i.toString().match(r);return s?s[1]:""};},16841:function(t,e,i){i.d(e,{J:function(){return r}});var o=i(98253),n=i(35642);function r(t,e){if(!(0, o.K)(t)||!t.length)return null;const i=t.split(".");let r=e;try{for(const t of i){if((0,n.R)(r[t]))return null;r=r[t];}}catch(t){return null}return (0, n.R)(r)?null:r}},99898:function(t,e,i){i.d(e,{z:function(){return o}});const o=t=>{if(/^[0-9.]+$/.test(t.toString()))return parseFloat(t);const e=t.substr(-2,2).toUpperCase(),i=["KB","MB","GB","TB"],o=parseFloat(t.substr(0,t.length-2));return -1!==i.indexOf(e)?o*Math.pow(1024,i.indexOf(e)+1):parseInt(t,10)};},97369:function(t,e,i){i.r(e),i.d(e,{$$:function(){return T.$$},ConfigFlatten:function(){return h.V},ConfigProto:function(){return h.t},ConnectionError:function(){return _.Rc},LimitedStack:function(){return I.d},OptionsError:function(){return _.ZW},abort:function(){return _.h2},alignElement:function(){return o.Op},appendScriptAsync:function(){return n.w4},appendStyleAsync:function(){return n.S5},attr:function(){return l.C},browser:function(){return c.T},buildQuery:function(){return d.Z},call:function(){return A.T1},callPromise:function(){return A.o_},clearAlign:function(){return o.Xm},clearCenterAlign:function(){return f.a},cns:function(){return j.f},completeUrl:function(){return u.X},connection:function(){return _.FI},convertMediaUrlToVideoEmbed:function(){return p.m},css:function(){return f.A},cssPath:function(){return T.bE},ctrlKey:function(){return g.X},dataBind:function(){return m.m},defaultLanguage:function(){return b.e},error:function(){return _.z3},fastClone:function(){return v.y6},get:function(){return x.J},getClassName:function(){return w.u},getDataTransfer:function(){return A.my},getXPathByElement:function(){return T.fz},hAlignElement:function(){return o.Mr},humanSizeToBytes:function(){return y.z},inView:function(){return z.l},isAbort:function(){return _.rV},isAtom:function(){return v.mA},keepNames:function(){return w.M},keys:function(){return A.HP},loadImage:function(){return A.yt},loadNext:function(){return n.Qt},loadNextStyle:function(){return n.x_},markAsAtomic:function(){return v.Hp},markDeprecated:function(){return j.B},markOwner:function(){return A.b_},memorizeExec:function(){return A.qN},options:function(){return _.fF},parseQuery:function(){return k.m},previewBox:function(){return C.u},refs:function(){return T.DY},reset:function(){return S.c},resolveElement:function(){return T.tI},scrollIntoViewIfNeeded:function(){return z.$},set:function(){return E.h}});var o=i(40080),n=i(27301),r=i(28712),s={};for(var a in r)0>["default","alignElement","clearAlign","hAlignElement","appendScriptAsync","appendStyleAsync","loadNext","loadNextStyle"].indexOf(a)&&(s[a]=function(t){return r[t]}.bind(0,a));i.d(e,s);var l=i(26150),c=i(65717),d=i(76104),u=i(60346),h=i(86248),p=i(82807),f=i(38322),g=i(34446),m=i(72197),b=i(17527),_=i(50156),v=i(49429),x=i(16841),w=i(75766),y=i(99898),j=i(67400),k=i(70807),C=i(98434),S=i(44210),z=i(641),T=i(58720),E=i(40677),I=i(70069),A=i(84976);},67400:function(t,e,i){i.d(e,{B:function(){return n},f:function(){return o}});const o=console;function n(t,e=[""],i=null){return (...n)=>(o.warn(`Method "${e[0]}" deprecated.`+(e[1]?` Use "${e[1]}" instead`:"")),t.call(i,...n))}},70807:function(t,e,i){i.d(e,{m:function(){return o}});const o=t=>{const e={},i=t.substring(1).split("&");for(let t=0;i.length>t;t+=1){const o=i[t].split("=");e[decodeURIComponent(o[0])]=decodeURIComponent(o[1]||"");}return e};},98434:function(t,e,i){i.d(e,{u:function(){return l}});var o=i(55186),n=i(98253),r=i(26150),s=i(38322),a=i(58720);function l(t,e,i="px",l=null){const c=[],d=function(t,e){const i=[];try{(0,a.$$)("img",t.editor).forEach((n=>{const s=[(0,r.C)(n,"width"),(0,r.C)(n,"height"),n.src];(0,r.C)(n,{width:n.offsetWidth+e,height:n.offsetHeight+e});const a=t.createInside.a();t.ed.body.appendChild(a),a.href=n.src,n.src=a.href,o.J.safeRemove(a),i.push((()=>{var t;n.src=null!==(t=s[2])&&void 0!==t?t:"",(0,r.C)(n,{width:s[0]||null,height:s[1]||null});}));}));}catch(t){throw i.forEach((t=>t())),i.length=0,t}return i}(t,i);try{const a=t.e.fire("beforePreviewBox",e,i);if(null!=a)return a;let d=t.c.div("jodit__preview-box jodit-context");l&&l.appendChild(d),(0,s.A)(d,{position:"relative",padding:16});const u=t.value||`<div style='position: absolute;left:50%;top:50%;transform: translateX(-50%) translateY(-50%);color:#ccc;'>${t.i18n("Empty")}</div>`;if(t.iframe){const e=t.create.element("iframe");(0,s.A)(e,{minWidth:800,minHeight:600,border:0}),d.appendChild(e);const i=e.contentWindow;if(i&&(t.e.fire("generateDocumentStructure.iframe",i.document,t),d=i.document.body,"function"==typeof ResizeObserver)){let o=!1;const n=i.document.body,r=new ResizeObserver(t.async.debounce((()=>{r.unobserve(n),e.style.height=`${n.offsetHeight+20}px`,t.async.requestAnimationFrame((()=>{!o&&r.observe(n);}));}),100)),s=()=>{o=!0,r.unobserve(n),r.disconnect(),t.e.off("beforeDestruct",s);};c.push(s),t.e.on("beforeDestruct",s);}}else (0,s.A)(d,{minWidth:1024,minHeight:600,border:0});const h=(e,i)=>{const s=(0,n.K)(i)?t.c.div():i;(0,n.K)(i)&&(s.innerHTML=i);for(let t=0;s.childNodes.length>t;t+=1){const i=s.childNodes[t];if(o.J.isElement(i)){const t=e.ownerDocument.createElement(i.nodeName);for(let e=0;i.attributes.length>e;e+=1)(0,r.C)(t,i.attributes[e].nodeName,i.attributes[e].nodeValue);0===i.childNodes.length||o.J.isTag(i,"table")?"SCRIPT"===i.nodeName?i.textContent&&(t.textContent=i.textContent):i.innerHTML&&(t.innerHTML=i.innerHTML):h(t,i);try{e.appendChild(t);}catch(t){}}else try{e.appendChild(i.cloneNode(!0));}catch(t){}}};return h(d,u),t.e.fire("afterPreviewBox",d),[d,()=>{c.forEach((t=>t()));}]}finally{d.forEach((t=>t()));}}},44210:function(t,e,i){i.d(e,{c:function(){return a}});var o=i(17352),n=i(69052),r=i(16841);const s={};function a(t){var e,i;if(!(t in s)){const i=document.createElement("iframe");try{if(i.src="about:blank",document.body.appendChild(i),!i.contentWindow)return null;const e=(0,r.J)(t,i.contentWindow),o=(0,r.J)(t.split(".").slice(0,-1).join("."),i.contentWindow);(0,n.T)(e)&&(s[t]=e.bind(o));}catch(t){if(!o.IS_PROD)throw t}finally{null===(e=i.parentNode)||void 0===e||e.removeChild(i);}}return null!==(i=s[t])&&void 0!==i?i:null}},641:function(t,e,i){i.d(e,{$:function(){return r},l:function(){return n}});var o=i(55186);function n(t,e,i){let o=t.getBoundingClientRect(),n=t;const r=o.top,s=o.height;for(;n&&n!==e&&n.parentNode;){if(n=n.parentNode,o=n.getBoundingClientRect(),r>o.bottom)return !1;if(o.top>=r+s)return !1}return (i.documentElement&&i.documentElement.clientHeight||0)>=r}function r(t,e,i){o.J.isHTMLElement(t)&&!n(t,e,i)&&(e.clientHeight!==e.scrollHeight&&(e.scrollTop=t.offsetTop),n(t,e,i)||t.scrollIntoView());}},58720:function(t,e,i){i.d(e,{$$:function(){return u},DY:function(){return p},bE:function(){return f},fz:function(){return h},tI:function(){return g}});var o=i(17352),n=i(55186),r=i(42448),s=i(98253),a=i(83260),l=i(97369);let c=1;const d=()=>(c++,c);function u(t,e){let i;if(o.IS_ES_NEXT||!/:scope/.test(t)||!o.IS_IE||e&&e.nodeType===Node.DOCUMENT_NODE)i=e.querySelectorAll(t);else {const o=e.id,n=o||"_selector_id_"+String(Math.random()).slice(2)+d();t=t.replace(/:scope/g,"#"+n),!o&&e.setAttribute("id",n),i=e.parentNode.querySelectorAll(t),o||e.removeAttribute("id");}return [].slice.call(i)}const h=(t,e)=>{if(!t||t.nodeType!==Node.ELEMENT_NODE)return "";if(!t.parentNode||e===t)return "";if(t.id)return "//*[@id='"+t.id+"']";const i=[].filter.call(t.parentNode.childNodes,(e=>e.nodeName===t.nodeName));return h(t.parentNode,e)+"/"+t.nodeName.toLowerCase()+(i.length>1?"["+((0, r.$)(i).indexOf(t)+1)+"]":"")},p=t=>("container"in t&&(t=t.container),u("[ref],[data-ref]",t).reduce(((t,e)=>{const i=(0, l.attr)(e,"-ref");return i&&(0, s.K)(i)&&(t[(0, a.x)(i)]=e,t[i]=e),t}),{})),f=t=>{if(!n.J.isElement(t))return null;const e=[];let i=t;for(;i&&i.nodeType===Node.ELEMENT_NODE;){let t=i.nodeName.toLowerCase();if(i.id){t+="#"+i.id,e.unshift(t);break}{let e=i,o=1;do{e=e.previousElementSibling,e&&e.nodeName.toLowerCase()===t&&o++;}while(e);t+=":nth-of-type("+o+")";}e.unshift(t),i=i.parentNode;}return e.join(" > ")};function g(t,e){let i=t;if((0, s.K)(t))try{i=e.querySelector(t);}catch(e){throw (0, l.error)('String "'+t+'" should be valid HTML selector')}if(!i||"object"!=typeof i||!n.J.isElement(i)||!i.cloneNode)throw (0, l.error)('Element "'+t+'" should be string or HTMLElement instance');return i}},40677:function(t,e,i){i.d(e,{h:function(){return a}});var o=i(37923),n=i(12461),r=i(25376),s=i(98253);function a(t,e,i){if(!(0, s.K)(t)||!t.length)return;const a=t.split(".");let l=i,c=a[0];for(let t=0;a.length-1>t;t+=1)c=a[t],(0, o.c)(l[c])||(0, r.Q)(l[c])||(l[c]=(0, n.k)(a[t+1])?[]:{}),l=l[c];l&&(l[a[a.length-1]]=e);}},70069:function(t,e,i){i.d(e,{d:function(){return o}});class o{constructor(t){this.limit=t,this.stack=[];}push(t){return this.stack.push(t),this.stack.length>this.limit&&this.stack.shift(),this}pop(){return this.stack.pop()}find(t){return this.stack.find(t)}}},84976:function(t,e,i){i.d(e,{HP:function(){return u},T1:function(){return a},b_:function(){return l},my:function(){return p},o_:function(){return c},qN:function(){return h},yt:function(){return d}});var o=i(92039),n=i(35642),r=i(26150),s=i(72197);function a(t,...e){return t(...e)}function l(t,e){(0, r.C)(e,"data-editor_id",t.id),!e.component&&Object.defineProperty(e,"jodit",{value:t});}function c(t,e){return (0, o.y)(t)?t.then((t=>t),(()=>null)).finally(e):null==e?void 0:e()}const d=(t,e)=>e.async.promise(((i,o)=>{const n=new Image,r=()=>{e.e.off(n),null==o||o();},s=()=>{e.e.off(n),i(n);};e.e.one(n,"load",s).one(n,"error",r).one(n,"abort",r),n.src=t,n.complete&&s();})),u=(t,e=!0)=>{if(e)return Object.keys(t);const i=[];for(const e in t)i.push(e);return i},h=(t,e,{control:i},o)=>{var r;const a=`button${i.command}`;let l=null!==(r=i.args&&i.args[0])&&void 0!==r?r:(0, s.m)(t,a);if((0, n.R)(l))return !1;(0, s.m)(t,a,l),o&&(l=o(l)),t.execCommand(i.command,!1,null!=l?l:void 0);},p=t=>{if(t.clipboardData)return t.clipboardData;try{return t.dataTransfer||new DataTransfer}catch(t){return null}};},58269:function(t,e,i){i.d(e,{T:function(){return a}});var o=i(17352),n=i(56298),r=i(9823),s=i(32291);function a(t,e,i,a,l,c){if((0, r.Gp)(a))try{a.init(t);}catch(t){if(!o.IS_PROD)throw t}l.set(e,a),c.delete(e),a.hasStyle&&(0, s.M)(t,e).catch((t=>{})),a.styles&&((0, n.My)(t,e,"style").innerHTML=a.styles);}},32291:function(t,e,i){i.d(e,{M:function(){return l},o:function(){return d}});var o=i(17352),n=i(449),r=i(27301),s=i(96134);const a=new Set;async function l(t,e){const i=c(t,e,!1);if(!a.has(i))return a.add(i),(0, r.S5)(t,i)}function c(t,e,i){return e=(0, n.k)(e),t.basePath+"plugins/"+e+"/"+e+"."+(i?"js":"css")}function d(t,e,i,n){try{const o=i.filter((e=>!t.has((0,s.P)(e.name))));o.length&&function(t,e,i){e.map((e=>{const o=e.url||c(t,e.name,!0);return (0,r.w4)(t,o).then(i).catch((()=>null))}));}(e,o,n);}catch(t){if(!o.IS_PROD)throw t}}},58157:function(t,e,i){i.d(e,{k:function(){return r}});var o=i(17352),n=i(69052);function r(t,e){try{try{return (0,n.T)(e)?new e(t):e}catch(i){if((0,n.T)(e)&&!e.prototype)return e(t)}}catch(t){if(!o.IS_PROD)throw t}return null}},96134:function(t,e,i){i.d(e,{P:function(){return n}});var o=i(449);function n(t){return (0, o.k)(t).toLowerCase()}},71005:function(t,e,i){i.d(e,{k:function(){return o.k}});var o=i(29866);i(77402);},77402:function(t,e,i){i.d(e,{$:function(){return d}}),i(17352);var o=i(56298),n=i(32709),r=i(9823),s=i(58269),a=i(32291),l=i(58157),c=i(96134);class d{constructor(){this.__items=new Map;}add(t,e){this.__items.set((0, c.P)(t),e),o.RR.fire(`plugin:${t}:ready`);}get(t){return this.__items.get((0, c.P)(t))}remove(t){this.__items.delete((0, c.P)(t));}__getFullPluginsList(t){const e=[];return this.__items.forEach(((i,o)=>{t&&!t.has(o)||e.push([o,i]);})),e}__init(t){const{extraList:e,disableList:i,filter:o}=function(t){return {extraList:t.o.extraPlugins.map((t=>(0, r.Kg)(t)?{name:t}:t)),disableList:new Set((0, n.uM)(t.o.disablePlugins).map(c.P)),filter:t.o.safeMode?new Set(t.o.safePluginsList):null}}(t),d=new Map,u={},h=new Set;t.__plugins=u;const p=()=>{if(t.isInDestruct)return;let e=!1;this.__getFullPluginsList(o).forEach((([o,n])=>{if(i.has(o)||d.has(o))return;const a=null==n?void 0:n.requires;if(a&&(0, r.cy)(a)&&a.length){if(a.some((t=>i.has(t))))return;if(!a.every((t=>d.has(t))))return void h.add(o)}e=!0;const c=(0, l.k)(t,n);if(!c)return d.set(o,null),void h.delete(o);(0, s.T)(t,o,n,c,d,h),u[o]=c;})),e&&(t.e.fire("updatePlugins"),p());};e&&e.length&&(0, a.o)(this.__items,t,e,p),p(),function(t,e){t.e.on("beforeDestruct",(()=>{Object.keys(e).forEach((i=>{const o=e[i];(0, r.pV)(o)&&o.destruct(t),delete e[i];})),delete t.__plugins;}));}(t,u);}wait(t){return new Promise((e=>{if(this.get(t))return e();const i=()=>{e(),o.RR.off(`plugin:${t}:ready`,i);};o.RR.on(`plugin:${t}:ready`,i);}))}}},29866:function(t,e,i){i.d(e,{k:function(){return a}});var o=i(31635),n=i(77753),r=i(22664),s=i(83044);class a extends n.vG{className(){return "Plugin"}constructor(t){super(t),this.buttons=[],this.hasStyle=!1,this.__inited=!1,t.e.on("afterPluginSystemInit",this.__afterPluginSystemInit).on("afterInit",this.__afterInit).on("beforeDestruct",this.__beforeDestruct);}__afterPluginSystemInit(){const{j:t,buttons:e}=this;e&&(0, s.y)(t)&&e.forEach((e=>{t.registerButton(e);}));}__afterInit(){this.__inited=!0,this.setStatus(n.f.ready),this.afterInit(this.jodit);}init(t){this.jodit.isReady&&(this.afterInit(this.jodit),this.__afterPluginSystemInit(),this.jodit.e.fire("rebuildToolbar"));}__beforeDestruct(){var t;if(this.isInDestruct)return;const{j:e}=this;if(e.e.off("afterPluginSystemInit",this.__afterPluginSystemInit).off("afterInit",this.__afterInit).off("beforeDestruct",this.destruct),this.setStatus(n.f.beforeDestruct),!this.__inited)return super.destruct();(0, s.y)(e)&&(null===(t=this.buttons)||void 0===t||t.forEach((t=>{null==e||e.unregisterButton(t);}))),this.beforeDestruct(this.j),super.destruct();}}a.requires=[],(0, o.Cg)([r.autobind],a.prototype,"__afterPluginSystemInit",null),(0, o.Cg)([r.autobind],a.prototype,"__afterInit",null),(0, o.Cg)([r.autobind],a.prototype,"__beforeDestruct",null);},49853:function(t,e,i){i.d(e,{d:function(){return d}});var o=i(31635),n=i(64890),r=i(26318),s=i(65147),a=i(50156),l=(i(27337),i(91672)),c=i(36115);class d{className(){return "Ajax"}constructor(t,e=c.T.prototype.defaultAjaxOptions){this.__async=new n.j,this.__isFulfilled=!1,this.__activated=!1,this.__isDestructed=!1,this.options=(0, s.ConfigProto)(t||{},e),this.xhr=this.o.xhr?this.o.xhr():new XMLHttpRequest;}__buildParams(t,e){return (0, s.isPlainObject)(t)&&this.options.contentType&&this.options.contentType.includes("application/json")?JSON.stringify(t):(0, s.isFunction)(this.o.queryBuild)?this.o.queryBuild.call(this,t,e):(0, s.isString)(t)||t instanceof window.FormData||"object"==typeof t&&null!=t&&(0, s.isFunction)(t.append)?t:(0, s.buildQuery)(t)}get o(){return this.options}abort(){if(this.__isFulfilled)return this;try{this.__isFulfilled=!0,this.xhr.abort();}catch(t){}return this}send(){this.__activated=!0;const{xhr:t,o:e}=this,i=this.prepareRequest();return this.__async.promise((async(o,n)=>{var r;const c=()=>{this.__isFulfilled=!0,n(a.FI("Connection error"));},d=()=>{this.__isFulfilled=!0,o(new l.Y(i,t.status,t.statusText,t.responseType?t.response:t.responseText));};t.onload=d,t.onabort=()=>{this.__isFulfilled=!0,n(a.h2("Abort connection"));},t.onerror=c,t.ontimeout=c,e.responseType&&(t.responseType=e.responseType),t.onprogress=t=>{var e,i;let o=0;t.lengthComputable&&(o=t.loaded/t.total*100),null===(i=(e=this.options).onProgress)||void 0===i||i.call(e,o);},t.onreadystatechange=()=>{var i,o;null===(o=(i=this.options).onProgress)||void 0===o||o.call(i,10),t.readyState===XMLHttpRequest.DONE&&(e.successStatuses.includes(t.status)?d():t.statusText&&(this.__isFulfilled=!0,n(a.FI(t.statusText))));},t.withCredentials=null!==(r=e.withCredentials)&&void 0!==r&&r;const{url:u,data:h,method:p}=i;t.open(p,u,!0),e.contentType&&t.setRequestHeader&&t.setRequestHeader("Content-type",e.contentType);let{headers:f}=e;(0, s.isFunction)(f)&&(f=await f.call(this)),f&&t.setRequestHeader&&Object.keys(f).forEach((e=>{t.setRequestHeader(e,f[e]);})),this.__async.setTimeout((()=>{t.send(h?this.__buildParams(h):void 0);}),0);}))}prepareRequest(){if(!this.o.url)throw a.z3("Need URL for AJAX request");let t=this.o.url;const e=this.o.data,i=(this.o.method||"get").toLowerCase();if("get"===i&&e&&(0, s.isPlainObject)(e)){const i=t.indexOf("?");if(-1!==i){const o=(0, s.parseQuery)(t);t=t.substring(0,i)+"?"+(0, s.buildQuery)({...o,...e});}else t+="?"+(0, s.buildQuery)(this.o.data);}const o={url:t,method:i,data:e};return d.log.splice(100),d.log.push(o),o}destruct(){this.__isDestructed||(this.__isDestructed=!0,this.__activated&&!this.__isFulfilled&&(this.abort(),this.__isFulfilled=!0),this.__async.destruct());}}d.log=[],(0, o.Cg)([r.Ay],d.prototype,"destruct",null);},27337:function(t,e,i){i(36115).T.prototype.defaultAjaxOptions={successStatuses:[200,201,202],method:"GET",url:"",data:null,contentType:"application/x-www-form-urlencoded; charset=UTF-8",headers:{"X-REQUESTED-WITH":"XMLHttpRequest"},withCredentials:!1,xhr:()=>new XMLHttpRequest};},53883:function(t,e,i){i.d(e,{Y:function(){return n.Y},d:function(){return o.d}});var o=i(49853),n=i(91672);},91672:function(t,e,i){i.d(e,{Y:function(){return o}});class o{get url(){return this.request.url}constructor(t,e,i,o){this.request=t,this.status=e,this.statusText=i,this.body=o;}async json(){return JSON.parse(this.body)}text(){return Promise.resolve(this.body)}async blob(){return this.body}}},46602:function(t,e,i){i.d(e,{W:function(){return o.W}});var o=i(5298);i(83541);},5298:function(t,e,i){i.d(e,{W:function(){return r}});var o=i(17352),n=i(55186);function r(t,e,i){let r=n.J.findSibling(e,i),s=n.J.findSibling(e,!i);for(;n.J.isElement(r)&&!n.J.isTag(r,o.INSEPARABLE_TAGS)&&n.J.isContentEditable(r,t.editor)&&(!s||!n.J.closest(e,n.J.isElement,t.editor));)i||!r.firstChild?r.appendChild(e):n.J.before(r.firstChild,e),r=n.J.sibling(e,i),s=n.J.sibling(e,!i);}},83541:function(t,e,i){i.d(e,{G:function(){return n}});var o=i(55186);function n(t,e,i){let n=t;for(;n&&n!==i;){if(o.J.findSibling(n,e))return;if(o.J.isBlock(n.parentElement))break;n=n.parentElement,n&&n!==i&&(e?o.J.before(n,t):o.J.after(n,t));}}},87332:function(t,e,i){i.d(e,{Ag:function(){return n.Ag},DI:function(){return n.DI},LN:function(){return o.L},OJ:function(){return n.OJ},Zk:function(){return n.Zk},dj:function(){return n.dj},xk:function(){return n.xk}});var o=i(84602),n=i(8757);},84602:function(t,e,i){i.d(e,{L:function(){return u}});var o=i(31635),n=i(17352),r=i(22664),s=i(55186),a=i(65147),l=i(9823),c=(i(28712),i(83541)),d=i(8757);class u{constructor(t){this.jodit=t,t.e.on("removeMarkers",(()=>{this.removeMarkers();}));}get j(){return this.jodit}errorNode(t){if(!s.J.isNode(t))throw (0, a.error)("Parameter node must be instance of Node")}get area(){return this.j.editor}get win(){return this.j.ew}get doc(){return this.j.ed}get sel(){return this.j.o.shadowRoot&&(0, l.Tn)(this.j.o.shadowRoot.getSelection)?this.j.o.shadowRoot.getSelection():this.win.getSelection()}get range(){const t=this.sel;return t&&t.rangeCount?t.getRangeAt(0):this.createRange()}get isInsideArea(){const{sel:t}=this,e=(null==t?void 0:t.rangeCount)?t.getRangeAt(0):null;return !(!e||!s.J.isOrContains(this.area,e.startContainer))}createRange(t=!1){const e=this.doc.createRange();return t&&this.selectRange(e),e}remove(){const t=this.sel,e=this.current();if(t&&e)for(let e=0;t.rangeCount>e;e+=1)t.getRangeAt(e).deleteContents(),t.getRangeAt(e).collapse(!0);}clear(){var t,e;(null===(t=this.sel)||void 0===t?void 0:t.rangeCount)&&(null===(e=this.sel)||void 0===e||e.removeAllRanges());}removeNode(t){if(!s.J.isOrContains(this.j.editor,t,!0))throw (0, a.error)("Selection.removeNode can remove only editor's children");s.J.safeRemove(t),this.j.e.fire("afterRemoveNode",t);}insertCursorAtPoint(t,e){this.removeMarkers();try{const i=this.createRange();return (()=>{if(this.doc.caretPositionFromPoint){const o=this.doc.caretPositionFromPoint(t,e);if(o)return void i.setStart(o.offsetNode,o.offset)}if(this.doc.caretRangeFromPoint){const o=this.doc.caretRangeFromPoint(t,e);i.setStart(o.startContainer,o.startOffset);}})(),i.collapse(!0),this.selectRange(i),!0}catch(t){}return !1}get hasMarkers(){return Boolean(this.markers.length)}get markers(){return (0, a.$$)("span[data-"+n.MARKER_CLASS+"]",this.area)}removeMarkers(){s.J.safeRemove.apply(null,this.markers);}marker(t=!1,e){let i=null;e&&(i=e.cloneRange(),i.collapse(t));const o=this.j.createInside.span();return o.id=n.MARKER_CLASS+"_"+Number(new Date)+"_"+String(Math.random()).slice(2),o.style.lineHeight="0",o.style.display="none",s.J.markTemporary(o),(0, a.attr)(o,"data-"+n.MARKER_CLASS,t?"start":"end"),o.appendChild(this.j.createInside.text(n.INVISIBLE_SPACE)),i&&s.J.isOrContains(this.area,t?i.startContainer:i.endContainer)&&i.insertNode(o),o}restore(){let t=!1;const e=t=>`span[data-${n.MARKER_CLASS}=${t?"start":"end"}]`,i=this.area.querySelector(e(!0)),o=this.area.querySelector(e(!1));if(i){if(t=this.createRange(),o)t.setStartAfter(i),s.J.safeRemove(i),t.setEndBefore(o),s.J.safeRemove(o);else {const e=i.previousSibling;s.J.isText(e)?t.setStart(e,e.nodeValue?e.nodeValue.length:0):t.setStartBefore(i),s.J.safeRemove(i),t.collapse(!0);}t&&this.selectRange(t);}}fakes(){const t=this.sel;if(!t||!t.rangeCount)return [];const e=t.getRangeAt(0),i=e.cloneRange();i.collapse(!0);const o=this.j.createInside.fake();s.J.safeInsertNode(i,o),e.setStartBefore(o);const n=[o];if(!e.collapsed){const t=e.cloneRange();t.collapse(!1);const i=this.j.createInside.fake();s.J.safeInsertNode(t,i),e.setEndAfter(i),n.push(i);}return this.selectRange(e),n}restoreFakes(t){var e,i,o,n;const r=t.filter((t=>t.isConnected));if(!r.length)return;const[a,l]=r,c=this.createRange();c.setStartAfter(a),l&&c.setEndBefore(l),this.selectRange(c),(null===(e=a.parentNode)||void 0===e?void 0:e.firstChild)!==(null===(i=a.parentNode)||void 0===i?void 0:i.lastChild)&&s.J.safeRemove(a),(null===(o=null==l?void 0:l.parentNode)||void 0===o?void 0:o.firstChild)!==(null===(n=null==l?void 0:l.parentNode)||void 0===n?void 0:n.lastChild)&&s.J.safeRemove(l);}save(t=!1){if(this.hasMarkers)return [];const e=this.sel;if(!e||!e.rangeCount)return [];const i=[],o=e.rangeCount,n=[];for(let t=0;o>t;t+=1)if(n[t]=e.getRangeAt(t),n[t].collapsed){const e=this.marker(!0,n[t]);i[t]={startId:e.id,collapsed:!0,startMarker:e.outerHTML};}else {const e=this.marker(!0,n[t]),o=this.marker(!1,n[t]);i[t]={startId:e.id,endId:o.id,collapsed:!1,startMarker:e.outerHTML,endMarker:o.outerHTML};}if(!t){e.removeAllRanges();for(let r=o-1;r>=0;--r){const o=this.doc.getElementById(i[r].startId);if(o){if(i[r].collapsed)n[r].setStartAfter(o),n[r].collapse(!0);else if(n[r].setStartBefore(o),i[r].endId){const t=this.doc.getElementById(i[r].endId);t&&n[r].setEndAfter(t);}try{e.addRange(n[r].cloneRange());}catch(t){}}}}return i}focus(t={preventScroll:!0}){var e,i;if(!this.isFocused()){const o=(0, a.getScrollParent)(this.j.container),n=null==o?void 0:o.scrollTop;this.j.iframe&&"complete"===this.doc.readyState&&this.j.iframe.focus(t),this.win.focus(),this.area.focus(t),n&&(null==o?void 0:o.scrollTo)&&o.scrollTo(0,n);const r=this.sel,l=(null==r?void 0:r.rangeCount)?null==r?void 0:r.getRangeAt(0):null;if(!l||!s.J.isOrContains(this.area,l.startContainer)){const t=this.createRange();t.setStart(this.area,0),t.collapse(!0),this.selectRange(t,!1);}return this.j.editorIsActive||null===(i=null===(e=this.j)||void 0===e?void 0:e.events)||void 0===i||i.fire("focus"),!0}return !1}isCollapsed(){const t=this.sel;for(let e=0;t&&t.rangeCount>e;e+=1)if(!t.getRangeAt(e).collapsed)return !1;return !0}isFocused(){return this.doc.hasFocus&&this.doc.hasFocus()&&this.area===this.doc.activeElement}current(t=!0){if(this.j.getRealMode()===n.MODE_WYSIWYG){const e=this.sel;if(!e||0===e.rangeCount)return null;const i=e.getRangeAt(0);let o=i.startContainer,n=!1;const r=t=>n?t.lastChild:t.firstChild;if(s.J.isTag(o,"br")&&e.isCollapsed)return o;if(!s.J.isText(o)){if(o=i.startContainer.childNodes[i.startOffset],o||(o=i.startContainer.childNodes[i.startOffset-1],n=!0),o&&e.isCollapsed&&!s.J.isText(o))if(!n&&s.J.isText(o.previousSibling))o=o.previousSibling;else if(t){let t=r(o);for(;t;){if(t&&s.J.isText(t)){o=t;break}t=r(t);}}if(o&&!e.isCollapsed&&!s.J.isText(o)){let t=o,e=o;do{t=t.firstChild,e=e.lastChild;}while(t&&e&&!s.J.isText(t));t===e&&t&&s.J.isText(t)&&(o=t);}}if(o&&s.J.isOrContains(this.area,o))return o}return null}insertNode(t,e=!0,i=!0){this.errorNode(t);const o=s.J.isFragment(t)?t.lastChild:t;this.j.e.fire("safeHTML",t),!this.isFocused()&&this.j.isEditorMode()&&(this.focus(),this.restore());const n=this.sel;this.j.history.snapshot.transaction((()=>{if(this.isCollapsed()||this.j.execCommand("Delete"),this.j.e.fire("beforeInsertNode",t),n&&n.rangeCount){const e=n.getRangeAt(0);s.J.isOrContains(this.area,e.commonAncestorContainer)?s.J.safeInsertNode(e,t):this.area.appendChild(t);}else this.area.appendChild(t);const i=t=>{if(s.J.isBlock(t)){const e=t.lastChild;if(e)return i(e)}this.setCursorAfter(t);};e&&(s.J.isFragment(t)?o&&i(o):i(t)),this.j.o.scrollToPastedContent&&(0, a.scrollIntoViewIfNeeded)(null!=o?o:t,this.j.editor,this.doc);})),i&&this.j.events&&this.j.__imdSynchronizeValues(),this.j.events&&this.j.e.fire("afterInsertNode",s.J.isFragment(t)?o:t);}insertHTML(t,e=!0){if(""===t)return;const i=this.j.createInside.div(),o=this.j.createInside.fragment();let n;if(!this.isFocused()&&this.j.isEditorMode()&&(this.focus(),this.restore()),s.J.isNode(t)?i.appendChild(t):i.innerHTML=t.toString(),(this.j.isEditorMode()||!1!==this.j.e.fire("insertHTML",i.innerHTML))&&(n=i.lastChild,n)){for(;i.firstChild;)n=i.firstChild,o.appendChild(i.firstChild);this.insertNode(o,e,!1),this.j.__imdSynchronizeValues();}}insertImage(t,e=null,i=null){const o=(0, l.Kg)(t)?this.j.createInside.element("img"):t;if((0, l.Kg)(t)&&o.setAttribute("src",t),null!=i){let t=i.toString();t&&"auto"!==t&&0>String(t).indexOf("px")&&0>String(t).indexOf("%")&&(t+="px"),(0, a.call)(this.j.o.resizer.forImageChangeAttributes?a.attr:a.css,o,"width",t);}e&&"object"==typeof e&&(0, a.css)(o,e);const n=()=>{(o.offsetHeight>o.naturalHeight||o.offsetWidth>o.naturalWidth)&&(o.style.width="",o.style.height=""),o.removeEventListener("load",n);};this.j.e.on(o,"load",n),o.complete&&n(),this.insertNode(o),this.j.e.fire("afterInsertImage",o);}eachSelection(t){var e;const i=this.sel;if(i&&i.rangeCount){const o=i.getRangeAt(0);let r=o.commonAncestorContainer;s.J.isHTMLElement(r)||(r=r.parentElement);const c=[],d=o.startOffset,u=r.childNodes.length;let h=o.startContainer===this.area?r.childNodes[u>d?d:u-1]:o.startContainer,p=o.endContainer===this.area?r.childNodes[o.endOffset-1]:o.endContainer;s.J.isText(h)&&h===o.startContainer&&o.startOffset===(null===(e=h.nodeValue)||void 0===e?void 0:e.length)&&h.nextSibling&&(h=h.nextSibling),s.J.isText(p)&&p===o.endContainer&&0===o.endOffset&&p.previousSibling&&(p=p.previousSibling);const f=t=>{!t||t===r||s.J.isEmptyTextNode(t)||(0, l.rg)(t)||c.push(t);};f(h),h!==p&&s.J.isOrContains(r,h,!0)&&s.J.find(h,(t=>(f(t),t===p||t&&t.contains&&t.contains(p))),r,!0,!1);const g=e=>{if(s.J.isOrContains(this.j.editor,e,!0)){if(e.nodeName.match(/^(UL|OL)$/))return (0, a.toArray)(e.childNodes).forEach(g);if(s.J.isTag(e,"li"))if(e.firstChild)e=e.firstChild;else {const t=this.j.createInside.text(n.INVISIBLE_SPACE);e.appendChild(t),e=t;}t(e);}};0===c.length&&s.J.isEmptyTextNode(h)&&c.push(h),0===c.length&&h.firstChild&&c.push(h.firstChild),c.forEach(g);}}cursorInTheEdge(t,e,i=null){var o,r;const l=!t,c=null===(o=this.sel)||void 0===o?void 0:o.getRangeAt(0);if(null!=i||(i=this.current(!1)),!c||!i||!s.J.isOrContains(e,i,!0))return null;const d=t?c.startContainer:c.endContainer,u=t?c.startOffset:c.endOffset,h=t=>Boolean(t&&!s.J.isTag(t,"br")&&!s.J.isEmptyTextNode(t)&&!s.J.isTemporary(t)&&!(s.J.isElement(t)&&!0===this.j.e.fire("isInvisibleForCursor",t)));if(s.J.isText(d)){const e=(null===(r=d.nodeValue)||void 0===r?void 0:r.length)?d.nodeValue:"";if(l&&e.replace((0, n.INVISIBLE_SPACE_REG_EXP_END)(),"").length>u)return !1;const i=(0, n.INVISIBLE_SPACE_REG_EXP_START)().exec(e);if(t&&(i&&u>i[0].length||!i&&u>0))return !1}else {const t=(0, a.toArray)(d.childNodes);if(l){if(t.slice(u).some(h))return !1}else if(t.slice(0,u).some(h))return !1}let p=i;for(;p&&p!==e;){const e=s.J.sibling(p,t);if(e){if(p=e,p&&h(p))return !1}else p=p.parentNode;}return !0}cursorOnTheLeft(t,e){return this.cursorInTheEdge(!0,t,e)}cursorOnTheRight(t,e){return this.cursorInTheEdge(!1,t,e)}setCursorAfter(t){return this.setCursorNearWith(t,!1)}setCursorBefore(t){return this.setCursorNearWith(t,!0)}setCursorNearWith(t,e){var i,o;if(this.errorNode(t),!s.J.up(t,(t=>t===this.area||t&&t.parentNode===this.area),this.area))throw (0, a.error)("Node element must be in editor");const n=this.createRange();let r=null;return s.J.isText(t)?e?n.setStart(t,0):n.setEnd(t,null!==(o=null===(i=t.nodeValue)||void 0===i?void 0:i.length)&&void 0!==o?o:0):(r=this.j.createInside.fake(),e?n.setStartBefore(t):n.setEndAfter(t),n.collapse(e),s.J.safeInsertNode(n,r),n.selectNode(r)),n.collapse(e),this.selectRange(n),r}setCursorIn(t,e=!1){if(this.errorNode(t),!s.J.up(t,(t=>t===this.area||t&&t.parentNode===this.area),this.area))throw (0, a.error)("Node element must be in editor");const i=this.createRange();let o=t,r=t;do{if(s.J.isText(o)||s.J.isTag(o,n.INSEPARABLE_TAGS))break;r=o,o=e?o.firstChild:o.lastChild;}while(o);if(!o){const t=this.j.createInside.text(n.INVISIBLE_SPACE);s.J.isTag(r,n.INSEPARABLE_TAGS)?o=r:(r.appendChild(t),r=t);}const l=o||r;return s.J.isTag(l,n.INSEPARABLE_TAGS)?(e||s.J.isTag(l,"br")?i.setStartBefore(l):i.setEndAfter(l),i.collapse(e)):(i.selectNodeContents(l),i.collapse(e)),this.selectRange(i),r}selectRange(t,e=!0){const i=this.sel;return e&&!this.isFocused()&&this.focus(),i&&(i.removeAllRanges(),i.addRange(t)),this.j.e.fire("changeSelection"),this}select(t,e=!1){if(this.errorNode(t),!s.J.up(t,(t=>t===this.area||t&&t.parentNode===this.area),this.area))throw (0, a.error)("Node element must be in editor");const i=this.createRange();return i[e?"selectNodeContents":"selectNode"](t),this.selectRange(i)}get html(){const t=this.sel;if(t&&t.rangeCount>0){const e=t.getRangeAt(0).cloneContents(),i=this.j.createInside.div();return i.appendChild(e),i.innerHTML}return ""}*wrapInTagGen(t){if(this.isCollapsed()){const e=this.jodit.createInside.element("font",n.INVISIBLE_SPACE);return this.insertNode(e,!1,!1),t&&t[0]&&e.appendChild(t[0]),yield e,void s.J.unwrap(e)}(0, a.$$)("*[style*=font-size]",this.area).forEach((t=>{(0, a.attr)(t,"data-font-size",t.style.fontSize.toString()),t.style.removeProperty("font-size");})),this.j.nativeExecCommand("fontsize",!1,"7"),(0, a.$$)("*[data-font-size]",this.area).forEach((t=>{const e=(0, a.attr)(t,"data-font-size");e&&(t.style.fontSize=e,(0, a.attr)(t,"data-font-size",null));}));const e=(0, a.$$)('font[size="7"]',this.area);for(const t of e){const{firstChild:e,lastChild:i}=t;e&&e===i&&(0, l.rg)(e)||(e&&(0, l.rg)(e)&&s.J.before(t,e),i&&(0, l.rg)(i)&&s.J.after(t,i),yield t),s.J.unwrap(t);}}wrapInTag(t){const e=[];for(const i of this.wrapInTagGen())try{if(i.firstChild&&i.firstChild===i.lastChild&&(0,l.rg)(i.firstChild))continue;(0,l.Tn)(t)?t(i):e.push(s.J.replace(i,t,this.j.createInside));}finally{const t=i.parentNode;t&&(s.J.unwrap(i),s.J.isEmpty(t)&&s.J.unwrap(t));}return e}commitStyle(t){new d.xk(t).apply(this.j);}splitSelection(t,e){if(!this.isCollapsed())return null;const i=this.createRange(),o=this.range;i.setStartBefore(t);const r=this.cursorOnTheRight(t,e),a=this.cursorOnTheLeft(t,e),l=this.j.createInside.element("br"),c=this.j.createInside.fake(),d=c.cloneNode();try{if(r||a){e?s.J.before(e,l):s.J.safeInsertNode(o,l);const t=(t,e)=>{let i=e(t);for(;i;){const t=e(i);if(!i||!s.J.isTag(i,"br")&&!s.J.isEmptyTextNode(i))break;s.J.safeRemove(i),i=t;}};t(l,(t=>t.nextSibling)),t(l,(t=>t.previousSibling)),s.J.after(l,d),s.J.before(l,c),r?(i.setEndBefore(l),o.setEndBefore(l)):(i.setEndAfter(l),o.setEndAfter(l));}else i.setEnd(o.startContainer,o.startOffset);const u=i.extractContents(),h=t=>s.J.each(t,(t=>s.J.isEmptyTextNode(t)&&s.J.safeRemove(t)));try{if(h(u),h(t),t.parentNode.insertBefore(u,t),!e&&r&&(null==l?void 0:l.parentNode)){const t=this.createRange();t.setStartBefore(l),this.selectRange(t);}}catch(t){if(!n.IS_PROD)throw t}const p=t=>{var e,i,o;(null===(e=null==t?void 0:t.parentNode)||void 0===e?void 0:e.firstChild)===(null===(i=null==t?void 0:t.parentNode)||void 0===i?void 0:i.lastChild)&&(null===(o=null==t?void 0:t.parentNode)||void 0===o||o.appendChild(l.cloneNode()));};p(c),p(d);}finally{s.J.safeRemove(c),s.J.safeRemove(d);}return t.previousElementSibling}expandSelection(){if(this.isCollapsed())return this;const{range:t}=this,e=t.cloneRange();if(!s.J.isOrContains(this.j.editor,t.commonAncestorContainer,!0))return this;const i=e=>{const i=this.j.createInside.fake(),o=t.cloneRange();return o.collapse(e),s.J.safeInsertNode(o,i),(0, c.G)(i,e,this.j.editor),i},o=i(!0),n=i(!1);e.setStartAfter(o),e.setEndBefore(n);const r=s.J.findSibling(o,!1),l=s.J.findSibling(n,!0);if(r!==l){const t=s.J.isElement(r)&&s.J.isOrContains(r,n),i=!t&&s.J.isElement(l)&&s.J.isOrContains(l,o);if(t||i){let i=t?r:l,a=i;for(;s.J.isElement(i);)i=t?i.firstElementChild:i.lastElementChild,i&&s.J.isOrContains(i,t?n:o)&&(a=i);t?e.setStart(a,0):e.setEnd(a,a.childNodes.length);}}if(this.selectRange(e),s.J.safeRemove(o,n),this.isCollapsed())throw (0, a.error)("Selection is collapsed");return this}}(0, o.Cg)([r.autobind],u.prototype,"createRange",null),(0, o.Cg)([r.autobind],u.prototype,"focus",null),(0, o.Cg)([r.autobind],u.prototype,"setCursorAfter",null),(0, o.Cg)([r.autobind],u.prototype,"setCursorBefore",null),(0, o.Cg)([r.autobind],u.prototype,"setCursorIn",null);},20384:function(t,e,i){i.d(e,{y:function(){return a}});var o=i(55186),n=i(71274),r=i(59101),s=i(84976);function a(t,e,i){const o=i.s.createRange(),r=(0, n.r)(e.previousSibling)?e.previousSibling:e;o.setStartBefore(t),o.setEndBefore(r),l(t,o,!0);const s=(0, n.r)(e.nextSibling)?e.nextSibling:e;o.setStartAfter(s),o.setEndAfter(t),l(t,o,!1);}function l(t,e,i){const n=e.extractContents();n.textContent&&(0, r.Bq)(n.textContent).length||!n.firstChild||o.J.unwrap(n.firstChild),t.parentNode&&(0, s.T1)(i?o.J.before:o.J.after,t,n);}},10466:function(t,e,i){i.d(e,{E:function(){return o}}),i(17352),i(28712);class o{setState(t){this.__previewsStates.add(t),this.__state=t;}getState(){return this.__state}disableSilent(){this.silent=!1;}constructor(t,e){this.transitions=e,this.silent=!0,this.__previewsStates=new Set,this.setState(t);}dispatch(t,e){const i=this.transitions[this.getState()][t];if(i){const t=i.call(this,e);return this.setState(t.next),t}throw new Error(`invalid action: ${this.getState()}.${t.toString()}`)}}},75220:function(t,e,i){i.d(e,{G:function(){return s}});var o=i(55186),n=i(38046),r=i(95274);function s(t,e){let{firstChild:i}=e;for(;i&&!(0, n._)(i);)if(i=i.nextSibling,!i)return null;return i&&!o.J.next(i,n._,e)&&(0, r.sz)(t,i,!1)?i:null}},52052:function(t,e,i){i.d(e,{A:function(){return s}});var o=i(55186),n=i(38046),r=i(95274);function s(t,e,i){const{parentNode:a}=e;return a===i||!o.J.isHTMLElement(a)||o.J.next(e,n._,a)||o.J.prev(e,n._,a)?null:t.isElementCommit&&t.elementIsBlock&&!o.J.isBlock(a)?s(t,a,i):!(0, r.sz)(t,a,!1)||o.J.isBlock(a)&&!t.elementIsBlock?t.isElementCommit&&!o.J.isBlock(a)?s(t,a,i):null:a}},70592:function(t,e,i){i.d(e,{Y:function(){return l},g:function(){return a}});var o=i(55186),n=i(35642),r=i(59678),s=(i(28712),i(38322));function a(t,e){return Boolean(!o.J.isTag(t,"font")&&o.J.isHTMLElement(t)&&Object.keys(e).every((i=>{const o=(0, s.A)(t,i,!0);return ""===o&&(""===e[i]||null==e[i])||!(0, n.R)(o)&&""!==o&&!(0, n.R)(e[i])&&(0, r.iy)(i,e[i]).toString().toLowerCase()===o.toString().toLowerCase()})))}function l(t,e){return Boolean(!o.J.isTag(t,"font")&&o.J.isHTMLElement(t)&&Object.keys(e).every((e=>""!==(0, s.A)(t,e,!0))))}document.createElement("div").style.color="red",document.createElement("div").style.color="red";},97621:function(t,e,i){i.d(e,{$s:function(){return c.$s},AS:function(){return s.A},Dd:function(){return l.D},EF:function(){return n.E},G6:function(){return r.G},LV:function(){return p.L},M6:function(){return l.M},Yx:function(){return u.Y},iu:function(){return a.i},ks:function(){return d.k},tm:function(){return h.t},yP:function(){return o.y}});var o=i(20384),n=i(10466),r=i(75220),s=i(52052),a=(i(70592),i(78777)),l=(i(38046),i(13676)),c=i(95274),d=i(90325),u=(i(61001),i(38271)),h=i(86500),p=i(3101);i(80394);},78777:function(t,e,i){i.d(e,{i:function(){return n}});var o=i(55186);function n(t,e){return Boolean(o.J.closest(t,["style","script"],e))}},38046:function(t,e,i){i.d(e,{_:function(){return r}});var o=i(55186),n=i(71274);function r(t){return Boolean(t&&!o.J.isEmptyTextNode(t)&&!o.J.isTemporary(t)&&!(0, n.r)(t))}},13676:function(t,e,i){i.d(e,{D:function(){return a},M:function(){return s}});var o=i(95350),n=i(97369),r=(i(28712),i(70592));function s(t,e){return !t.attributes.length&&!(0, o.E)(e)||!(0, o.E)(e)||Object.keys(e).every((i=>"class"===i||"className"===i?t.classList.contains(e[i]):"style"===i?(0, r.g)(t,e[i]):(0, n.attr)(t,i)===e[i]))}function a(t,e){return t.attributes.length===e.attributes.length&&Array.from(t.attributes).every((t=>e.hasAttribute(t.name)&&e.getAttribute(t.name)===t.value))}},95274:function(t,e,i){i.d(e,{$s:function(){return a},Wv:function(){return l},sz:function(){return s}});var o=i(55186),n=i(70592),r=i(38046);function s(t,e,i,s=!0){var a;if(!e||!(0, r._)(e))return !1;const{element:l,elementIsDefault:c,options:d}=t;if(o.J.isList(e)&&t.elementIsList)return !0;const u=o.J.isTag(e,l);return !(!u||c&&i)||!(!Boolean((null===(a=d.attributes)||void 0===a?void 0:a.style)&&(s?(0, n.g)(e,d.attributes.style):(0, n.Y)(e,d.attributes.style)))||t.elementIsList)||!u&&!i&&c&&o.J.isInlineBlock(e)}function a(t,e,i){return o.J.closest(e,(e=>s(t,e,!0,!1)),i)}function l(t,e){var i,o;const{element:s,options:a}=t;if(!e||!(0, r._)(e))return !1;const l=e.nodeName.toLowerCase()===s,c=Boolean((null===(i=a.attributes)||void 0===i?void 0:i.style)&&(0, n.Y)(e,null===(o=a.attributes)||void 0===o?void 0:o.style));return l&&c}},90325:function(t,e,i){i.d(e,{k:function(){return l}});var o=i(55186),n=(i(28712),i(20384)),r=i(38271),s=i(8757),a=i(61001);function l(t,e,i,o){if(!e)return o;const n=e.parentElement;if(!n)return o;const l=i.e.fire(`${s.ar}BeforeToggleList`,o,t,n);if(void 0!==l)return l;const d=i.e.fire.bind(i.e,`${s.ar}AfterToggleList`);if(o!==s.OJ){const l=(0, r.Y)(t,e.parentElement,i,s.DI,!0)===s.PL;if(o===s.dj||l||n.tagName.toLowerCase()!==t.element){const o=c(s.dj,n,e,i,t),r=(0, a.z)(t,o,i);return d(s.dj,r,t),s.dj}}const u=c(s.OJ,n,e,i,t);return d(s.OJ,u,t),s.OJ}function c(t,e,i,r,a){return r.e.fire(`${s.ar}BeforeUnwrapList`,t,e,a)||((0, n.y)(e,i,r),o.J.unwrap(i.parentElement),o.J.replace(i,r.o.enter,r.createInside))}},61001:function(t,e,i){i.d(e,{z:function(){return s}});var o=i(71842),n=i(97621),r=i(8757);function s(t,e,i){const s=i.e.fire(`${r.ar}BeforeWrapList`,r.dj,e,t),a=null!=s?s:o.J.replace(e,"li",i.createInside),l=a.previousElementSibling,c=a.nextElementSibling;let d=o.J.isTag(l,t.element)?l:null;return null!=d||(d=o.J.isTag(c,t.element)?c:null),o.J.isList(d)&&(0, n.M6)(d,t.options.attributes)||(d=i.createInside.element(t.element),(0, n.Yx)(t,d,i,r.DI),o.J.before(a,d)),l===d?o.J.append(d,a):o.J.prepend(d,a),o.J.isTag(d.nextElementSibling,t.element)&&(0, n.Dd)(d,d.nextElementSibling)&&(o.J.append(d,Array.from(d.nextElementSibling.childNodes)),o.J.safeRemove(d.nextElementSibling)),i.e.fire(`${r.ar}AfterWrapList`,r.Zk,d,t),d}},38271:function(t,e,i){i.d(e,{Y:function(){return p}});var o=i(55186),n=i(56298),r=(i(9823),i(59678)),s=i(95350),a=i(449),l=i(97369),c=i(38322),d=i(72197),u=i(8757);const h="toggleAttributes";function p(t,e,i,p,g=!1){if(!g&&t.isApplied(e,h))return p;!g&&t.setApplied(e,h);const{attributes:m}=t.options;return m&&(0, s.E)(m)>0&&Object.keys(m).forEach((s=>{const h=m[s];switch(s){case"style":p=function(t,e,i,s,l,h){return Object.keys(i).forEach((p=>{const g=s.style.getPropertyValue((0, a.k)(p)),m=i[p];if(""!==g||null!=m){if(function(t,e,i){const r=t.create.element(e.tagName.toLowerCase());r.style.cssText=e.style.cssText;const s=function(t){var e;if(void 0!==(0, d.m)(t,"shadowRoot"))return (0, d.m)(t,"shadowRoot");const i=(0, n.My)(t),o=document.createElement("iframe");(0, c.A)(o,{width:0,height:0,position:"absolute",border:0}),o.src="about:blank",i.appendChild(o);const r=null===(e=o.contentWindow)||void 0===e?void 0:e.document,s=r?r.body:t.od.body;return (0, d.m)(t,"shadowRoot",s),s}(t);s.appendChild(r);const a=(0, c.A)(r,i);return o.J.safeRemove(r),a}(e,s,p)===(0, r.iy)(p,m)){if(!g)return;return !l&&(0, c.A)(s,p,null),void(h=f(t,s,h=u.Ag))}h=u.PL,l||((0, c.A)(s,p,m),h=f(t,s,h));}})),h}(t,i,h,e,g,p);break;case"className":case"class":p=function(t,e,i,o,n){const r=t.e.fire.bind(t.e,`${u.ar}AfterToggleAttribute`);return i.classList.contains(e.toString())?(o=u.Ag,n||(i.classList.remove(e),0===i.classList.length&&((0, l.attr)(i,"class",null),r(o,i,"class",null)))):(o=u.PL,n||(i.classList.add(e),r(o,i,"class",e))),o}(i,h,e,p,g);break;default:p=function(t,e,i,o,n,r){const s=t.e.fire.bind(t.e,`${u.ar}AfterToggleAttribute`);return (0, l.attr)(i,o)===e?(!n&&(0, l.attr)(i,o,null),r=u.Ag,!n&&s(r,i,o,e),r):(r=u.PL,n||((0, l.attr)(i,o,e),s(r,i,o,e)),r)}(i,h,e,s,g,p);}})),p}function f(t,e,i){return (0, l.attr)(e,"style")||((0, l.attr)(e,"style",null),e.tagName.toLowerCase()===t.defaultTag&&(o.J.unwrap(e),i=u.OJ)),i}},86500:function(t,e,i){i.d(e,{t:function(){return a}});var o=i(55186),n=i(97369),r=i(70592),s=i(95274);function a(t,e){var i;const a=[],l=[];let c;const d=null===(i=t.options.attributes)||void 0===i?void 0:i.style;if(e.firstChild){const i=o.J.eachGen(e);let u=i.next();for(;!u.done;){const e=u.value;!(0, s.sz)(t,e,!0)||d&&!(0, r.Y)(e,d)?d&&(0, s.Wv)(t,e)?(void 0===c&&(c=!1),l.push((()=>{(0, n.css)(e,Object.keys(d).reduce(((t,e)=>(t[e]=null,t)),{})),(0, n.attr)(e,"style")||(0, n.attr)(e,"style",null),(0, n.attr)(e,"style")||e.nodeName.toLowerCase()!==t.element||a.push(e);}))):o.J.isEmptyTextNode(e)||void 0===c&&(c=!1):(void 0===c&&(c=!0),a.push(e)),u=i.next();}}return l.forEach((t=>t())),a.forEach(o.J.unwrap),Boolean(c)}},80394:function(t,e,i){i.d(e,{Y:function(){return r}});var o=i(55186),n=i(71274);function r(t,e,i){const r=i.editor,s=i.createInside,a=(t,e="previousSibling")=>{let s=t,a=t;for(;a&&!(0, n.r)(a)&&!o.J.isTag(a,i.o.enter)&&(s=a,a=a[e]?a[e]:a.parentNode&&!o.J.isBlock(a.parentNode)&&a.parentNode!==r?a.parentNode:null,!o.J.isBlock(a)););return s},l=a(e),c=a(e,"nextSibling"),d=i.s.createRange();d.setStartBefore(l),d.setEndAfter(c);const u=d.extractContents(),h=s.element(t.element);return h.appendChild(u),o.J.safeInsertNode(d,h),t.elementIsBlock&&o.J.isEmpty(h)&&!o.J.isTag(h.firstElementChild,"br")&&h.appendChild(s.element("br")),h}},3101:function(t,e,i){i.d(e,{L:function(){return a}});var o=i(71842),n=i(26150),r=i(61001),s=i(80394);function a(t,e,i){const a=function(t,e,i){return t.elementIsBlock?o.J.up(e,(t=>o.J.isBlock(t)&&!o.J.isTag(t,l)),i.editor)||(0, s.Y)(t,e,i):((0, n.C)(e,"size",null),e)}(t,e,i);return t.elementIsList?(0, r.z)(t,a,i):o.J.replace(a,t.element,i.createInside,!0)}const l=new Set(["td","th","tr","tbody","table","li","ul","ol"]);},10494:function(t,e,i){i.d(e,{O:function(){return s}});var o=i(97621),n=i(8757),r=i(37649);function s(t,e){var i;const{s,editor:a}=t;null===(i=a.firstChild)||void 0===i||i.normalize();const l=s.fakes(),c=t.s.wrapInTagGen(l);let d=c.next();if(d.done)return;let u={collapsed:s.isCollapsed(),mode:n.DI,element:d.value,next:r.x.START,jodit:t,style:e};for(;d&&!d.done;){const t=new o.EF(r.x.START,r.g);for(u.element=d.value;t.getState()!==r.x.END;)u=t.dispatch("exec",u);d=c.next();}s.restoreFakes(l);}},8757:function(t,e,i){i.d(e,{Ag:function(){return c},DI:function(){return d},OJ:function(){return a},PL:function(){return l},Zk:function(){return s},ar:function(){return h},dj:function(){return u},xk:function(){return p}});var o=i(17352),n=i(83260),r=i(10494);const s="wrap",a="unwrap",l="change",c="unset",d="initial",u="replace",h="commitStyle";class p{isApplied(t,e){const i=this.__applyMap.get(t);return !!i&&i[e]}setApplied(t,e){var i;const o=null!==(i=this.__applyMap.get(t))&&void 0!==i?i:{};o[e]=!0,this.__applyMap.set(t,o);}get elementIsList(){return Boolean(this.options.element&&o.LIST_TAGS.has(this.options.element))}get element(){return this.options.element||this.defaultTag}get elementIsBlock(){return Boolean(this.options.element&&o.IS_BLOCK.test(this.options.element))}get isElementCommit(){return Boolean(this.options.element&&this.options.element!==this.options.defaultTag)}get defaultTag(){return this.options.defaultTag?this.options.defaultTag:this.elementIsBlock?"p":"span"}get elementIsDefault(){return this.element===this.defaultTag}constructor(t){this.options=t,this.__applyMap=new WeakMap;}apply(t){const{hooks:e}=this.options;try{e&&Object.keys(e).forEach((i=>{t.e.on((0,n.x)(h+"_"+i),e[i]);})),(0,r.O)(t,this);}finally{e&&Object.keys(e).forEach((i=>{t.e.off((0, n.x)(h+"_"+i),e[i]);})),this.__applyMap=new WeakMap;}t.synchronizeValues(),t.e.fire("afterCommitStyle",this);}}},37649:function(t,e,i){i.d(e,{g:function(){return l},x:function(){return a}});var o=i(17352),n=i(55186),r=(i(28712),i(87332)),s=i(97621);const a={START:"START",ELEMENT:"ELEMENT",UNWRAP:"UNWRAP",UNWRAP_CHILDREN:"UNWRAP_CHILDREN",CHANGE:"CHANGE",REPLACE_DEFAULT:"REPLACE_DEFAULT",LIST:"LIST",TOGGLE_LIST:"TOGGLE_LIST",WRAP:"WRAP",EXTRACT:"EXTRACT",END:"END"},l={[a.START]:{exec(t){const{element:e,jodit:i,style:o,mode:l,collapsed:c}=t;if((0, s.iu)(e,i.editor)||!c&&n.J.isEmptyContent(e))return {...t,next:a.END};const d=(0, s.AS)(o,e,i.editor)||(0, s.G6)(o,e);if(d)return {...t,next:a.ELEMENT,element:d};const u=(0, s.$s)(o,e,i.editor);return o.elementIsList&&n.J.isList(u)?{...t,next:a.LIST}:u?{...t,next:a.EXTRACT}:{...t,next:l!==r.OJ?a.UNWRAP_CHILDREN:a.END}}},[a.LIST]:{exec(t){const{element:e,jodit:i,mode:s}=t;if(s!==r.DI&&s!==r.OJ&&s!==r.dj)return {...t,next:a.END};const l=n.J.closest(e,"li",i.editor);return l&&n.J.closest(e,o.LIST_TAGS,i.editor)?{...t,element:l,next:a.TOGGLE_LIST}:{...t,next:a.END}}},[a.TOGGLE_LIST]:{exec:t=>({...t,mode:(0, s.ks)(t.style,t.element,t.jodit,t.mode),next:a.END})},[a.EXTRACT]:{exec(t){const{element:e,jodit:i,style:o}=t,n=(0, s.$s)(o,e,i.editor);return o.elementIsBlock||(0, s.yP)(n,e,i),{...t,element:n,next:a.ELEMENT}}},[a.UNWRAP_CHILDREN]:{exec(t){const{element:e,style:i}=t;return (0, s.tm)(i,e)?{...t,mode:r.OJ,next:a.END}:{...t,next:a.WRAP}}},[a.WRAP]:{exec(t){const{element:e,jodit:i,style:o}=t,n=(0, s.LV)(o,e,i);return {...t,next:o.elementIsList?a.END:a.CHANGE,mode:r.Zk,element:n}}},[a.ELEMENT]:{exec(t){const{style:e,element:i,jodit:o}=t;return (0, s.Yx)(e,i,o,r.DI,!0)!==r.DI?{...t,next:a.CHANGE}:n.J.isTag(i,e.element)?{...t,next:a.UNWRAP}:{...t,next:a.END}}},[a.CHANGE]:{exec(t){const{style:e,element:i,jodit:o,mode:l}=t,c=(0, s.Yx)(e,i,o,t.mode);return l!==r.Zk&&c===r.Ag&&!i.attributes.length&&n.J.isTag(i,e.element)?{...t,next:a.UNWRAP}:{...t,mode:c,next:a.END}}},[a.UNWRAP]:{exec:t=>t.element.attributes.length&&n.J.isTag(t.element,t.style.element)?{...t,next:a.REPLACE_DEFAULT}:(n.J.unwrap(t.element),{...t,mode:r.OJ,next:a.END})},[a.REPLACE_DEFAULT]:{exec:t=>(n.J.replace(t.element,t.style.defaultTag,t.jodit.createInside,!0),{...t,mode:r.dj,next:a.END})},[a.END]:{exec:t=>t}};},17800:function(t,e,i){i.d(e,{I:function(){return o},O:function(){return n}});const o=(()=>{let t;return ()=>(void 0===t&&(t=(()=>{const t="___Jodit___"+Math.random().toString();try{localStorage.setItem(t,"1");const e="1"===localStorage.getItem(t);return localStorage.removeItem(t),e}catch(t){}return !1})()),t)})();class n{set(t,e){try{const i=localStorage.getItem(this.rootKey),o=i?JSON.parse(i):{};o[t]=e,localStorage.setItem(this.rootKey,JSON.stringify(o));}catch(t){}return this}delete(t){try{localStorage.removeItem(this.rootKey);}catch(t){}return this}get(t){try{const e=localStorage.getItem(this.rootKey),i=e?JSON.parse(e):{};return void 0!==i[t]?i[t]:null}catch(t){}}exists(t){return null!=this.get(t)}constructor(t){this.rootKey=t;}clear(){try{localStorage.removeItem(this.rootKey);}catch(t){}return this}}},2788:function(t,e,i){i.d(e,{M:function(){return o}});class o{constructor(){this.data=new Map;}set(t,e){return this.data.set(t,e),this}delete(t){return this.data.delete(t),this}get(t){return this.data.get(t)}exists(t){return this.data.has(t)}clear(){return this.data.clear(),this}}},63915:function(t,e,i){i.d(e,{wc:function(){return o.w}}),i(17800);var o=i(24834);},24834:function(t,e,i){i.d(e,{w:function(){return a}});var o=i(83260),n=i(17800),r=i(2788);const s="Jodit_";class a{set(t,e){return this.provider.set((0, o.x)(this.prefix+t),e),this}delete(t){return this.provider.delete((0, o.x)(this.prefix+t)),this}get(t){return this.provider.get((0, o.x)(this.prefix+t))}exists(t){return this.provider.exists((0, o.x)(this.prefix+t))}clear(){return this.provider.clear(),this}constructor(t,e){this.provider=t,this.prefix=s,e&&(this.prefix+=e);}static makeStorage(t=!1,e){let i;return t&&(0, n.I)()&&(i=new n.O(s+e)),i||(i=new r.M),new a(i,e)}}},58597:function(t,e,i){i.d(e,{z:function(){return s}});var o=i(9823),n=i(84976),r=i(34256);class s{dlg(t){const e=new r.lG({language:this.o.language,shadowRoot:this.o.shadowRoot,ownerWindow:this.o.ownerWindow,defaultTimeout:this.o.defaultTimeout,theme:this.o.theme,globalFullSize:this.o.globalFullSize,...t});return (0, n.b_)(this,e.container),e.parent=this,e.bindDestruct(this)}confirm(t,e,i){return t=a(t,this),e=a(e,this),r.pT.call(this.dlg({closeOnClickOverlay:!0}),t,e,i)}prompt(t,e,i,o,n){return t=a(t,this),e=a(e,this),o=a(o,this),r.XG.call(this.dlg({closeOnClickOverlay:!0}),t,e,i,o,n)}alert(t,e,i,o){return t=a(t,this),e=a(e,this),r.Fc.call(this.dlg({closeOnClickOverlay:!0}),t,e,i,o)}}function a(t,e){return (0, o.Kg)(t)&&!(0, o.AH)(t)&&(t=e.i18n(t)),t}},87906:function(t,e,i){i.d(e,{O:function(){return n}});var o=i(42448);class n{getElm(t){return this.container.querySelector(`.${this.getFullElName(t)}`)}getElms(t){return (0, o.$)(this.container.querySelectorAll(`.${this.getFullElName(t)}`))}}},75758:function(t,e,i){i.d(e,{K:function(){return n}});var o=i(35642);class n{afterSetMod(t,e){}setMod(t,e,i){t=t.toLowerCase();const n=this.mods[t];if(n===e)return this;const r=`${this.componentName}_${t}_`,s=(i||this.container).classList;return null!=n&&s.remove(`${r}${n.toString().toLowerCase()}`),!(0, o.R)(e)&&""!==e&&s.add(`${r}${e.toString().toLowerCase()}`),this.mods[t]=e,this.afterSetMod(t,e),this}getMod(t){var e;return null!==(e=this.mods[t])&&void 0!==e?e:null}}},92032:function(t,e,i){i.d(e,{$n:function(){return g},lD:function(){return f},ue:function(){return p}});var o=i(31635),n=i(64567),r=i(22664),s=i(55186),a=i(69052),l=i(98253),c=i(97369),d=i(29780),u=i(94070),h=i(931);const p=()=>({size:"middle",type:"button",name:"",value:"",variant:"initial",disabled:!1,activated:!1,icon:{name:"empty",fill:"",iconURL:""},tooltip:"",text:"",tabIndex:void 0});let f=class extends d.D{className(){return "UIButton"}setState(t){return Object.assign(this.state,t),this}get text(){return this.getElm("text")}get icon(){return this.getElm("icon")}onChangeSize(){this.setMod("size",this.state.size);}onChangeType(){(0, c.attr)(this.container,"type",this.state.type);}updateSize(){const t=this.closest(u.z);t&&(this.state.size=t.buttonSize);}onChangeStatus(){this.setMod("variant",this.state.variant);}onChangeText(){this.text.textContent=this.jodit.i18n(this.state.text);}onChangeTextSetMode(){this.setMod("text-icons",Boolean(this.state.text.trim().length));}onChangeDisabled(){(0, c.attr)(this.container,"disabled",this.state.disabled||null);}onChangeActivated(){(0, c.attr)(this.container,"aria-pressed",this.state.activated);}onChangeName(){this.container.classList.add(`${this.componentName}_${this.clearName(this.state.name)}`),this.name=this.state.name,(0, c.attr)(this.container,"data-ref",this.state.name),(0, c.attr)(this.container,"ref",this.state.name);}onChangeTooltip(){this.get("j.o.useNativeTooltip")&&(0, c.attr)(this.container,"title",this.state.tooltip),(0, c.attr)(this.container,"aria-label",this.state.tooltip);}onChangeTabIndex(){(0, c.attr)(this.container,"tabindex",this.state.tabIndex);}onChangeIcon(){const t=this.get("j.o.textIcons");if(!0===t||(0, a.T)(t)&&t(this.state.name))return;s.J.detach(this.icon);const e=h.I.makeIcon(this.j,this.state.icon);e&&this.icon.appendChild(e);}focus(){this.container.focus();}isFocused(){const{activeElement:t}=this.od;return Boolean(t&&s.J.isOrContains(this.container,t))}createContainer(){const t=this.componentName,e=this.j.c.element("button",{class:t,type:"button",role:"button",ariaPressed:!1}),i=this.j.c.span(t+"__icon"),o=this.j.c.span(t+"__text");return e.appendChild(i),e.appendChild(o),e}constructor(t,e){super(t),this.isButton=!0,this.state=p(),this.actionHandlers=[],this.button=this.container,this.updateSize(),this.onChangeSize(),this.onChangeStatus(),e&&this.hookStatus(n.f.ready,(()=>{this.setState(e);}));}destruct(){return this.j.e.off(this.container),super.destruct()}onAction(t){return this.actionHandlers.push(t),this}__onActionFire(t){t.buffer={actionTrigger:this},this.actionHandlers.forEach((e=>e.call(this,t)));}};function g(t,e,i,o){const n=new f(t);return n.state.tabIndex=t.o.allowTabNavigation?0:-1,(0, l.K)(e)?(n.state.icon.name=e,n.state.name=e,o&&(n.state.variant=o),i&&(n.state.text=i)):n.setState(e),n}(0, o.Cg)([r.cache],f.prototype,"text",null),(0, o.Cg)([r.cache],f.prototype,"icon",null),(0, o.Cg)([(0, r.watch)("state.size",{immediately:!1})],f.prototype,"onChangeSize",null),(0, o.Cg)([(0, r.watch)("state.type",{immediately:!1})],f.prototype,"onChangeType",null),(0, o.Cg)([(0, r.watch)("parentElement")],f.prototype,"updateSize",null),(0, o.Cg)([(0, r.watch)("state.variant",{immediately:!1})],f.prototype,"onChangeStatus",null),(0, o.Cg)([(0, r.watch)("state.text",{immediately:!1})],f.prototype,"onChangeText",null),(0, o.Cg)([(0, r.watch)("state.text",{immediately:!1})],f.prototype,"onChangeTextSetMode",null),(0, o.Cg)([(0, r.watch)("state.disabled")],f.prototype,"onChangeDisabled",null),(0, o.Cg)([(0, r.watch)("state.activated")],f.prototype,"onChangeActivated",null),(0, o.Cg)([(0, r.watch)("state.name",{immediately:!1})],f.prototype,"onChangeName",null),(0, o.Cg)([(0, r.watch)("state.tooltip",{immediately:!1})],f.prototype,"onChangeTooltip",null),(0, o.Cg)([(0, r.watch)("state.tabIndex",{immediately:!1})],f.prototype,"onChangeTabIndex",null),(0, o.Cg)([(0, r.watch)("state.icon",{immediately:!1})],f.prototype,"onChangeIcon",null),(0, o.Cg)([r.cacheHTML],f.prototype,"createContainer",null),(0, o.Cg)([(0, r.watch)("button:click")],f.prototype,"__onActionFire",null),f=(0, o.Cg)([r.component],f);},31202:function(t,e,i){i.d(e,{s:function(){return a}});var o=i(31635),n=i(24767),r=(i(28712),i(92032)),s=i(6455);let a=class extends s.U{className(){return "UIButtonGroup"}render(t){return `<div>\n\t\t\t<div class="&__label">~${t.label}~</div>\n\t\t\t<div class="&__options"></div>\n\t\t</div>`}appendChildToContainer(t){this.getElm("options").appendChild(t);}constructor(t,e={radio:!0}){var i,o;super(t,null===(i=e.options)||void 0===i?void 0:i.map((e=>{const i=new r.lD(t,{text:e.text,value:e.value,variant:"primary"});return i.onAction((()=>{this.select(e.value);})),i})),e),this.options=e,this.select(null!==(o=e.value)&&void 0!==o?o:0);}select(t){var e,i;this.elements.forEach(((e,i)=>{i===t||e.state.value===t?e.state.activated=!0:this.options.radio&&(e.state.activated=!1);}));const o=this.elements.filter((t=>t.state.activated)).map((t=>({text:t.state.text,value:t.state.value})));this.jodit.e.fire(this,"select",o),null===(i=(e=this.options).onChange)||void 0===i||i.call(e,o);}};a=(0, o.Cg)([n.s],a);},35265:function(t,e,i){i.d(e,{$n:function(){return o.$n},SB:function(){return r.S},lD:function(){return o.lD},ss:function(){return n.s},ue:function(){return o.ue}});var o=i(92032),n=i(31202),r=i(36434);},36434:function(t,e,i){i.d(e,{S:function(){return h}});var o,n=i(31635),r=i(77753),s=i(22664),a=i(71842),l=i(56298),c=i(27594),d=i(97369),u=i(29780);let h=o=class extends u.D{className(){return "UITooltip"}render(){return '<div><div class="&__content"></div></div>'}constructor(t){super(t),this.__isOpened=!1,this.__listenClose=!1,this.__currentTarget=null,this.__delayShowTimeout=0,this.__hideTimeout=0,t.o.textIcons||!t.o.showTooltip||t.o.useNativeTooltip||t.hookStatus(r.f.ready,(()=>{(0, l.My)(this.j,o).appendChild(this.container),t.e.on(t.container,"mouseenter.tooltip",this.__onMouseEnter,{capture:!0});}));}__addListenersOnClose(){if(this.__listenClose)return;this.__listenClose=!0;const t=this.j;t.e.on(t.ow,"scroll.tooltip",this.__hide).on(t.ow,"joditCloseDialog",this.__hide).on(t.container,"mouseleave.tooltip",this.__hide).on(["escape.tooltip","change.tooltip","changePlace.tooltip","afterOpenPopup.tooltip","hidePopup.tooltip","closeAllPopups.tooltip"],this.__hide).on(t.container,"mouseleave",this.__onMouseLeave,{capture:!0});}__removeListenersOnClose(){if(!this.__listenClose)return;this.__listenClose=!1;const t=this.j;t.e.off(t.ow,"scroll.tooltip",this.__hide).off(["escape.tooltip","change.tooltip","changePlace.tooltip","afterOpenPopup.tooltip","hidePopup.tooltip","closeAllPopups.tooltip"],this.__hide).off(t.container,"mouseleave.tooltip",this.__onMouseLeave);}__onMouseLeave(t){this.__currentTarget===t.target&&(this.__hideDelay(),this.__currentTarget=null);}__onMouseEnter(t){if(!a.J.isHTMLElement(t.target))return;const e=(0, d.attr)(t.target,"aria-label");if(!e)return;if(Boolean((0, d.attr)(t.target,"disabled")))return;if(!t.target.className.includes("jodit"))return;this.__currentTarget=t.target;const i=(0, c.G)(t.target);this.__addListenersOnClose(),this.__delayOpen((()=>({x:i.left+i.width/2,y:i.top+i.height})),e);}__delayOpen(t,e){const i=this.j.o.showTooltipDelay||this.j.defaultTimeout;this.j.async.clearTimeout(this.__hideTimeout),this.j.async.clearTimeout(this.__delayShowTimeout),this.__delayShowTimeout=this.j.async.setTimeout((()=>this.__open(t,e)),{timeout:i,label:"tooltip"});}__open(t,e){this.setMod("visible",!0),this.getElm("content").innerHTML=e,this.__isOpened=!0,this.__setPosition(t);}__setPosition(t){const e=t();(0, d.css)(this.container,{left:e.x,top:e.y});}__hide(){this.j.async.clearTimeout(this.__delayShowTimeout),this.j.async.clearTimeout(this.__hideTimeout),this.__removeListenersOnClose(),this.__isOpened&&(this.__isOpened=!1,this.setMod("visible",!1),(0, d.css)(this.container,{left:-5e3}));}__hideDelay(){this.__isOpened&&(this.j.async.clearTimeout(this.__delayShowTimeout),this.__hideTimeout=this.async.setTimeout(this.__hide,this.j.defaultTimeout));}destruct(){this.j.e.off(this.j.container,"mouseenter",this.__onMouseEnter),this.__hide(),super.destruct();}};(0, n.Cg)([s.autobind],h.prototype,"__onMouseLeave",null),(0, n.Cg)([s.autobind],h.prototype,"__onMouseEnter",null),(0, n.Cg)([s.autobind],h.prototype,"__hide",null),(0, n.Cg)([s.autobind],h.prototype,"__hideDelay",null),h=o=(0, n.Cg)([s.component],h);},29780:function(t,e,i){i.d(e,{D:function(){return h}});var o,n=i(31635),r=i(77753),s=i(1963),a=i(55186),l=i(98253),c=i(87906),d=i(75758),u=i(931);let h=o=class extends r.vG{get parentElement(){return this.__parentElement}set parentElement(t){this.__parentElement=t,t&&t.hookStatus("beforeDestruct",(()=>this.destruct())),this.updateParentElement(this);}bubble(t){let e=this.parentElement;for(;e;)t(e),e=e.parentElement;return this}updateParentElement(t){var e;return null===(e=this.__parentElement)||void 0===e||e.updateParentElement(t),this}get(t,e){return super.get(t,e)||this.getElm(t)}closest(t){const e="object"==typeof t?e=>e===t:e=>r.uA.isInstanceOf(e,t);let i=this.__parentElement;for(;i;){if(e(i))return i;i=!i.parentElement&&i.container.parentElement?o.closestElement(i.container.parentElement,o):i.parentElement;}return null}static closestElement(t,e){const i=a.J.up(t,(t=>{if(t){const{component:i}=t;return i&&r.uA.isInstanceOf(i,e)}return !1}));return i?null==i?void 0:i.component:null}update(){}appendTo(t){return t.appendChild(this.container),this}clearName(t){return t.replace(/[^a-zA-Z0-9]/g,"_")}render(t){return this.j.c.div(this.componentName)}createContainer(t){const e=this.render(t);if((0, l.K)(e)){const t=this.parseTemplate(e);return t.classList.add(this.componentName),t}return e}parseTemplate(t){return this.j.c.fromHTML(t.replace(/\*([^*]+?)\*/g,((t,e)=>u.I.get(e)||"")).replace(/&_/g,this.componentName+"_").replace(/~([^~]+?)~/g,((t,e)=>this.i18n(e))))}constructor(t,e){super(t),this.name="",this.__parentElement=null,this.mods={},this.container=this.createContainer(e),Object.defineProperty(this.container,"component",{value:this,configurable:!0});}destruct(){return a.J.safeRemove(this.container),this.parentElement=null,super.destruct()}};h=o=(0, n.Cg)([(0, s.C)(d.K,c.O)],h);},68752:function(t,e,i){i.d(e,{Y:function(){return a}});var o=i(31635),n=i(24767),r=i(97369),s=i(6455);let a=class extends s.U{className(){return "UIBlock"}constructor(t,e,i={align:"left"}){super(t,e),this.options=i,this.setMod("align",this.options.align||"left"),this.setMod("width",this.options.width||""),this.options.mod&&this.setMod(this.options.mod,!0),this.options.className&&this.container.classList.add(this.options.className),(0, r.attr)(this.container,"data-ref",i.ref),(0, r.attr)(this.container,"ref",i.ref);}};a=(0, o.Cg)([n.s],a);},28709:function(t,e,i){i.d(e,{X:function(){return d}});var o=i(31635),n=i(37474),r=i(24767),s=i(97369),a=i(69198),l=i(1540),c=i(6455);let d=class extends c.U{className(){return "UIForm"}submit(){this.j.e.fire(this.container,"submit");}validate(){const t=this.allChildren.filter((t=>n.u.isInstanceOf(t,a.t)));for(const e of t)if(!e.validate())return !1;const e=this.allChildren.filter((t=>n.u.isInstanceOf(t,l.$)));for(const t of e)if(!t.validate())return !1;return !0}onSubmit(t){return this.j.e.on(this.container,"submit",(()=>{const e=this.allChildren.filter((t=>n.u.isInstanceOf(t,a.t)));return !!this.validate()&&(t(e.reduce(((t,e)=>(t[e.state.name]=e.value,t)),{})),!1)})),this}createContainer(){const t=this.j.c.element("form");return t.classList.add(this.componentName),(0, s.attr)(t,"dir",this.j.o.direction||"auto"),t}constructor(...t){var e,i;super(...t),(null===(e=this.options)||void 0===e?void 0:e.className)&&this.container.classList.add(null===(i=this.options)||void 0===i?void 0:i.className);}};d=(0, o.Cg)([r.s],d);},20703:function(t,e,i){i.d(e,{$6:function(){return r.$6},F0:function(){return r.F0},XV:function(){return n.X},Yh:function(){return o.Y},cY:function(){return r.cY},nE:function(){return r.nE},tS:function(){return r.tS}});var o=i(68752),n=i(28709),r=i(47165);},5454:function(t,e,i){i.d(e,{F:function(){return l}});var o,n=i(31635),r=i(22664),s=i(24767),a=i(69198);let l=o=class extends a.t{className(){return "UITextArea"}createNativeInput(t){return this.j.create.element("textarea")}constructor(t,e){super(t,e),this.state={...o.defaultState},Object.assign(this.state,e),!1===this.state.resizable&&(this.nativeInput.style.resize="none");}onChangeStateSize(){const{size:t,resizable:e}=this.state;this.nativeInput.style.resize=e?"auto":"none",this.nativeInput.rows=null!=t?t:5;}};l.defaultState={...a.t.defaultState,size:5,resizable:!0},(0, n.Cg)([(0, r.watch)(["state.size","state.resizable"])],l.prototype,"onChangeStateSize",null),l=o=(0, n.Cg)([s.s],l);},3006:function(t,e,i){i.d(e,{c:function(){return l}});var o,n=i(31635),r=i(22664),s=i(55186),a=i(69198);let l=o=class extends a.t{className(){return "UICheckbox"}render(){return this.j.c.element("label",{className:this.componentName})}constructor(t,e){super(t,{...e,type:"checkbox"}),this.state={...o.defaultState},Object.assign(this.state,e);}onChangeChecked(){this.value=this.state.checked.toString(),this.nativeInput.checked=this.state.checked,this.setMod("checked",this.state.checked);}onChangeNativeCheckBox(){this.state.checked=this.nativeInput.checked;}onChangeSwitch(){this.setMod("switch",this.state.switch);let t=this.getElm("switch-slider");this.state.switch?(t||(t=this.j.c.div(this.getFullElName("switch-slider"))),s.J.after(this.nativeInput,t)):s.J.safeRemove(t);}};l.defaultState={...a.t.defaultState,checked:!1,switch:!1},(0, n.Cg)([(0, r.watch)("state.checked"),(0, r.hook)("ready")],l.prototype,"onChangeChecked",null),(0, n.Cg)([(0, r.watch)("nativeInput:change")],l.prototype,"onChangeNativeCheckBox",null),(0, n.Cg)([(0, r.watch)("state.switch"),(0, r.hook)("ready")],l.prototype,"onChangeSwitch",null),l=o=(0, n.Cg)([r.component],l);},47964:function(t,e,i){i.d(e,{n:function(){return a}});var o=i(31635),n=i(24767),r=i(92032),s=i(69198);let a=class extends s.t{className(){return "UIFileInput"}createContainer(t){this.button=new r.lD(this.j,{icon:{name:"plus"}});const{container:e}=this.button;this.nativeInput||(this.nativeInput=this.createNativeInput(t));const{nativeInput:i}=this;return i.classList.add(this.getFullElName("input")),e.classList.add(this.componentName),e.appendChild(i),e}createNativeInput(t){return this.j.create.fromHTML(`<input\n\t\t\ttype="file"\n\t\t\taccept="${t.onlyImages?"image/*":"*"}"\n\t\t\ttabindex="-1"\n\t\t\tdir="auto"\n\t\t\tmultiple=""\n\t\t/>`)}constructor(t,e){super(t,{type:"file",...e}),this.state={...s.t.defaultState,type:"file",onlyImages:!0};}};a=(0, o.Cg)([n.s],a);},47165:function(t,e,i){i.d(e,{$6:function(){return a.$},F0:function(){return o.F},cY:function(){return n.c},nE:function(){return r.n},tS:function(){return s.t}});var o=i(5454),n=i(3006),r=i(47964),s=i(69198),a=i(1540);},69198:function(t,e,i){i.d(e,{t:function(){return h}});var o,n=i(31635),r=i(22664),s=i(55186),a=i(42448),l=i(97369),c=i(29780),d=i(84103),u=i(931);let h=o=class extends c.D{className(){return "UIInput"}onChangeClear(){this.state.clearButton?s.J.after(this.nativeInput,this.clearButton):s.J.safeRemove(this.clearButton);}onChangeClassName(t,e){e&&this.container.classList.remove(e),this.state.className&&this.container.classList.add(this.state.className);}onChangeState(){this.name=this.state.name;const t=this.nativeInput,{name:e,icon:i,type:o,ref:n,required:r,placeholder:a,autocomplete:c,label:d}=this.state;(0, l.attr)(t,"name",e),(0, l.attr)(t,"type",o),(0, l.attr)(t,"data-ref",n||e),(0, l.attr)(t,"ref",n||e),(0, l.attr)(t,"required",r||null),(0, l.attr)(t,"autocomplete",c?null:"off"),(0, l.attr)(t,"placeholder",a?this.j.i18n(a):""),i&&u.I.exists(i)?(s.J.before(t,this.icon),this.icon.innerHTML=u.I.get(i)):s.J.safeRemove(this.icon),d?(s.J.before(this.wrapper,this.label),this.label.innerText=this.j.i18n(d)):s.J.safeRemove(this.label),this.updateValidators();}updateValidators(){var t;this.validators.clear(),this.state.required&&this.validators.add(d.O.required),null===(t=this.state.validators)||void 0===t||t.forEach((t=>{const e=d.O[t];e&&this.validators.add(e);}));}set error(t){this.setMod("has-error",Boolean(t)),t?(this.__errorBox.innerText=this.j.i18n(t,this.j.i18n(this.state.label||"")),this.container.appendChild(this.__errorBox)):s.J.safeRemove(this.__errorBox);}get value(){return this.nativeInput.value}set value(t){this.value!==t&&(this.nativeInput.value=t,this.onChangeValue());}onChangeStateValue(){const t=this.state.value.toString();t!==this.value&&(this.value=t);}onChangeValue(){var t,e;const{value:i}=this;this.state.value!==i&&(this.state.value=i,this.j.e.fire(this,"change",i),null===(e=(t=this.state).onChange)||void 0===e||e.call(t,i));}validate(){return this.error="",(0, a.$)(this.validators).every((t=>t(this)))}createContainer(t){const e=super.createContainer();this.wrapper=this.j.c.div(this.getFullElName("wrapper")),this.nativeInput||(this.nativeInput=this.createNativeInput());const{nativeInput:i}=this;return i.classList.add(this.getFullElName("input")),this.wrapper.appendChild(i),e.appendChild(this.wrapper),(0, l.attr)(i,"dir",this.j.o.direction||"auto"),e}createNativeInput(t){return this.j.create.element("input")}constructor(t,e){super(t,e),this.label=this.j.c.span(this.getFullElName("label")),this.icon=this.j.c.span(this.getFullElName("icon")),this.clearButton=this.j.c.span(this.getFullElName("clear"),u.I.get("cancel")),this.state={...o.defaultState},this.__errorBox=this.j.c.span(this.getFullElName("error")),this.validators=new Set([]),void 0!==(null==e?void 0:e.value)&&(e.value=e.value.toString()),Object.assign(this.state,e),void 0!==this.state.clearButton&&(this.j.e.on(this.clearButton,"click",(t=>{t.preventDefault(),this.nativeInput.value="",this.j.e.fire(this.nativeInput,"input"),this.focus();})).on(this.nativeInput,"input",(()=>{this.state.clearButton=Boolean(this.value.length);})),this.state.clearButton=Boolean(this.value.length)),this.j.e.on(this.nativeInput,"focus blur",(()=>{this.onChangeFocus();})).on(this.nativeInput,"input change",this.onChangeValue),this.onChangeState(),this.onChangeClassName(),this.onChangeStateValue();}focus(){this.nativeInput.focus();}get isFocused(){return this.nativeInput===this.j.od.activeElement}onChangeFocus(){this.setMod("focused",this.isFocused);}};h.defaultState={className:"",autocomplete:!0,name:"",value:"",icon:"",label:"",ref:"",type:"text",placeholder:"",required:!1,validators:[]},(0, n.Cg)([(0, r.watch)("state.clearButton")],h.prototype,"onChangeClear",null),(0, n.Cg)([(0, r.watch)("state.className")],h.prototype,"onChangeClassName",null),(0, n.Cg)([(0, r.watch)(["state.name","state.type","state.label","state.placeholder","state.autocomplete","state.icon"],{immediately:!1}),(0, r.debounce)()],h.prototype,"onChangeState",null),(0, n.Cg)([(0, r.watch)("state.value")],h.prototype,"onChangeStateValue",null),(0, n.Cg)([r.autobind],h.prototype,"onChangeValue",null),h=o=(0, n.Cg)([r.component],h);},1540:function(t,e,i){i.d(e,{$:function(){return c}});var o,n=i(31635),r=i(24767),s=i(26150),a=i(69198),l=i(84103);let c=o=class extends a.t{className(){return "UISelect"}createContainer(t){var e;const i=super.createContainer(t),{j:o}=this,{nativeInput:n}=this,r=()=>o.create.element("option");if(void 0!==t.placeholder){const e=r();e.value="",e.text=o.i18n(t.placeholder),n.add(e);}return null===(e=t.options)||void 0===e||e.forEach((t=>{const e=r();e.value=t.value.toString(),e.text=o.i18n(t.text),n.add(e);})),t.size&&t.size>0&&(0, s.C)(n,"size",t.size),t.multiple&&(0, s.C)(n,"multiple",""),i}createNativeInput(){return this.j.create.element("select")}updateValidators(){super.updateValidators(),this.state.required&&(this.validators.delete(l.O.required),this.validators.add(l.U.m));}constructor(t,e){super(t,e),this.state={...o.defaultState},Object.assign(this.state,e);}};c.defaultState={...a.t.defaultState,options:[],size:1,multiple:!1},c=o=(0, n.Cg)([r.s],c);},84103:function(t,e,i){i.d(e,{O:function(){return o},U:function(){return n}});var o=i(51271),n=i(36795);},51271:function(t,e,i){i.r(e),i.d(e,{required:function(){return r},url:function(){return s}});var o=i(6939),n=i(59101);const r=function(t){return !!(0, n.Bq)(t.value).length||(t.error="Please fill out this field",!1)},s=function(t){return !!(0, o.m)((0, n.Bq)(t.value))||(t.error="Please enter a web address",!1)};},36795:function(t,e,i){i.d(e,{m:function(){return n}});var o=i(59101);const n=function(t){return !!(0, o.Bq)(t.value).length||(t.error="Please fill out this field",!1)};},6455:function(t,e,i){i.d(e,{U:function(){return d}});var o,n=i(31635),r=i(37474),s=i(22664),a=i(55186),l=i(65147),c=(i(28712),i(29780));let d=o=class extends c.D{className(){return "UIGroup"}get allChildren(){const t=[],e=[...this.elements];for(;e.length;){const i=e.shift();(0, l.isArray)(i)?e.push(...i):r.u.isInstanceOf(i,o)?e.push(...i.elements):i&&t.push(i);}return t}update(){this.elements.forEach((t=>t.update())),this.setMod("size",this.buttonSize);}append(t,e){return (0, l.isArray)(t)?(t.forEach((t=>this.append(t,e))),this):(this.elements.push(t),t.name&&t.container.classList.add(this.getFullElName(t.name)),e?this.getElm(e).appendChild(t.container):this.appendChildToContainer(t.container),t.parentElement=this,this)}afterSetMod(t,e){this.syncMod&&this.elements.forEach((i=>i.setMod(t,e)));}appendChildToContainer(t){this.container.appendChild(t);}remove(t){const e=this.elements.indexOf(t);return -1!==e&&(this.elements.splice(e,1),a.J.safeRemove(t.container),t.parentElement=null),this}clear(){return this.elements.forEach((t=>t.destruct())),this.elements.length=0,this}constructor(t,e,i){super(t,i),this.options=i,this.syncMod=!1,this.elements=[],this.buttonSize="middle",null==e||e.forEach((t=>t&&this.append(t))),(null==i?void 0:i.name)&&(this.name=i.name);}destruct(){return this.clear(),super.destruct()}};(0, n.Cg)([(0, s.watch)("buttonSize")],d.prototype,"update",null),d=o=(0, n.Cg)([s.component],d);},29012:function(t,e,i){i.d(e,{CP:function(){return r.C},Ue:function(){return o.U},bk:function(){return s.b},z4:function(){return n.z}});var o=i(6455),n=i(94070),r=i(86283),s=i(13642);},94070:function(t,e,i){i.d(e,{z:function(){return f}});var o=i(31635),n=i(37474),r=i(22664),s=i(42589),a=i(92032),l=i(6455),c=i(86283),d=i(13642),u=i(39611),h=i(57023),p=i(37424);let f=class extends l.U{className(){return "UIList"}__onChangeMode(){this.setMod("mode",this.mode);}constructor(t){super(t),this.mode="horizontal",this.removeButtons=[];}makeGroup(){return new l.U(this.jodit)}get buttons(){return this.allChildren.filter((t=>n.u.isInstanceOf(t,a.lD)))}getButtonsNames(){return this.buttons.map((t=>t instanceof a.lD&&t.state.name||"")).filter((t=>""!==t))}setRemoveButtons(t){return this.removeButtons=t||[],this}build(t,e=null){t=(0, s.u)(t),this.clear();let i,o=!1,n=this.makeGroup();this.append(n),n.setMod("line",!0);const r=t=>{let r=null;switch(t.name){case"\n":n=this.makeGroup(),n.setMod("line",!0),i=this.makeGroup(),n.append(i),this.append(n);break;case"|":o||(o=!0,r=new c.C(this.j));break;case"---":{i.setMod("before-spacer",!0);const t=new d.b(this.j);n.append(t),i=this.makeGroup(),n.append(i),o=!1;break}default:o=!1,r="select"===t.component?this.makeSelect(t,e):this.makeButton(t,e);}r&&(i||(i=this.makeGroup(),n.append(i)),i.append(r));},a=t=>{var e;return !this.removeButtons.includes(t.name)&&(!t.isVisible||(null===(e=t.isVisible)||void 0===e?void 0:e.call(t,this.j,t)))};return t.forEach((t=>{if((0, u.i)(t)){const e=t.buttons.filter((t=>t));e.length&&(i=this.makeGroup(),i.setMod("separated",!0).setMod("group",t.group),n.append(i),(0, p.Q)(e,this.j.o.controls).filter(a).forEach(r));}else {i||(i=this.makeGroup(),n.append(i));const e=(0, h.U)(t,this.j.o.controls);a(e)&&r(e);}})),this.update(),this}makeSelect(t,e){throw new Error("Not implemented behaviour")}makeButton(t,e){return new a.lD(this.j,{name:t.name})}};(0, o.Cg)([(0, r.watch)("mode"),(0, r.hook)("ready")],f.prototype,"__onChangeMode",null),f=(0, o.Cg)([r.component],f);},86283:function(t,e,i){i.d(e,{C:function(){return s}});var o=i(31635),n=i(24767),r=i(29780);let s=class extends r.D{className(){return "UISeparator"}};s=(0, o.Cg)([n.s],s);},13642:function(t,e,i){i.d(e,{b:function(){return s}});var o=i(31635),n=i(24767),r=i(29780);let s=class extends r.D{className(){return "UISpacer"}};s=(0, o.Cg)([n.s],s);},39611:function(t,e,i){i.d(e,{V:function(){return r},i:function(){return n}});var o=i(37923);const n=t=>(0, o.c)(t.buttons);function r(t,e){const i=e.getRegisteredButtonGroups();return new Set(t.reduce(((t,e)=>{var o;return n(e)?t=t.concat([...e.buttons,...null!==(o=i[e.group])&&void 0!==o?o:[]]):t.push(e),t}),[]))}},57023:function(t,e,i){i.d(e,{U:function(){return r},x:function(){return s}});var o=i(65147),n=i(36115);function r(t,e){let i;return e||(e=n.T.defaultOptions.controls),(0, o.isString)(t)?i=s(t,e)||{name:t,command:t,tooltip:t}:(i={name:"empty",...(0, o.ConfigFlatten)(t)},void 0!==e[i.name]&&(i={...(0, o.ConfigFlatten)(e[i.name]),...(0, o.ConfigFlatten)(i)})),i}function s(t,e){var i;let[n,r]=t.split(/\./),s=e;null!=r?void 0!==e[n]&&(s=e[n]):r=n;const a=null===(i=s[r])||void 0===i?void 0:i.list;return s[r]?{name:r,...(0, o.ConfigFlatten)(s[r]),list:(0, o.isArray)(a)?a.reduce(((t,e)=>(t[e]=e,t)),{}):a}:void 0}},37424:function(t,e,i){i.d(e,{Q:function(){return a}});var o=i(37923),n=i(97369),r=i(57023),s=i(36115);function a(t,e){return ((0, o.c)(t)?t:(0, n.keys)(t,!1).map((e=>(0, n.ConfigProto)({name:e},t[e]||{})))).map((t=>(0, r.U)(t,e||s.T.defaultOptions.controls)))}},931:function(t,e,i){i.d(e,{I:function(){return r}}),i(17352);var o=i(65147),n=i(38322);class r{static getIcon(t){return /<svg/i.test(t)?t:r.icons[t]||r.icons[t.replace(/-/g,"_")]||r.icons[t.replace(/_/g,"-")]||r.icons[(0, o.camelCase)(t)]||r.icons[(0, o.kebabCase)(t)]||r.icons[t.toLowerCase()]}static exists(t){return void 0!==this.getIcon(t)}static get(t,e="<span></span>"){return this.getIcon(t)||e}static set(t,e){return this.icons[t.replace("_","-")]=e,this}static makeIcon(t,e){var i,o,s,a;if(!e)return;let l;const{name:c,iconURL:d,fill:u}=e,h=c.replace(/[^a-zA-Z0-9]/g,"_");let p;/<svg/.test(c)||(p=null===(o=(i=t.o).getIcon)||void 0===o?void 0:o.call(i,c,h));const f=`${c}${d}${u}${null!=p?p:""}`;if(t.o.cache&&this.__cache.has(f))return null===(s=this.__cache.get(f))||void 0===s?void 0:s.cloneNode(!0);if(d)l=t.c.span(),(0, n.A)(l,"backgroundImage","url("+d.replace("{basePath}",(null==t?void 0:t.basePath)||"")+")");else {const e=p||r.get(c,"")||(null===(a=t.o.extraIcons)||void 0===a?void 0:a[c]);e&&(l=t.c.fromHTML(e.trim()),/^<svg/i.test(c)||l.classList.add("jodit-icon_"+h));}return l&&(l.classList.add("jodit-icon"),l.style.fill=u,t.o.cache&&this.__cache.set(f,l.cloneNode(!0))),l}}r.icons={},r.__cache=new Map;},53048:function(t,e,i){i.d(e,{$6:function(){return r.$6},$n:function(){return o.$n},CP:function(){return s.CP},D$:function(){return n.D},F0:function(){return r.F0},In:function(){return a.I},SB:function(){return o.SB},Ue:function(){return s.Ue},XV:function(){return r.XV},Yh:function(){return r.Yh},bk:function(){return s.bk},cY:function(){return r.cY},lD:function(){return o.lD},nE:function(){return r.nE},ss:function(){return o.ss},tS:function(){return r.tS},ue:function(){return o.ue},z2:function(){return c.z},z4:function(){return s.z4},zD:function(){return l.z}});var o=i(35265),n=i(29780),r=i(20703),s=i(29012),a=i(931),l=i(96369),c=i(92227);},96369:function(t,e,i){i.d(e,{z:function(){return o.z}});var o=i(80071);},80071:function(t,e,i){i.d(e,{z:function(){return h}});var o=i(31635),n=i(37474),r=i(22664),s=i(55186),a=i(56298),l=i(65147),c=(i(28712),i(29780)),d=i(6455);const u=["escape","cut","delete","backSpaceAfterDelete","beforeCommandDelete"];class h extends d.U{className(){return "Popup"}appendChildToContainer(t){this.getElm("content").appendChild(t);}updateParentElement(t){return t!==this&&n.u.isInstanceOf(t,h)&&(this.__childrenPopups.forEach((e=>{!t.closest(e)&&e.isOpened&&e.close();})),this.__childrenPopups.has(t)||this.j.e.on(t,"beforeClose",(()=>{this.__childrenPopups.delete(t);})),this.__childrenPopups.add(t)),super.updateParentElement(t)}setContent(t){if(this.allChildren.length)throw new Error("Remove children");if(n.u.isInstanceOf(t,c.D))this.append(t);else {const e=(0, l.isString)(t)?this.j.c.fromHTML(t):t;this.appendChildToContainer(e);}return this.updatePosition(),this}open(t,e=!1,i){if((0, l.markOwner)(this.jodit,this.container),this.container.classList.add(`jodit_theme_${this.jodit.o.theme}`),this.__calculateZIndex(),this.isOpened=!0,this.__addGlobalListeners(),this.__targetBound=e?this.getKeepBound(t):t,i)i.appendChild(this.container);else {const t=(0, a.My)(this.jodit,h);i!==this.container.parentElement&&t.appendChild(this.container);}return this.updatePosition(),this.j.e.fire(this,"afterOpen"),this.j.e.fire("afterOpenPopup",this),this}__calculateZIndex(){if(this.container.style.zIndex)return;const t=t=>{const e=t.container.style.zIndex||t.o.zIndex;return !!e&&(this.setZIndex(1+parseInt(e.toString(),10)),!0)},{j:e}=this;if(t(e))return;let i=this.parentElement;for(;i;){if(t(i.j))return;if(i.container.style.zIndex)return void this.setZIndex(1+parseInt(i.container.style.zIndex.toString(),10));if(!i.parentElement&&i.container.parentElement){const t=c.D.closestElement(i.container.parentElement,c.D);if(t){i=t;continue}}i=i.parentElement;}}getKeepBound(t){const e=t(),i=this.od.elementFromPoint(e.left,e.top);if(!i)return t;const o=s.J.isHTMLElement(i)?i:i.parentElement,n=(0, l.position)(o,this.j);return ()=>{const e=t(),i=(0, l.position)(o,this.j);return {...e,top:e.top+(i.top-n.top),left:e.left+(i.left-n.left)}}}updatePosition(){if(!this.isOpened)return this;const[t,e]=this.__calculatePosition(this.__targetBound(),this.viewBound(),(0, l.position)(this.container,this.j));return this.setMod("strategy",e),(0, l.css)(this.container,{left:t.left,top:t.top}),this.__childrenPopups.forEach((t=>t.updatePosition())),this}__throttleUpdatePosition(){this.updatePosition();}__calculatePosition(t,e,i,o=this.strategy){const n={left:t.left,right:t.left-(i.width-t.width)},r={bottom:t.top+t.height,top:t.top-i.height},s=Object.keys(n).reduce(((t,e)=>t.concat(Object.keys(r).map((t=>`${e}${(0, l.ucfirst)(t)}`)))),[]),a=t=>{const[e,o]=(0, l.kebabCase)(t).split("-");return {left:n[e],top:r[o],width:i.width,height:i.height}},c=t=>{let e=null;return e=h.boxInView(a(o),t)?o:s.find((e=>{if(h.boxInView(a(e),t))return e}))||null,e};let d=c((0, l.position)(this.j.container,this.j));return d&&h.boxInView(a(d),e)||(d=c(e)||d||o),[a(d),d]}static boxInView(t,e){return !(-2>t.top-e.top||-2>t.left-e.left||-2>e.top+e.height-(t.top+t.height)||-2>e.left+e.width-(t.left+t.width))}close(){return this.isOpened?(this.isOpened=!1,this.__childrenPopups.forEach((t=>t.close())),this.j.e.fire(this,"beforeClose"),this.j.e.fire("beforePopupClose",this),this.__removeGlobalListeners(),s.J.safeRemove(this.container),this):this}__closeOnOutsideClick(t){this.isOpened&&!this.isOwnClick(t)&&this.close();}isOwnClick(t){if(!t.target)return !1;const e=c.D.closestElement(t.target,h);return Boolean(e&&(this===e||e.closest(this)))}__addGlobalListeners(){const t=this.__throttleUpdatePosition,e=this.ow;a.RR.on("closeAllPopups",this.close),this.smart&&this.j.e.on(u,this.close).on("mousedown touchstart",this.__closeOnOutsideClick).on(e,"mousedown touchstart",this.__closeOnOutsideClick),this.j.e.on("closeAllPopups",this.close).on("resize",t).on(this.container,"scroll mousewheel",t).on(e,"scroll",t).on(e,"resize",t),s.J.up(this.j.container,(e=>{e&&this.j.e.on(e,"scroll mousewheel",t);}));}__removeGlobalListeners(){const t=this.__throttleUpdatePosition,e=this.ow;a.RR.off("closeAllPopups",this.close),this.smart&&this.j.e.off(u,this.close).off("mousedown touchstart",this.__closeOnOutsideClick).off(e,"mousedown touchstart",this.__closeOnOutsideClick),this.j.e.off("closeAllPopups",this.close).off("resize",t).off(this.container,"scroll mousewheel",t).off(e,"scroll",t).off(e,"resize",t),this.j.container.isConnected&&s.J.up(this.j.container,(e=>{e&&this.j.e.off(e,"scroll mousewheel",t);}));}setZIndex(t){this.container.style.zIndex=t.toString();}constructor(t,e=!0){super(t),this.smart=e,this.isOpened=!1,this.strategy="leftBottom",this.viewBound=()=>({left:0,top:0,width:this.ow.innerWidth,height:this.ow.innerHeight}),this.__childrenPopups=new Set,(0, l.attr)(this.container,"role","popup");}render(){return '<div>\n\t\t\t<div class="&__content"></div>\n\t\t</div>'}destruct(){return this.close(),super.destruct()}}(0, o.Cg)([r.autobind],h.prototype,"updatePosition",null),(0, o.Cg)([(0, r.throttle)(10),r.autobind],h.prototype,"__throttleUpdatePosition",null),(0, o.Cg)([r.autobind],h.prototype,"close",null),(0, o.Cg)([r.autobind],h.prototype,"__closeOnOutsideClick",null);},92227:function(t,e,i){i.d(e,{z:function(){return r}});var o=i(55186),n=i(29780);class r extends n.D{className(){return "ProgressBar"}render(){return "<div><div></div></div>"}show(){return (this.j.workplace||this.j.container).appendChild(this.container),this}hide(){return o.J.safeRemove(this.container),this}progress(t){return this.container.style.width=t.toFixed(2)+"%",this}destruct(){return this.hide(),super.destruct()}}},14961:function(t,e,i){i.d(e,{T:function(){return f}});var o=i(31635),n=i(64567),r=i(26318),s=i(66927),a=i(55186),l=i(32709),c=i(98253),d=i(58720),u=i(39611),h=i(77782),p=i(8809);class f extends h.S{get toolbarContainer(){return this.o.fullsize||!(0, c.K)(this.o.toolbar)&&!a.J.isHTMLElement(this.o.toolbar)?(this.o.toolbar&&a.J.appendChildFirst(this.container,this.__defaultToolbarContainer),this.__defaultToolbarContainer):(0, d.tI)(this.o.toolbar,this.o.shadowRoot||this.od)}setPanel(t){this.o.toolbar=t,this.buildToolbar();}buildToolbar(){var t;if(!this.o.toolbar)return;const e=this.o.buttons?(0, l.uM)(this.o.buttons):[];null===(t=this.toolbar)||void 0===t||t.setRemoveButtons(this.o.removeButtons).build(e.concat(this.o.extraButtons||[])).appendTo(this.toolbarContainer);}getRegisteredButtonGroups(){return this.groupToButtons}registerButton(t){var e;this.registeredButtons.add(t);const i=null!==(e=t.group)&&void 0!==e?e:"other";return this.groupToButtons[i]||(this.groupToButtons[i]=[]),null!=t.position?this.groupToButtons[i][t.position]=t.name:this.groupToButtons[i].push(t.name),this}unregisterButton(t){var e;this.registeredButtons.delete(t);const i=null!==(e=t.group)&&void 0!==e?e:"other",o=this.groupToButtons[i];if(o){const e=o.indexOf(t.name);-1!==e&&o.splice(e,1),0===o.length&&delete this.groupToButtons[i];}return this}beforeToolbarBuild(t){if(Object.keys(this.groupToButtons).length)return t.map((t=>(0, u.i)(t)&&t.group&&this.groupToButtons[t.group]?{group:t.group,buttons:[...t.buttons,...this.groupToButtons[t.group]]}:t))}constructor(t,e=!1){super(t,e),this.toolbar=(0, p.$K)(this),this.__defaultToolbarContainer=this.c.div("jodit-toolbar__box"),this.registeredButtons=new Set,this.groupToButtons={},this.isJodit=!1,this.isJodit=e,this.e.on("beforeToolbarBuild",this.beforeToolbarBuild);}destruct(){this.isDestructed||(this.setStatus(n.f.beforeDestruct),this.e.off("beforeToolbarBuild",this.beforeToolbarBuild),this.toolbar.destruct(),this.toolbar=void 0,super.destruct());}}(0, o.Cg)([(0, s.w)(":rebuildToolbar")],f.prototype,"buildToolbar",null),(0, o.Cg)([r.Ay],f.prototype,"beforeToolbarBuild",null);},77782:function(t,e,i){i.d(e,{S:function(){return y}});var o,n=i(31635),r=i(77753),s=i(37474),a=i(64567),l=i(17352),c=i(92852),d=i(87875),u=i(1963),h=i(71151),p=i(71842),f=i(50025),g=i(56298),m=i(65147),b=i(24834),_=i(87906),v=i(75758),x=i(92227),w=i(91902);let y=o=class extends s.u{get basePath(){return this.o.basePath?this.o.basePath:l.BASE_PATH}get defaultTimeout(){return (0, m.isVoid)(this.o.defaultTimeout)?100:this.o.defaultTimeout}get buffer(){return b.w.makeStorage()}get message(){return this.getMessageModule(this.container)}getMessageModule(t){return new w.N(this,t)}get storage(){return b.w.makeStorage(!0,this.id)}get c(){return this.create}get container(){return this.__container}set container(t){this.__container=t;}get e(){return this.events}get progressbar(){return new x.z(this)}get options(){return this.__options}set options(t){this.__options=t;}get o(){return this.options}i18n(t,...e){return (0, m.i18n)(t,e,this.options)}toggleFullSize(t){void 0===t&&(t=!this.__isFullSize),t!==this.__isFullSize&&(this.__isFullSize=t,this.e.fire("toggleFullSize",t));}get isLocked(){return ""!==this.__whoLocked}lock(t="any"){return !this.isLocked&&(this.__whoLocked=t,!0)}unlock(){return !!this.isLocked&&(this.__whoLocked="",!0)}get isFullSize(){return this.__isFullSize}getVersion(){return o.version}static getVersion(){return o.version}initOptions(t){this.options=(0, m.ConfigProto)(t||{},(0, m.ConfigProto)(this.options||{},o.defaultOptions));}initOwners(){var t;this.ownerWindow=null!==(t=this.o.ownerWindow)&&void 0!==t?t:window;}attachEvents(t){if(!t)return;const e=null==t?void 0:t.events;e&&Object.keys(e).forEach((t=>this.e.on(t,e[t])));}constructor(t,e=!1){super(),this.isJodit=e,this.isView=!0,this.parent=null,this.mods={},this.components=new Set,this.OPTIONS=o.defaultOptions,this.__isFullSize=!1,this.__whoLocked="",this.isLockedNotBy=t=>this.isLocked&&this.__whoLocked!==t,this.__modulesInstances=new Map,this.id=(new Date).getTime().toString(),this.initOptions(t),this.initOwners(),this.events=new f.bk(this.od),this.create=new c.X(this.od),this.container=this.c.div(`jodit ${this.componentName}`);}getInstance(t,e){const i=(0, m.isFunction)(t)?t.prototype.className():t,o=this.e.fire((0, m.camelCase)("getInstance_"+i),e);if(o)return o;const n=(0, m.isFunction)(t)?t:g.av[i],s=this.__modulesInstances;if(!(0, m.isFunction)(n))throw (0, m.error)("Need real module name");if(!s.has(i)){const t=n.prototype instanceof r.vG?new n(this,e):new n(e);this.components.add(t),s.set(i,t);}return s.get(i)}addDisclaimer(t){this.container.appendChild(t);}beforeDestruct(){this.e.fire(a.f.beforeDestruct,this),this.components.forEach((t=>{(0, m.isDestructable)(t)&&!t.isInDestruct&&t.destruct();})),this.components.clear();}destruct(){this.isDestructed||(this.progressbar.destruct(),this.message.destruct(),this.events&&(this.events.destruct(),this.events=void 0),this.buffer&&this.buffer.clear(),p.J.safeRemove(this.container),super.destruct());}};y.ES=l.ES,y.version=l.APP_VERSION,y.esNext=l.IS_ES_NEXT,y.esModern=l.IS_ES_MODERN,(0, n.Cg)([d.PP],y.prototype,"buffer",null),(0, n.Cg)([d.PP],y.prototype,"message",null),(0, n.Cg)([d.PP],y.prototype,"storage",null),(0, n.Cg)([d.PP],y.prototype,"c",null),(0, n.Cg)([d.PP],y.prototype,"e",null),(0, n.Cg)([d.PP],y.prototype,"progressbar",null),(0, n.Cg)([(0, h.A)(a.f.beforeDestruct)],y.prototype,"beforeDestruct",null),y=o=(0, n.Cg)([(0, u.C)(v.K,_.O)],y),y.defaultOptions={extraButtons:[],cache:!0,textIcons:!1,namespace:"",removeButtons:[],zIndex:100002,defaultTimeout:100,fullsize:!1,showTooltip:!0,useNativeTooltip:!1,buttons:[],globalFullSize:!0,language:"auto"};},46173:function(t,e,i){i.d(e,{x:function(){return g}});var o,n=i(31635),r=i(17352),s=i(22664),a=i(56298),l=i(65147),c=i(53883),d=i(58597),u=i(37435),h=i(36115);const p="data-jodit-default-style-display",f="data-jodit-default-classes";let g=o=class extends u.ViewWithToolbar{className(){return "Jodit"}waitForReady(){return this.isReady?Promise.resolve(this):this.async.promise((t=>{this.hookStatus("ready",(()=>t(this)));}))}static get ready(){return new Promise((t=>{a.RR.on("oditready",t);}))}get text(){if(this.editor)return this.editor.innerText||"";const t=this.createInside.div();return t.innerHTML=this.getElementValue(),t.innerText||""}get defaultTimeout(){return (0, l.isNumber)(this.o.defaultTimeout)?this.o.defaultTimeout:h.T.defaultOptions.defaultTimeout}static atom(t){return (0, l.markAsAtomic)(t)}static make(t,e){return new this(t,e)}static isJoditAssigned(t){return t&&(0, l.isJoditObject)(t.component)&&!t.component.isInDestruct}static get defaultOptions(){return h.T.defaultOptions}get createInside(){return new u.Create((()=>this.ed),this.o.createAttributes)}__setPlaceField(t,e){this.currentPlace||(this.currentPlace={},this.places=[this.currentPlace]),this.currentPlace[t]=e;}get element(){return this.currentPlace.element}get editor(){return this.currentPlace.editor}set editor(t){this.__setPlaceField("editor",t);}get container(){return this.currentPlace.container}set container(t){this.__setPlaceField("container",t);}get workplace(){return this.currentPlace.workplace}get message(){return this.getMessageModule(this.workplace)}get statusbar(){return this.currentPlace.statusbar}get iframe(){return this.currentPlace.iframe}set iframe(t){this.__setPlaceField("iframe",t);}get history(){return this.currentPlace.history}get editorWindow(){return this.currentPlace.editorWindow}set editorWindow(t){this.__setPlaceField("editorWindow",t);}get ew(){return this.editorWindow}get editorDocument(){return this.currentPlace.editorWindow.document}get ed(){return this.editorDocument}get options(){return this.currentPlace.options}set options(t){this.__setPlaceField("options",t);}get s(){return this.selection}get uploader(){return this.getInstance("Uploader",this.o.uploader)}get filebrowser(){const t=this,e=(0, l.ConfigProto)({defaultTimeout:t.defaultTimeout,uploader:t.o.uploader,language:t.o.language,license:t.o.license,theme:t.o.theme,shadowRoot:t.o.shadowRoot,defaultCallback(e){e.files&&e.files.length&&e.files.forEach(((i,o)=>{const n=e.baseurl+i;e.isImages&&e.isImages[o]?t.s.insertImage(n,null,t.o.imageDefaultWidth):t.s.insertNode(t.createInside.fromHTML(`<a href='${n}' title='${n}'>${n}</a>`));}));}},this.o.filebrowser);return t.getInstance("FileBrowser",e)}get mode(){return this.__mode}set mode(t){this.setMode(t);}getNativeEditorValue(){const t=this.e.fire("beforeGetNativeEditorValue");return (0, l.isString)(t)?t:this.editor?this.editor.innerHTML:this.getElementValue()}setNativeEditorValue(t){const e={value:t};this.e.fire("beforeSetNativeEditorValue",e)||this.editor&&(this.editor.innerHTML=e.value);}get value(){return this.getEditorValue()}set value(t){this.setEditorValue(t),this.history.__processChanges();}synchronizeValues(){this.__imdSynchronizeValues();}__imdSynchronizeValues(){this.setEditorValue();}getEditorValue(t=!0,e){let i;if(i=this.e.fire("beforeGetValueFromEditor",e),void 0!==i)return i;i=this.getNativeEditorValue().replace(r.INVISIBLE_SPACE_REG_EXP(),""),t&&(i=i.replace(/<span[^>]+id="jodit-selection_marker_[^>]+><\/span>/g,"")),"<br>"===i&&(i="");const o={value:i};return this.e.fire("afterGetValueFromEditor",o,e),o.value}setEditorValue(t){const e=this.e.fire("beforeSetValueToEditor",t);if(!1===e)return;if((0, l.isString)(e)&&(t=e),!this.editor)return void(void 0!==t&&this.__setElementValue(t));if(!(0, l.isString)(t)&&!(0, l.isVoid)(t))throw (0, l.error)("value must be string");(0, l.isVoid)(t)||this.getNativeEditorValue()===t||this.setNativeEditorValue(t),this.e.fire("postProcessSetEditorValue");const i=this.getElementValue(),o=this.getEditorValue();if(!this.__isSilentChange&&i!==o&&r.SAFE_COUNT_CHANGE_CALL>this.__callChangeCount){this.__setElementValue(o),this.__callChangeCount+=1;try{this.history.__upTick(),this.e.fire("change",o,i),this.e.fire(this.history,"change",o,i);}finally{this.__callChangeCount=0;}}}updateElementValue(){this.__setElementValue(this.getEditorValue());}getElementValue(){return void 0!==this.element.value?this.element.value:this.element.innerHTML}__setElementValue(t){if(!(0, l.isString)(t))throw (0, l.error)("value must be string");if(this.element!==this.container&&t!==this.getElementValue()){const e={value:t},i=this.e.fire("beforeSetElementValue",e);(0, l.callPromise)(i,(()=>{void 0!==this.element.value?this.element.value=e.value:this.element.innerHTML=e.value,this.e.fire("afterSetElementValue",e);}));}}registerCommand(t,e,i){const o=t.toLowerCase();let n=this.commands.get(o);if(void 0===n&&(n=[],this.commands.set(o,n)),n.push(e),!(0, l.isFunction)(e)){const n=this.o.commandToHotkeys[o]||this.o.commandToHotkeys[t]||e.hotkeys;n&&this.registerHotkeyToCommand(n,o,null==i?void 0:i.stopPropagation);}return this}registerHotkeyToCommand(t,e,i=!0){const o=(0, l.asArray)(t).map(l.normalizeKeyAliases).map((t=>t+".hotkey")).join(" ");this.e.off(o).on(o,((t,o)=>(o&&(o.shouldStop=null==i||i),this.execCommand(e))));}execCommand(t,e,i,...o){if(this.s.isFocused()||this.s.focus(),this.o.readonly&&!this.o.allowCommandsInReadOnly.includes(t))return;let n;if(t=t.toLowerCase(),n=this.e.fire(`beforeCommand${(0, l.ucfirst)(t)}`,e,i,...o),!1!==n&&(n=this.e.fire("beforeCommand",t,e,i,...o)),!1!==n&&(n=this.__execCustomCommands(t,e,i,...o)),!1!==n){this.s.focus();try{n=this.nativeExecCommand(t,e,i);}catch(t){if(!r.IS_PROD)throw t}}return this.e.fire("afterCommand",t,e,i),this.__imdSynchronizeValues(),n}nativeExecCommand(t,e,i){this.__isSilentChange=!0;try{return this.ed.execCommand(t,e,i)}finally{this.__isSilentChange=!1;}}__execCustomCommands(t,e,i,...o){t=t.toLowerCase();const n=this.commands.get(t);if(void 0!==n){let r;return n.forEach((n=>{let s;s=(0, l.isFunction)(n)?n:n.exec;const a=s.call(this,t,e,i,...o);void 0!==a&&(r=a);})),r}}lock(t="any"){return !!super.lock(t)&&(this.__selectionLocked=this.s.save(),this.s.clear(),this.editor.classList.add("jodit_lock"),this.e.fire("lock",!0),!0)}unlock(){return !!super.unlock()&&(this.editor.classList.remove("jodit_lock"),this.__selectionLocked&&this.s.restore(),this.e.fire("lock",!1),!0)}getMode(){return this.mode}isEditorMode(){return this.getRealMode()===r.MODE_WYSIWYG}getRealMode(){if(this.getMode()!==r.MODE_SPLIT)return this.getMode();const t=this.od.activeElement;return t&&(t===this.iframe||u.Dom.isOrContains(this.editor,t)||u.Dom.isOrContains(this.toolbar.container,t))?r.MODE_WYSIWYG:r.MODE_SOURCE}setMode(t){const e=this.getMode(),i={mode:parseInt(t.toString(),10)},o=["jodit-wysiwyg_mode","jodit-source__mode","jodit_split_mode"];!1!==this.e.fire("beforeSetMode",i)&&(this.__mode=[r.MODE_SOURCE,r.MODE_WYSIWYG,r.MODE_SPLIT].includes(i.mode)?i.mode:r.MODE_WYSIWYG,this.o.saveModeInStorage&&this.storage.set("jodit_default_mode",this.mode),o.forEach((t=>{this.container.classList.remove(t);})),this.container.classList.add(o[this.mode-1]),e!==this.getMode()&&this.e.fire("afterSetMode"));}toggleMode(){let t=this.getMode();[r.MODE_SOURCE,r.MODE_WYSIWYG,this.o.useSplitMode?r.MODE_SPLIT:9].includes(t+1)?t+=1:t=r.MODE_WYSIWYG,this.setMode(t);}setDisabled(t){this.o.disabled=t;const e=this.__wasReadOnly;this.setReadOnly(t||e),this.__wasReadOnly=e,this.editor&&(this.editor.setAttribute("aria-disabled",t.toString()),this.container.classList.toggle("jodit_disabled",t),this.e.fire("disabled",t));}getDisabled(){return this.o.disabled}setReadOnly(t){this.__wasReadOnly!==t&&(this.__wasReadOnly=t,this.o.readonly=t,t?this.editor&&this.editor.removeAttribute("contenteditable"):this.editor&&this.editor.setAttribute("contenteditable","true"),this.e&&this.e.fire("readonly",t));}getReadOnly(){return this.o.readonly}focus(){this.getMode()!==r.MODE_SOURCE&&this.s.focus();}get isFocused(){return this.s.isFocused()}beforeInitHook(){}afterInitHook(){}initOptions(t){this.options=(0, l.ConfigProto)(t||{},h.T.defaultOptions);}initOwners(){this.editorWindow=this.o.ownerWindow,this.ownerWindow=this.o.ownerWindow;}constructor(t,e){super(e,!0),this.isJodit=!0,this.commands=new Map,this.__selectionLocked=null,this.__wasReadOnly=!1,this.editorIsActive=!1,this.__mode=r.MODE_WYSIWYG,this.__callChangeCount=0,this.__isSilentChange=!1,this.__elementToPlace=new Map;try{const e=(0,l.resolveElement)(t,this.o.shadowRoot||this.od);if(o.isJoditAssigned(e))return e.component}catch(t){throw this.destruct(),t}this.setStatus(u.STATUSES.beforeInit),this.id=(0, l.attr)((0, l.resolveElement)(t,this.o.shadowRoot||this.od),"id")||(new Date).getTime().toString(),a.VF[this.id]=this,this.attachEvents(e),this.e.on(this.ow,"resize",(()=>{this.e&&this.e.fire("resize");})),this.e.on("prepareWYSIWYGEditor",this.__prepareWYSIWYGEditor),this.selection=new u.Selection(this);const i=this.beforeInitHook();(0, l.callPromise)(i,(()=>{if(this.isInDestruct)return;this.e.fire("beforeInit",this),a.fg.__init(this),this.e.fire("afterPluginSystemInit",this),this.e.on("changePlace",(()=>{this.setReadOnly(this.o.readonly),this.setDisabled(this.o.disabled);})),this.places.length=0;const i=this.addPlace(t,e);a.VF[this.id]=this,(0, l.callPromise)(i,(()=>{this.isInDestruct||(this.e&&this.e.fire("afterInit",this),(0, l.callPromise)(this.afterInitHook()),this.setStatus(u.STATUSES.ready),this.e.fire("afterConstructor",this));}));}));}addPlace(t,e){const i=(0, l.resolveElement)(t,this.o.shadowRoot||this.od);this.attachEvents(e),i.attributes&&(0, l.toArray)(i.attributes).forEach((t=>{const i=t.name;let o=t.value;void 0===h.T.defaultOptions[i]||e&&void 0!==e[i]||(-1!==["readonly","disabled"].indexOf(i)&&(o=""===o||"true"===o),/^[0-9]+(\.)?([0-9]+)?$/.test(o.toString())&&(o=Number(o)),this.options[i]=o);}));let o=this.c.div("jodit-container");o.classList.add("jodit"),o.classList.add("jodit-container"),o.classList.add(`jodit_theme_${this.o.theme||"default"}`),m(this.o.className,o),this.o.containerStyle&&(0, l.css)(o,this.o.containerStyle);const{styleValues:n}=this.o;Object.keys(n).forEach((t=>{const e=(0, l.kebabCase)(t);o.style.setProperty(`--jd-${e}`,n[t]);})),o.setAttribute("contenteditable","false");let r=null;this.o.inline&&(-1===["TEXTAREA","INPUT"].indexOf(i.nodeName)&&(o=i,i.setAttribute(f,i.className.toString()),r=o.innerHTML,o.innerHTML=""),o.classList.add("jodit_inline"),o.classList.add("jodit-container")),i!==o&&(i.style.display&&i.setAttribute(p,i.style.display),i.style.display="none");const s=this.c.div("jodit-workplace",{contenteditable:!1});o.appendChild(s),i.parentNode&&i!==o&&i.parentNode.insertBefore(o,i),Object.defineProperty(i,"component",{enumerable:!1,configurable:!0,value:this});const a=this.c.div("jodit-wysiwyg",{contenteditable:!0,"aria-disabled":!1,tabindex:this.o.tabIndex});s.appendChild(a);const c={editor:a,element:i,container:o,workplace:s,statusbar:new u.StatusBar(this,o),options:this.isReady?(0, l.ConfigProto)(e||{},h.T.defaultOptions):this.options,history:new u.History(this),editorWindow:this.ow};this.__elementToPlace.set(a,c),this.setCurrentPlace(c),this.places.push(c),this.setNativeEditorValue(this.getElementValue());const d=this.__initEditor(r),g=this.options;return (0, l.callPromise)(d,(()=>{g.enableDragAndDropFileToEditor&&g.uploader&&(g.uploader.url||g.uploader.insertImageAsBase64URI)&&this.uploader.bind(this.editor),this.__elementToPlace.get(this.editor)||this.__elementToPlace.set(this.editor,c),this.e.fire("afterAddPlace",c);}))}addDisclaimer(t){this.workplace.appendChild(t);}setCurrentPlace(t){this.currentPlace!==t&&(this.isEditorMode()||this.setMode(r.MODE_WYSIWYG),this.currentPlace=t,this.buildToolbar(),this.isReady&&this.e.fire("changePlace",t));}__initEditor(t){const e=this.__createEditor();return (0, l.callPromise)(e,(()=>{if(this.isInDestruct)return;if(this.element!==this.container){const t=this.getElementValue();t!==this.getEditorValue()&&this.setEditorValue(t);}else null!=t&&this.setEditorValue(t);let e=this.o.defaultMode;if(this.o.saveModeInStorage){const t=this.storage.get("jodit_default_mode");"string"==typeof t&&(e=parseInt(t,10));}this.setMode(e),this.o.readonly&&(this.__wasReadOnly=!1,this.setReadOnly(!0)),this.o.disabled&&this.setDisabled(!0);try{this.ed.execCommand("defaultParagraphSeparator",!1,this.o.enter.toLowerCase());}catch(t){}}))}__createEditor(){const t=this.editor,e=this.e.fire("createEditor",this);return (0, l.callPromise)(e,(()=>{if(!this.isInDestruct){if((!1===e||(0, l.isPromise)(e))&&u.Dom.safeRemove(t),m(this.o.editorClassName,this.editor),this.o.style&&(0, l.css)(this.editor,this.o.style),this.e.on("synchro",(()=>{this.setEditorValue();})).on("focus",(()=>{this.editorIsActive=!0;})).on("blur",(()=>this.editorIsActive=!1)),this.__prepareWYSIWYGEditor(),this.o.direction){const t="rtl"===this.o.direction.toLowerCase()?"rtl":"ltr";this.container.style.direction=t,this.container.setAttribute("dir",t),this.toolbar.setDirection(t);}this.o.triggerChangeEvent&&this.e.on("change",this.async.debounce((()=>{this.e&&this.e.fire(this.element,"change");}),this.defaultTimeout));}}))}__prepareWYSIWYGEditor(){const{editor:t}=this;if(this.o.direction){const t="rtl"===this.o.direction.toLowerCase()?"rtl":"ltr";this.editor.style.direction=t,this.editor.setAttribute("dir",t);}this.e.on(t,"mousedown touchstart focus",(()=>{const e=this.__elementToPlace.get(t);e&&this.setCurrentPlace(e);})).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",(t=>{if(!this.o.readonly&&!this.__isSilentChange&&!(t instanceof this.ew.KeyboardEvent&&t.isComposing)&&this.e&&this.e.fire){if(!1===this.e.fire(t.type,t))return !1;this.synchronizeValues();}}));}fetch(t,e){const i=new c.d({url:t,...e},this.o.defaultAjaxOptions),o=()=>{this.e.off("beforeDestruct",o),this.progressbar.progress(100).hide(),i.destruct();};this.e.one("beforeDestruct",o),this.progressbar.show().progress(30);const n=i.send();return n.finally(o).catch((()=>null)),n}destruct(){if(this.isInDestruct)return;this.setStatus(u.STATUSES.beforeDestruct),this.__elementToPlace.clear(),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);const t=this.editor?this.getEditorValue():"";this.places.forEach((({container:e,workplace:i,statusbar:o,element:n,iframe:r,editor:s,history:a})=>{if(n){if(n!==e)if(n.hasAttribute(p)){const t=(0, l.attr)(n,p);t&&(n.style.display=t,n.removeAttribute(p));}else n.style.display="";else n.hasAttribute(f)&&(n.className=(0, l.attr)(n,f)||"",n.removeAttribute(f));n.hasAttribute("style")&&!(0, l.attr)(n,"style")&&n.removeAttribute("style"),o.destruct(),this.e.off(e),this.e.off(n),this.e.off(s),u.Dom.safeRemove(i),u.Dom.safeRemove(s),e!==n&&u.Dom.safeRemove(e),Object.defineProperty(n,"component",{enumerable:!1,configurable:!0,value:null}),u.Dom.safeRemove(r),e===n&&(n.innerHTML=t),a.destruct();}})),this.places.length=0,this.currentPlace={},delete a.VF[this.id],super.destruct();}};function m(t,e){t&&t.split(/\s+/).forEach((t=>e.classList.add(t)));}g.fatMode=r.FAT_MODE,g.plugins=a.fg,g.modules=a.av,g.ns=a.av,g.decorators={},g.constants=r,g.instances=a.VF,g.lang=r.lang,g.core={Plugin:u.Plugin},(0, n.Cg)([s.cache],g.prototype,"createInside",null),(0, n.Cg)([s.cache],g.prototype,"message",null),(0, n.Cg)([s.cache],g.prototype,"s",null),(0, n.Cg)([s.cache],g.prototype,"uploader",null),(0, n.Cg)([s.cache],g.prototype,"filebrowser",null),(0, n.Cg)([(0, s.throttle)()],g.prototype,"synchronizeValues",null),(0, n.Cg)([(0, s.watch)(":internalChange")],g.prototype,"updateElementValue",null),(0, n.Cg)([s.autobind],g.prototype,"__prepareWYSIWYGEditor",null),g=o=(0, n.Cg)([(0, s.derive)(d.z)],g);},74470:function(t,e,i){var o=i(37923),n=i(57741),r=i(56014),s=i(95461),a=i(63837),l=i(39386),c=i(62327),d=i(25090),u=i(53113),h=i(81321),p=i(4679),f=i(31927),g=i(21195),m=i(53414),b=i(11012),_=i(87061),v=i(3268),x=i(97834),w=i(86433),y=i(28359),j=i(68368),k=i(25182),C=i(44906);let S={};S={ar:n,cs_cz:r,de:s,en:a,es:l,fi:c,fr:d,he:u,hu:h,id:p,it:f,ja:g,ko:b,mn:_,nl:v,pl:x,pt_br:w,ru:y,tr:j,zh_cn:k,zh_tw:C};const z=t=>t?t.default||t:{},T={};(0, o.c)(z(m))&&z(m).forEach(((t,e)=>{T[e]=t;})),Object.keys(S).forEach((t=>{const e=z(S[t]);(0, o.c)(e)?(S[t]={},e.forEach(((e,i)=>{S[t][T[i]]=e;}))):S[t]=e;})),e.A=S;},34248:function(t,e,i){i.d(e,{t:function(){return l}});var o=i(31635),n=i(24767),r=i(37923),s=i(92032),a=i(80071);let l=class extends a.z{className(){return "ContextMenu"}show(t,e,i){const o=this;o.clear(),(0, r.c)(i)&&(i.forEach((t=>{if(!t)return;const e=(0, s.$n)(this.jodit,t.icon||"empty",t.title);this.jodit&&e.setParentView(this.jodit),e.setMod("context","menu"),e.onAction((e=>{var i;return null===(i=t.exec)||void 0===i||i.call(o,e),o.clear(),o.close(),!1})),this.append(e);})),this.open((()=>({left:t,top:e,width:0,height:0})),!0));}};l=(0, o.Cg)([n.s],l);},5854:function(t,e,i){i.d(e,{F:function(){return l}});var o=i(55186),n=i(82317),r=i(69052),s=i(92032),a=i(58006);function l(t,e,i,l="jodit-dialog_alert"){(0, r.T)(e)&&(i=e,e=void 0);const c=this instanceof a.l?this:new a.l({closeOnClickOverlay:!0}),d=c.c.div(l),u=(0, s.$n)(c,"ok","Ok");return (0, n._)(t).forEach((t=>{d.appendChild(o.J.isNode(t)?t:c.c.fromHTML(t));})),u.onAction((()=>{i&&(0, r.T)(i)&&!1===i(c)||c.close();})),c.setFooter([u]),c.open(d,e||" ",!0,!0),u.focus(),c}},23132:function(t,e,i){i.d(e,{p:function(){return s}});var o=i(69052),n=i(92032),r=i(58006);function s(t,e,i){const s=this instanceof r.l?this:new r.l({closeOnClickOverlay:!0}),a=s.c.fromHTML('<form class="jodit-dialog_prompt"></form>'),l=s.c.element("label");(0, o.T)(e)&&(i=e,e=void 0),l.appendChild(s.c.fromHTML(t)),a.appendChild(l);const c=t=>()=>{i&&!1===i(t)||s.close();},d=(0, n.$n)(s,"cancel","Cancel"),u=(0, n.$n)(s,"ok","Yes");return d.onAction(c(!1)),u.onAction(c(!0)),s.e.on(a,"submit",(()=>(c(!0)(),!1))),s.setFooter([u,d]),s.open(a,e||" ",!0,!0),u.focus(),s}},58006:function(t,e,i){i.d(e,{l:function(){return b}});var o,n=i(31635),r=i(77753),s=i(17352),a=i(22664),l=i(55186),c=i(56298),d=i(32709),u=i(9823),h=i(97369),p=(i(28712),i(53048)),f=i(77782),g=i(14961),m=i(36115);m.T.prototype.dialog={namespace:"",extraButtons:[],resizable:!0,draggable:!0,buttons:["dialog.close"],removeButtons:[],toolbarButtonSize:"middle",zIndex:"inherit"},m.T.prototype.controls.dialog={close:{icon:"cancel",exec:t=>{t.close();}}};let b=o=class extends g.T{className(){return "Dialog"}get destination(){var t;return null!==(t=this.o.shadowRoot)&&void 0!==t?t:this.od.body}setElements(t,e){const i=[];(0, d._j)(e).forEach((e=>{if((0, u.cy)(e)){const o=this.c.div(this.getFullElName("column"));return i.push(o),t.appendChild(o),this.setElements(o,e)}let o;o=(0, u.Kg)(e)?this.c.fromHTML(e):(0, u.kO)(e)?e.container:e,i.push(o),o.parentNode!==t&&t.appendChild(o);})),(0, d.$r)(t.childNodes).forEach((e=>{-1===i.indexOf(e)&&t.removeChild(e);}));}onMouseUp(){(this.draggable||this.resizable)&&(this.removeGlobalResizeListeners(),this.draggable=!1,this.resizable=!1,this.unlockSelect(),this.e&&(this.removeGlobalResizeListeners(),this.e.fire(this,"endResize endMove")));}onHeaderMouseDown(t){const e=t.target;!this.o.draggable||e&&e.nodeName.match(/^(INPUT|SELECT)$/)||(this.draggable=!0,this.startX=t.clientX,this.startY=t.clientY,this.startPoint.x=(0, h.css)(this.dialog,"left"),this.startPoint.y=(0, h.css)(this.dialog,"top"),this.setMaxZIndex(),t.cancelable&&t.preventDefault(),this.lockSelect(),this.addGlobalResizeListeners(),this.e&&(this.e.fire(this,"startMove"),this.e.fire("closeAllPopups")));}onMouseMove(t){this.draggable&&this.o.draggable&&(this.setPosition(this.startPoint.x+t.clientX-this.startX,this.startPoint.y+t.clientY-this.startY),this.e&&this.e.fire(this,"move",t.clientX-this.startX,t.clientY-this.startY),t.stopImmediatePropagation()),this.resizable&&this.o.resizable&&(this.setSize(this.startPoint.w+t.clientX-this.startX,this.startPoint.h+t.clientY-this.startY),this.e&&this.e.fire(this,"resizeDialog",t.clientX-this.startX,t.clientY-this.startY));}onEsc(t){if(this.o.closeOnEsc&&this.isOpened&&t.key===s.KEY_ESC&&!0!==this.getMod("static")){const e=this.getMaxZIndexDialog();e?e.close():this.close(),t.stopImmediatePropagation();}}onResizerMouseDown(t){this.resizable=!0,this.startX=t.clientX,this.startY=t.clientY,this.startPoint.w=this.dialog.offsetWidth,this.startPoint.h=this.dialog.offsetHeight,this.lockSelect(),this.addGlobalResizeListeners(),this.e&&this.e.fire(this,"startResize");}addGlobalResizeListeners(){const t=this;t.e.on(t.ow,"pointermove touchmove",t.onMouseMove).on(t.ow,"pointerup touchend",t.onMouseUp);}removeGlobalResizeListeners(){const t=this;t.e.off(t.ow,"mousemove pointermove",t.onMouseMove).off(t.ow,"mouseup pointerup",t.onMouseUp);}setSize(t,e){return null==t&&(t=this.dialog.offsetWidth),null==e&&(e=this.dialog.offsetHeight),(0, h.css)(this.dialog,{width:t,height:e}),this}calcAutoSize(){return this.setSize("auto","auto"),this.setSize(),this}setPosition(t,e){let i=this.ow.innerWidth/2-this.dialog.offsetWidth/2,o=this.ow.innerHeight/2-this.dialog.offsetHeight/2;return 0>i&&(i=0),0>o&&(o=0),void 0!==t&&void 0!==e&&(this.offsetX=t,this.offsetY=e,this.moved=Math.abs(t-i)>100||Math.abs(e-o)>100),this.dialog.style.left=(t||i)+"px",this.dialog.style.top=(e||o)+"px",this}setHeader(t){return this.setElements(this.dialogbox_header,t),this}setContent(t){return this.setElements(this.dialogbox_content,t),this}setFooter(t){return this.setElements(this.dialogbox_footer,t),this.setMod("footer",Boolean(t)),this}getZIndex(){return parseInt((0, h.css)(this.container,"zIndex"),10)||0}getMaxZIndexDialog(){let t,e,i=0,o=this;return (0, h.$$)(".jodit-dialog",this.destination).forEach((n=>{t=n.component,e=parseInt((0, h.css)(n,"zIndex"),10),t.isOpened&&!isNaN(e)&&e>i&&(o=t,i=e);})),o}setMaxZIndex(){if(this.getMod("static"))return;let t=20000004,e=0;(0, h.$$)(".jodit-dialog",this.destination).forEach((i=>{e=parseInt((0, h.css)(i,"zIndex"),10),t=Math.max(isNaN(e)?0:e,t);})),this.container.style.zIndex=(t+1).toString();}toggleFullSize(t){(0, u.Rd)(t)&&(t=!this.getMod("fullsize")),this.setMod("fullsize",t),super.toggleFullSize(t);}open(t,e,i,o){if(c.RR.fire("closeAllPopups hideHelpers"),!1===this.e.fire(this,"beforeOpen"))return this;(0, u.Lm)(t)&&(i=t),(0, u.Lm)(e)&&(o=e),this.destroyAfterClose=!0===i;const n=(0, u.Lm)(t)?void 0:t,r=(0, u.Lm)(e)?void 0:e;return void 0!==r&&this.setHeader(r),n&&this.setContent(n),this.setMod("active",!0),this.isOpened=!0,this.setModal(o),this.destination.appendChild(this.container),!0!==this.getMod("static")?(this.setPosition(this.offsetX,this.offsetY),this.setMaxZIndex()):this.container.style.removeProperty("z-index"),this.o.fullsize&&this.toggleFullSize(!0),this.e.fire("afterOpen",this),this}setModal(t){return this.isModal=Boolean(t),this.setMod("modal",this.isModal),this}close(){if(this.isDestructed||!this.isOpened||!0===this.getMod("static"))return this;const{e:t}=this;return !1===t.fire(this,"beforeClose")||!1===t.fire("beforeClose",this)||(this.setMod("active",!1),this.isOpened=!1,this.isFullSize&&this.toggleFullSize(!1),l.J.safeRemove(this.container),this.removeGlobalResizeListeners(),t.fire(this,"afterClose"),t.fire(this.ow,"joditCloseDialog"),this.destroyAfterClose&&this.destruct()),this}constructor(t={}){super(t),this.destroyAfterClose=!1,this.moved=!1,this.resizable=!1,this.draggable=!1,this.startX=0,this.startY=0,this.startPoint={x:0,y:0,w:0,h:0},this.lockSelect=()=>{this.setMod("moved",!0);},this.unlockSelect=()=>{this.setMod("moved",!1);},this.onResize=()=>{this.options&&this.o.resizable&&!this.moved&&this.isOpened&&!this.offsetX&&!this.offsetY&&this.setPosition();},this.isModal=!1,this.isOpened=!1;const e=this;e.options=(0, h.ConfigProto)(t,(0, h.ConfigProto)(m.T.prototype.dialog,o.defaultOptions)),l.J.safeRemove(e.container);const i=this.getFullElName.bind(this);e.container=this.c.fromHTML(`<div class="jodit jodit-dialog ${this.componentName}">\n\t\t\t\t<div class="${i("overlay")}"></div>\n\t\t\t\t<div class="${this.getFullElName("panel")}">\n\t\t\t\t\t<div class="${i("header")}">\n\t\t\t\t\t\t<div class="${i("header-title")}"></div>\n\t\t\t\t\t\t<div class="${i("header-toolbar")}"></div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class="${i("content")}"></div>\n\t\t\t\t\t<div class="${i("footer")}"></div>\n\t\t\t\t\t<div class="${i("resizer")}">${p.In.get("resize_handler")}</div>\n\t\t\t\t</div>\n\t\t\t</div>`),this.o.zIndex&&(this.container.style.zIndex=this.o.zIndex.toString()),(0, h.attr)(e.container,"role","dialog"),Object.defineProperty(e.container,"component",{value:this}),e.setMod("theme",e.o.theme||"default").setMod("resizable",Boolean(e.o.resizable));const n=e.getElm("panel"),r=e.getElm("resizer"),s=e.getElm("header-title"),a=e.getElm("content"),d=e.getElm("footer"),f=e.getElm("header-toolbar");this.dialog=n,this.resizer=r,this.dialogbox_header=s,this.dialogbox_content=a,this.dialogbox_footer=d,this.dialogbox_toolbar=f,(0, h.css)(e.dialog,{maxWidth:e.options.maxWidth,minHeight:e.options.minHeight,minWidth:e.options.minWidth});const g=e.getElm("header");g&&e.e.on(g,"pointerdown touchstart",e.onHeaderMouseDown),e.e.on(e.resizer,"mousedown touchstart",e.onResizerMouseDown);const b=c.fg.get("fullsize");if((0, u.Tn)(b)&&b(e),this.e.on(e.container,"close_dialog",e.close).on(this.ow,"keydown",this.onEsc).on(this.ow,"resize",this.onResize),this.o.closeOnClickOverlay){const t=e.getElm("overlay");this.e.on(t,"click",e.close);}}buildToolbar(){this.o.buttons&&this.toolbar.build((0, d.uM)(this.o.buttons)).setMod("mode","header").appendTo(this.dialogbox_toolbar);}destruct(){this.isInDestruct||(this.setStatus(r.f.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)),super.destruct());}};(0, n.Cg)([a.autobind],b.prototype,"onMouseUp",null),(0, n.Cg)([a.autobind],b.prototype,"onHeaderMouseDown",null),(0, n.Cg)([a.autobind],b.prototype,"onMouseMove",null),(0, n.Cg)([a.autobind],b.prototype,"onEsc",null),(0, n.Cg)([a.autobind],b.prototype,"onResizerMouseDown",null),(0, n.Cg)([a.autobind],b.prototype,"close",null),(0, n.Cg)([(0, a.hook)("ready")],b.prototype,"buildToolbar",null),b=o=(0, n.Cg)([a.component],b),b.defaultOptions={...f.S.defaultOptions,closeOnClickOverlay:!1,closeOnEsc:!0};},34256:function(t,e,i){i.d(e,{Fc:function(){return o.F},XG:function(){return s.X},lG:function(){return r.l},pT:function(){return n.p}});var o=i(5854),n=i(23132),r=i(58006),s=i(91560);},91560:function(t,e,i){i.d(e,{X:function(){return a}});var o=i(69052),n=i(26150),r=i(92032),s=i(58006);function a(t,e,i,a,l){const c=this instanceof s.l?this:new s.l({closeOnClickOverlay:!0}),d=(0, r.$n)(c,"cancel","Cancel"),u=(0, r.$n)(c,"ok","Ok"),h=c.c.element("form",{class:"jodit-dialog_prompt"}),p=c.c.element("input",{autofocus:!0,class:"jodit-input"}),f=c.c.element("label");(0, o.T)(e)&&(i=e,e=void 0),a&&(0, n.C)(p,"placeholder",a),f.appendChild(c.c.text(t)),h.appendChild(f),h.appendChild(p),d.onAction(c.close);const g=()=>{i&&(0, o.T)(i)&&!1===i(p.value)||c.close();};return u.onAction(g),c.e.on(h,"submit",(()=>(g(),!1))),c.setFooter([u,d]),c.open(h,e||" ",!0,!0),p.focus(),void 0!==l&&l.length&&(p.value=l,p.select()),c}},49931:function(t,e,i){var o=i(71842),n=i(97369),r=i(931),s=i(77112),a=i(83797),l=i(97324),c=i(31859),d=i(62994),u=i(53804);const h="jodit-file-browser-preview",p=(t="next",e="right")=>`<div class="${h}__navigation ${h}__navigation_arrow_${t}">`+r.I.get("angle-"+e)+"</a>";e.A=t=>{if(!t.o.contextMenu)return ()=>{};const e=(0, a.V)(t);return i=>{const r=(0, d.Gq)(i.target,t.container);if(!r)return;let a=r;const f=t.options,g=t=>(0, n.attr)(a,t)||"";return t.async.setTimeout((()=>{const m=(0, d.PZ)(r,(0, s.a)(t));m&&(t.state.activeElements=[m],e.show(i.clientX,i.clientY,[!("1"===g("data-is-file")||!f.editImage||!t.dataProvider.canI("ImageResize")&&!t.dataProvider.canI("ImageCrop"))&&{icon:"pencil",title:"Edit",exec:()=>u.B.call(t,g("href"),g("data-name"),g("data-path"),g("data-source"))},!!t.dataProvider.canI("FileRename")&&{icon:"italic",title:"Rename",exec:()=>{t.e.fire("fileRename.filebrowser",g("data-name"),g("data-path"),g("data-source"));}},!!t.dataProvider.canI("FileRemove")&&{icon:"bin",title:"Delete",exec:async()=>{try{await(0,l.W)(t,g("data-name"),g("data-source"));}catch(e){return t.status(e)}return t.state.activeElements=[],(0, c.r)(t).catch(t.status)}},!!f.preview&&{icon:"eye",title:"Preview",exec:()=>{const e=t.dlg({buttons:["fullsize","dialog.close"]}),i=t.c.div(h,'<div class="jodit-icon_loader"></div>'),r=t.c.div(h+"__box"),s=t.c.fromHTML(p()),l=t.c.fromHTML(p("prev","left")),c=n=>{const c=t.c.element("img");c.setAttribute("src",n);const d=()=>{var n;t.isInDestruct||(t.e.off(c,"load"),o.J.detach(i),f.showPreviewNavigation&&(o.J.prevWithClass(a,t.files.getFullElName("item"))&&i.appendChild(l),o.J.nextWithClass(a,t.files.getFullElName("item"))&&i.appendChild(s)),i.appendChild(r),r.appendChild(c),e.setPosition(),null===(n=null==t?void 0:t.events)||void 0===n||n.fire("previewOpenedAndLoaded"));};t.e.on(c,"load",d),c.complete&&d();};t.e.on([s,l],"click",(function(){if(a=this===s?o.J.nextWithClass(a,t.files.getFullElName("item")):o.J.prevWithClass(a,t.files.getFullElName("item")),!a)throw (0, n.error)("Need element");o.J.detach(i),o.J.detach(r),i.innerHTML='<div class="jodit-icon_loader"></div>',c(g("href"));})),t.e.on("beforeDestruct",(()=>{e.destruct();})),e.container.classList.add(h+"__dialog"),e.setContent(i),e.setPosition(),e.open(),c(g("href")),t.events.on("beforeDestruct",(()=>{e.destruct();})).fire("previewOpened");}},{icon:"upload",title:"Download",exec:()=>{const e=g("href");e&&t.ow.open(e);}}]));}),t.defaultTimeout),t.e.on("beforeClose",(()=>{e.close();})).on("beforeDestruct",(()=>e.destruct())),i.stopPropagation(),i.preventDefault(),!1}};},77112:function(t,e,i){i.d(e,{a:function(){return n}});const o=new WeakMap,n=t=>{let e=o.get(t);return e||(e={},o.set(t,e)),e};},11133:function(t,e,i){i.d(e,{u:function(){return n}});var o=i(65147);class n{constructor(t){this.data=t,Object.keys(t).forEach((e=>{this[e]=t[e];}));}static create(t){return t instanceof n?t:new n(t)}get path(){return (0, o.normalizePath)(this.data.source.path?this.data.source.path+"/":"/")}get imageURL(){const t=this.time||(new Date).getTime().toString(),{thumbIsAbsolute:e,source:i,thumb:n,file:r}=this.data,s=n||r;return e&&s?s:(0, o.normalizeUrl)(i.baseurl,i.path,s||"")+"?_tmst="+encodeURIComponent(t)}get fileURL(){let{name:t}=this.data;const{file:e,fileIsAbsolute:i,source:n}=this.data;return void 0!==e&&(t=e),i&&t?t:(0, o.normalizeUrl)(n.baseurl,n.path,t||"")}get time(){const{changed:t}=this.data;return t&&("number"==typeof t?new Date(t).toLocaleString():t)||""}get uniqueHashKey(){const t=this.data;let e=[t.sourceName,t.name,t.file,this.time,t.thumb].join("_");return e=e.toLowerCase().replace(/[^0-9a-z\-.]/g,"-"),e}toJSON(){return this.data}}},70265:function(t,e,i){i(27337);var o=i(9823),n=i(99898),r=i(47964),s=i(36115);s.T.prototype.filebrowser={namespace:"",cache:!0,extraButtons:[],filter:(t,e)=>(e=e.toLowerCase(),(0, o.Kg)(t)?-1!==t.toLowerCase().indexOf(e):(0, o.Kg)(t.name)?-1!==t.name.toLowerCase().indexOf(e):!(0, o.Kg)(t.file)||-1!==t.file.toLowerCase().indexOf(e)),sortBy:"changed-desc",sort(t,e,i){const[r,s]=i.toLowerCase().split("-"),a="asc"===s,l=(t,e)=>e>t?a?-1:1:t>e?a?1:-1:0;if((0, o.Kg)(t))return l(t.toLowerCase(),e.toLowerCase());if(void 0===t[r]||"name"===r)return (0, o.Kg)(t.name)?l(t.name.toLowerCase(),e.name.toLowerCase()):(0, o.Kg)(t.file)?l(t.file.toLowerCase(),e.file.toLowerCase()):0;switch(r){case"changed":{const i=new Date(t.changed).getTime(),o=new Date(e.changed).getTime();return a?i-o:o-i}case"size":{const i=(0, n.z)(t.size),o=(0, n.z)(e.size);return a?i-o:o-i}}return 0},editImage:!0,preview:!0,showPreviewNavigation:!0,showSelectButtonInPreview:!0,contextMenu:!0,howLongShowMsg:3e3,createNewFolder:!0,deleteFolder:!0,renameFolder:!0,moveFolder:!0,moveFile:!0,permissionsPresets:{allowFileDownload:void 0,allowFileMove:void 0,allowFileRemove:void 0,allowFileRename:void 0,allowFileUpload:void 0,allowFileUploadRemote:void 0,allowFiles:void 0,allowFolderCreate:void 0,allowFolderMove:void 0,allowFolderRemove:void 0,allowFolderRename:void 0,allowFolderTree:void 0,allowFolders:void 0,allowGeneratePdf:void 0,allowImageCrop:void 0,allowImageResize:void 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:t=>t.success,getMessage:t=>void 0!==t.data.messages&&(0, o.cy)(t.data.messages)?t.data.messages.join(" "):"",showFileName:!0,showFileSize:!0,showFileChangeTime:!0,saveStateInStorage:{storeLastOpenedFolder:!0,storeView:!0,storeSortBy:!0},pixelOffsetLoadNewChunk:200,getThumbTemplate(t,e,i){const o=this.options,n=this.files.getFullElName("item"),r=o.showFileName,s=o.showFileSize&&t.size,a=o.showFileChangeTime&&t.time;let l="";return void 0!==t.file&&(l=t.file),`<a\n\t\t\tdata-jodit-file-browser-item="true"\n\t\t\tdata-is-file="${t.isImage?0:1}"\n\t\t\tdraggable="true"\n\t\t\tclass="${n}"\n\t\t\thref="${t.fileURL}"\n\t\t\tdata-source="${i}"\n\t\t\tdata-path="${t.path}"\n\t\t\tdata-name="${l}"\n\t\t\ttitle="${l}"\n\t\t\tdata-url="${t.fileURL}">\n\t\t\t\t<img\n\t\t\t\t\tdata-is-file="${t.isImage?0:1}"\n\t\t\t\t\tdata-src="${t.fileURL}"\n\t\t\t\t\tsrc="${t.imageURL}"\n\t\t\t\t\talt="${l}"\n\t\t\t\t\tloading="lazy"\n\t\t\t\t/>\n\t\t\t\t${r||s||a?`<div class="${n}-info">${r?`<span class="${n}-info-filename">${l}</span>`:""}${s?`<span class="${n}-info-filesize">${t.size}</span>`:""}${a?`<span class="${n}-info-filechanged">${a}</span>`:""}</div>`:""}\n\t\t\t</a>`},ajax:{...s.T.prototype.defaultAjaxOptions,url:"",data:{},cache:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",method:"POST",processData:!0,headers:{},prepareData:t=>t,process:t=>t},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"}}},s.T.prototype.controls.filebrowser={upload:{icon:"plus",isInput:!0,isDisabled:t=>!t.dataProvider.canI("FileUpload"),getContent:t=>{const e=new r.n(t,{onlyImages:t.state.onlyImages});return t.e.fire("bindUploader.filebrowser",e.container),e.container}},remove:{icon:"bin",isDisabled:t=>!t.state.activeElements.length||!t.dataProvider.canI("FileRemove"),exec:t=>{t.e.fire("fileRemove.filebrowser");}},update:{exec:t=>{t.e.fire("update.filebrowser");}},select:{icon:"check",isDisabled:t=>!t.state.activeElements.length,exec:t=>{t.e.fire("select.filebrowser");}},edit:{icon:"pencil",isDisabled:t=>{const e=t.state.activeElements;return 1!==e.length||!e[0].isImage||!(t.dataProvider.canI("ImageCrop")||t.dataProvider.canI("ImageResize"))},exec:t=>{t.e.fire("edit.filebrowser");}},tiles:{icon:"th",isActive:t=>"tiles"===t.state.view,exec:t=>{t.e.fire("view.filebrowser","tiles");}},list:{icon:"th-list",isActive:t=>"list"===t.state.view,exec:t=>{t.e.fire("view.filebrowser","list");}},filter:{isInput:!0,getContent:(t,e)=>{const i=e.container.querySelector(".jodit-input");if(i)return i;const o=t.c.element("input",{class:"jodit-input",placeholder:t.i18n("Filter")});return o.value=t.state.filterWord,t.e.on(o,"keydown mousedown",t.async.debounce((()=>{t.e.fire("filter.filebrowser",o.value);}),t.defaultTimeout)),o}},sort:{isInput:!0,getContent:t=>{const e=t.c.fromHTML(`<select class="jodit-input jodit-select"><option value="changed-asc">${t.i18n("Sort by changed")} (⬆)</option><option value="changed-desc">${t.i18n("Sort by changed")} (⬇)</option><option value="name-asc">${t.i18n("Sort by name")} (⬆)</option><option value="name-desc">${t.i18n("Sort by name")} (⬇)</option><option value="size-asc">${t.i18n("Sort by size")} (⬆)</option><option value="size-desc">${t.i18n("Sort by size")} (⬇)</option></select>`);return e.value=t.state.sortBy,t.e.on("sort.filebrowser",(t=>{e.value!==t&&(e.value=t);})).on(e,"change",(()=>{t.e.fire("sort.filebrowser",e.value);})),e}}};},75889:function(t,e,i){i.d(e,{o:function(){return c}});var o=i(31635),n=i(17352),r=i(22664),s=i(65147),a=i(53883),l=i(11133);const c="default",d=new Set(["allowFiles","allowFileMove","allowFileUpload","allowFileUploadRemote","allowFileRemove","allowFileRename","allowFolders","allowFolderMove","allowFolderCreate","allowFolderRemove","allowFolderRename","allowImageResize","allowImageCrop"]);let u=class{constructor(t,e){this.parent=t,this.options=e,this.__currentPermissions=null,this.__ajaxInstances=new Map,this.progressHandler=t=>{};}get o(){return this.options}get(t){const e=this.__ajaxInstances;if(e.has(t)){const i=e.get(t);null==i||i.abort(),e.delete(t);}const i=(0, s.ConfigProto)(void 0!==this.options[t]?this.options[t]:{},(0, s.ConfigProto)({onProgress:this.progressHandler},this.o.ajax));i.prepareData&&(i.data=i.prepareData.call(this,i.data));const o=new a.d(i);e.set(t,o);const n=o.send();return n.finally((()=>{o.destruct(),e.delete(t),this.progressHandler(100);})).catch((()=>null)),n.then((t=>t.json())).then((t=>{if(t&&!this.isSuccess(t))throw new Error(this.getMessage(t));return t}))}onProgress(t){this.progressHandler=t;}async permissions(t,e){return this.o.permissions?(this.o.permissions.data.path=t,this.o.permissions.data.source=e,this.o.permissions.url?this.get("permissions").then((t=>{if(this.parent.isInDestruct)throw (0, s.abort)();let e=this.o.permissions.process;if(e||(e=this.o.ajax.process),e){const i=e.call(self,t);i.data.permissions&&(this.parent.events.fire(this,"changePermissions",this.__currentPermissions,i.data.permissions),this.__currentPermissions=i.data.permissions);}return this.__currentPermissions})):null):null}canI(t){const e="allow"+t;if(!n.IS_PROD&&!d.has(e))throw (0, s.error)("Wrong action "+t);const i=this.o.permissionsPresets[e];return void 0!==i?i:null==this.__currentPermissions||void 0===this.__currentPermissions[e]||this.__currentPermissions[e]}__items(t,e,i,o){const n=this.options;return n.items?(n.items.data.path=t,n.items.data.source=e,n.items.data.mods=i,this.get("items").then((t=>{let e=this.o.items.process;return e||(e=this.o.ajax.process),e&&(t=e.call(self,t)),o(t)}))):Promise.reject(Error("Set Items api options"))}items(t,e,i={}){return this.__items(t,e,i,(t=>this.generateItemsList(t.data.sources,i)))}itemsEx(t,e,i={}){return this.__items(t,e,i,(t=>{return {items:this.generateItemsList(t.data.sources,i),loadedTotal:(e=t.data.sources,e.reduce(((t,e)=>t+e.files.length),0))};var e;}))}generateItemsList(t,e={}){const i=[],o=t=>{var i;return !(null===(i=e.filterWord)||void 0===i?void 0:i.length)||void 0===this.o.filter||this.o.filter(t,e.filterWord)};return t.forEach((t=>{if(t.files&&t.files.length){const{sort:n}=this.o;(0, s.isFunction)(n)&&e.sortBy&&t.files.sort(((t,i)=>n(t,i,e.sortBy))),t.files.forEach((n=>{o(n)&&(t=>"folder"===t.type||!e.onlyImages||void 0===t.isImage||t.isImage)(n)&&i.push(l.u.create({...n,sourceName:t.name,source:t}));}));}})),i}async tree(t,e){return t=(0, s.normalizeRelativePath)(t),this.o.folder?(await this.permissions(t,e),this.o.folder.data.path=t,this.o.folder.data.source=e,this.get("folder").then((t=>{let e=this.o.folder.process;return e||(e=this.o.ajax.process),e&&(t=e.call(self,t)),t.data.sources}))):Promise.reject(Error("Set Folder Api options"))}getPathByUrl(t){return (0, s.set)("options.getLocalFileByUrl.data.url",t,this),this.get("getLocalFileByUrl").then((t=>{if(this.isSuccess(t))return t.data;throw (0, s.error)(this.getMessage(t))}))}createFolder(t,e,i){const{create:o}=this.o;if(!o)throw (0, s.error)("Set Create api options");return o.data.source=i,o.data.path=e,o.data.name=t,this.get("create").then((t=>{if(this.isSuccess(t))return !0;throw (0, s.error)(this.getMessage(t))}))}move(t,e,i,o){const n=o?"fileMove":"folderMove",r=this.options[n];if(!r)throw (0, s.error)("Set Move api options");return r.data.from=t,r.data.path=e,r.data.source=i,this.get(n).then((t=>{if(this.isSuccess(t))return !0;throw (0, s.error)(this.getMessage(t))}))}remove(t,e,i,o){const n=this.o[t];if(!n)throw (0, s.error)(`Set "${t}" api options`);return n.data.path=e,n.data.name=i,n.data.source=o,this.get(t).then((t=>(n.process&&(t=n.process.call(this,t)),this.getMessage(t))))}fileRemove(t,e,i){return this.remove("fileRemove",t,e,i)}folderRemove(t,e,i){return this.remove("folderRemove",t,e,i)}rename(t,e,i,o,n){const r=this.o[t];if(!r)throw (0, s.error)(`Set "${t}" api options`);return r.data.path=e,r.data.name=i,r.data.newname=o,r.data.source=n,this.get(t).then((t=>(r.process&&(t=r.process.call(self,t)),this.getMessage(t))))}folderRename(t,e,i,o){return this.rename("folderRename",t,e,i,o)}fileRename(t,e,i,o){return this.rename("fileRename",t,e,i,o)}changeImage(t,e,i,o,n,r){this.o[t]||(this.o[t]={data:{}});const s=this.o[t];return void 0===s.data&&(s.data={action:t}),s.data.newname=n||o,r&&(s.data.box=r),s.data.path=e,s.data.name=o,s.data.source=i,this.get(t).then((()=>!0))}crop(t,e,i,o,n){return this.changeImage("crop",t,e,i,o,n)}resize(t,e,i,o,n){return this.changeImage("resize",t,e,i,o,n)}getMessage(t){return this.options.getMessage(t)}isSuccess(t){return this.options.isSuccess(t)}destruct(){this.__ajaxInstances.forEach((t=>t.destruct())),this.__ajaxInstances.clear();}};u=(0, o.Cg)([r.autobind],u),e.A=u;},83797:function(t,e,i){i.d(e,{S:function(){return r},V:function(){return s}});var o=i(34248),n=i(75889);function r(t,e){return new n.A(t,e)}function s(t){return new o.t(t)}},97324:function(t,e,i){function o(t,e,i){return t.dataProvider.fileRemove(t.state.currentPath,e,i).then((i=>{t.status(i||t.i18n('File "%s" was deleted',e),!0);})).catch(t.status)}i.d(e,{W:function(){return o}});},9979:function(t,e,i){function o(t){return t.files.setMod("active",!0),t.files.setMod("loading",!0),t.dataProvider.items(t.state.currentPath,t.state.currentSource,{sortBy:t.state.sortBy,onlyImages:t.state.onlyImages,filterWord:t.state.filterWord}).then((e=>{e&&(t.state.elements=e,t.state.activeElements=[]);})).catch(t.status).finally((()=>t.files.setMod("loading",!1)))}i.d(e,{f:function(){return o}});},31859:function(t,e,i){i.d(e,{r:function(){return r}});var o=i(71842),n=i(9979);async function r(t){t.tree.setMod("active",!0),o.J.detach(t.tree.container);const e=(0, n.f)(t);if(t.o.showFoldersPanel){t.tree.setMod("loading",!0);const i=t.dataProvider.tree(t.state.currentPath,t.state.currentSource).then((e=>{t.state.sources=e;})).catch(t.status).finally((()=>t.tree.setMod("loading",!1)));return Promise.all([i,e])}return t.tree.setMod("active",!1),e}},140:function(t,e,i){i.d(e,{V:function(){return y}});var o=i(31635),n=i(77753),r=i(17352),s=i(22664),a=i(66927),l=i(50025),c=i(65147),d=i(63915),u=i(58597),h=i(14961),p=(i(70265),i(9979)),f=i(31859),g=i(62994),m=i(18043),b=i(80004),_=i(75889),v=i(83797),x=i(10274),w=i(36115);let y=class extends h.T{className(){return "FileBrowser"}get dataProvider(){return (0, v.S)(this,this.options)}onSelect(t){return ()=>{if(this.state.activeElements.length){const e=[],i=[];this.state.activeElements.forEach((t=>{const o=t.fileURL;o&&(e.push(o),i.push(t.isImage||!1));})),this.close();const o={baseurl:"",files:e,isImages:i};(0, c.isFunction)(t)&&t(o),this.close();}return !1}}get _dialog(){var t;const e=this.dlg({minWidth:Math.min(700,screen.width),minHeight:300,buttons:null!==(t=this.o.headerButtons)&&void 0!==t?t:["fullsize","dialog.close"]});return ["beforeClose","afterClose","beforeOpen"].forEach((t=>e.events.on(e,t,(()=>this.e.fire(t))))),e.setSize(this.o.width,this.o.height),e}get storage(){return d.wc.makeStorage(Boolean(this.o.saveStateInStorage),this.componentName)}get isOpened(){return this._dialog.isOpened&&"none"!==this.browser.style.display}status(t,e){t&&!(0, c.isAbortError)(t)&&((0, c.isString)(t)||(t=t.message),(0, c.isString)(t)&&(0, c.trim)(t).length&&this.message.message(t,e?"success":"error",this.o.howLongShowMsg));}open(t=this.o.defaultCallback,e=!1){return this.state.onlyImages=e,this.async.promise(((e,i)=>{var o;if(!this.o.items||!this.o.items.url)throw (0, c.error)("Need set options.filebrowser.ajax.url");let n=0;this.e.off(this.files.container,"dblclick").on(this.files.container,"dblclick",this.onSelect(t)).on(this.files.container,"touchstart",(()=>{const e=(new Date).getTime();r.EMULATE_DBLCLICK_TIMEOUT>e-n&&this.onSelect(t)(),n=e;})).off("select.filebrowser").on("select.filebrowser",this.onSelect(t));const s=this.c.div();null===(o=this.toolbar)||void 0===o||o.appendTo(s),this.__updateToolbarButtons(),this._dialog.open(this.browser,s),this.e.fire("sort.filebrowser",this.state.sortBy),(0, f.r)(this).then(e,i).finally((()=>{var t;this.isInDestruct||null===(t=null==this?void 0:this.e)||void 0===t||t.fire("fileBrowserReady.filebrowser");}));})).catch((t=>{if(!(0, c.isAbortError)(t)&&!r.IS_PROD)throw t}))}__getButtons(){var t;return (null!==(t=this.o.buttons)&&void 0!==t?t:[]).filter((t=>{if(!(0, c.isString)(t))return !0;switch(t){case"filebrowser.upload":return this.dataProvider.canI("FileUpload");case"filebrowser.edit":return this.dataProvider.canI("ImageResize")||this.dataProvider.canI("ImageCrop");case"filebrowser.remove":return this.dataProvider.canI("FileRemove")}return !0}))}initUploader(t){var e;const i=this,o=null===(e=null==t?void 0:t.options)||void 0===e?void 0:e.uploader,n=(0, c.ConfigProto)(o||{},w.T.defaultOptions.uploader),r=()=>(0, p.f)(this);i.uploader=i.getInstance("Uploader",n),i.uploader.setPath(i.state.currentPath).setSource(i.state.currentSource).bind(i.browser,r,i.errorHandler),this.state.on(["change.currentPath","change.currentSource"],(()=>{this.uploader.setPath(this.state.currentPath).setSource(this.state.currentSource);})),i.e.on("bindUploader.filebrowser",(t=>{i.uploader.bind(t,r,i.errorHandler);}));}constructor(t){super(t),this.browser=this.c.div(this.componentName),this.status_line=this.c.div(this.getFullElName("status")),this.tree=new x.V(this),this.files=new x.Q(this),this.state=(0, l.sH)({currentPath:"",currentSource:_.o,currentBaseUrl:"",activeElements:[],elements:[],sources:[],view:"tiles",sortBy:"changed-desc",filterWord:"",onlyImages:!1}),this.errorHandler=t=>{(0, c.isAbortError)(t)||(t instanceof Error?this.status(this.i18n(t.message)):this.status(this.dataProvider.getMessage(t)));},this.close=()=>{this._dialog.close();},this.__prevButtons=[],this.attachEvents(t);const e=this;e.options=(0, c.ConfigProto)(t||{},w.T.defaultOptions.filebrowser),e.browser.component=this,e.container=e.browser,e.o.showFoldersPanel&&e.browser.appendChild(e.tree.container),e.browser.appendChild(e.files.container),e.browser.appendChild(e.status_line),m.c.call(e),g.nW.call(e),b.r.call(e),["getLocalFileByUrl","crop","resize","create","fileMove","folderMove","fileRename","folderRename","fileRemove","folderRemove","folder","items","permissions"].forEach((t=>{null!=this.options[t]&&(this.options[t]=(0, c.ConfigProto)(this.options[t],this.o.ajax));}));const{storeView:i,storeSortBy:o,storeLastOpenedFolder:r}=this.o.saveStateInStorage||{storeLastOpenedFolder:!1,storeView:!1,storeSortBy:!1},s=i&&this.storage.get("view");e.state.view=s&&null==this.o.view?"list"===s?"list":"tiles":"list"===e.o.view?"list":"tiles",e.files.setMod("view",e.state.view);const a=o&&e.storage.get("sortBy");if(a){const t=a.split("-");e.state.sortBy=["changed","name","size"].includes(t[0])?a:"changed-desc";}else e.state.sortBy=e.o.sortBy||"changed-desc";if(r){const t=e.storage.get("currentPath"),i=e.storage.get("currentSource");e.state.currentPath=null!=t?t:"",e.state.currentSource=null!=i?i:"";}e.initUploader(e),e.setStatus(n.f.ready);}destruct(){this.isInDestruct||(super.destruct(),this._dialog.destruct(),this.events&&this.e.off(".filebrowser"),this.uploader&&this.uploader.destruct());}__updateToolbarButtons(){var t;const e=this.__getButtons();(function(t,e){if(t.length!==e.length)return !1;for(let i=0;t.length>i;i++)if(t[i]!==e[i])return !1;return !0})(this.__prevButtons,e)||(this.__prevButtons=e,null===(t=this.toolbar)||void 0===t||t.build(e));}};(0, o.Cg)([s.cache],y.prototype,"dataProvider",null),(0, o.Cg)([s.cache],y.prototype,"_dialog",null),(0, o.Cg)([s.cache],y.prototype,"storage",null),(0, o.Cg)([s.autobind],y.prototype,"status",null),(0, o.Cg)([s.autobind],y.prototype,"open",null),(0, o.Cg)([(0, a.w)("dataProvider:changePermissions")],y.prototype,"__updateToolbarButtons",null),y=(0, o.Cg)([(0, s.derive)(u.z)],y);},19627:function(t,e,i){i.d(e,{V:function(){return o.V}});var o=i(140);},62994:function(t,e,i){i.d(e,{Gq:function(){return l},PZ:function(){return c},nW:function(){return d}});var o=i(71842),n=i(65147),r=i(49931),s=i(77112),a=i(31859);const l=(t,e,i="a")=>o.J.closest(t,(t=>o.J.isTag(t,i)),e),c=(t,e)=>{const{key:i}=t.dataset,{item:o}=e[i||""];return o};function d(){let t=!1;const e=(0, s.a)(this),i=this;i.e.on(i.tree.container,"dragstart",(e=>{const o=l(e.target,i.container);o&&i.o.moveFolder&&(t=o);})).on(i.tree.container,"drop",(e=>{if((i.o.moveFile||i.o.moveFolder)&&t){let o=(0, n.attr)(t,"-path")||"";if(!i.o.moveFolder&&t.classList.contains(this.tree.getFullElName("item")))return !1;if(t.classList.contains(this.files.getFullElName("item"))&&(o+=(0, n.attr)(t,"-name"),!i.o.moveFile))return !1;const r=l(e.target,i.container);if(!r)return;i.dataProvider.move(o,(0, n.attr)(r,"-path")||"",(0, n.attr)(r,"-source")||"",t.classList.contains(this.files.getFullElName("item"))).then((()=>(0, a.r)(this))).catch(i.status),t=!1;}})).on(i.files.container,"contextmenu",(0, r.A)(i)).on(i.files.container,"click",(t=>{(0, n.ctrlKey)(t)||(this.state.activeElements=[]);})).on(i.files.container,"click",(t=>{const o=l(t.target,i.container);if(!o)return;const r=c(o,e);return r?(i.state.activeElements=(0, n.ctrlKey)(t)?[...i.state.activeElements,r]:[r],t.stopPropagation(),!1):void 0})).on(i.files.container,"dragstart",(e=>{if(i.o.moveFile){const o=l(e.target,i.container);if(!o)return;t=o;}})).on(i.container,"drop",(t=>t.preventDefault()));}},18043:function(t,e,i){i.d(e,{c:function(){return d}});var o=i(65147),n=i(9823),r=i(75889),s=i(97324),a=i(9979),l=i(31859),c=i(53804);function d(){const t=this.state,e=this.dataProvider,i=this;i.e.on("view.filebrowser",(e=>{e!==t.view&&(t.view=e);})).on("sort.filebrowser",(e=>{e!==t.sortBy&&(t.sortBy=e,(0, a.f)(i));})).on("filter.filebrowser",(e=>{e!==t.filterWord&&(t.filterWord=e,(0, a.f)(i));})).on("openFolder.filebrowser",(t=>{let e;e=".."===t.name?t.path.split("/").filter((t=>t.length)).slice(0,-1).join("/"):(0, o.normalizePath)(t.path,t.name),i.state.currentPath=e,i.state.currentSource="."===t.name?r.o:t.source;})).on("removeFolder.filebrowser",(t=>{i.confirm("Are you sure?","Delete",(o=>{o&&e.folderRemove(t.path,t.name,t.source).then((t=>(i.status(t,!0),(0, l.r)(i)))).catch(i.status);}));})).on("renameFolder.filebrowser",(t=>{i.prompt("Enter new name","Rename",(o=>{if(!(0, n.uV)(o))return i.status(i.i18n("Enter new name")),!1;e.folderRename(t.path,t.name,o,t.source).then((t=>(i.state.activeElements=[],i.status(t,!0),(0, l.r)(i)))).catch(i.status);}),"type name",t.name);})).on("addFolder.filebrowser",(t=>{i.prompt("Enter Directory name","Create directory",(o=>{e.createFolder(o,t.path,t.source).then((()=>(0, l.r)(i))).catch(i.status);}),"type name");})).on("fileRemove.filebrowser",(()=>{i.state.activeElements.length&&i.confirm("Are you sure?","",(t=>{if(t){const t=[];i.state.activeElements.forEach((e=>{t.push((0, s.W)(i,e.file||e.name||"",e.sourceName));})),i.state.activeElements=[],Promise.all(t).then((()=>(0, l.r)(i).catch(i.status)),i.status);}}));})).on("edit.filebrowser",(()=>{if(1===i.state.activeElements.length){const[t]=this.state.activeElements;c.B.call(i,t.fileURL,t.file||"",t.path,t.sourceName);}})).on("fileRename.filebrowser",((t,o,r)=>{1===i.state.activeElements.length&&i.prompt("Enter new name","Rename",(s=>{if(!(0, n.uV)(s))return i.status(i.i18n("Enter new name")),!1;e.fileRename(o,t,s,r).then((t=>{i.state.activeElements=[],i.status(t,!0),(0, a.f)(i);})).catch(i.status);}),"type name",t);})).on("update.filebrowser",(()=>{(0, l.r)(this).then(this.status,this.status);}));}},80004:function(t,e,i){i.d(e,{r:function(){return c}});var o=i(71842),n=i(65499),r=i(92032),s=i(77112),a=i(31859);const l="default";function c(){const t=(0, s.a)(this),{state:e,files:i,create:c,options:d}=this,u=e=>{const i=e.uniqueHashKey;if(t[i])return t[i].elm;const o=c.fromHTML(d.getThumbTemplate.call(this,e,e.source,e.sourceName.toString()));return o.dataset.key=i,t[i]={item:e,elm:o},t[i].elm};e.on(["change.currentPath","change.currentSource"],this.async.debounce((()=>{this.o.saveStateInStorage&&this.o.saveStateInStorage.storeLastOpenedFolder&&this.storage.set("currentPath",this.state.currentPath).set("currentSource",this.state.currentSource),(0, a.r)(this).catch(this.status);}),this.defaultTimeout)).on("beforeChange.activeElements",(()=>{e.activeElements.forEach((e=>{const o=e.uniqueHashKey,{elm:n}=t[o];n&&n.classList.remove(i.getFullElName("item","active",!0));}));})).on("change.activeElements",(()=>{this.e.fire("changeSelection"),e.activeElements.forEach((e=>{const o=e.uniqueHashKey,{elm:n}=t[o];n&&n.classList.add(i.getFullElName("item","active",!0));}));})).on("change.view",(()=>{i.setMod("view",e.view),this.o.saveStateInStorage&&this.o.saveStateInStorage.storeView&&this.storage.set("view",e.view);})).on("change.sortBy",(()=>{this.o.saveStateInStorage&&this.o.saveStateInStorage.storeSortBy&&this.storage.set("sortBy",e.sortBy);})).on("change.elements",this.async.debounce((()=>{o.J.detach(i.container),e.elements.length?e.elements.forEach((t=>{this.files.container.appendChild(u(t));})):i.container.appendChild(c.div(this.componentName+"_no-files_true",this.i18n("There are no files")));}),this.defaultTimeout)).on("change.sources",this.async.debounce((()=>{o.J.detach(this.tree.container),e.sources.forEach((t=>{const e=t.name;if(e&&e!==l&&this.tree.container.appendChild(c.div(this.tree.getFullElName("source-title"),e)),t.folders.forEach((i=>{const o=c.a(this.tree.getFullElName("item"),{draggable:"draggable",href:"#","data-path":(0, n.Fd)(t.path,i+"/"),"data-name":i,"data-source":e,"data-source-path":t.path},c.span(this.tree.getFullElName("item-title"),i)),s=o=>r=>{this.e.fire(`${o}.filebrowser`,{name:i,path:(0, n.Fd)(t.path+"/"),source:e}),r.stopPropagation(),r.preventDefault();};if(this.e.on(o,"click",s("openFolder")),this.tree.container.appendChild(o),".."!==i&&"."!==i){if(d.renameFolder&&this.dataProvider.canI("FolderRename")){const t=(0, r.$n)(this,{icon:{name:"pencil"},name:"rename",tooltip:"Rename",size:"tiny"});t.onAction(s("renameFolder")),o.appendChild(t.container);}if(d.deleteFolder&&this.dataProvider.canI("FolderRemove")){const t=(0, r.$n)(this,{icon:{name:"cancel"},name:"remove",tooltip:"Delete",size:"tiny"});t.onAction(s("removeFolder")),o.appendChild(t.container);}}})),d.createNewFolder&&this.dataProvider.canI("FolderCreate")){const i=(0, r.$n)(this,"plus","Add folder","secondary");i.onAction((()=>{this.e.fire("addFolder",{path:(0, n.Fd)(t.path+"/"),source:e});})),this.tree.append(i);}}));}),this.defaultTimeout));}},96025:function(t,e,i){i.d(e,{Q:function(){return n}});var o=i(53048);class n extends o.Ue{className(){return "FileBrowserFiles"}}},10274:function(t,e,i){i.d(e,{Q:function(){return o.Q},V:function(){return n.V}});var o=i(96025),n=i(73307);},73307:function(t,e,i){i.d(e,{V:function(){return n}});var o=i(53048);class n extends o.Ue{className(){return "FileBrowserTree"}}},84345:function(t,e,i){i.d(e,{u:function(){return o}});class o{undo(){this.history.snapshot.restore(this.oldValue);}redo(){this.history.snapshot.restore(this.newValue);}constructor(t,e,i,o){this.oldValue=t,this.newValue=e,this.history=i,this.tick=o;}}},69996:function(t,e,i){i.d(e,{B:function(){return c}});var o=i(31635),n=i(77753),r=i(22664),s=i(84345),a=i(58770),l=i(66180);i(36115).T.prototype.history={enable:!0,maxHistoryLength:1/0,timeout:1e3};class c extends n.vG{className(){return "History"}redo(){this.__stack.redo()&&(this.startValue=this.snapshot.make(),this.fireChangeStack());}canRedo(){return this.__stack.canRedo()}undo(){this.__stack.undo()&&(this.startValue=this.snapshot.make(),this.fireChangeStack());}canUndo(){return this.__stack.canUndo()}clear(){this.startValue=this.snapshot.make(),this.__stack.clear(),this.fireChangeStack();}get length(){return this.__stack.length}get startValue(){return this.__startValue}set startValue(t){this.__startValue=t;}constructor(t,e=new l.B(t.o.history.maxHistoryLength),i=new a.F(t)){super(t),this.updateTick=0,this.__stack=e,this.snapshot=i,t.o.history.enable&&t.e.on("afterAddPlace.history",(()=>{this.isInDestruct||(this.startValue=this.snapshot.make(),t.events.on("internalChange internalUpdate",(()=>{this.startValue=this.snapshot.make();})).on(t.editor,["changeSelection","selectionstart","selectionchange","mousedown","mouseup","keydown","keyup"].map((t=>t+".history")).join(" "),(()=>{this.startValue.html===this.j.getNativeEditorValue()&&(this.startValue=this.snapshot.make());})).on(this,"change.history",this.onChange));}));}__upTick(){this.updateTick+=1;}onChange(){this.__processChanges();}__processChanges(){!this.snapshot.isBlocked&&this.j.o.history.enable&&this.updateStack();}updateStack(t=!1){const e=this.snapshot.make();if(!a.F.equal(e,this.startValue)){const i=new s.u(this.startValue,e,this,this.updateTick);if(t){const t=this.__stack.current();t&&this.updateTick===t.tick&&this.__stack.replace(i);}else this.__stack.push(i);this.startValue=e,this.fireChangeStack();}}fireChangeStack(){var t;this.j&&!this.j.isInDestruct&&(null===(t=this.j.events)||void 0===t||t.fire("changeStack"));}destruct(){this.isInDestruct||(this.j.events&&this.j.e.off(".history"),this.snapshot.destruct(),super.destruct());}}(0, o.Cg)([(0, r.debounce)()],c.prototype,"onChange",null);},58770:function(t,e,i){i.d(e,{F:function(){return s}});var o=i(77753),n=i(17352),r=i(71842);class s extends o.vG{constructor(){super(...arguments),this.__isBlocked=!1;}className(){return "Snapshot"}static equal(t,e){return t.html===e.html&&JSON.stringify(t.range)===JSON.stringify(e.range)}static countNodesBeforeInParent(t){if(!t.parentNode)return 0;const e=t.parentNode.childNodes;let i=0,o=null;for(let n=0;e.length>n;n+=1){if(!o||this.isIgnoredNode(e[n])||r.J.isText(o)&&r.J.isText(e[n])||(i+=1),e[n]===t)return i;o=e[n];}return 0}static strokeOffset(t,e){for(;r.J.isText(t);)r.J.isText(t=t.previousSibling)&&t.nodeValue&&(e+=t.nodeValue.length);return e}calcHierarchyLadder(t){const e=[];if(!t||!t.parentNode||!r.J.isOrContains(this.j.editor,t))return [];for(;t&&t!==this.j.editor;)t&&!s.isIgnoredNode(t)&&e.push(s.countNodesBeforeInParent(t)),t=t.parentNode;return e.reverse()}getElementByLadder(t){let e,i=this.j.editor;for(e=0;i&&t.length>e;e+=1)i=i.childNodes[t[e]];return i}get isBlocked(){return this.__isBlocked}__block(t){this.__isBlocked=t;}transaction(t){this.__block(!0);try{t();}catch(t){if(!n.IS_PROD)throw t}this.__block(!1);}make(){const t={html:"",range:{startContainer:[],startOffset:0,endContainer:[],endOffset:0}};t.html=this.removeJoditSelection(this.j.editor);const e=this.j.s.sel;if(e&&e.rangeCount){const i=e.getRangeAt(0),o=this.calcHierarchyLadder(i.startContainer),n=this.calcHierarchyLadder(i.endContainer);let r=s.strokeOffset(i.startContainer,i.startOffset),a=s.strokeOffset(i.endContainer,i.endOffset);o.length||i.startContainer===this.j.editor||(r=0),n.length||i.endContainer===this.j.editor||(a=0),t.range={startContainer:o,startOffset:r,endContainer:n,endOffset:a};}return t}restore(t){this.transaction((()=>{const e=this.storeScrollState();this.j.getNativeEditorValue()!==t.html&&(this.j.value=t.html),this.restoreOnlySelection(t),this.restoreScrollState(e);}));}storeScrollState(){return [this.j.ow.scrollY,this.j.editor.scrollTop]}restoreScrollState(t){const{j:e}=this,{ow:i}=e;i.scrollTo(i.scrollX,t[0]),e.editor.scrollTop=t[1];}restoreOnlySelection(t){try{if(t.range){const e=this.j.ed.createRange();e.setStart(this.getElementByLadder(t.range.startContainer),t.range.startOffset),e.setEnd(this.getElementByLadder(t.range.endContainer),t.range.endOffset),this.j.s.selectRange(e);}}catch(t){this.j.editor.lastChild&&this.j.s.setCursorAfter(this.j.editor.lastChild);}}destruct(){this.__block(!1),super.destruct();}static isIgnoredNode(t){return r.J.isText(t)&&!t.nodeValue||r.J.isTemporary(t)}removeJoditSelection(t){const e=t.cloneNode(!0);return e.querySelectorAll(`[${n.TEMP_ATTR}]`).forEach(r.J.unwrap),e.innerHTML}}},66180:function(t,e,i){i.d(e,{B:function(){return o}});class o{constructor(t){this.size=t,this.commands=[],this.stackPosition=-1;}get length(){return this.commands.length}clearRedo(){this.commands.length=this.stackPosition+1;}clear(){this.commands.length=0,this.stackPosition=-1;}push(t){this.clearRedo(),this.commands.push(t),this.stackPosition+=1,this.commands.length>this.size&&(this.commands.shift(),this.stackPosition-=1);}replace(t){this.commands[this.stackPosition]=t;}current(){return this.commands[this.stackPosition]}undo(){return !!this.canUndo()&&(this.commands[this.stackPosition]&&this.commands[this.stackPosition].undo(),this.stackPosition-=1,!0)}redo(){return !!this.canRedo()&&(this.stackPosition+=1,this.commands[this.stackPosition]&&this.commands[this.stackPosition].redo(),!0)}canUndo(){return this.stackPosition>=0}canRedo(){return this.commands.length-1>this.stackPosition}}},93027:function(t,e,i){var o=i(931),n=i(928),r=i.n(n),s=i(31230),a=i.n(s);i(36115).T.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%"},o.I.set("crop",r()).set("resize",a());},53804:function(t,e,i){i.d(e,{B:function(){return m},n:function(){return g}});var o,n=i(31635),r=i(77753),s=i(22664),a=i(71842),l=i(65147),c=i(35265),d=(i(93027),i(24863)),u=i(36115);const h="jodit-image-editor",p="resize",f="crop";let g=o=class extends r.vG{className(){return "ImageEditor"}get o(){return this.options}hide(){this._dialog.close();}open(t,e){return this.j.async.promise((i=>{const o=(new Date).getTime();this.image=this.j.c.element("img"),(0, l.$$)("img,.jodit-icon_loader",this.resize_box).forEach(a.J.safeRemove),(0, l.$$)("img,.jodit-icon_loader",this.crop_box).forEach(a.J.safeRemove),(0, l.css)(this.cropHandler,"background","transparent"),this.onSave=e,this.resize_box.appendChild(this.j.c.element("i",{class:"jodit-icon_loader"})),this.crop_box.appendChild(this.j.c.element("i",{class:"jodit-icon_loader"})),/\?/.test(t)?t+="&_tst="+o:t+="?_tst="+o,this.image.setAttribute("src",t),this._dialog.open();const{widthInput:n,heightInput:r}=(0, l.refs)(this.editor),s=()=>{this.isDestructed||(this.image.removeEventListener("load",s),this.naturalWidth=this.image.naturalWidth,this.naturalHeight=this.image.naturalHeight,n.value=this.naturalWidth.toString(),r.value=this.naturalHeight.toString(),this.ratio=this.naturalWidth/this.naturalHeight,this.resize_box.appendChild(this.image),this.cropImage=this.image.cloneNode(!0),this.crop_box.appendChild(this.cropImage),a.J.safeRemove.apply(null,(0, l.$$)(".jodit-icon_loader",this.editor)),this.activeTab===f&&this.showCrop(),this.j.e.fire(this.resizeHandler,"updatesize"),this.j.e.fire(this.cropHandler,"updatesize"),this._dialog.setPosition(),this.j.e.fire("afterImageEditor"),i(this._dialog));};this.image.addEventListener("load",s),this.image.complete&&s();}))}onTitleModeClick(t){const e=this,i=t.target,o=null==i?void 0:i.parentElement;if(!o)return;(0, l.$$)(`.${h}__slider,.${h}__area`,e.editor).forEach((t=>t.classList.remove(`${h}_active`))),o.classList.add(`${h}_active`),this.activeTab=(0, l.attr)(o,"-area")||p;const n=e.editor.querySelector(`.${h}__area.${h}__area_`+e.activeTab);n&&n.classList.add(`${h}_active`),e.activeTab===f&&e.showCrop();}onChangeSizeInput(t){const e=this,i=t.target,{widthInput:o,heightInput:n}=(0, l.refs)(this.editor),r="widthInput"===(0, l.attr)(i,"data-ref"),s=parseInt(i.value,10),a=r?e.o.min_height:e.o.min_width;let c;s>(r?e.o.min_width:e.o.min_height)&&((0, l.css)(e.image,r?"width":"height",s),e.resizeUseRatio&&(c=r?Math.round(s/e.ratio):Math.round(s*e.ratio),c>a&&((0, l.css)(e.image,r?"height":"width",c),r?n.value=c.toString():o.value=c.toString()))),this.j.e.fire(e.resizeHandler,"updatesize");}onResizeHandleMouseDown(t){const e=this;e.target=t.target,t.preventDefault(),t.stopImmediatePropagation(),e.clicked=!0,e.start_x=t.clientX,e.start_y=t.clientY,e.activeTab===f?(e.top_x=(0, l.css)(e.cropHandler,"left"),e.top_y=(0, l.css)(e.cropHandler,"top"),e.width=e.cropHandler.offsetWidth,e.height=e.cropHandler.offsetHeight):(e.width=e.image.offsetWidth,e.height=e.image.offsetHeight),e.j.e.on(this.j.ow,"mousemove",this.onGlobalMouseMove).one(this.j.ow,"mouseup",this.onGlobalMouseUp);}onGlobalMouseUp(t){this.clicked&&(this.clicked=!1,t.stopImmediatePropagation(),this.j.e.off(this.j.ow,"mousemove",this.onGlobalMouseMove));}onGlobalMouseMove(t){const e=this;if(!e.clicked)return;const{widthInput:i,heightInput:o}=(0, l.refs)(this.editor);e.diff_x=t.clientX-e.start_x,e.diff_y=t.clientY-e.start_y,e.activeTab===p&&e.resizeUseRatio||e.activeTab===f&&e.cropUseRatio?e.diff_x?(e.new_w=e.width+e.diff_x,e.new_h=Math.round(e.new_w/e.ratio)):(e.new_h=e.height+e.diff_y,e.new_w=Math.round(e.new_h*e.ratio)):(e.new_w=e.width+e.diff_x,e.new_h=e.height+e.diff_y),e.activeTab===p?(e.new_w>e.o.resizeMinWidth&&((0, l.css)(e.image,"width",e.new_w+"px"),i.value=e.new_w.toString()),e.new_h>e.o.resizeMinHeight&&((0, l.css)(e.image,"height",e.new_h+"px"),o.value=e.new_h.toString()),this.j.e.fire(e.resizeHandler,"updatesize")):(e.target!==e.cropHandler?(e.top_x+e.new_w>e.cropImage.offsetWidth&&(e.new_w=e.cropImage.offsetWidth-e.top_x),e.top_y+e.new_h>e.cropImage.offsetHeight&&(e.new_h=e.cropImage.offsetHeight-e.top_y),(0, l.css)(e.cropHandler,{width:e.new_w,height:e.new_h})):(e.top_x+e.diff_x+e.cropHandler.offsetWidth>e.cropImage.offsetWidth&&(e.diff_x=e.cropImage.offsetWidth-e.top_x-e.cropHandler.offsetWidth),(0, l.css)(e.cropHandler,"left",e.top_x+e.diff_x),e.top_y+e.diff_y+e.cropHandler.offsetHeight>e.cropImage.offsetHeight&&(e.diff_y=e.cropImage.offsetHeight-e.top_y-e.cropHandler.offsetHeight),(0, l.css)(e.cropHandler,"top",e.top_y+e.diff_y)),this.j.e.fire(e.cropHandler,"updatesize"));}constructor(t){super(t),this.resizeUseRatio=!0,this.cropUseRatio=!0,this.clicked=!1,this.start_x=0,this.start_y=0,this.top_x=0,this.top_y=0,this.width=0,this.height=0,this.activeTab=p,this.naturalWidth=0,this.naturalHeight=0,this.ratio=0,this.new_h=0,this.new_w=0,this.diff_x=0,this.diff_y=0,this.cropBox={x:0,y:0,w:0,h:0},this.resizeBox={w:0,h:0},this.calcCropBox=()=>{const t=this.crop_box.parentNode,e=.8*t.offsetWidth,i=.8*t.offsetHeight;let o=e,n=i;const{naturalWidth:r,naturalHeight:s}=this;e>r&&i>s?(o=r,n=s):this.ratio>e/i?(o=e,n=s*(e/r)):(o=r*(i/s),n=i),(0, l.css)(this.crop_box,{width:o,height:n});},this.showCrop=()=>{if(!this.cropImage)return;this.calcCropBox();const t=this.cropImage.offsetWidth||this.image.offsetWidth||this.image.naturalWidth;this.new_w=o.calcValueByPercent(t,this.o.cropDefaultWidth);const e=this.cropImage.offsetHeight||this.image.offsetHeight||this.image.naturalHeight;this.new_h=this.cropUseRatio?this.new_w/this.ratio:o.calcValueByPercent(e,this.o.cropDefaultHeight),(0, l.css)(this.cropHandler,{backgroundImage:"url("+(0, l.attr)(this.cropImage,"src")+")",width:this.new_w,height:this.new_h,left:t/2-this.new_w/2,top:e/2-this.new_h/2}),this.j.e.fire(this.cropHandler,"updatesize");},this.updateCropBox=()=>{if(!this.cropImage)return;const t=this.cropImage.offsetWidth/this.naturalWidth,e=this.cropImage.offsetHeight/this.naturalHeight;this.cropBox.x=(0, l.css)(this.cropHandler,"left")/t,this.cropBox.y=(0, l.css)(this.cropHandler,"top")/e,this.cropBox.w=this.cropHandler.offsetWidth/t,this.cropBox.h=this.cropHandler.offsetHeight/e,this.sizes.textContent=this.cropBox.w.toFixed(0)+"x"+this.cropBox.h.toFixed(0);},this.updateResizeBox=()=>{this.resizeBox.w=this.image.offsetWidth||this.naturalWidth,this.resizeBox.h=this.image.offsetHeight||this.naturalHeight;},this.setHandlers=()=>{const t=this,{widthInput:e,heightInput:i}=(0, l.refs)(this.editor);t.j.e.on([t.editor.querySelector(".jodit_bottomright"),t.cropHandler],`mousedown.${h}`,this.onResizeHandleMouseDown).on(this.j.ow,`resize.${h}`,(()=>{this.j.e.fire(t.resizeHandler,"updatesize"),t.showCrop(),this.j.e.fire(t.cropHandler,"updatesize");})),t.j.e.on((0, l.toArray)(this.editor.querySelectorAll(`.${h}__slider-title`)),"click",this.onTitleModeClick).on([e,i],"input",this.onChangeSizeInput);const{keepAspectRatioResize:o,keepAspectRatioCrop:n}=(0, l.refs)(this.editor);o&&o.addEventListener("change",(()=>{this.resizeUseRatio=o.checked;})),n&&n.addEventListener("change",(()=>{this.cropUseRatio=n.checked;})),t.j.e.on(t.resizeHandler,"updatesize",(()=>{(0, l.css)(t.resizeHandler,{top:0,left:0,width:t.image.offsetWidth||t.naturalWidth,height:t.image.offsetHeight||t.naturalHeight}),this.updateResizeBox();})).on(t.cropHandler,"updatesize",(()=>{if(!t.cropImage)return;let e=(0, l.css)(t.cropHandler,"left"),i=(0, l.css)(t.cropHandler,"top"),o=t.cropHandler.offsetWidth,n=t.cropHandler.offsetHeight;0>e&&(e=0),0>i&&(i=0),e+o>t.cropImage.offsetWidth&&(o=t.cropImage.offsetWidth-e,t.cropUseRatio&&(n=o/t.ratio)),i+n>t.cropImage.offsetHeight&&(n=t.cropImage.offsetHeight-i,t.cropUseRatio&&(o=n*t.ratio)),(0, l.css)(t.cropHandler,{width:o,height:n,left:e,top:i,backgroundPosition:-e-1+"px "+(-i-1)+"px",backgroundSize:t.cropImage.offsetWidth+"px "+t.cropImage.offsetHeight+"px"}),t.updateCropBox();})),Object.values(t.buttons).forEach((o=>{o.onAction((()=>{const n={action:t.activeTab,box:t.activeTab===p?t.resizeBox:t.cropBox};switch(o){case t.buttons.saveas:t.j.prompt("Enter new name","Save in new file",(e=>{if(!(0, l.trim)(e))return t.j.alert("The name should not be empty"),!1;t.onSave(e,n,t.hide,(e=>{t.j.alert(e.message);}));}));break;case t.buttons.save:t.onSave(void 0,n,t.hide,(e=>{t.j.alert(e.message);}));break;case t.buttons.reset:t.activeTab===p?((0, l.css)(t.image,{width:null,height:null}),e.value=t.naturalWidth.toString(),i.value=t.naturalHeight.toString(),t.j.e.fire(t.resizeHandler,"updatesize")):t.showCrop();}}));}));},this.options=t&&t.o&&t.o.imageeditor?t.o.imageeditor:u.T.defaultOptions.imageeditor;const e=this.options;this.resizeUseRatio=e.resizeUseRatio,this.cropUseRatio=e.cropUseRatio,this.buttons={reset:(0, c.$n)(this.j,"update","Reset"),save:(0, c.$n)(this.j,"save","Save"),saveas:(0, c.$n)(this.j,"save","Save as ...")},this.activeTab=e.resize?p:f,this.editor=(0, d.Z)(this.j,this.options);const{resizeBox:i,cropBox:n}=(0, l.refs)(this.editor);this.resize_box=i,this.crop_box=n,this.sizes=this.editor.querySelector(`.${h}__area.${h}__area_crop .jodit-image-editor__sizes`),this.resizeHandler=this.editor.querySelector(`.${h}__resizer`),this.cropHandler=this.editor.querySelector(`.${h}__croper`),this._dialog=this.j.dlg({buttons:["fullsize","dialog.close"]}),this._dialog.setContent(this.editor),this._dialog.setSize(this.o.width,this.o.height),this._dialog.setHeader([this.buttons.reset,this.buttons.save,this.buttons.saveas]),this.setHandlers();}destruct(){this.isDestructed||(this._dialog&&!this._dialog.isInDestruct&&this._dialog.destruct(),a.J.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,`.${h}`).off(`.${h}`),super.destruct());}};function m(t,e,i,o,n,r){return this.getInstance("ImageEditor",this.o).open(t,((t,s,a,c)=>(0, l.call)("resize"===s.action?this.dataProvider.resize:this.dataProvider.crop,i,o,e,t,s.box).then((t=>{t&&(a(),n&&n());})).catch((t=>{c(t),r&&r(t);}))))}g.calcValueByPercent=(t,e)=>{const i=e.toString(),o=parseFloat(t.toString());let n;return n=/^[-+]?[0-9]+(px)?$/.exec(i),n?parseInt(i,10):(n=/^([-+]?[0-9.]+)%$/.exec(i),n?Math.round(o*(parseFloat(n[1])/100)):o||0)},(0, n.Cg)([s.autobind],g.prototype,"hide",null),(0, n.Cg)([s.autobind],g.prototype,"open",null),(0, n.Cg)([s.autobind],g.prototype,"onTitleModeClick",null),(0, n.Cg)([(0, s.debounce)(),s.autobind],g.prototype,"onChangeSizeInput",null),(0, n.Cg)([s.autobind],g.prototype,"onResizeHandleMouseDown",null),(0, n.Cg)([s.autobind],g.prototype,"onGlobalMouseUp",null),(0, n.Cg)([(0, s.throttle)(10)],g.prototype,"onGlobalMouseMove",null),g=o=(0, n.Cg)([s.component],g);},24863:function(t,e,i){i.d(e,{Z:function(){return a}});var o=i(53048);const n="jodit-image-editor",r=o.In.get.bind(o.In),s=(t,e="jodti-image-editor_active")=>t?e:"",a=(t,e)=>{const i=t.i18n.bind(t),o=(t,e,o=!0)=>`<div class="jodit-form__group">\n\t\t\t<label class="jodit-switcher-wrapper">\n\t\t\t\t<span class='jodit-switcher'>\n\t\t\t\t\t<input ${s(o,"checked")} data-ref="${e}" type="checkbox"/>\n\t\t\t\t\t<span class="jodit-switcher__slider"></span>\n\t\t\t\t</span>\n\t\t\t\t<span>${i(t)}</span>\n\t\t\t</label>\n\t</div>`;return t.create.fromHTML(`<form class="${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${e.resize?`<div class="${n}__area ${n}__area_resize ${n}_active">\n\t\t\t\t\t\t\t<div data-ref="resizeBox" class="${n}__box"></div>\n\t\t\t\t\t\t\t<div class="${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${e.crop?`<div class="${n}__area ${n}__area_crop ${s(!e.resize)}">\n\t\t\t\t\t\t\t<div data-ref="cropBox" class="${n}__box">\n\t\t\t\t\t\t\t\t<div class="${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="${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${e.resize?`<div data-area="resize" class="${n}__slider ${n}_active">\n\t\t\t\t\t\t\t<div class="${n}__slider-title">\n\t\t\t\t\t\t\t\t${r("resize")}\n\t\t\t\t\t\t\t\t${i("Resize")}\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<div class="${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${i("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${i("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${o("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${e.crop?`<div data-area="crop" class="${n}__slider ${s(!e.resize)}'">\n\t\t\t\t\t\t\t<div class="${n}__slider-title">\n\t\t\t\t\t\t\t\t${r("crop")}\n\t\t\t\t\t\t\t\t${i("Crop")}\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<div class="${n}__slider-content">\n\t\t\t\t\t\t\t\t${o("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>`)};},37435:function(t,e,i){i.r(e),i.d(e,{Ajax:function(){return p.d},Alert:function(){return s.Fc},Async:function(){return l.j},Button:function(){return f.$n},CommitStyle:function(){return T.xk},Component:function(){return o.uA},Confirm:function(){return s.pT},ContextMenu:function(){return r.t},Create:function(){return c.X},Dialog:function(){return s.lG},Dom:function(){return d.J},EventEmitter:function(){return u.bk},EventHandlersStore:function(){return u.d$},Eventify:function(){return u.h5},FileBrowser:function(){return a.V},Helpers:function(){return n},History:function(){return b.B},Icon:function(){return f.In},ImageEditor:function(){return v.n},LazyWalker:function(){return d.p},Plugin:function(){return h.k},PluginSystem:function(){return z.$},Popup:function(){return f.zD},ProgressBar:function(){return f.z2},Prompt:function(){return s.XG},Response:function(){return p.Y},STATUSES:function(){return o.f},Selection:function(){return T.LN},Snapshot:function(){return _.F},StatusBar:function(){return w.e},Table:function(){return y.X},ToolbarButton:function(){return j.IB},ToolbarCollection:function(){return k.Q},ToolbarContent:function(){return j.P1},ToolbarEditorCollection:function(){return C.b},ToolbarSelect:function(){return j.q4},UIBlock:function(){return f.Yh},UIButton:function(){return f.lD},UIButtonGroup:function(){return f.ss},UIButtonState:function(){return f.ue},UICheckbox:function(){return f.cY},UIElement:function(){return f.D$},UIFileInput:function(){return f.nE},UIForm:function(){return f.XV},UIGroup:function(){return f.Ue},UIInput:function(){return f.tS},UIList:function(){return f.z4},UIMessages:function(){return x.N},UISelect:function(){return f.$6},UISeparator:function(){return f.CP},UISpacer:function(){return f.bk},UITextArea:function(){return f.F0},UITooltip:function(){return f.SB},Uploader:function(){return S.d},View:function(){return g.S},ViewComponent:function(){return o.vG},ViewWithToolbar:function(){return m.T},defaultNameSpace:function(){return u.Xr},observable:function(){return u.sH}});var o=i(77753),n=i(65147),r=i(34248),s=i(34256),a=i(19627),l=i(64890),c=i(40594),d=i(71842),u=i(50025),h=i(71005),p=i(53883),f=i(53048),g=i(77782),m=i(14961),b=i(69996),_=i(58770),v=i(53804),x=i(91902),w=i(62870),y=i(11648),j=i(5832),k=i(97394),C=i(90428),S=i(26538),z=i(77402),T=i(87332);},91479:function(t,e,i){i.d(e,{C:function(){return s}});var o=i(31635),n=i(24767),r=i(53048);let s=class extends r.D${className(){return "UIMessage"}constructor(t,e){super(t),this.setMod("active",!0),this.setMod("variant",e.variant),this.container.textContent=e.text;}};s=(0, o.Cg)([n.s],s);},91902:function(t,e,i){i.d(e,{N:function(){return l}});var o=i(31635),n=i(24767),r=i(38322),s=i(6455),a=i(91479);let l=class extends s.U{className(){return "UIMessages"}constructor(t,e,i={defaultTimeout:3e3,defaultOffset:5}){super(t),this.__box=e,this.options=i,this.__messages=new Set;}info(t,e){this.__message(t,"info",e);}success(t,e){this.__message(t,"success",e);}error(t,e){this.__message(t,"error",e);}message(t,e,i){this.__message(t,e,i);}__message(t,e="info",i){const o=t+":"+e;if(this.__messages.has(o))return void this.async.updateTimeout(o,i||this.options.defaultTimeout);if(!this.__box)throw new Error("Container is not defined: "+o);this.__box.appendChild(this.container);const n=new a.C(this.j,{text:t,variant:e});this.append(n),this.__calcOffsets(),this.__messages.add(o);const r=this.__getRemoveCallback(n,o);this.j.e.on(n.container,"pointerdown",r),this.async.setTimeout(r,{label:o,timeout:i||this.options.defaultTimeout});}__getRemoveCallback(t,e){const i=o=>{o&&o.preventDefault(),t.isInDestruct||(this.async.clearTimeout(e),this.j.e.off(t.container,"pointerdown",i),this.__messages.delete(e),t.setMod("active",!1),this.async.setTimeout((()=>{this.remove(t),t.destruct(),this.__calcOffsets();}),300));};return i}__calcOffsets(){let t=5;this.elements.forEach((e=>{(0, r.A)(e.container,"bottom",t+"px"),t+=e.container.offsetHeight+this.options.defaultOffset;}));}};l=(0, o.Cg)([n.s],l);},62870:function(t,e,i){i.d(e,{e:function(){return c}});var o=i(31635),n=i(77753),r=i(22664),s=i(55186),a=i(87906),l=i(75758);let c=class extends n.vG{className(){return "StatusBar"}hide(){this.container.classList.add("jodit_hidden");}show(){this.container.classList.remove("jodit_hidden");}get isShown(){return !this.container.classList.contains("jodit_hidden")}getHeight(){var t,e;return null!==(e=null===(t=this.container)||void 0===t?void 0:t.offsetHeight)&&void 0!==e?e:0}findEmpty(t=!1){const e=this.getElms(t?"item-right":"item");for(let t=0;e.length>t;t+=1)if(!e[t].innerHTML.trim().length)return e[t]}append(t,e=!1){var i;const o=this.findEmpty(e)||this.j.c.div(this.getFullElName("item"));e&&o.classList.add(this.getFullElName("item-right")),o.appendChild(t),null===(i=this.container)||void 0===i||i.appendChild(o),this.j.o.statusbar&&this.show(),this.j.e.fire("resize");}constructor(t,e){super(t),this.target=e,this.mods={},this.container=t.c.div("jodit-status-bar"),e.appendChild(this.container),this.hide();}destruct(){this.isInDestruct||(this.setStatus(n.f.beforeDestruct),s.J.safeRemove(this.container),super.destruct());}};c=(0, o.Cg)([r.component,(0, r.derive)(l.K,a.O)],c);},11648:function(t,e,i){i.d(e,{X:function(){return u}});var o=i(31635),n=i(77753),r=i(17352),s=i(22664),a=i(71842),l=i(56298),c=i(65147);const d=new WeakMap;class u extends n.vG{constructor(){super(...arguments),this.selected=new Set;}className(){return "Table"}__recalculateStyles(){const t=(0, l.My)(this.j,u,"style",!0),e=[];this.selected.forEach((t=>{const i=(0, c.cssPath)(t);i&&e.push(i);})),t.innerHTML=e.length?e.join(",")+`{${this.jodit.options.table.selectionCellStyle}}`:"";}addSelection(t){this.selected.add(t),this.__recalculateStyles();const e=a.J.closest(t,"table",this.j.editor);if(e){const i=u.__selectedByTable.get(e)||new Set;i.add(t),u.__selectedByTable.set(e,i);}}removeSelection(t){this.selected.delete(t),this.__recalculateStyles();const e=a.J.closest(t,"table",this.j.editor);if(e){const i=u.__selectedByTable.get(e);i&&(i.delete(t),i.size||u.__selectedByTable.delete(e));}}getAllSelectedCells(){return (0, c.toArray)(this.selected)}static __getSelectedCellsByTable(t){const e=u.__selectedByTable.get(t);return e?(0, c.toArray)(e):[]}destruct(){return this.selected.clear(),super.destruct()}static __getRowsCount(t){return t.rows.length}getRowsCount(t){return u.__getRowsCount(t)}static __getColumnsCount(t){return u.__formalMatrix(t).reduce(((t,e)=>Math.max(t,e.length)),0)}getColumnsCount(t){return u.__getColumnsCount(t)}static __formalMatrix(t,e){const i=[[]],o=(0, c.toArray)(t.rows),n=(t,o)=>{void 0===i[o]&&(i[o]=[]);const n=t.colSpan,r=t.rowSpan;let s,a,l=0;for(;i[o][l];)l+=1;for(a=0;r>a;a+=1)for(s=0;n>s;s+=1){if(void 0===i[o+a]&&(i[o+a]=[]),e&&!1===e(t,o+a,l+s,n,r))return !1;i[o+a][l+s]=t;}};for(let t=0;o.length>t;t+=1){const e=(0, c.toArray)(o[t].cells);for(let o=0;e.length>o;o+=1)if(!1===n(e[o],t))return i}return i}formalMatrix(t,e){return u.__formalMatrix(t,e)}static __formalCoordinate(t,e,i=!1){let o=0,n=0,r=1,s=1;return u.__formalMatrix(t,((t,a,l,c,d)=>{if(e===t)return o=a,n=l,r=c||1,s=d||1,i&&(n+=(c||1)-1,o+=(d||1)-1),!1})),[o,n,r,s]}formalCoordinate(t,e,i=!1){return u.__formalCoordinate(t,e,i)}static __appendRow(t,e,i,o){var n;let r;if(e)r=e.cloneNode(!0),(0, c.$$)("td,th",e).forEach((t=>{const e=(0, c.attr)(t,"rowspan");if(e&&parseInt(e,10)>1){const i=parseInt(e,10)-1;(0, c.attr)(t,"rowspan",i>1?i:null);}})),(0, c.$$)("td,th",r).forEach((t=>{t.innerHTML="";}));else {const e=u.__getColumnsCount(t);r=o.element("tr");for(let t=0;e>t;t+=1)r.appendChild(o.element("td"));}i&&e&&e.nextSibling?e.parentNode&&e.parentNode.insertBefore(r,e.nextSibling):!i&&e?e.parentNode&&e.parentNode.insertBefore(r,e):((null===(n=t.getElementsByTagName("tbody"))||void 0===n?void 0:n[0])||t).appendChild(r);}appendRow(t,e,i){return u.__appendRow(t,e,i,this.j.createInside)}static __removeRow(t,e){const i=u.__formalMatrix(t);let o;const n=t.rows[e];i[e].forEach(((r,s)=>{if(o=!1,0>e-1||i[e-1][s]!==r)if(i[e+1]&&i[e+1][s]===r){if(r.parentNode===n&&r.parentNode.nextSibling){o=!0;let n=s+1;for(;i[e+1][n]===r;)n+=1;const l=a.J.next(r.parentNode,(t=>a.J.isTag(t,"tr")),t);l&&(i[e+1][n]?l.insertBefore(r,i[e+1][n]):l.appendChild(r));}}else a.J.safeRemove(r);else o=!0;if(o&&(r.parentNode===n||r!==i[e][s-1])){const t=r.rowSpan;(0, c.attr)(r,"rowspan",t-1>1?t-1:null);}})),a.J.safeRemove(n);}removeRow(t,e){return u.__removeRow(t,e)}static __appendColumn(t,e,i,o){const n=u.__formalMatrix(t);let r;for((void 0===e||0>e)&&(e=u.__getColumnsCount(t)-1),r=0;n.length>r;r+=1){const t=o.element("td"),s=n[r][e];let l=!1;i?(n[r]&&s&&e+1>=n[r].length||s!==n[r][e+1])&&(s.nextSibling?a.J.before(s.nextSibling,t):s.parentNode&&s.parentNode.appendChild(t),l=!0):(0>e-1||n[r][e]!==n[r][e-1]&&n[r][e].parentNode)&&(a.J.before(n[r][e],t),l=!0),l||(0, c.attr)(n[r][e],"colspan",parseInt((0, c.attr)(n[r][e],"colspan")||"1",10)+1);}}appendColumn(t,e,i){return u.__appendColumn(t,e,i,this.j.createInside)}static __removeColumn(t,e){const i=u.__formalMatrix(t);let o;i.forEach(((t,n)=>{const r=t[e];if(o=!1,0>e-1||i[n][e-1]!==r?t.length>e+1&&i[n][e+1]===r?o=!0:a.J.safeRemove(r):o=!0,o&&(0>n-1||r!==i[n-1][e])){const t=r.colSpan;(0, c.attr)(r,"colspan",t-1>1?(t-1).toString():null);}}));}removeColumn(t,e){return u.__removeColumn(t,e)}static __getSelectedBound(t,e){const i=[[1/0,1/0],[0,0]],o=u.__formalMatrix(t);let n,r,s;for(n=0;o.length>n;n+=1)for(r=0;o[n]&&o[n].length>r;r+=1)e.includes(o[n][r])&&(i[0][0]=Math.min(n,i[0][0]),i[0][1]=Math.min(r,i[0][1]),i[1][0]=Math.max(n,i[1][0]),i[1][1]=Math.max(r,i[1][1]));for(n=i[0][0];i[1][0]>=n;n+=1)for(s=1,r=i[0][1];i[1][1]>=r;r+=1){for(;o[n]&&o[n][r-s]&&o[n][r]===o[n][r-s];)i[0][1]=Math.min(r-s,i[0][1]),i[1][1]=Math.max(r-s,i[1][1]),s+=1;for(s=1;o[n]&&o[n][r+s]&&o[n][r]===o[n][r+s];)i[0][1]=Math.min(r+s,i[0][1]),i[1][1]=Math.max(r+s,i[1][1]),s+=1;for(s=1;o[n-s]&&o[n][r]===o[n-s][r];)i[0][0]=Math.min(n-s,i[0][0]),i[1][0]=Math.max(n-s,i[1][0]),s+=1;for(s=1;o[n+s]&&o[n][r]===o[n+s][r];)i[0][0]=Math.min(n+s,i[0][0]),i[1][0]=Math.max(n+s,i[1][0]),s+=1;}return i}getSelectedBound(t,e){return u.__getSelectedBound(t,e)}static __normalizeTable(t){let e,i,o,n;const r=[],s=u.__formalMatrix(t);for(i=0;s[0].length>i;i+=1){for(o=1e6,n=!1,e=0;s.length>e;e+=1)if(void 0!==s[e][i]){if(2>s[e][i].colSpan){n=!0;break}o=Math.min(o,s[e][i].colSpan);}if(!n)for(e=0;s.length>e;e+=1)void 0!==s[e][i]&&u.__mark(s[e][i],"colspan",s[e][i].colSpan-o+1,r);}for(e=0;s.length>e;e+=1){for(o=1e6,n=!1,i=0;s[e].length>i;i+=1)if(void 0!==s[e][i]){if(2>s[e][i].rowSpan){n=!0;break}o=Math.min(o,s[e][i].rowSpan);}if(!n)for(i=0;s[e].length>i;i+=1)void 0!==s[e][i]&&u.__mark(s[e][i],"rowspan",s[e][i].rowSpan-o+1,r);}for(e=0;s.length>e;e+=1)for(i=0;s[e].length>i;i+=1)void 0!==s[e][i]&&(s[e][i].hasAttribute("rowspan")&&1===s[e][i].rowSpan&&(0, c.attr)(s[e][i],"rowspan",null),s[e][i].hasAttribute("colspan")&&1===s[e][i].colSpan&&(0, c.attr)(s[e][i],"colspan",null),s[e][i].hasAttribute("class")&&!(0, c.attr)(s[e][i],"class")&&(0, c.attr)(s[e][i],"class",null));u.__unmark(r);}normalizeTable(t){return u.__normalizeTable(t)}static __mergeSelected(t,e){const i=[],o=u.__getSelectedBound(t,u.__getSelectedCellsByTable(t));let n,s=0,l=null,d=0,p=0,f=0;const g=new Set,m=[];o&&(o[0][0]-o[1][0]||o[0][1]-o[1][1])&&(u.__formalMatrix(t,((t,r,a,b,_)=>{if(!(o[0][0]>r||r>o[1][0]||o[0][1]>a||a>o[1][1])){if(n=t,g.has(n))return;g.add(n),r===o[0][0]&&n.style.width&&(s+=n.offsetWidth),""!==(0, c.trim)(t.innerHTML.replace(/<br(\/)?>/g,""))&&i.push(t.innerHTML),b>1&&(p+=b-1),_>1&&(f+=_-1),l?(u.__mark(n,"remove",1,m),h(e).removeSelection(n)):(l=t,d=a);}})),p=o[1][1]-o[0][1]+1,f=o[1][0]-o[0][0]+1,l&&(p>1&&u.__mark(l,"colspan",p,m),f>1&&u.__mark(l,"rowspan",f,m),s&&(u.__mark(l,"width",(s/t.offsetWidth*100).toFixed(r.ACCURACY)+"%",m),d&&u.__setColumnWidthByDelta(t,d,0,!0,m)),l.innerHTML=i.join("<br/>"),h(e).addSelection(l),g.delete(l),u.__unmark(m),u.__normalizeTable(t),(0, c.toArray)(t.rows).forEach(((t,e)=>{t.cells.length||a.J.safeRemove(t);}))));}mergeSelected(t){return u.__mergeSelected(t,this.j)}static __splitHorizontal(t,e){let i,o,n,r,s;const l=[];u.__getSelectedCellsByTable(t).forEach((c=>{o=e.createInside.element("td"),o.appendChild(e.createInside.element("br")),n=e.createInside.element("tr"),i=u.__formalCoordinate(t,c),2>c.rowSpan?(u.__formalMatrix(t,((t,e,o)=>{i[0]===e&&i[1]!==o&&t!==c&&u.__mark(t,"rowspan",t.rowSpan+1,l);})),a.J.after(a.J.closest(c,"tr",t),n),n.appendChild(o)):(u.__mark(c,"rowspan",c.rowSpan-1,l),u.__formalMatrix(t,((e,o,n)=>{o>i[0]&&i[0]+c.rowSpan>o&&i[1]>n&&e.parentNode.rowIndex===o&&(s=e),o>i[0]&&e===c&&(r=t.rows[o]);})),s?a.J.after(s,o):r.insertBefore(o,r.firstChild)),c.colSpan>1&&u.__mark(o,"colspan",c.colSpan,l),u.__unmark(l),h(e).removeSelection(c);})),this.__normalizeTable(t);}splitHorizontal(t){return u.__splitHorizontal(t,this.j)}static __splitVertical(t,e){let i,o,n;const s=[];u.__getSelectedCellsByTable(t).forEach((l=>{i=u.__formalCoordinate(t,l),2>l.colSpan?u.__formalMatrix(t,((t,e,o)=>{i[1]===o&&i[0]!==e&&t!==l&&u.__mark(t,"colspan",t.colSpan+1,s);})):u.__mark(l,"colspan",l.colSpan-1,s),o=e.createInside.element("td"),o.appendChild(e.createInside.element("br")),l.rowSpan>1&&u.__mark(o,"rowspan",l.rowSpan,s);const c=l.offsetWidth;a.J.after(l,o),n=c/t.offsetWidth/2,u.__mark(l,"width",(100*n).toFixed(r.ACCURACY)+"%",s),u.__mark(o,"width",(100*n).toFixed(r.ACCURACY)+"%",s),u.__unmark(s),h(e).removeSelection(l);})),u.__normalizeTable(t);}splitVertical(t){return u.__splitVertical(t,this.j)}static __setColumnWidthByDelta(t,e,i,o,n){const s=u.__formalMatrix(t);let a=0;for(let o=0;s.length>o;o+=1){const l=s[o][e];if(1>=l.colSpan||1>=s.length){u.__mark(l,"width",((l.offsetWidth+i)/t.offsetWidth*100).toFixed(r.ACCURACY)+"%",n),a=o;break}}for(let t=a+1;s.length>t;t+=1)u.__mark(s[t][e],"width",null,n);o||u.__unmark(n);}setColumnWidthByDelta(t,e,i,o,n){return u.__setColumnWidthByDelta(t,e,i,o,n)}static __mark(t,e,i,o){var n;o.push(t);const r=null!==(n=d.get(t))&&void 0!==n?n:{};r[e]=void 0===i?1:i,d.set(t,r);}static __unmark(t){t.forEach((t=>{const e=d.get(t);e&&(Object.keys(e).forEach((i=>{const o=e[i];switch(i){case"remove":a.J.safeRemove(t);break;case"rowspan":(0, c.attr)(t,"rowspan",(0, c.isNumber)(o)&&o>1?o:null);break;case"colspan":(0, c.attr)(t,"colspan",(0, c.isNumber)(o)&&o>1?o:null);break;case"width":null==o?(t.style.removeProperty("width"),(0, c.attr)(t,"style")||(0, c.attr)(t,"style",null)):t.style.width=o.toString();}delete e[i];})),d.delete(t));}));}}u.__selectedByTable=new WeakMap,(0, o.Cg)([(0, s.debounce)()],u.prototype,"__recalculateStyles",null);const h=t=>t.getInstance("Table",t.o);},3258:function(t,e,i){i.d(e,{I:function(){return f}});var o=i(31635),n=i(64567),r=i(22664),s=i(71842),a=i(65147),l=i(35265),c=i(57023),d=i(931),u=i(80071),h=i(97394),p=i(8809);let f=class extends l.lD{className(){return "ToolbarButton"}get toolbar(){return this.closest(h.Q)}update(){var t,e;const{control:i,state:o}=this,n=this.closest(h.Q);if(!n)return;const r=null===(t=i.value)||void 0===t?void 0:t.call(i,n.jodit,this);void 0!==r&&(o.value=r),o.disabled=this.__calculateDisabledStatus(n),o.activated=this.__calculateActivatedStatus(n),null===(e=i.update)||void 0===e||e.call(i,n.jodit,this);}__calculateActivatedStatus(t){var e,i;return !((0, a.isJoditObject)(this.j)&&!this.j.editorIsActive)&&(!!(null===(i=(e=this.control).isActive)||void 0===i?void 0:i.call(e,this.j,this))||Boolean(t&&t.shouldBeActive(this)))}__calculateDisabledStatus(t){var e,i;return !!this.j.o.disabled||!(!this.j.o.readonly||this.j.o.activeButtonsInReadOnly&&this.j.o.activeButtonsInReadOnly.includes(this.control.name))||!!(null===(i=(e=this.control).isDisabled)||void 0===i?void 0:i.call(e,this.j,this))||Boolean(t&&t.shouldBeDisabled(this))}onChangeActivated(){(0, a.attr)(this.button,"aria-pressed",this.state.activated),super.onChangeActivated();}onChangeText(){(0, a.isFunction)(this.control.template)?this.text.innerHTML=this.control.template(this.j,this.control.name,this.j.i18n(this.state.text)):super.onChangeText(),this.setMod("text-icons",Boolean(this.text.innerText.trim().length));}onChangeTabIndex(){(0, a.attr)(this.button,"tabindex",this.state.tabIndex);}createContainer(){const t=this.componentName,e=this.j.c.span(t),i=super.createContainer();(0, a.attr)(e,"role","listitem"),i.classList.remove(t),i.classList.add(t+"__button"),Object.defineProperty(i,"component",{value:this}),e.appendChild(i);const o=this.j.c.fromHTML(`<span role="trigger" class="${t}__trigger">${d.I.get("chevron")}</span>`);return i.appendChild(o),e}focus(){var t;null===(t=this.container.querySelector("button"))||void 0===t||t.focus();}onChangeHasTrigger(){this.state.hasTrigger?this.container.appendChild(this.trigger):s.J.safeRemove(this.trigger),this.setMod("with-trigger",this.state.hasTrigger||null);}onChangeDisabled(){const t=this.state.disabled?"disabled":null;(0, a.attr)(this.trigger,"disabled",t),(0, a.attr)(this.button,"disabled",t),(0, a.attr)(this.container,"disabled",t);}constructor(t,e,i=null){super(t),this.control=e,this.target=i,this.state={...(0, l.ue)(),theme:"toolbar",currentValue:"",hasTrigger:!1},this.openedPopup=null;const o=this.getElm("button");this.button=o,Object.defineProperty(o,"component",{value:this,configurable:!0});const r=this.getElm("trigger");this.trigger=r,r.remove(),t.e.on([this.button,this.trigger],"mousedown",(t=>t.preventDefault())),this.onAction(this.onClick),this.hookStatus(n.f.ready,(()=>{this.__initFromControl(),this.update();})),e.mods&&Object.keys(e.mods).forEach((t=>{e.mods&&this.setMod(t,e.mods[t]);}));}__initFromControl(){var t;const{control:e,state:i}=this;this.updateSize(),i.name=e.name;const{textIcons:o}=this.j.o;if(!0===o||(0, a.isFunction)(o)&&o(e.name)||e.template)i.icon=(0, l.ue)().icon,i.text=e.text||e.name;else {if(e.iconURL)i.icon.iconURL=e.iconURL;else {const o=e.icon||e.name;i.icon.name=d.I.exists(o)||(null===(t=this.j.o.extraIcons)||void 0===t?void 0:t[o])?o:"";}e.iconURL||i.icon.name||(i.text=e.text||e.name);}e.tooltip&&(i.tooltip=this.j.i18n((0, a.isFunction)(e.tooltip)?e.tooltip(this.j,e,this):e.tooltip)),i.hasTrigger=Boolean(e.list||e.popup&&e.exec);}onTriggerClick(t){var e,i,o;if(this.openedPopup)return void this.__closePopup();const{control:n}=this;if(t.buffer={actionTrigger:this},n.list)return this.__openControlList(n);if((0, a.isFunction)(n.popup)){const t=this.openPopup();if(t.parentElement=this,!1!==this.j.e.fire((0, a.camelCase)(`before-${n.name}-open-popup`),this.target,n,t)){const r=null!==(o=null!==(i=null===(e=this.toolbar)||void 0===e?void 0:e.getTarget(this))&&void 0!==i?i:this.target)&&void 0!==o?o:null,s=n.popup(this.j,r,this.__closePopup,this);s&&t.setContent((0, a.isString)(s)?this.j.c.fromHTML(s):s).open((()=>(0, a.position)(this.container)),!1,this.j.o.allowTabNavigation?this.container:void 0);}this.j.e.fire((0, a.camelCase)(`after-${n.name}-open-popup`),t.container);}}__openControlList(t){var e;const i=null!==(e=this.jodit.options.controls)&&void 0!==e?e:{},o=t=>(0, c.x)(t,i),n=t.list,r=this.openPopup(),s=(0, p.$K)(this.j);r.parentElement=this,s.parentElement=r,s.mode="vertical";const l=(e,i)=>{if((0, a.isString)(i)&&o(i))return {name:i.toString(),...o(i)};if((0, a.isString)(e)&&o(e))return {name:e.toString(),...o(e),..."object"==typeof i?i:{}};(t=>(0, a.isPlainObject)(t)&&"title"in t&&"value"in t)(e)&&(i=e.value,e=e.title);const{childTemplate:n}=t,r={name:e.toString(),template:n&&((t,e,i)=>n(t,e,i,this)),exec:t.childExec?(e,i,o)=>{var n;return null===(n=t.childExec)||void 0===n?void 0:n.call(t,e,i,{...o,parentControl:t})}:t.exec,data:t.data,command:t.command,isActive:t.isChildActive,value:t.value,isDisabled:t.isChildDisabled,mode:t.mode,args:[...t.args?t.args:[],e,i]};return (0, a.isString)(i)&&(r.text=i),r};s.build((0, a.isArray)(n)?n.map(l):(0, a.keys)(n,!1).map((t=>l(t,n[t]))),this.target),r.setContent(s).open((()=>(0, a.position)(this.container)),!1,this.j.o.allowTabNavigation?this.container:void 0),this.state.activated=!0;}onOutsideClick(t){this.openedPopup&&(t&&s.J.isNode(t.target)&&(s.J.isOrContains(this.container,t.target)||this.openedPopup.isOwnClick(t))||this.__closePopup());}openPopup(){return this.__closePopup(),this.openedPopup=new u.z(this.j,!1),this.j.e.on(this.ow,"mousedown touchstart",this.onOutsideClick).on("escape closeAllPopups",this.onOutsideClick),this.openedPopup}__closePopup(){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);}onClick(t){var e,i,o,n,r,s,l;const{control:c}=this;if((0, a.isFunction)(c.exec)){const a=null!==(o=null!==(i=null===(e=this.toolbar)||void 0===e?void 0:e.getTarget(this))&&void 0!==i?i:this.target)&&void 0!==o?o:null,d=c.exec(this.j,a,{control:c,originalEvent:t,button:this});if(!1!==d&&!0!==d&&(null===(r=null===(n=this.j)||void 0===n?void 0:n.e)||void 0===r||r.fire("synchro"),this.parentElement&&this.parentElement.update(),null===(l=null===(s=this.j)||void 0===s?void 0:s.e)||void 0===l||l.fire("closeAllPopups afterExec")),!1!==d)return}return c.list?this.__openControlList(c):(0, a.isFunction)(c.popup)?this.onTriggerClick(t):void((c.command||c.name)&&((0, a.call)((0, a.isJoditObject)(this.j)?this.j.execCommand.bind(this.j):this.j.od.execCommand.bind(this.j.od),c.command||c.name,!1,c.args&&c.args[0]),this.j.e.fire("closeAllPopups")))}destruct(){return this.__closePopup(),super.destruct()}};(0, o.Cg)([r.cacheHTML],f.prototype,"createContainer",null),(0, o.Cg)([(0, r.watch)("state.hasTrigger",{immediately:!1})],f.prototype,"onChangeHasTrigger",null),(0, o.Cg)([(0, r.watch)("trigger:click")],f.prototype,"onTriggerClick",null),(0, o.Cg)([r.autobind],f.prototype,"onOutsideClick",null),(0, o.Cg)([r.autobind],f.prototype,"__closePopup",null),f=(0, o.Cg)([r.component],f);},49405:function(t,e,i){i.d(e,{P:function(){return l}});var o=i(31635),n=i(22664),r=i(71842),s=i(65147),a=i(35265);let l=class extends a.lD{className(){return "ToolbarContent"}update(){const t=this.control.getContent(this.j,this);((0, s.isString)(t)||t.parentNode!==this.container)&&(r.J.detach(this.container),this.container.appendChild((0, s.isString)(t)?this.j.create.fromHTML(t):t)),super.update();}createContainer(){return this.j.c.span(this.componentName)}constructor(t,e,i=null){super(t),this.control=e,this.target=i,this.container.classList.add(`${this.componentName}_${this.clearName(e.name)}`),(0, s.attr)(this.container,"role","content");}};l=(0, o.Cg)([n.component],l);},5832:function(t,e,i){i.d(e,{IB:function(){return o.I},P1:function(){return n.P},q4:function(){return r.q}});var o=i(3258),n=i(49405),r=i(48053);},48053:function(t,e,i){i.d(e,{q:function(){return a}});var o=i(31635),n=i(22664),r=i(98253),s=i(3258);let a=class extends s.I{className(){return "ToolbarSelect"}update(){var t,e,i;super.update(),this.state.icon.name="";const{list:o,data:n}=this.control;if(o){let s=this.state.value||(n&&(0, r.K)(n.currentValue)?n.currentValue:void 0);s||(s=Object.keys(o)[0]);const a=(o[s.toString()]||s).toString();this.state.text=null!==(i=null===(e=(t=this.control).textTemplate)||void 0===e?void 0:e.call(t,this.jodit,a))&&void 0!==i?i:a;}}};a=(0, o.Cg)([n.component],a);},97394:function(t,e,i){i.d(e,{Q:function(){return l}});var o=i(31635),n=i(22664),r=i(76166),s=i(53048),a=i(8809);let l=class extends s.z4{className(){return "ToolbarCollection"}get firstButton(){const[t]=this.buttons;return t||null}makeButton(t,e=null){return (0, a.BJ)(this.j,t,e)}makeSelect(t,e=null){return (0, a.RR)(this.j,t,e)}shouldBeActive(t){}shouldBeDisabled(t){}getTarget(t){return t.target||null}__immediateUpdate(){this.isDestructed||this.j.isLocked||(super.update(),this.j.e.fire("afterUpdateToolbar",this));}update(){this.__immediateUpdate();}setDirection(t){this.container.style.direction=t,this.container.setAttribute("dir",t);}constructor(t){super(t),this.__listenEvents="updatePlugins updateToolbar changeStack mousedown mouseup keydown change afterInit readonly afterResize selectionchange changeSelection focus afterSetMode touchstart focus blur",this.__tooltip=new s.SB(this.jodit);}__initEvents(){this.j.e.on(this.__listenEvents,this.update).on("afterSetMode focus",this.__immediateUpdate);}hide(){this.container.remove();}show(){this.appendTo(this.j.toolbarContainer);}showInline(t){throw (0, r.z3)("The method is not implemented for this class.")}build(t,e=null){const i=this.j.e.fire("beforeToolbarBuild",t);return i&&(t=i),super.build(t,e),this}destruct(){var t;this.isDestructed||(null===(t=this.__tooltip)||void 0===t||t.destruct(),this.__tooltip=null,this.j.e.off(this.__listenEvents,this.update).off("afterSetMode focus",this.__immediateUpdate),super.destruct());}};(0, o.Cg)([n.autobind],l.prototype,"__immediateUpdate",null),(0, o.Cg)([(0, n.debounce)()],l.prototype,"update",null),(0, o.Cg)([(0, n.hook)("ready")],l.prototype,"__initEvents",null),l=(0, o.Cg)([n.component],l);},90428:function(t,e,i){i.d(e,{b:function(){return c}});var o=i(31635),n=i(17352),r=i(22664),s=i(71842),a=i(65147),l=i(97394);let c=class extends l.Q{className(){return "ToolbarEditorCollection"}shouldBeDisabled(t){const e=super.shouldBeDisabled(t);if(void 0!==e)return e;const i=void 0===t.control.mode?n.MODE_WYSIWYG:t.control.mode;return !(i===n.MODE_SPLIT||i===this.j.getRealMode())}shouldBeActive(t){const e=super.shouldBeActive(t);if(void 0!==e)return e;const i=this.j.selection?this.j.s.current():null;if(!i)return !1;let o;if(t.control.tags){const e=t.control.tags;if(o=i,s.J.up(o,(t=>{if(t&&-1!==e.indexOf(t.nodeName.toLowerCase()))return !0}),this.j.editor))return !0}if(t.control.css){const e=t.control.css;if(o=i,s.J.up(o,(t=>{if(t&&!s.J.isText(t)&&!s.J.isComment(t))return this.checkActiveStatus(e,t)}),this.j.editor))return !0}return !1}getTarget(t){return t.target||this.j.s.current()||null}constructor(t){super(t),this.checkActiveStatus=(t,e)=>{let i=0,o=0;return Object.keys(t).forEach((n=>{const r=t[n];(0, a.isFunction)(r)?r(this.j,(0, a.css)(e,n).toString())&&(i+=1):-1!==r.indexOf((0, a.css)(e,n).toString())&&(i+=1),o+=1;})),o===i},this.prependInvisibleInput(this.container);}prependInvisibleInput(t){const e=this.j.create.element("input",{tabIndex:-1,disabled:!0,style:"width: 0; height:0; position: absolute; visibility: hidden;"});s.J.appendChildFirst(t,e);}showInline(t){this.jodit.e.fire("showInlineToolbar",t);}hide(){this.jodit.e.fire("hidePopup"),super.hide(),this.jodit.e.fire("toggleToolbar");}show(){super.show(),this.jodit.e.fire("toggleToolbar");}};c=(0, o.Cg)([r.component],c);},8809:function(t,e,i){i.d(e,{$K:function(){return c},BJ:function(){return d},RR:function(){return u}});var o=i(65147),n=i(3258),r=i(49405),s=i(48053),a=i(97394),l=i(90428);function c(t,e){const i=(0, o.isJoditObject)(t)?new l.b(t):new a.Q(t);return t.o.textIcons&&i.container.classList.add("jodit_text_icons"),e&&(i.parentElement=e),t.o.toolbarButtonSize&&(i.buttonSize=t.o.toolbarButtonSize),i}function d(t,e,i=null){if((0, o.isFunction)(e.getContent))return new r.P(t,e,i);const s=new n.I(t,e,i);return s.state.tabIndex=t.o.allowTabNavigation?0:-1,s}function u(t,e,i=null){return new s.q(t,e,i)}},77334:function(t,e,i){var o=i(37923),n=i(83044),r=i(36115);r.T.prototype.enableDragAndDropFileToEditor=!0,r.T.prototype.uploader={url:"",insertImageAsBase64URI:!1,imagesExtensions:["jpg","png","jpeg","gif"],headers:null,data:null,filesVariableName:t=>`files[${t}]`,withCredentials:!1,pathVariableName:"path",format:"json",method:"POST",prepareData:t=>t,isSuccess:t=>t.success,getMessage:t=>void 0!==t.data.messages&&(0, o.c)(t.data.messages)?t.data.messages.join(" "):"",processFileName:(t,e,i)=>[t,e,i],process:t=>t.data,error(t){this.j.message.error(t.message,4e3);},getDisplayName:(t,e)=>t+e,defaultHandlerSuccess(t){const e=this.j||this;(0, n.y)(e)&&t.files&&t.files.length&&t.files.forEach(((i,o)=>{const[n,r]=t.isImages&&t.isImages[o]?["img","src"]:["a","href"],s=e.createInside.element(n);s.setAttribute(r,t.baseurl+i),"a"===n&&(s.textContent=e.o.uploader.getDisplayName.call(this,t.baseurl,i)),"img"===n?e.s.insertImage(s,null,e.o.imageDefaultWidth):e.s.insertNode(s);}));},defaultHandlerError(t){this.j.message.error(t.message);},contentType(t){return (void 0===this.ow.FormData||"string"==typeof t)&&"application/x-www-form-urlencoded; charset=UTF-8"}};},89929:function(t,e,i){i.d(e,{$:function(){return n}});var o=i(65147);function n(t,e){if((0, o.isFunction)(t.o.buildData))return t.o.buildData.call(t,e);const i=t.ow.FormData;if(void 0!==i){if(e instanceof i)return e;if((0, o.isString)(e))return e;const t=new i,n=e;return Object.keys(n).forEach((e=>{t.append(e,n[e]);})),t}return e}},51923:function(t,e,i){function o(t){const e=atob(t.split(",")[1]),i=t.split(",")[0].split(":")[1].split(";")[0],o=new ArrayBuffer(e.length),n=new Uint8Array(o);for(let t=0;e.length>t;t+=1)n[t]=e.charCodeAt(t);return new Blob([n],{type:i})}i.d(e,{z:function(){return o}});},74340:function(t,e,i){i.d(e,{$j:function(){return r.$},Pb:function(){return l},YQ:function(){return a},_9:function(){return s._},dT:function(){return n.d},tN:function(){return r.t},zM:function(){return o.z}}),i(89929);var o=i(51923),n=i(84759),r=i(27912),s=i(74714);function a(t){return Boolean(t&&t.files&&t.files.length>0)}function l(t){return Boolean(t&&t.items&&t.items.length>0)}},84759:function(t,e,i){i.d(e,{d:function(){return l}});var o=i(17352),n=i(71842),r=i(56298),s=i(65147),a=i(74340);function l(t,e,i,l,c){if(e&&(!e.types.length||e.types[0]!==o.TEXT_PLAIN)){const e=t.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, r.My)(t.j,t.constructor).appendChild(e);const o=(0, s.isJoditObject)(t.j)?t.j.s.save():null,d=()=>o&&(0, s.isJoditObject)(t.j)&&t.j.s.restore();e.focus(),t.j.async.setTimeout((()=>{const o=e.firstChild;if(n.J.safeRemove(e),o&&o.hasAttribute("src")){const e=(0, s.attr)(o,"src")||"";d(),(0, a._9)(t,[(0, a.zM)(e)],i,l).finally(c);}}),t.j.defaultTimeout);}}},74714:function(t,e,i){i.d(e,{_:function(){return r}});var o=i(65147),n=i(27912);function r(t,e,i,r,s){if(!e)return Promise.reject((0, o.error)("Need files"));const{o:a}=t;let l=(0, o.toArray)(e);if(!l.length)return Promise.reject((0, o.error)("Need files"));const c=[];if(a.insertImageAsBase64URI){let e,n;for(n=0;l.length>n;n+=1)if(e=l[n],e&&e.type){const r=e.type.match(/\/([a-z0-9]+)/i),s=r[1]?r[1].toLowerCase():"";if(a.imagesExtensions.includes(s)){const r=new FileReader;c.push(t.j.async.promise(((n,s)=>{r.onerror=s,r.onloadend=()=>{const e={baseurl:"",files:[r.result],isImages:[!0]};((0, o.isFunction)(i)?i:a.defaultHandlerSuccess).call(t,e),n(e);},r.readAsDataURL(e);}))),l[n]=null;}}}if(l=l.filter((t=>t)),l.length){const e=new FormData;let d;e.append(a.pathVariableName,t.path),e.append("source",t.source);for(let i=0;l.length>i;i+=1)if(d=l[i],d){const o=/\.[\d\w]+$/.test(d.name),n=d.type.match(/\/([a-z0-9]+)/i),r=n&&n[1]?n[1].toLowerCase():"";let s=l[i].name||Math.random().toString().replace(".","");if(!o&&r){let t=r;["jpeg","jpg"].includes(t)&&(t="jpeg|jpg"),new RegExp(".("+t+")$","i").test(s)||(s+="."+r);}const[c,u,h]=a.processFileName.call(t,a.filesVariableName(i),l[i],s);e.append(c,u,h);}s&&s(e),a.data&&(0, o.isPlainObject)(a.data)&&Object.keys(a.data).forEach((t=>{e.append(t,a.data[t]);})),a.prepareData.call(t,e),c.push((0, n.t)(t,e).then((e=>a.isSuccess.call(t,e)?(((0, o.isFunction)(i)?i:a.defaultHandlerSuccess).call(t,a.process.call(t,e)),e):(((0, o.isFunction)(r)?r:a.defaultHandlerError).call(t,(0, o.error)(a.getMessage.call(t,e))),e))).then((()=>{t.j.events&&t.j.e.fire("filesWereUploaded");})));}return Promise.all(c)}},27912:function(t,e,i){i.d(e,{$:function(){return s},t:function(){return a}});var o=i(65147),n=i(53883),r=i(89929);const s=new WeakMap;function a(t,e){const i=(0, r.$)(t,e),a=e=>{const i=new n.d({xhr:()=>{const e=new XMLHttpRequest;return void 0!==t.j.ow.FormData&&e.upload?(t.j.progressbar.show().progress(10),e.upload.addEventListener("progress",(e=>{if(e.lengthComputable){let i=e.loaded/e.total;i*=100,t.j.progressbar.show().progress(i),100>i||t.j.progressbar.hide();}}),!1)):t.j.progressbar.hide(),e},method:t.o.method||"POST",data:e,url:(0, o.isFunction)(t.o.url)?t.o.url(e):t.o.url,headers:t.o.headers,queryBuild:t.o.queryBuild,contentType:t.o.contentType.call(t,e),withCredentials:t.o.withCredentials||!1});let r=s.get(t);return r||(r=new Set,s.set(t,r)),r.add(i),t.j.e.one("beforeDestruct",i.destruct),i.send().then((t=>t.json())).catch((t=>({success:!1,data:{messages:[t]}}))).finally((()=>{i.destruct(),null==r||r.delete(i);}))};return (0, o.isPromise)(i)?i.then(a).catch((e=>{t.o.error.call(t,e);})):a(i)}},26538:function(t,e,i){i.d(e,{d:function(){return l}});var o=i(77753),n=i(17352),r=i(65147),s=i(74340),a=(i(77334),i(36115));class l extends o.vG{get j(){return this.jodit}className(){return "Uploader"}get o(){return this.options}setPath(t){return this.path=t,this}setSource(t){return this.source=t,this}bind(t,e,i){const o=()=>{t.classList.remove("jodit_drag_hover");},r=this,a=t=>{let a,l,c;const d=t.clipboardData,u=t=>{l&&(t.append("extension",c),t.append("mimetype",l.type));};if(!n.IS_IE&&(0, s.YQ)(d))return (0, s._9)(r,d.files,e,i).finally(o),!1;if(n.IS_IE&&!n.IS_ES_NEXT)return (0, s.dT)(r,d,e,i,o);if((0, s.Pb)(d)){const{items:n}=d;for(a=0;n.length>a;a+=1)if("file"===n[a].kind&&"image/png"===n[a].type){if(l=n[a].getAsFile(),l){const t=l.type.match(/\/([a-z0-9]+)/i);c=t[1]?t[1].toLowerCase():"",(0, s._9)(r,[l],e,i,u).finally(o);}t.preventDefault();break}}};r.j&&r.j.editor!==t?r.j.e.on(t,"paste",a):r.j.e.on("beforePaste",a),this.attachEvents(t,e,i,o);}attachEvents(t,e,i,o){const n=this;n.j.e.on(t,"dragend dragover dragenter dragleave drop",(t=>{t.preventDefault();})).on(t,"dragover",(e=>{((0, s.YQ)(e.dataTransfer)||(0, s.Pb)(e.dataTransfer))&&(t.classList.add("jodit_drag_hover"),e.preventDefault());})).on(t,"dragend dragleave",(e=>{t.classList.remove("jodit_drag_hover"),(0, s.YQ)(e.dataTransfer)&&e.preventDefault();})).on(t,"drop",(r=>{t.classList.remove("jodit_drag_hover"),(0, s.YQ)(r.dataTransfer)&&(r.preventDefault(),r.stopImmediatePropagation(),(0, s._9)(n,r.dataTransfer.files,e,i).finally(o));}));const r=t.querySelector("input[type=file]");r&&n.j.e.on(r,"change",(()=>{(0, s._9)(n,r.files,e,i).then((()=>{r.value="",/safari/i.test(navigator.userAgent)||(r.type="",r.type="file");})).finally(o);}));}uploadRemoteImage(t,e,i){const o=this,{o:n}=o,a=(0, r.isFunction)(i)?i:n.defaultHandlerError;(0, s.tN)(o,{action:"fileUploadRemote",url:t}).then((t=>{n.isSuccess.call(o,t)?((0, r.isFunction)(e)?e:n.defaultHandlerSuccess).call(o,n.process.call(o,t)):a.call(o,(0, r.error)(n.getMessage.call(o,t)));})).catch((t=>a.call(o,t)));}constructor(t,e){super(t),this.path="",this.source="default",this.options=(0, r.ConfigProto)(e||{},(0, r.ConfigProto)(a.T.defaultOptions.uploader,(0, r.isJoditObject)(t)?t.o.uploader:{}));}destruct(){this.setStatus(o.f.beforeDestruct);const t=s.$j.get(this);t&&(t.forEach((t=>{try{t.destruct();}catch(t){}})),t.clear()),super.destruct();}}},19633:function(t,e,i){i.d(e,{K:function(){return a}});var o=i(71842),n=i(65147),r=i(53048),s=i(54522);r.In.set("palette",i.n(s)());const a=(t,e,i)=>{const s="jodit-color-picker",a=(0, n.normalizeColor)(i),l=t.c.div(s),c=t.o.textIcons?`<span>${t.i18n("palette")}</span>`:r.In.get("palette"),d=t=>{const e=[];return (0, n.isPlainObject)(t)?Object.keys(t).forEach((i=>{e.push(`<div class="${s}__group ${s}__group-${i}">`),e.push(d(t[i])),e.push("</div>");})):(0, n.isArray)(t)&&t.forEach((t=>{e.push(`<span class='${s}__color-item ${a===t?s+"__color-item_active_true":""}' title="${t}" style="background-color:${t}" data-color="${t}"></span>`);})),e.join("")};l.appendChild(t.c.fromHTML(`<div class="${s}__groups">${d(t.o.colors)}</div>`)),l.appendChild(t.c.fromHTML(`<div data-ref="extra" class="${s}__extra"></div>`));const{extra:u}=(0, n.refs)(l);return t.o.showBrowserColorPicker&&(0, n.hasBrowserColorPicker)()&&(u.appendChild(t.c.fromHTML(`<div class="${s}__native">${c}<input type="color" value="#ffffff"/></div>`)),t.e.on(l,"change",(t=>{t.stopPropagation();const i=t.target;if(!i||!i.tagName||!o.J.isTag(i,"input"))return;const r=i.value||"";(0, n.isFunction)(e)&&e(r),t.preventDefault();}))),t.e.on(l,"mousedown touchend",(i=>{i.stopPropagation(),i.preventDefault();let r=i.target;if(r&&r.tagName&&!o.J.isTag(r,"svg")&&!o.J.isTag(r,"path")||!r.parentNode||(r=o.J.closest(r.parentNode,"span",t.editor)),!o.J.isTag(r,"span")||!r.classList.contains(s+"__color-item"))return;const a=(0, n.attr)(r,"-color")||"";e&&(0, n.isFunction)(e)&&e(a);})),t.e.fire("afterGenerateColorPicker",l,u,e,a),l};},10067:function(t,e,i){i.d(e,{k:function(){return a}});var o=i(55186),n=i(65147),r=i(53048),s=i(4909);const a=(t,e,i,a,c=!0)=>{let d;const u=[];if(e.upload&&t.o.uploader&&(t.o.uploader.url||t.o.uploader.insertImageAsBase64URI)){const i=t.c.fromHTML(`<div class="jodit-drag-and-drop__file-box"><strong>${t.i18n(c?"Drop image":"Drop file")}</strong><span><br>${t.i18n("or click")}</span><input type="file" accept="${c?"image/*":"*"}" tabindex="-1" dir="auto" multiple=""/></div>`);t.uploader.bind(i,(i=>{const o=(0, n.isFunction)(e.upload)?e.upload:t.o.uploader.defaultHandlerSuccess;(0, n.isFunction)(o)&&o.call(t,i),t.e.fire("closeAllPopups");}),(e=>{t.message.error(e.message),t.e.fire("closeAllPopups");})),u.push({icon:"upload",name:"Upload",content:i});}if(e.filebrowser&&(t.o.filebrowser.ajax.url||t.o.filebrowser.items.url)&&u.push({icon:"folder",name:"Browse",content:()=>{a&&a(),e.filebrowser&&t.filebrowser.open(e.filebrowser,c);}}),e.url){const s=new r.lD(t,{type:"submit",variant:"primary",text:"Insert"}),a=new r.XV(t,[new r.tS(t,{required:!0,label:"URL",name:"url",type:"text",placeholder:"https://"}),new r.tS(t,{name:"text",label:"Alternative text"}),new r.Yh(t,[s])]);d=null,!i||o.J.isText(i)||o.J.isComment(i)||!o.J.isTag(i,"img")&&!(0, n.$$)("img",i).length||(d="IMG"===i.tagName?i:(0, n.$$)("img",i)[0],l(a.container,"input[name=url]",(0, n.attr)(d,"src")),l(a.container,"input[name=text]",(0, n.attr)(d,"alt")),s.state.text="Update"),i&&o.J.isTag(i,"a")&&(l(a.container,"input[name=url]",(0, n.attr)(i,"href")),l(a.container,"input[name=text]",(0, n.attr)(i,"title")),s.state.text="Update"),a.onSubmit((i=>{(0, n.isFunction)(e.url)&&e.url.call(t,i.url,i.text);})),u.push({icon:"link",name:"URL",content:a.container});}return (0, s.Z)(t,u)};function l(t,e,i){const o=t.querySelector(e);return o?(i&&(o.value=i),o.value):""}},16116:function(t,e,i){i.d(e,{Kn:function(){return o.K},Zg:function(){return r.Z},kG:function(){return n.k}});var o=i(19633),n=i(10067),r=i(4909);},4909:function(t,e,i){i.d(e,{Z:function(){return l}});var o=i(77753),n=i(55186),r=i(65147),s=i(69052),a=i(53048);const l=(t,e,i)=>{const l=t.c.div("jodit-tabs"),c=t.c.div("jodit-tabs__wrapper"),d=t.c.div("jodit-tabs__buttons"),u={},h=[];let p="",f=0;l.appendChild(d),l.appendChild(c);const g=t=>{u[t]&&(h.forEach((t=>{t.state.variant="initial",t.state.activated=!1;})),(0, r.$$)(".jodit-tab",c).forEach((t=>{t.classList.remove("jodit-tab_active");})),u[t].button.state.variant="outline",u[t].button.state.activated=!0,u[t].tab.classList.add("jodit-tab_active"));};if(e.forEach((({icon:r,name:l,content:m})=>{const b=t.c.div("jodit-tab"),_=(0, a.$n)(t,r||l,l);t.e.on(_.container,"mousedown",(t=>t.preventDefault())),p||(p=l),d.appendChild(_.container),h.push(_),_.container.classList.add("jodit-tabs__button","jodit-tabs__button_columns_"+e.length),(0, s.T)(m)?b.appendChild(t.c.div("jodit-tab_empty")):b.appendChild(o.uA.isInstanceOf(m,a.D$)?m.container:m),c.appendChild(b),_.onAction((()=>(g(l),(0, s.T)(m)&&!n.J.isElement(m)&&m.call(t),i&&(i.activeTab=l),!1))),u[l]={button:_,tab:b},f+=1;})),!f)return l;if((0, r.$$)("a",d).forEach((t=>{t.style.width=(100/f).toFixed(10)+"%";})),g(i&&i.activeTab&&u[i.activeTab]?i.activeTab:p),i){let t=i.activeTab;Object.defineProperty(i,"activeTab",{configurable:!0,enumerable:!1,get:()=>t,set(e){t=e,g(e);}});}return l};},14221:function(t,e,i){var o=i(17352),n=i(56298),r=i(65147),s=i(931),a=i(17995),l=i.n(a);i(36115).T.prototype.controls.about={exec:t=>{const e=t.dlg({closeOnClickOverlay:!0}),i=t.i18n.bind(t);e.setMod("theme",t.o.theme).setHeader(i("About Jodit")).setContent(`<div class="jodit-about">\n\t\t\t\t\t<div>${i("Jodit Editor")} v.${t.getVersion()}</div>\n\t\t\t\t\t<div>${i("License: %s",(0, r.isLicense)(t.o.license)?(0, r.normalizeLicense)(t.o.license):"MIT")}</div>\n\t\t\t\t\t<div>\n\t\t\t\t\t\t<a href="${o.HOMEPAGE}" target="_blank">${o.HOMEPAGE}</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/docs/" target="_blank">${i("Jodit User's Guide")}</a>\n\t\t\t\t\t\t${i("contains detailed help for using")}\n\t\t\t\t\t</div>\n\t\t\t\t\t<div>${i("Copyright © XDSoft.net - Chupurnov Valeriy. All rights reserved.")}</div>\n\t\t\t\t</div>`),(0, r.css)(e.dialog,{minHeight:200,minWidth:420}),e.open(!0,!0);},tooltip:"About Jodit",mode:o.MODE_SOURCE+o.MODE_WYSIWYG},n.fg.add("about",(function(t){t.registerButton({name:"about",group:"info"});})),s.I.set("about",l());},55989:function(t,e,i){var o=i(31635),n=i(22664),r=i(56298),s=i(65147),a=i(37435);i(84018);const l="addnewline";class c extends a.Plugin{constructor(){super(...arguments),this.__line=this.j.c.fromHTML(`<div role="button" tabindex="-1" title="${this.j.i18n("Break")}" class="jodit-add-new-line"><span>${a.Icon.get("enter")}</span></div>`),this.__isMatchedTag=t=>Boolean(t&&this.j.o.addNewLineTagsTriggers.includes(t.nodeName.toLowerCase())),this.__isBeforeContent=!1,this.__lineInFocus=!1,this.__isShown=!1,this.__hideForce=()=>{this.__isShown&&(this.__isShown=!1,this.j.async.clearTimeout(this.__timeout),this.__lineInFocus=!1,a.Dom.safeRemove(this.__line),this.__line.style.setProperty("--jd-anl-handle-offset","0"));},this.__canGetFocus=t=>null!=t&&a.Dom.isBlock(t)&&!/^(img|table|iframe|hr)$/i.test(t.nodeName),this.__onClickLine=t=>{const e=this.j,i=e.createInside.element(e.o.enter);this.__isBeforeContent&&this.__current&&this.__current.parentNode?this.__current===e.editor?a.Dom.prepend(e.editor,i):this.__current.parentNode.insertBefore(i,this.__current):e.editor.appendChild(i),e.s.setCursorIn(i),(0, s.scrollIntoViewIfNeeded)(i,e.editor,e.ed),e.synchronizeValues(),this.__hideForce(),t.preventDefault();};}__show(){this.j.o.readonly||this.j.isLocked||(this.j.async.clearTimeout(this.__timeout),this.__isShown||(this.__isShown=!0,this.j.container.appendChild(this.__line),this.__line.style.width=this.j.container.clientWidth+"px"));}onLock(t){t&&this.__isShown&&this.__hideForce();}__hide(){this.__isShown&&!this.__lineInFocus&&(this.__timeout=this.j.async.setTimeout(this.__hideForce,{timeout:500,label:"add-new-line-hide"}));}afterInit(t){t.o.addNewLine&&(t.e.on(this.__line,"mousemove",(t=>{t.stopPropagation();})).on(this.__line,"mousedown touchstart",this.__onClickLine).on("change",this.__hideForce).on(this.__line,"mouseenter",(()=>{this.j.async.clearTimeout(this.__timeout),this.__lineInFocus=!0;})).on(this.__line,"mouseleave",(()=>{this.__lineInFocus=!1;})).on("changePlace",this.__addEventListeners.bind(this)),this.__addEventListeners());}__addEventListeners(){const t=this.j;t.e.off(t.editor,"."+l).off(t.container,"."+l).on([t.ow,t.ew,t.editor],"scroll."+l,this.__hideForce).on(t.editor,"click."+l,this.__hide).on(t.container,"mouseleave."+l,this.__hide).on(t.editor,"mousemove."+l,this.__onMouseMove);}onDblClickEditor(t){const e=this.j;if(!e.o.readonly&&e.o.addNewLineOnDBLClick&&t.target===e.editor&&e.s.isCollapsed()){const i=(0, s.offset)(e.editor,e,e.ed),o=t.pageY-e.ew.scrollX,n=e.createInside.element(e.o.enter);Math.abs(o-i.top)<Math.abs(o-(i.height+i.top))&&e.editor.firstChild?e.editor.insertBefore(n,e.editor.firstChild):e.editor.appendChild(n),e.s.setCursorIn(n),e.synchronizeValues(),this.__hideForce(),t.preventDefault();}}__onMouseMove(t){const e=this.j;let i=e.ed.elementFromPoint(t.clientX,t.clientY);if(!a.Dom.isHTMLElement(i)||!a.Dom.isOrContains(e.editor,i))return;if(e.editor===i||this.__isMatchedTag(i)||(i=a.Dom.closest(i,this.__isMatchedTag,e.editor)),!i)return void this.__hide();if(this.__isMatchedTag(i)){const t=a.Dom.up(i,a.Dom.isBlock,e.editor);t&&t!==e.editor&&(i=t);}const o=(0, s.position)(i,this.j);let n=!1,{clientY:r,clientX:l}=t;if(this.j.iframe){const{top:t,left:e}=(0, s.position)(this.j.iframe,this.j,!0);r+=t,l+=e;}const c=this.j.o.addNewLineDeltaShow;Math.abs(r-o.top)>c?Math.abs(r-(o.top+o.height))>c||(n=o.top+o.height,this.__isBeforeContent=!1):(n=o.top,this.__isBeforeContent=!0);const d=e.editor===i;!1!==n&&(d&&!this.__isBeforeContent||!d&&!(0, s.call)(this.__isBeforeContent?a.Dom.prev:a.Dom.next,i,this.__canGetFocus,e.editor))?(this.__line.style.top=n+"px",this.__current=i,this.__show(),this.__line.style.setProperty("--jd-anl-handle-offset",l-o.left-10+"px")):(this.__current=!1,this.__hide());}beforeDestruct(){this.j.async.clearTimeout(this.__timeout),this.j.e.off(this.__line).off("changePlace",this.__addEventListeners),a.Dom.safeRemove(this.__line),this.j.e.off([this.j.ow,this.j.ew,this.j.editor],"."+l).off(this.j.container,"."+l);}}(0, o.Cg)([(0, n.watch)(":lock")],c.prototype,"onLock",null),(0, o.Cg)([n.autobind],c.prototype,"__hide",null),(0, o.Cg)([(0, n.watch)(":dblclick")],c.prototype,"onDblClickEditor",null),(0, o.Cg)([(0, n.throttle)((t=>t.defaultTimeout))],c.prototype,"__onMouseMove",null),r.fg.add("addNewLine",c);},84018:function(t,e,i){var o=i(931),n=i(86634),r=i.n(n),s=i(36115);s.T.prototype.addNewLine=!0,s.T.prototype.addNewLineOnDBLClick=!0,s.T.prototype.addNewLineTagsTriggers=["table","iframe","img","hr","pre","jodit"],s.T.prototype.addNewLineDeltaShow=20,o.I.set("enter",r());},64241:function(t,e,i){var o=i(31635),n=i(87875),r=i(66927),s=i(56298),a=i(99951),l=i(29866),c=(i(66888),i(20785)),d=i(81026);class u extends l.k{get __dialog(){return this.jodit.dlg({buttons:["fullsize","dialog.close"],closeOnClickOverlay:!0,closeOnEsc:!0,resizable:!1,draggable:!0,minHeight:160})}get __container(){const{jodit:t,__dialog:e}=this;return new c.b(t,{onInsertAfter(i){t.s.focus(),t.s.setCursorAfter(t.s.current()),t.s.insertHTML(i),e.close();},onInsert(i){t.s.focus(),t.s.insertHTML(i),e.close();}})}constructor(t){super(t),this.buttons=[{name:"ai-commands",group:"insert"},{name:"ai-assistant",group:"insert"}],(0, s.JW)(d);}afterInit(){}onGenerateAiAssistantForm(t){this.__dialog.open(this.__container,"AI Assistant"),this.__container.setPrompt(t);}onInvokeAiAssistant(t){const{jodit:e}=this;e.s.focus();const i=e.s.html;e.async.promise((async(o,n)=>{try{o(await e.o.aiAssistant.aiAssistantCallback(t,i));}catch(t){n(t);}})).then((t=>{e.e.fire("ai-assistant-response",t);})).catch((t=>{(0, a.z)(t)||(e.message.error(t.message),e.e.fire("ai-assistant-error",t.message));}));}beforeDestruct(t){var e,i;null===(e=(0, n.PO)(this,"__container"))||void 0===e||e.destruct(),null===(i=(0, n.PO)(this,"__dialog"))||void 0===i||i.destruct();}}(0, o.Cg)([n.PP],u.prototype,"__dialog",null),(0, o.Cg)([n.PP],u.prototype,"__container",null),(0, o.Cg)([(0, r.w)(":generateAiAssistantForm.ai-assistant")],u.prototype,"onGenerateAiAssistantForm",null),(0, o.Cg)([(0, r.w)(":invokeAiAssistant")],u.prototype,"onInvokeAiAssistant",null),s.fg.add("ai-assistant",u);},66888:function(t,e,i){var o=i(931),n=i(91115),r=i.n(n),s=i(1916),a=i.n(s),l=i(36115);l.T.prototype.aiAssistant={aiCommonPrefixPrompt:"",aiCommonSuffixPrompt:"",aiImproveWritingPrompt:"It needs to be refined for better clarity, coherence, and overall quality. Please enhance the writing style while keeping the original meaning and language intact.",aiMakeShorterPrompt:"Please condense this content to make it more concise, while preserving the key messages, language and information.",aiMakeLongerPrompt:"Expand on this content to provide more detail, depth, and richness, without diverging from the original message and language.",aiSimplifyLanguagePrompt:"The language used here needs to be simplified for easier understanding, without altering the core information and the original language.",aiSummarizePrompt:"Provide a brief summary of this content, capturing the essential points in a concise manner. Preserve the original language and meaning.",aiContinuePrompt:"Continue the narrative or discussion from this content seamlessly, maintaining the same language, tone and style.",aiChangeToneProfessionalPrompt:"Adjust the tone to be professional, suitable for a formal business or academic setting, while retaining the original message and language.",aiChangeToneFriendlyPrompt:"It needs to be rewritten in a friendly tone while maintaining the original message and language. Please modify this content to be warm, approachable, and engaging.",aiChangeToneFormalPrompt:"Transform this content to have a formal tone, appropriate for official or serious contexts, without changing the main points and language.",aiChangeToneCasualPrompt:"Revise this content to have a casual, relaxed tone, making it feel more personal and less formal, without changing the original meaning and language.",aiChangeToneDirectPrompt:"Make the tone more direct, with straightforward language and a clear, assertive approach, without changing the original meaning and language.",aiChangeToneConfidentPrompt:"Infuse this content with a confident tone, showcasing assurance and decisiveness, without changing the original meaning and language.",aiChangeStyleBusinessPrompt:"Rewrite this content with a business-oriented style, focusing on clarity, efficiency, and professionalism, without changing the original meaning and language.",aiChangeStyleLegalPrompt:"Adapt this content to a legal style, incorporating appropriate terminology and formality typical of legal documents, without changing the original meaning and language.",aiChangeStyleJournalismPrompt:"Convert this content into a journalistic style, emphasizing factual accuracy, objectivity, and informative reporting, without changing the original meaning and language.",aiChangeStylePoeticPrompt:"Recreate this content with a poetic style, using expressive language, rhythm, and imagery to convey the message, without changing the original meaning and language.",aiTranslateToSpanishPrompt:"Translate this content into Spanish, ensuring the translation is accurate and maintains the original meaning.",aiTranslateToFrenchPrompt:"Translate this content into French, ensuring the translation is accurate and maintains the original meaning.",aiTranslateToGermanPrompt:"Translate this content into German, ensuring the translation is accurate and maintains the original meaning.",aiTranslateToItalianPrompt:"Translate this content into Italian, ensuring the translation is accurate and maintains the original meaning.",aiTranslateToPortuguesePrompt:"Translate this content into Portuguese, ensuring the translation is accurate and maintains the original meaning.",aiTranslateToEnglishPrompt:"Translate this content into English, ensuring the translation is accurate and maintains the original meaning.",aiTranslateToChinesePrompt:"Translate this content into Chinese, ensuring the translation is accurate and maintains the original meaning.",aiTranslateToJapanesePrompt:"Translate this content into Japanese, ensuring the translation is accurate and maintains the original meaning.",aiTranslateToKoreanPrompt:"Translate this content into Korean, ensuring the translation is accurate and maintains the original meaning.",aiTranslateToRussianPrompt:"Translate this content into Russian, ensuring the translation is accurate and maintains the original meaning.",aiTranslateToArabicPrompt:"Translate this content into Arabic, ensuring the translation is accurate and maintains the original meaning."},o.I.set("ai-assistant",a()),o.I.set("ai-commands",r()),l.T.prototype.controls["ai-commands"]={isDisabled:t=>!t.o.aiAssistant.aiAssistantCallback,tooltip:"AI Commands",list:{aiImproveWritingPrompt:"Improve writing",aiMakeShorterPrompt:"Make shorter",aiMakeLongerPrompt:"Make longer",aiSimplifyLanguagePrompt:"Simplify language",aiSummarizePrompt:"Summarize",aiContinuePrompt:"Continue",aiChangeToneProfessionalPrompt:"Change tone to professional",aiChangeToneFriendlyPrompt:"Change tone to friendly",aiChangeToneFormalPrompt:"Change tone to formal",aiChangeToneCasualPrompt:"Change tone to casual",aiChangeToneDirectPrompt:"Change tone to direct",aiChangeToneConfidentPrompt:"Change tone to confident",aiChangeStyleBusinessPrompt:"Change style to business",aiChangeStyleLegalPrompt:"Change style to legal",aiChangeStyleJournalismPrompt:"Change style of journalism",aiChangeStylePoeticPrompt:"Change style to poetic",aiTranslateToSpanishPrompt:"Translate to Spanish",aiTranslateToFrenchPrompt:"Translate to French",aiTranslateToGermanPrompt:"Translate to German",aiTranslateToItalianPrompt:"Translate to Italian",aiTranslateToPortuguesePrompt:"Translate to Portuguese",aiTranslateToEnglishPrompt:"Translate to English",aiTranslateToChinesePrompt:"Translate to Chinese",aiTranslateToJapanesePrompt:"Translate to Japanese",aiTranslateToKoreanPrompt:"Translate to Korean",aiTranslateToRussianPrompt:"Translate to Russian",aiTranslateToArabicPrompt:"Translate to Arabic"},exec:(t,e,{control:i})=>{t.e.fire("generateAiAssistantForm.ai-assistant",i.name);}},l.T.prototype.controls["ai-assistant"]={isDisabled:t=>!t.o.aiAssistant.aiAssistantCallback,hotkeys:["ctrl+a+i","cmd+a+i"],tooltip:"AI Assistant",exec:(t,e,i)=>{t.e.fire("generateAiAssistantForm.ai-assistant");}};},82585:function(t){t.exports={aiAssistant:"AI Assistant",aiCommands:"AI Commands","AI Assistant":"AI Assistant",Prompt:"Prompt","Ask AI to improve generated text":"Ask AI to improve generated text",Submit:"Submit"};},68942:function(t){t.exports={aiAssistant:"Asistente de IA",aiCommands:"Comandos de IA","AI Assistant":"Asistente de IA","AI Commands":"Comandos de IA","Improve writing":"Mejorar escritura","Make shorter":"Hacer más corto","Make longer":"Hacer más largo","Simplify language":"Simplificar lenguaje",Summarize:"Resumir",Continue:"Continuar",Prompt:"Solicitud",Insert:"Insertar","Insert After":"Insertar después","Try Again":"Intentar de nuevo","Ask AI to improve generated text":"Pida a la IA que mejore el texto generado","Change tone to professional":"Cambiar tono a profesional","Change tone to friendly":"Cambiar tono a amigable","Change tone to formal":"Cambiar tono a formal","Change tone to casual":"Cambiar tono a casual","Change tone to direct":"Cambiar tono a directo","Change tone to confident":"Cambiar tono a confiado","Change tone to business":"Cambiar tono a empresarial","Change style to legal":"Cambiar estilo a legal","Change style to journalism":"Cambiar estilo a periodístico","Change style to poetic":"Cambiar estilo a poético","Translate to Spanish":"Traducir al español","Translate to French":"Traducir al francés","Translate to German":"Traducir al alemán","Translate to Italian":"Traducir al italiano","Translate to Portuguese":"Traducir al portugués","Translate to English":"Traducir al inglés","Translate to Chinese":"Traducir al chino","Translate to Japanese":"Traducid al japonés","Translate to Korean":"Traducir al coreano","Translate to Russian":"Traducir al ruso","Translate to Arabic":"Traducir al árabe",Submit:"Enviar"};},81026:function(t,e,i){i.r(e),i.d(e,{en:function(){return o},es:function(){return n}});var o=i(82585),n=i(68942);},20785:function(t,e,i){i.d(e,{b:function(){return d}});var o=i(31635),n=i(24767),r=i(66927),s=i(55186),a=i(98253),l=i(53048),c=i(29780);let d=class extends c.D{className(){return "UIAiAssistant"}constructor(t,{onInsert:e,onInsertAfter:i}){super(t),this.__aiResult="",this.__error=this.getElm("error"),this.__body=this.getElm("body"),this.__buttons=this.getElm("buttons"),this.__results=this.getElm("results"),this.__spinner=this.getElm("spinner"),this.__insertButton=(0, l.$n)(t,"","Insert","primary").onAction((()=>e(this.__aiResult))),this.__insertAfterButton=(0, l.$n)(t,"","Insert After","initial").onAction((()=>i(this.__aiResult)));const o=()=>{this.__formAiAssistant.validate()&&(this.__formAiAssistant.submit(),this.__toggleInsertButton(!0),this.__toggleSubmitButton(!0));};this.__submitButton=(0, l.$n)(t,"ai-assistant","").onAction(o),this.__tryAgainButton=(0, l.$n)(t,"update","","initial").onAction(o),this.promptInput=new l.F0(t,{name:"prompt",required:!0,label:"Prompt",placeholder:"Ask AI to improve generated text",className:this.getFullElName("prompt-row-input")});const n=new l.Yh(t,[this.__insertButton,this.__insertAfterButton,this.__tryAgainButton],{className:this.getFullElName("prompt-row")});this.__formAiAssistant=new l.XV(t,[new l.Yh(t,[this.promptInput,this.__submitButton],{className:this.getFullElName("prompt-row")})]).onSubmit((e=>{this.__error.textContent="",this.setMod("loading",!0),t.e.fire("invokeAiAssistant",e.prompt);const i=this.getFullElName("","hide","true");this.__results.classList.remove(i),this.__buttons.classList.remove(i),s.J.detach(this.__results),this.__results.appendChild(this.__spinner),this.__insertButton.focus();})),this.__buttons.appendChild(n.container),this.__body.appendChild(this.__formAiAssistant.container),this.onChangePromptValue();}render(){return '<div>\n\t\t\t\t<div class="&__container">\n\t\t\t\t\t\t<div class="&__error"></div>\n\t\t\t\t\t\t<div class="&__body"></div>\n\t\t\t\t\t\t<div class="&__buttons &_hide_true"></div>\n\t\t\t\t\t\t<div class="&__results &_hide_true">\n\t\t\t\t\t\t\t\t<div class="&__spinner"></div>\n\t\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t</div>'}setPrompt(t){if(t){const{jodit:e}=this,i=e.o.aiAssistant[t],{aiCommonPrefixPrompt:o,aiCommonSuffixPrompt:n}=e.o.aiAssistant;this.promptInput.value=[o,(0, a.K)(i)?i:"",n].filter(Boolean).join(" "),this.__toggleInsertButton(!0),this.promptInput.value&&(this.__formAiAssistant.submit(),this.__toggleSubmitButton(!0));}this.promptInput.focus();}onAiAssistentResponse(t){this.setMod("loading",!1),s.J.detach(this.__results),this.__aiResult=t,this.__results.appendChild(this.jodit.c.fromHTML(t)),this.__toggleSubmitButton(!1),this.__toggleInsertButton(!1);}onAiAssistentError(t){this.__aiResult="",this.setMod("loading",!1),this.__error.textContent=t,s.J.detach(this.__results),this.__toggleSubmitButton(!1);const e=this.getFullElName("","hide","true");this.__results.classList.add(e),this.__toggleInsertButton(!0);}onChangePromptValue(){this.__toggleSubmitButton(!this.promptInput.value);}__toggleSubmitButton(t){this.__submitButton.state.disabled=t,this.__tryAgainButton.state.disabled=t;}__toggleInsertButton(t){this.__insertButton.state.disabled=t,this.__insertAfterButton.state.disabled=t;}};(0, o.Cg)([(0, r.w)(":ai-assistant-response")],d.prototype,"onAiAssistentResponse",null),(0, o.Cg)([(0, r.w)(":ai-assistant-error")],d.prototype,"onAiAssistentError",null),(0, o.Cg)([(0, r.w)("promptInput:change")],d.prototype,"onChangePromptValue",null),d=(0, o.Cg)([n.s],d);},13917:function(t,e,i){var o=i(17352),n=i(71842),r=i(56298),s=i(69052),a=i(71005),l=i(46602),c=(i(81982),i(90084)),d=i(89832);class u extends a.k{afterInit(t){t.registerCommand("deleteButton",{exec:()=>this.onDelete(!1),hotkeys:t.o.delete.hotkeys.delete},{stopPropagation:!1}).registerCommand("backspaceButton",{exec:()=>this.onDelete(!0),hotkeys:t.o.delete.hotkeys.backspace},{stopPropagation:!1}).registerCommand("deleteWordButton",{exec:()=>this.onDelete(!1,"word"),hotkeys:t.o.delete.hotkeys.deleteWord}).registerCommand("backspaceWordButton",{exec:()=>this.onDelete(!0,"word"),hotkeys:t.o.delete.hotkeys.backspaceWord}).registerCommand("deleteSentenceButton",{exec:()=>this.onDelete(!1,"sentence"),hotkeys:t.o.delete.hotkeys.deleteSentence}).registerCommand("backspaceSentenceButton",{exec:()=>this.onDelete(!0,"sentence"),hotkeys:t.o.delete.hotkeys.backspaceSentence});}beforeDestruct(t){t.e.off("afterCommand.delete");}onDelete(t,e="char"){const i=this.j,r=i.selection;if(r.isFocused()||r.focus(),(0, c.L)(i))return !1;const a=r.range,u=i.createInside.text(o.INVISIBLE_SPACE);try{if(n.J.safeInsertNode(a,u),!n.J.isOrContains(i.editor,u))return;if(i.e.fire("backSpaceBeforeCases",t,u))return !1;if((0,l.W)(i,u,t),d.C.some((o=>{if((0,s.T)(o)&&o(i,u,t,e))return !0})))return !1}catch(t){throw t}finally{i.e.fire("backSpaceAfterDelete",t,u),this.safeRemoveEmptyNode(u);}return !1}safeRemoveEmptyNode(t){var e,i;const{range:o}=this.j.s;o.startContainer===t&&(t.previousSibling?n.J.isText(t.previousSibling)?o.setStart(t.previousSibling,null!==(i=null===(e=t.previousSibling.nodeValue)||void 0===e?void 0:e.length)&&void 0!==i?i:0):o.setStartAfter(t.previousSibling):t.nextSibling&&(n.J.isText(t.nextSibling)?o.setStart(t.nextSibling,0):o.setStartBefore(t.nextSibling)),o.collapse(!0),this.j.s.selectRange(o)),n.J.safeRemove(t);}}u.requires=["hotkeys"],r.fg.add("backspace",u);},43327:function(t,e,i){i.d(e,{E:function(){return s}});var o=i(17352),n=i(55186),r=i(81779);function s(t,e,i){let r=e,s=r;for(;r&&!n.J.findNotEmptySibling(r,i)&&r.parentElement!==t.editor;)r=r.parentElement,s=r;if(n.J.isElement(s)&&n.J.isContentEditable(s,t.editor)){const r=n.J.findNotEmptySibling(s,i);if(r&&(function(t,e,i,r){const s=n.J.isTag(i,o.LIST_TAGS),l=n.J.isTag(e,o.LIST_TAGS),c=(t,e)=>e?t.firstElementChild:t.lastElementChild;return l?(i=t.createInside.element(t.o.enterBlock),n.J.before(e,i),a(t,c(e,r),i,r)):!(!i||!s||l)&&a(t,e,c(i,!r),r)}(t,s,r,i)||a(t,s,r,i)))return t.s.setCursorBefore(e),!0}return !1}function a(t,e,i,o){if(e&&n.J.isElement(i)){n.J.moveContent(e,i,!o,(0, r.g)(t));let s=e;for(;s&&s!==t.editor&&n.J.isEmpty(s);){const t=s.parentElement;n.J.safeRemove(s),s=t;}return !0}return !1}},72874:function(t,e,i){i.d(e,{a:function(){return s}});var o=i(55186),n=i(84976),r=i(81779);function s(t,e,i){const s=o.J.findSibling(e,i),a=o.J.findSibling(e,!i);if(!o.J.closest(e,o.J.isElement,t.editor)&&o.J.isList(s)&&o.J.isList(a)&&o.J.isTag(s.lastElementChild,"li")&&o.J.isTag(a.firstElementChild,"li")){const{setCursorBefore:l,setCursorAfter:c}=t.s,d=s.lastElementChild;return (0, n.T1)(i?o.J.prepend:o.J.append,a.firstElementChild,e),o.J.moveContent(a,s,!i,(0, r.g)(t)),o.J.safeRemove(a),(0, n.T1)(i?o.J.append:o.J.prepend,d,e),(0, n.T1)(i?l:c,e),!0}return !1}},90084:function(t,e,i){function o(t){return !t.s.isCollapsed()&&(t.execCommand("Delete"),!0)}i.d(e,{L:function(){return o}});},81486:function(t,e,i){i.d(e,{H:function(){return a}});var o=i(17352),n=i(71842),r=i(65147),s=i(81779);function a(t,e,i,l){var c,d,u;const h=i?-1:1,p=n.J.sibling(e,!i);let f,g=n.J.sibling(e,i),m=null,b=!1;const _=e=>{let o=n.J.sibling(e,i);return !o&&e.parentNode&&e.parentNode!==t.editor&&(o=(0, s.s)(e,!i,t.editor,!0)),o};for(g||(g=_(e));g&&(n.J.isText(g)||n.J.isInlineBlock(g));){for(;n.J.isInlineBlock(g);)g=i?null==g?void 0:g.lastChild:null==g?void 0:g.firstChild;if(!g)break;if(null===(c=g.nodeValue)||void 0===c?void 0:c.length){let t=(0, r.toArray)(g.nodeValue);const e=t.length;let s=i?e-1:0;if(t[s]===o.INVISIBLE_SPACE)for(;t[s]===o.INVISIBLE_SPACE;)s+=h;if(f=t[s],t[s+h]===o.INVISIBLE_SPACE){for(s+=h;t[s]===o.INVISIBLE_SPACE;)s+=h;s+=i?1:-1;}if(t=i&&0>s?[]:t.slice(i?0:s+1,i?s:e),!p||!n.J.isText(p)||(i?/^ /:/ $/).test(null!==(d=p.nodeValue)&&void 0!==d?d:"")||!(0, r.trimInv)(p.nodeValue||"").length)for(let e=i?t.length-1:0;(i?e>=0:t.length>e)&&" "===t[e];e+=i?-1:1)t[e]=o.NBSP_SPACE;g.nodeValue=t.join("");}if((null===(u=g.nodeValue)||void 0===u?void 0:u.length)||(m=g),!(0, r.isVoid)(f)&&f!==o.INVISIBLE_SPACE){b=!0,(0, r.call)(i?n.J.after:n.J.before,g,e),("sentence"===l||"word"===l&&" "!==f&&f!==o.NBSP_SPACE)&&a(t,e,i,l);break}const s=_(g);m&&(n.J.safeRemove(m),m=null),g=s;}return m&&(n.J.safeRemove(m),m=null),b&&(function(t,e){let i=t.parentElement;for(;i&&n.J.isInlineBlock(i)&&n.J.isTag(i,"a");){const e=i.parentElement;n.J.isEmpty(i)&&(n.J.after(i,t),n.J.safeRemove(i)),i=e;}}(e),function(t,e){e.parentElement!==t.editor&&n.J.isBlock(e.parentElement)&&n.J.each(e.parentElement,n.J.isEmptyTextNode)&&n.J.after(e,t.createInside.element("br"));}(t,e),t.s.setCursorBefore(e),n.J.isTag(e.previousSibling,"br")&&!n.J.findNotEmptySibling(e,!1)&&n.J.after(e,t.createInside.element("br"))),b}},29822:function(t,e,i){i.d(e,{V:function(){return s}});var o=i(71842),n=i(65147),r=i(46602);function s(t,e,i){let s=o.J.findSibling(e,i);return !s&&e.parentElement&&e.parentElement!==t.editor&&(s=o.J.findSibling(e.parentElement,i)),!(!o.J.isElement(s)||o.J.isContentEditable(s,t.editor)||((0, n.call)(i?o.J.before:o.J.after,s,e),o.J.safeRemove(s),(0, r.W)(t,e,i),(0, n.call)(i?t.s.setCursorBefore:t.s.setCursorAfter,e),0))}},59988:function(t,e,i){i.d(e,{_:function(){return n}});var o=i(55186);function n(t,e,i){const n=o.J.closest(e,o.J.isElement,t.editor);if(!n)return !1;const r=o.J.findNotEmptySibling(n,i);return !(!r||!o.J.isEmpty(r)||(o.J.safeRemove(r),t.s.setCursorBefore(e),0))}},42898:function(t,e,i){i.d(e,{C:function(){return s}});var o=i(17352),n=i(71842),r=i(72874);function s(t,e,i){let s=!1;const{setCursorBefore:a,setCursorIn:l}=t.s;let c=n.J.closest(e,n.J.isElement,t.editor);if(!c||!n.J.isEmpty(c))return !1;const d=n.J.findNotEmptyNeighbor(e,i,t.editor);do{if(!c||!n.J.isEmpty(c)||n.J.isCell(c))break;{n.J.after(c,e);const i=n.J.closest(c,(t=>n.J.isElement(t)&&t!==c),t.editor);n.J.safeRemove(c),s=!0,c=i;}}while(c);return !(!s||!(0, r.a)(t,e,i))||(!d||n.J.isText(d)||n.J.isTag(d,o.INSEPARABLE_TAGS)?a(e):l(d,!i),s)}},84323:function(t,e,i){i.d(e,{f:function(){return s}});var o=i(17352),n=i(55186),r=i(42898);function s(t,e,i){const s=n.J.findSibling(e,i);return !(!n.J.isElement(s)||!n.J.isTag(s,o.INSEPARABLE_TAGS)&&!n.J.isEmpty(s)||(n.J.safeRemove(s),n.J.isTag(s,"br")&&!n.J.findNotEmptySibling(e,!1)&&n.J.after(e,t.createInside.element("br")),t.s.setCursorBefore(e),n.J.isTag(s,"br")&&(0, r.C)(t,e,i),0))}},94766:function(t,e,i){i.d(e,{R:function(){return n}});var o=i(55186);function n(t,e){return !!o.J.isCell(e.parentElement)}},89708:function(t,e,i){i.d(e,{B:function(){return r}});var o=i(55186),n=i(97369);function r(t,e,i){var r;const s=o.J.closest(e,o.J.isElement,t.editor),{s:a}=t;if(o.J.isLeaf(s)&&(null===(r=null==s?void 0:s.parentElement)||void 0===r?void 0:r[i?"firstElementChild":"lastElementChild"])===s&&a.cursorInTheEdge(i,s)){const r=s.parentElement,l=t.createInside.element(t.o.enterBlock);return (0, n.call)(i?o.J.before:o.J.after,r,l),o.J.moveContent(s,l),o.J.safeRemove(s),o.J.isEmpty(r)&&o.J.safeRemove(r),(0, n.call)(i?a.setCursorBefore:a.setCursorAfter,e),!0}return !1}},89832:function(t,e,i){i.d(e,{C:function(){return h}});var o=i(43327),n=i(72874),r=i(81486),s=i(29822),a=i(59988),l=i(42898),c=i(84323),d=i(94766),u=i(89708);const h=[c.f,s.V,r.H,d.R,l.C,a._,n.a,o.E,u.B];},81982:function(t,e,i){i(36115).T.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"]}};},81779:function(t,e,i){i.d(e,{g:function(){return r},s:function(){return n}});var o=i(71842);function n(t,e,i,n=!1){const r=t=>e?t.firstChild:t.lastChild;let s=o.J.findNotEmptyNeighbor(t,!e,i);if(n&&o.J.isElement(s)&&!o.J.isInlineBlock(s))return null;if(s)do{if(!r(s))return s;s=r(s);}while(s);return null}function r(t){return e=>!0!==t.e.fire("backSpaceIsMovedIgnore",e)}},49289:function(t,e,i){var o=i(56298),n=i(65147),r=i(931),s=(i(73124),i(52450)),a=i.n(s),l=i(41111),c=i.n(l),d=i(49972),u=i.n(d),h=i(45062),p=i.n(h),f=i(18605),g=i.n(f),m=i(83389),b=i.n(m),_=i(36115);o.fg.add("bold",(function(t){const e=e=>{const i=_.T.defaultOptions.controls[e],o={...i.css};let r;return Object.keys(o).forEach((t=>{r||(r={}),r[t]=(0, n.isArray)(o[t])?o[t][0]:o[t];})),t.s.commitStyle({element:i.tags?i.tags[0]:void 0}),t.synchronizeValues(),!1};["bold","italic","underline","strikethrough"].forEach((e=>{t.registerButton({name:e,group:"font-style"});})),["superscript","subscript"].forEach((e=>{t.registerButton({name:e,group:"script"});})),t.registerCommand("bold",{exec:e,hotkeys:["ctrl+b","cmd+b"]}).registerCommand("italic",{exec:e,hotkeys:["ctrl+i","cmd+i"]}).registerCommand("underline",{exec:e,hotkeys:["ctrl+u","cmd+u"]}).registerCommand("strikethrough",{exec:e}).registerCommand("subscript",{exec:e}).registerCommand("superscript",{exec:e});})),r.I.set("bold",a()).set("italic",c()).set("strikethrough",u()).set("subscript",p()).set("superscript",g()).set("underline",b());},73124:function(t,e,i){var o=i(36115);o.T.prototype.controls.subscript={tags:["sub"],tooltip:"subscript"},o.T.prototype.controls.superscript={tags:["sup"],tooltip:"superscript"},o.T.prototype.controls.bold={tagRegExp:/^(strong|b)$/i,tags:["strong","b"],css:{"font-weight":["bold","700"]},tooltip:"Bold"},o.T.prototype.controls.italic={tagRegExp:/^(em|i)$/i,tags:["em","i"],css:{"font-style":"italic"},tooltip:"Italic"},o.T.prototype.controls.underline={tagRegExp:/^(u)$/i,tags:["u"],css:{"text-decoration-line":"underline"},tooltip:"Underline"},o.T.prototype.controls.strikethrough={tagRegExp:/^(s)$/i,tags:["s"],css:{"text-decoration-line":"line-through"},tooltip:"Strike through"};},98341:function(t,e,i){var o=i(55186),n=i(56298),r=i(84976),s=i(71005),a=i(931),l=i(93267),c=i.n(l);i(36115).T.prototype.controls.classSpan={command:"applyClassName",exec:r.qN,list:["enabled","disabled","activated","text-left","text-center","text-right","warning","error"],isChildActive:(t,e)=>{const i=t.s.current();if(i){const n=o.J.closest(i,o.J.isElement,t.editor)||t.editor;return Boolean(e.control.args&&n.classList.contains(e.control.args[0].toString()))}return !1},isActive:(t,e)=>{const i=t.s.current();if(i){const n=o.J.closest(i,o.J.isElement,t.editor)||t.editor;let r=!1;return e.control.list&&Object.keys(e.control.list).forEach((t=>{n.classList.contains(t)&&(r=!0);})),Boolean(n&&n!==t.editor&&void 0!==e.control.list&&r)}return !1},childTemplate:(t,e,i)=>`<span class="${e}">${t.i18n(i)}</span>`,tooltip:"Insert className"},n.fg.add("classSpan",class extends s.k{constructor(){super(...arguments),this.buttons=[{name:"classSpan",group:"script"}];}afterInit(t){t.registerCommand("applyClassName",((e,i,o)=>(t.s.commitStyle({attributes:{class:o}}),!1)));}beforeDestruct(){}}),a.I.set("class-span",c());},38101:function(t,e,i){var o=i(31635),n=i(22664),r=i(55186),s=i(8453),a=i(56298),l=i(26328),c=i(29866),d=(i(74646),i(15396));class u extends c.k{constructor(){super(...arguments),this.buttons=[{name:"eraser",group:"font-style"}],this.currentSelectionNode=null,this.walker=new s.p(this.j.async,{timeout:this.j.o.cleanHTML.timeout});}afterInit(t){}get isEditMode(){return !(this.j.isInDestruct||!this.j.isEditorMode()||this.j.getReadOnly())}onChangeCleanHTML(){if(!this.isEditMode)return;const t=this.j;this.walker.setWork(t.editor),this.currentSelectionNode=t.s.current();}startWalker(){const{jodit:t}=this,e=(0, d.Zd)(this.j.o.cleanHTML.allowTags),i=(0, d.Zd)(this.j.o.cleanHTML.denyTags);this.walker.on("visit",(o=>(0, d.eZ)(t,o,e,i,this.currentSelectionNode))).on("end",(t=>{this.j.e.fire(t?"internalChange finishedCleanHTMLWorker":"finishedCleanHTMLWorker");}));}beforeCommand(t){if("removeformat"===t.toLowerCase())return this.j.s.isCollapsed()?(0, d.w5)(this.j):(0, d.hk)(this.j),!1}onBeforeSetNativeEditorValue(t){const[e,i]=this.j.o.cleanHTML.useIframeSandbox?this.j.createInside.sandbox():[this.j.createInside.div()];return e.innerHTML=t.value,this.onSafeHTML(e),t.value=e.innerHTML,(0, l.t)(e,{safeJavaScriptLink:!0,removeOnError:!0}),r.J.safeRemove(i),!1}onSafeHTML(t){(0, l.t)(t,this.j.o.cleanHTML);}beforeDestruct(){this.walker.destruct();}}(0, o.Cg)([(0, n.watch)([":change",":afterSetMode",":afterInit",":mousedown",":keydown"])],u.prototype,"onChangeCleanHTML",null),(0, o.Cg)([(0, n.hook)("ready")],u.prototype,"startWalker",null),(0, o.Cg)([(0, n.watch)(":beforeCommand")],u.prototype,"beforeCommand",null),(0, o.Cg)([(0, n.watch)(":beforeSetNativeEditorValue")],u.prototype,"onBeforeSetNativeEditorValue",null),(0, o.Cg)([(0, n.watch)(":safeHTML")],u.prototype,"onSafeHTML",null),a.fg.add("cleanHtml",u);},74646:function(t,e,i){var o=i(931),n=i(71948),r=i.n(n),s=i(36115);s.T.prototype.cleanHTML={timeout:300,removeEmptyElements:!0,fillEmptyParagraph:!0,replaceNBSP:!0,replaceOldTags:{i:"em",b:"strong"},allowTags:!1,denyTags:"script",useIframeSandbox:!1,removeOnError:!0,safeJavaScriptLink:!0,disableCleanFilter:null},s.T.prototype.controls.eraser={command:"removeFormat",tooltip:"Clear Formatting"},o.I.set("eraser",r());},60549:function(t,e,i){i.d(e,{Z:function(){return r}});var o=i(98253),n=i(59101);function r(t){const e=/([^[]*)\[([^\]]+)]/,i=/[\s]*,[\s]*/,r=/^(.*)[\s]*=[\s]*(.*)$/,s={};return (0, o.K)(t)?(t.split(i).map((t=>{t=(0, n.Bq)(t);const o=e.exec(t),a={},l=t=>{t=(0, n.Bq)(t);const e=r.exec(t);e?a[e[1]]=e[2]:a[t]=!0;};if(o){const t=o[2].split(i);o[1]&&(t.forEach(l),s[o[1].toUpperCase()]=a);}else s[t.toUpperCase()]=!0;})),s):!!t&&(Object.keys(t).forEach((e=>{s[e.toUpperCase()]=t[e];})),s)}},15396:function(t,e,i){i.d(e,{Zd:function(){return o.Z},eZ:function(){return s.e},hk:function(){return r.h},w5:function(){return n.w}});var o=i(60549),n=i(30526),r=i(20646),s=i(52306);},30526:function(t,e,i){i.d(e,{D:function(){return s},w:function(){return r}});var o=i(17352),n=i(55186);function r(t,e){const{s:i}=t;let o=e;if(!o){o=t.createInside.fake();const{range:e}=i;n.J.safeInsertNode(e,o),e.collapse();}const r=n.J.furthest(o,s,t.editor);if(r)if(i.cursorOnTheLeft(r))n.J.before(r,o);else if(i.cursorOnTheRight(r))n.J.after(r,o);else {const t=i.splitSelection(r);t&&n.J.after(t,o);}e||(i.setCursorBefore(o),n.J.safeRemove(o));}function s(t){return n.J.isInlineBlock(t)&&!n.J.isTag(t,o.INSEPARABLE_TAGS)}},20646:function(t,e,i){i.d(e,{h:function(){return s}});var o=i(55186),n=i(97369),r=i(30526);function s(t){const{s:e,editor:i,createInside:s}=t,{range:a}=e,l=a.cloneRange(),c=a.cloneRange(),d=s.fake(),u=s.fake();l.collapse(!0),c.collapse(!1),o.J.safeInsertNode(l,d),o.J.safeInsertNode(c,u),a.setStartBefore(d),a.collapse(!0),e.selectRange(a),(0, r.w)(t,d),a.setEndAfter(u),a.collapse(!1),e.selectRange(a),(0, r.w)(t,u);const h=[];o.J.between(d,u,(t=>{(0, r.D)(t)&&!o.J.isTag(t,"a")&&h.push(t),o.J.isElement(t)&&(0, n.attr)(t,"style")&&(0, n.attr)(t,"style",null);})),h.forEach((t=>o.J.unwrap(t)));const p=(t,e)=>{if(!o.J.findNotEmptySibling(t,e)){const o=t.parentNode;if(o&&o!==i&&(0, n.attr)(o,"style"))return (0, n.attr)(o,"style",null),p(o,e),!0}};p(d,!0)&&p(u,!1),a.setStartAfter(d),a.setEndBefore(u),e.selectRange(a),o.J.safeRemove(d),o.J.safeRemove(u);}},5232:function(t,e,i){i.d(e,{f:function(){return n}});var o=i(55186);function n(t,e,i,n){if(n&&o.J.isElement(e)&&!0!==n[e.nodeName]){const t=e.attributes;if(t&&t.length){const o=[];for(let i=0;t.length>i;i+=1){const r=n[e.nodeName][t[i].name];(!r||!0!==r&&r!==t[i].value)&&o.push(t[i].name);}o.length&&(i=!0),o.forEach((t=>{e.removeAttribute(t);}));}}return i}},63443:function(t,e,i){i.d(e,{f:function(){return r}});var o=i(17352),n=i(55186);function r(t,e,i){if(t.o.cleanHTML.fillEmptyParagraph&&n.J.isBlock(e)&&n.J.isEmpty(e,o.INSEPARABLE_TAGS)){const i=t.createInside.element("br");return e.appendChild(i),!0}return i}},3593:function(t,e,i){i.r(e),i.d(e,{allowAttributes:function(){return o.f},fillEmptyParagraph:function(){return n.f},removeEmptyTextNode:function(){return r.r},removeInvTextNodes:function(){return s.u},replaceOldTags:function(){return a.H},sanitizeAttributes:function(){return l.L},tryRemoveNode:function(){return c.k}});var o=i(5232),n=i(63443),r=i(926),s=i(67431),a=i(81199),l=i(32782),c=i(32014);},926:function(t,e,i){i.d(e,{r:function(){return n}});var o=i(55186);function n(t,e,i,n,r,s){return o.J.isText(e)&&!e.nodeValue?(e===s&&t.s.isCollapsed()&&t.s.setCursorAfter(e),o.J.safeRemove(e),!0):i}},67431:function(t,e,i){i.d(e,{u:function(){return r}});var o=i(17352),n=i(55186);function r(t,e,i,r,s,a){if(a===e||!n.J.isText(e)||null==e.nodeValue)return i;if(!(0, o.INVISIBLE_SPACE_REG_EXP)().test(e.nodeValue))return i;const l=n.J.furthest(a,n.J.isBlock,t.editor);return !l||n.J.isOrContains(l,e)?i:(e.nodeValue=e.nodeValue.replace((0, o.INVISIBLE_SPACE_REG_EXP)(),""),e===a&&t.s.isCollapsed()&&t.s.setCursorAfter(e),e.nodeValue||n.J.safeRemove(e),!0)}},81199:function(t,e,i){i.d(e,{H:function(){return n}});var o=i(55186);function n(t,e,i){const n=function(t,e,i){if(!i||!o.J.isHTMLElement(e))return e;const n=i[e.nodeName.toLowerCase()]||i[e.nodeName];return n?o.J.replace(e,n,t.createInside,!0,!1):e}(t,e,t.o.cleanHTML.replaceOldTags);return e!==n?(e=n,!0):i}},32782:function(t,e,i){i.d(e,{L:function(){return r}});var o=i(55186),n=i(65147);function r(t,e,i){return !(!o.J.isElement(e)||!(0, n.sanitizeHTMLElement)(e,{safeJavaScriptLink:t.options.cleanHTML.safeJavaScriptLink,removeOnError:t.options.cleanHTML.removeOnError}))||i}},32014:function(t,e,i){i.d(e,{k:function(){return s}});var o=i(17352),n=i(55186),r=i(59101);function s(t,e,i,s,a,l){return function(t,e,i,s,a){return !(n.J.isText(e)||!(s&&!s[e.nodeName]||a&&a[e.nodeName]))||t.o.cleanHTML.removeEmptyElements&&n.J.isElement(e)&&null!=e.nodeName.match(o.IS_INLINE)&&!n.J.isTemporary(e)&&0===(0, r.Bq)(e.innerHTML).length&&(null==i||!n.J.isOrContains(e,i))}(t,e,l,s,a)?(n.J.safeRemove(e),!0):i}},52306:function(t,e,i){i.d(e,{e:function(){return r}}),i(17352);var o=i(3593);const n=Object.keys(o);function r(t,e,i,r,s){let a=!1;const l=t.o.cleanHTML.disableCleanFilter;for(const c of n)if(!(l&&l.has(c)||(a=(0, o[c])(t,e,a,i,r,s),e.isConnected)))return !0;return a}},24593:function(t,e,i){var o=i(17352),n=i(56298),r=i(65147);i(51329),n.fg.add("clipboard",class{constructor(){this.buttons=[{name:"cut",group:"clipboard"},{name:"copy",group:"clipboard"},{name:"paste",group:"clipboard"},{name:"selectall",group:"clipboard"}];}init(t){var e;null===(e=this.buttons)||void 0===e||e.forEach((e=>t.registerButton(e))),t.e.off(`copy.${o.CLIPBOARD_ID} cut.${o.CLIPBOARD_ID}`).on(`copy.${o.CLIPBOARD_ID} cut.${o.CLIPBOARD_ID}`,(e=>{var i;const n=t.s.html,s=(0, r.getDataTransfer)(e)||(0, r.getDataTransfer)(t.ew)||(0, r.getDataTransfer)(e.originalEvent);s&&(s.setData(o.TEXT_PLAIN,(0, r.stripTags)(n)),s.setData(o.TEXT_HTML,n)),t.buffer.set(o.CLIPBOARD_ID,n),t.e.fire("pasteStack",{html:n,action:t.o.defaultActionOnPaste||o.INSERT_AS_HTML}),"cut"===e.type&&(t.s.remove(),t.s.focus()),e.preventDefault(),null===(i=null==t?void 0:t.events)||void 0===i||i.fire("afterCopy",n);}));}destruct(t){var e,i;null===(e=null==t?void 0:t.buffer)||void 0===e||e.set(o.CLIPBOARD_ID,""),null===(i=null==t?void 0:t.events)||void 0===i||i.off("."+o.CLIPBOARD_ID);}});},51329:function(t,e,i){var o=i(931),n=i(51457),r=i.n(n),s=i(23602),a=i.n(s),l=i(86899),c=i.n(l),d=i(95320),u=i.n(d),h=i(36115);h.T.prototype.controls.cut={command:"cut",isDisabled:t=>t.s.isCollapsed(),tooltip:"Cut selection"},h.T.prototype.controls.copy={command:"copy",isDisabled:t=>t.s.isCollapsed(),tooltip:"Copy selection"},h.T.prototype.controls.selectall={icon:"select-all",command:"selectall",tooltip:"Select all"},o.I.set("copy",r()).set("cut",a()).set("paste",c()).set("select-all",u());},36293:function(t,e,i){var o=i(56298),n=i(65147);i(39626),o.fg.add("color",(function(t){t.registerButton({name:"brush",group:"color"});const e=(e,i,o)=>{const r=(0, n.normalizeColor)(o);switch(e){case"background":t.s.commitStyle({attributes:{style:{backgroundColor:r||""}}});break;case"forecolor":t.s.commitStyle({attributes:{style:{color:r||""}}});}return t.synchronizeValues(),!1};t.registerCommand("forecolor",e).registerCommand("background",e);}));},39626:function(t,e,i){var o=i(55186),n=i(65147),r=i(931),s=i(16116),a=i(45674),l=i.n(a),c=i(36115);r.I.set("brush",l()),c.T.prototype.controls.brushCell={isVisible:t=>!t.o.disablePlugins.includes("color"),icon:"brush",popup:(t,e,i)=>{if(!(0, n.isJoditObject)(t))return;const o=t.getInstance("Table",t.o).getAllSelectedCells();if(!o.length)return !1;const r=e=>(0, s.Kn)(t,(r=>{o.forEach((t=>{(0, n.css)(t,e,r);})),t.lock(),t.synchronizeValues(),i(),t.unlock();}),(0, n.css)(o[0],e));return (0, s.Zg)(t,[{name:"Background",content:r("background-color")},{name:"Text",content:r("color")},{name:"Border",content:r("border-color")}])},tooltip:"Background"},c.T.prototype.controls.brush={isVisible:t=>!t.o.disablePlugins.includes("color"),update(t,e){const i=(0, n.dataBind)(e,"color"),r=(i,o)=>{o&&o!==(0, n.css)(t.editor,i).toString()&&(e.state.icon.fill=o);};if(i){const t=(0, n.dataBind)(e,"color");return void r("color"===t?t:"background-color",i)}const s=t.s.current();if(s&&!e.state.disabled){const e=o.J.closest(s,o.J.isElement,t.editor)||t.editor;r("color",(0, n.css)(e,"color").toString()),r("background-color",(0, n.css)(e,"background-color").toString());}e.state.icon.fill="",e.state.activated=!1;},popup:(t,e,i,r)=>{let a="",l="",c=[],d=null;return e&&e!==t.editor&&o.J.isNode(e)&&(o.J.isElement(e)&&t.s.isCollapsed()&&!o.J.isTag(e,new Set(["br","hr"]))&&(d=e),o.J.up(e,(t=>{if(o.J.isHTMLElement(t)){const e=(0, n.css)(t,"color",!0),i=(0, n.css)(t,"background-color",!0);if(e)return a=e.toString(),!0;if(i)return l=i.toString(),!0}}),t.editor)),c=[{name:"Background",content:(0, s.Kn)(t,(e=>{d?d.style.backgroundColor=e:t.execCommand("background",!1,e),(0, n.dataBind)(r,"color",e),(0, n.dataBind)(r,"color-mode","background"),i();}),l)},{name:"Text",content:(0, s.Kn)(t,(e=>{d?d.style.color=e:t.execCommand("forecolor",!1,e),(0, n.dataBind)(r,"color",e),(0, n.dataBind)(r,"color-mode","color"),i();}),a)}],"background"!==t.o.colorPickerDefaultTab&&(c=c.reverse()),(0, s.Zg)(t,c,d)},exec(t,e,{button:i}){const r=(0, n.dataBind)(i,"color-mode"),s=(0, n.dataBind)(i,"color");if(!r)return !1;if(e&&e!==t.editor&&o.J.isNode(e)&&o.J.isElement(e))switch(r){case"color":e.style.color=s;break;case"background":e.style.backgroundColor=s;}else t.execCommand("background"===r?r:"forecolor",!1,s);},tooltip:"Fill color or set the text color"};},38373:function(t,e,i){var o=i(55186),n=i(56298),r=i(38322),s=i(931),a=i(3843),l=i.n(a),c=i(94628),d=i(36115);const u="copy-format",h=["fontWeight","fontStyle","fontSize","color","margin","padding","borderWidth","borderStyle","borderColor","borderRadius","backgroundColor","textDecorationLine","fontFamily"],p=(t,e,i,o)=>{let n=(0, r.A)(i,e);return n===o[e]&&(n=i.parentNode&&i!==t.editor&&i.parentNode!==t.editor?p(t,e,i.parentNode,o):void 0),n};d.T.prototype.controls.copyformat={exec:(t,e,{button:i})=>{if(e){if(t.buffer.exists(u))t.buffer.delete(u),t.e.off(t.editor,"mouseup."+u);else {const i={},n=o.J.up(e,(t=>t&&!o.J.isText(t)),t.editor)||t.editor,s=t.createInside.span();t.editor.appendChild(s),h.forEach((t=>{i[t]=(0, r.A)(s,t);})),s!==t.editor&&o.J.safeRemove(s);const a=((t,e,i)=>{const o={};return e&&h.forEach((n=>{o[n]=p(t,n,e,i),n.match(/border(Style|Color)/)&&!o.borderWidth&&(o[n]=void 0);})),o})(t,n,i),l=()=>{t.buffer.delete(u);const e=t.s.current();e&&(o.J.isTag(e,"img")?(0, r.A)(e,a):t.s.commitStyle({attributes:{style:a}})),t.e.off(t.editor,"mouseup."+u);};t.e.on(t.editor,"mouseup."+u,l),t.buffer.set(u,!0);}i.update();}},isActive:t=>t.buffer.exists(u),tooltip:"Paint format"},n.fg.add("copyformat",(function(t){t.registerButton({name:"copyformat",group:"clipboard"}),(0, n.JW)(c);})),s.I.set("copyformat",l());},60843:function(t){t.exports={"copy-format":"نسخ التنسيق"};},66504:function(t){t.exports={"copy-format":"Kopírovat formát"};},11095:function(t){t.exports={"copy-format":"Format kopierenт"};},57032:function(t){t.exports={"copy-format":"Copiar formato"};},83997:function(t){t.exports={"copy-format":"کپی کردن قالب"};},49717:function(t){t.exports={"copy-format":"Kopioi muotoilu"};},32164:function(t){t.exports={"copy-format":"Format de copie"};},25459:function(t){t.exports={"copy-format":"העתק עיצוב"};},11395:function(t){t.exports={"copy-format":"Formátum másolás"};},76073:function(t){t.exports={"copy-format":"salin format"};},94628:function(t,e,i){i.r(e),i.d(e,{ar:function(){return n.a},cs_cz:function(){return s.a},de:function(){return l.a},es:function(){return d.a},fa:function(){return h.a},fi:function(){return f.a},fr:function(){return m.a},he:function(){return _.a},hu:function(){return x.a},id:function(){return y.a},it:function(){return k.a},ja:function(){return S.a},ko:function(){return T.a},mn:function(){return I.a},nl:function(){return L.a},pl:function(){return P.a},pt_br:function(){return N.a},ru:function(){return D.a},tr:function(){return O.a},zh_cn:function(){return H.a},zh_tw:function(){return V.a}});var o=i(60843),n=i.n(o),r=i(66504),s=i.n(r),a=i(11095),l=i.n(a),c=i(57032),d=i.n(c),u=i(83997),h=i.n(u),p=i(49717),f=i.n(p),g=i(32164),m=i.n(g),b=i(25459),_=i.n(b),v=i(11395),x=i.n(v),w=i(76073),y=i.n(w),j=i(90393),k=i.n(j),C=i(99457),S=i.n(C),z=i(55142),T=i.n(z),E=i(27835),I=i.n(E),A=i(51170),L=i.n(A),M=i(63884),P=i.n(M),R=i(64139),N=i.n(R),B=i(98229),D=i.n(B),q=i(5878),O=i.n(q),J=i(87444),H=i.n(J),F=i(60580),V=i.n(F);},90393:function(t){t.exports={"copy-format":"Copia il formato"};},99457:function(t){t.exports={"copy-format":"copyformat"};},55142:function(t){t.exports={"copy-format":"복사 형식"};},27835:function(t){t.exports={"copy-format":"Формат хуулах"};},51170:function(t){t.exports={"copy-format":"opmaak kopiëren"};},63884:function(t){t.exports={"copy-format":"format kopii"};},64139:function(t){t.exports={"copy-format":"Copiar formato"};},98229:function(t){t.exports={"copy-format":"Копировать формат"};},5878:function(t){t.exports={"copy-format":"Kopyalama Biçimi"};},87444:function(t){t.exports={"copy-format":"复制格式"};},60580:function(t){t.exports={"copy-format":"複製格式"};},5929:function(t,e,i){var o=i(71842),n=i(56298),r=i(65147),s=i(59101),a=i(71005);class l extends a.k{afterInit(t){t.e.on("afterCommand.delete",(t=>{"delete"===t&&this.__afterDeleteCommand();})),t.registerCommand("delete",{exec:this.__onDeleteCommand.bind(this)},{stopPropagation:!1});}beforeDestruct(t){t.e.off("afterCommand.delete");}__afterDeleteCommand(){const t=this.j,e=t.s.current();if(e&&o.J.isTag(e.firstChild,"br")&&t.s.removeNode(e.firstChild),!((0, s.Bq)(t.editor.textContent||"")||t.editor.querySelector("img,table,jodit,iframe,hr")||e&&o.J.closest(e,"table",t.editor))){t.editor.innerHTML="";const e=t.s.setCursorIn(t.editor);t.s.removeNode(e);}}__onDeleteCommand(){const{jodit:t}=this;if(t.s.isCollapsed())return;t.s.expandSelection();const e=t.s.range;e.deleteContents();const i=t.createInside.fake();e.insertNode(i);const n=o.J.findSibling(i,!0),r=o.J.findSibling(i,!1);return this.__moveContentInLeftSibling(i,n,r),e.setStartBefore(i),e.collapse(!0),this.__moveCursorInEditableSibling(t,n,i,e),this.__addBrInEmptyBlock(i,r,e),o.J.safeRemove(i),t.s.selectRange(e),!1}__moveContentInLeftSibling(t,e,i){e=this.__defineRightLeftBox(e),!o.J.isList(i)&&!o.J.isTag(i,"table")&&o.J.isBlock(i)&&o.J.isBlock(e)&&(o.J.append(e,t),o.J.moveContent(i,e),o.J.safeRemove(i)),o.J.isList(i)&&o.J.isLeaf(i.firstElementChild)&&o.J.isEmpty(i.firstElementChild)&&o.J.safeRemove(i.firstElementChild);}__defineRightLeftBox(t){if(!o.J.isList(t))return t;let e=t.lastElementChild;return o.J.isLeaf(e)||(e=this.j.createInside.element("li"),o.J.append(t,e)),e}__addBrInEmptyBlock(t,e,i){const n=this.j;if(t.isConnected&&o.J.isBlock(t.parentNode)&&!t.nextSibling&&!t.previousSibling){const e=n.createInside.element("br");o.J.after(t,e),i.setStartBefore(e),i.collapse(!0);}if(o.J.isTag(e,"table")){const t=(0, r.$$)("td,th",e).shift();o.J.isCell(t)&&o.J.isEmpty(t)&&o.J.append(t,n.createInside.element("br"));}}__moveCursorInEditableSibling(t,e,i,n){var r;if(!e||!o.J.isText(e)){const e=null!==(r=o.J.closest(i,o.J.isBlock,t.editor))&&void 0!==r?r:t.editor,s=o.J.prev(i,o.J.isText,e);s&&(n.setStartAfter(s),n.collapse(!0),o.J.safeRemove(i));}}}l.requires=["backspace"],n.fg.add("deleteCommand",l);},96900:function(t,e,i){i(36115).T.prototype.draggableTags=["img","jodit-media","jodit"];},27509:function(t,e,i){var o,n=i(31635),r=i(22664),s=i(71842),a=i(56298),l=i(65147),c=i(71005);i(96900),function(t){t[t.IDLE=0]="IDLE",t[t.WAIT_DRAGGING=1]="WAIT_DRAGGING",t[t.DRAGGING=2]="DRAGGING";}(o||(o={}));class d extends c.k{constructor(){super(...arguments),this.dragList=[],this.draggable=null,this.isCopyMode=!1,this.diffStep=10,this.startX=0,this.startY=0,this.state=o.IDLE;}afterInit(){this.dragList=this.j.o.draggableTags?(0, l.splitArray)(this.j.o.draggableTags).filter(Boolean).map((t=>t.toLowerCase())):[],this.dragList.length&&this.j.e.on("mousedown dragstart",this.onDragStart);}onDragStart(t){if("dragstart"===t.type&&this.draggable)return !1;if(this.state>o.IDLE)return;const e=t.target;if(!this.dragList.length||!e)return;const i=t=>Boolean(t&&this.dragList.includes(t.nodeName.toLowerCase()));let n=s.J.furthest(e,i,this.j.editor)||(i(e)?e:null);n&&(s.J.isTag(n.parentElement,"a")&&n.parentElement.firstChild===n&&n.parentElement.lastChild===n&&(n=n.parentElement),this.startX=t.clientX,this.startY=t.clientY,this.isCopyMode=(0, l.ctrlKey)(t),this.draggable=n.cloneNode(!0),(0, l.dataBind)(this.draggable,"target",n),this.state=o.WAIT_DRAGGING,this.addDragListeners());}onDrag(t){var e,i;if(!this.draggable||this.state===o.IDLE)return;const n=t.clientY;if(this.state!==o.WAIT_DRAGGING||Math.sqrt(Math.pow(t.clientX-this.startX,2)+Math.pow(n-this.startY,2))>=this.diffStep){if(this.state===o.WAIT_DRAGGING&&(this.j.lock("drag-and-drop-element"),this.state=o.DRAGGING),this.j.e.fire("hidePopup hideResizer"),!this.draggable.parentNode){const o=(0, l.dataBind)(this.draggable,"target");(0, l.css)(this.draggable,{zIndex:1e13,pointerEvents:"none",pointer:"drag",position:"fixed",opacity:.7,display:"inline-block",left:t.clientX,top:t.clientY,width:null!==(e=null==o?void 0:o.offsetWidth)&&void 0!==e?e:100,height:null!==(i=null==o?void 0:o.offsetHeight)&&void 0!==i?i:100}),(0, a.My)(this.j,d).appendChild(this.draggable);}(0, l.css)(this.draggable,{left:t.clientX,top:t.clientY}),this.j.s.insertCursorAtPoint(t.clientX,t.clientY);}}onDragEnd(){this.isInDestruct||(this.removeDragListeners(),this.j.unlock(),this.state=o.IDLE,this.draggable&&(s.J.safeRemove(this.draggable),this.draggable=null));}onDrop(){if(!this.draggable||o.DRAGGING>this.state)return void this.onDragEnd();let t=(0, l.dataBind)(this.draggable,"target");this.onDragEnd(),this.isCopyMode&&(t=t.cloneNode(!0));const{parentElement:e}=t;this.j.s.insertNode(t,!0,!1),e&&s.J.isEmpty(e)&&!s.J.isCell(e)&&s.J.safeRemove(e),s.J.isTag(t,"img")&&this.j.e&&this.j.e.fire("afterInsertImage",t),this.j.e.fire("synchro");}addDragListeners(){this.j.e.on(this.j.editor,"mousemove",this.onDrag).on("mouseup",this.onDrop).on([this.j.ew,this.ow],"mouseup",this.onDragEnd);}removeDragListeners(){this.j.e.off(this.j.editor,"mousemove",this.onDrag).off("mouseup",this.onDrop).off([this.j.ew,this.ow],"mouseup",this.onDragEnd);}beforeDestruct(){this.onDragEnd(),this.j.e.off("mousedown dragstart",this.onDragStart),this.removeDragListeners();}}(0, n.Cg)([r.autobind],d.prototype,"onDragStart",null),(0, n.Cg)([(0, r.throttle)((t=>t.defaultTimeout/10))],d.prototype,"onDrag",null),(0, n.Cg)([r.autobind],d.prototype,"onDragEnd",null),(0, n.Cg)([r.autobind],d.prototype,"onDrop",null),a.fg.add("dragAndDropElement",d);},64565:function(t,e,i){var o=i(31635),n=i(17352),r=i(22664),s=i(55186),a=i(56298),l=i(65147),c=i(71005),d=i(10274);class u extends c.k{constructor(){super(...arguments),this.isFragmentFromEditor=!1,this.isCopyMode=!1,this.startDragPoint={x:0,y:0},this.draggable=null,this.bufferRange=null,this.getText=t=>{const e=(0, l.getDataTransfer)(t);return e?e.getData(n.TEXT_HTML)||e.getData(n.TEXT_PLAIN):null};}afterInit(){this.j.e.on([window,this.j.ed,this.j.editor],"dragstart.DragAndDrop",this.onDragStart);}onDragStart(t){let e=t.target;if(this.onDragEnd(),this.isFragmentFromEditor=s.J.isOrContains(this.j.editor,e,!0),this.isCopyMode=!this.isFragmentFromEditor||(0, l.ctrlKey)(t),this.isFragmentFromEditor){const t=this.j.s.sel,e=t&&t.rangeCount?t.getRangeAt(0):null;e&&(this.bufferRange=e.cloneRange());}else this.bufferRange=null;this.startDragPoint.x=t.clientX,this.startDragPoint.y=t.clientY,function(t){return s.J.isElement(t)&&t.classList.contains(d.Q.prototype.getFullElName("item"))}(e)&&(e=e.querySelector("img")),s.J.isTag(e,"img")&&(this.draggable=e.cloneNode(!0),(0, l.dataBind)(this.draggable,"target",e)),this.addDragListeners();}addDragListeners(){this.j.e.on("dragover",this.onDrag).on("drop.DragAndDrop",this.onDrop).on(window,"dragend.DragAndDrop drop.DragAndDrop mouseup.DragAndDrop",this.onDragEnd);}removeDragListeners(){this.j.e.off("dragover",this.onDrag).off("drop.DragAndDrop",this.onDrop).off(window,"dragend.DragAndDrop drop.DragAndDrop mouseup.DragAndDrop",this.onDragEnd);}onDrag(t){this.draggable&&(this.j.e.fire("hidePopup"),this.j.s.insertCursorAtPoint(t.clientX,t.clientY),t.preventDefault(),t.stopPropagation());}onDragEnd(){this.draggable&&(s.J.safeRemove(this.draggable),this.draggable=null),this.isCopyMode=!1,this.removeDragListeners();}onDrop(t){if(!t.dataTransfer||!t.dataTransfer.files||!t.dataTransfer.files.length){if(!this.isFragmentFromEditor&&!this.draggable)return this.j.e.fire("paste",t),t.preventDefault(),t.stopPropagation(),!1;const e=this.j.s.sel,i=this.bufferRange||(e&&e.rangeCount?e.getRangeAt(0):null);let o=null;if(!this.draggable&&i)o=this.isCopyMode?i.cloneContents():i.extractContents();else if(this.draggable)if(this.isCopyMode){const[t,e]="1"===(0, l.attr)(this.draggable,"-is-file")?["a","href"]:["img","src"];o=this.j.createInside.element(t),o.setAttribute(e,(0, l.attr)(this.draggable,"data-src")||(0, l.attr)(this.draggable,"src")||""),"a"===t&&(o.textContent=(0, l.attr)(o,e)||"");}else o=(0, l.dataBind)(this.draggable,"target");else this.getText(t)&&(o=this.j.createInside.fromHTML(this.getText(t)));e&&e.removeAllRanges(),this.j.s.insertCursorAtPoint(t.clientX,t.clientY),o&&(this.j.s.insertNode(o,!1,!1),i&&o.firstChild&&o.lastChild&&(i.setStartBefore(o.firstChild),i.setEndAfter(o.lastChild),this.j.s.selectRange(i),this.j.e.fire("synchro")),s.J.isTag(o,"img")&&this.j.events&&this.j.e.fire("afterInsertImage",o)),t.preventDefault(),t.stopPropagation();}this.isFragmentFromEditor=!1,this.removeDragListeners();}beforeDestruct(){this.onDragEnd(),this.j.e.off(window,".DragAndDrop").off(".DragAndDrop").off([window,this.j.ed,this.j.editor],"dragstart.DragAndDrop",this.onDragStart);}}(0, o.Cg)([r.autobind],u.prototype,"onDragStart",null),(0, o.Cg)([(0, r.throttle)((t=>t.defaultTimeout/10))],u.prototype,"onDrag",null),(0, o.Cg)([r.autobind],u.prototype,"onDragEnd",null),(0, o.Cg)([r.autobind],u.prototype,"onDrop",null),a.fg.add("dragAndDrop",u);},69122:function(t,e,i){i.r(e),i.d(e,{removeExtraBr:function(){return o.z}});var o=i(72984);},72984:function(t,e,i){i.d(e,{z:function(){return r}});var o=i(55186);const n=new Set(["table","pre","blockquote","code"]);function r(t,e){if(!t.o.dtd.removeExtraBr||o.J.isTag(e,"br"))return;const i=o.J.furthest(e,o.J.isBlock,t.editor);if(i&&!o.J.isTag(i,n)){const i=o.J.isTag(e,"br")?e:o.J.findNotEmptySibling(e,!1);if(!o.J.isTag(i,"br"))return;t.s.setCursorBefore(i),o.J.safeRemove(i);}}},30958:function(t,e,i){i.d(e,{o:function(){return n}});var o=i(55186);function n(t,e){if(o.J.isFragment(e)&&(e=e.firstChild),t.o.dtd.checkBlockNesting&&o.J.isBlock(e)){const e=o.J.furthest(t.s.current(),o.J.isBlock,t.editor);e&&!t.o.dtd.blockLimits[e.tagName.toLowerCase()]&&(t.s.setCursorAfter(e),o.J.isEmpty(e)&&o.J.safeRemove(e));}}},28313:function(t,e,i){i.r(e),i.d(e,{checkBlockNesting:function(){return o.o}});var o=i(30958);},43655:function(t,e,i){i(36115).T.prototype.dtd={removeExtraBr:!0,checkBlockNesting:!0,blockLimits:{article:1,aside:1,audio:1,body:1,caption:1,details:1,dir:1,div:1,dl:1,fieldset:1,figcaption:1,figure:1,footer:1,form:1,header:1,hgroup:1,main:1,menu:1,nav:1,ol:1,section:1,table:1,td:1,th:1,tr:1,ul:1,video:1}};},61589:function(t,e,i){var o=i(31635),n=i(66927),r=i(56298),s=i(71005),a=(i(43655),i(69122)),l=i(28313);class c extends s.k{afterInit(t){}beforeDestruct(t){}__onBeforeInsertNode(t){Object.keys(l).forEach((e=>{l[e](this.j,t);}));}__onAfterInsertNode(t){Object.keys(a).forEach((e=>{a[e](this.j,t);}));}}(0, o.Cg)([(0, n.w)(":beforeInsertNode")],c.prototype,"__onBeforeInsertNode",null),(0, o.Cg)([(0, n.w)(":afterInsertNode")],c.prototype,"__onAfterInsertNode",null),r.fg.add("dtd",c);},13405:function(t,e,i){var o=i(31635),n=i(17352),r=i(22664),s=i(55186),a=i(56298),l=i(9810),c=i(29866),d=i(81781);class u extends c.k{afterInit(t){const e=t.o.enter.toLowerCase(),i=e===n.BR.toLowerCase();t.o.enterBlock||(t.o.enterBlock=i?n.PARAGRAPH:e),t.registerCommand("enter",((t,e,i={})=>this.onEnter(i)));}onEnterKeyDown(t){if(t.key===n.KEY_ENTER){const e=this.j,i=e.e.fire("beforeEnter",t);return void 0!==i?i:(e.s.isCollapsed()||e.execCommand("Delete"),e.s.focus(),this.onEnter(t),e.e.fire("afterEnter",t),e.synchronizeValues(),!1)}}onEnter(t){const{jodit:e}=this,i=e.createInside.fake();try{s.J.safeInsertNode(e.s.range,i),(0,d.Mt)(e,i,["a"]);let o=(0,d.Dk)(i,e);const n=s.J.isLeaf(o);if((!n||(null==t?void 0:t.shiftKey))&&(0,d.lN)(i,e,null==t?void 0:t.shiftKey))return !1;if(o||(0,d.tX)(i,e)||(o=(0,d.C1)(i,e)),!o)return (0,d.yh)(i,e,n?"li":e.o.enter),!1;if(!(0,d.bD)(i,e,o))return !1;if(n&&this.__isEmptyListLeaf(o))return (0,d.cf)(i,e,o),!1;(0,d.HS)(i,e,o);}finally{i.isConnected&&e.s.setCursorBefore(i),s.J.safeRemove(i);}}__isEmptyListLeaf(t){const e=this.j.e.fire("enterIsEmptyListLeaf",t);return (0, l.L)(e)?e:s.J.isEmpty(t)}beforeDestruct(t){t.e.off("keydown.enter");}}(0, o.Cg)([(0, r.watch)(":keydown.enter")],u.prototype,"onEnterKeyDown",null),a.fg.add("enter",u);},6110:function(t,e,i){i.d(e,{l:function(){return s}});var o=i(17352),n=i(55186),r=i(641);function s(t,e,i){const s=Boolean(n.J.closest(t,["pre","blockquote"],e.editor));if(e.o.enter.toLowerCase()===o.BR.toLowerCase()||i&&!s||!i&&s){if(s&&function(t){const e=a(a(t));return !!e&&(n.J.safeRemove(a(t)),n.J.safeRemove(e),!0)}(t))return !1;const i=e.createInside.element("br");if(n.J.before(t,i),!n.J.findNotEmptySibling(i,!1)){const e=i.cloneNode();n.J.after(i,e),n.J.before(e,t);}return (0, r.$)(i,e.editor,e.ed),!0}return !1}function a(t){if(!t)return !1;const e=n.J.findSibling(t,!0);return !(!e||!n.J.isTag(e,"br"))&&e}},47317:function(t,e,i){i.d(e,{b:function(){return n}});var o=i(55186);function n(t,e,i){return !!o.J.canSplitBlock(i)||(o.J.before(t,e.createInside.element("br")),!1)}},36291:function(t,e,i){i.d(e,{D:function(){return r}});var o=i(17352),n=i(55186);function r(t,e,i=o.IS_BLOCK){let s=t;const a=e.editor;do{if(!s||s===a)break;if(i.test(s.nodeName))return n.J.isLeaf(s)?s:r(s.parentNode,e,/^li$/i)||s;s=s.parentNode;}while(s&&s!==a);return null}},64107:function(t,e,i){i.d(e,{t:function(){return n}});var o=i(55186);function n(t,e){return Boolean(o.J.prev(t,(t=>o.J.isBlock(t)||o.J.isImage(t)),e.editor))}},81781:function(t,e,i){i.d(e,{C1:function(){return u.C},Dk:function(){return r.D},HS:function(){return d.H},Mt:function(){return l.M},bD:function(){return n.b},cf:function(){return c.c},lN:function(){return o.l},tX:function(){return s.t},yh:function(){return a.y}});var o=i(6110),n=i(47317),r=i(36291),s=i(64107),a=i(41159),l=i(63634),c=i(30687),d=i(70214),u=i(62453);},41159:function(t,e,i){i.d(e,{y:function(){return r}});var o=i(55186),n=i(641);function r(t,e,i,r){const s="br"===i.toLowerCase(),{createInside:a}=e,l=a.element(i),c=a.element("br");return s||l.appendChild(c),r&&r.cssText&&l.setAttribute("style",r.cssText),o.J.after(t,l),o.J.before(s?l:c,t),(0, n.$)(l,e.editor,e.ed),l}},63634:function(t,e,i){i.d(e,{M:function(){return n}});var o=i(55186);function n(t,e,i){const{s:n}=t,r=o.J.closest(e,i,t.editor);r&&(n.cursorOnTheRight(r,e)?o.J.after(r,e):n.cursorOnTheLeft(r,e)&&o.J.before(r,e));}},30687:function(t,e,i){i.d(e,{c:function(){return s}});var o=i(55186),n=i(58720),r=i(41159);function s(t,e,i){const s=o.J.closest(i,["ol","ul"],e.editor);if(!s)return;const a=s.parentElement,l=o.J.isLeaf(a),c=l?a:s,d=e.s.createRange();d.setStartAfter(i),d.setEndAfter(s);const u=d.extractContents();o.J.after(c,t),o.J.safeRemove(i),(0, n.$$)("li",s).length||o.J.safeRemove(s);const h=(0, r.y)(t,e,l?"li":e.o.enter);u.querySelector("li")&&(l?h.appendChild(u):o.J.after(h,u));}},70214:function(t,e,i){i.d(e,{H:function(){return s}});var o=i(55186),n=i(641),r=i(41159);function s(t,e,i){const s=e.s,{enter:a}=e.o,l=a.toLowerCase(),c=o.J.isLeaf(i),d=i.tagName.toLowerCase()===l||c,u=s.cursorOnTheRight(i,t),h=s.cursorOnTheLeft(i,t);if(!d&&(u||h))return u?o.J.after(i,t):o.J.before(i,t),(0, r.y)(t,e,l),void(h&&!u&&o.J.prepend(i,t));const p=s.splitSelection(i,t);(0, n.$)(p,e.editor,e.ed);}},62453:function(t,e,i){i.d(e,{C:function(){return n}});var o=i(55186);function n(t,e){let i=t;o.J.up(i,(t=>{t&&t.hasChildNodes()&&t!==e.editor&&(i=t);}),e.editor);const n=o.J.wrapInline(i,e.o.enter,e);if(o.J.isEmpty(n)){const i=e.createInside.element("br");n.appendChild(i),o.J.before(i,t);}return n}},67335:function(t,e,i){var o=i(55186),n=i(56298),r=i(16116);i(36115).T.prototype.controls.file={popup:(t,e,i)=>{const n=(e,i="")=>{t.s.insertNode(t.createInside.fromHTML(`<a href="${e}" title="${i}">${i||e}</a>`));};let s=null;return e&&(o.J.isTag(e,"a")||o.J.closest(e,"a",t.editor))&&(s=o.J.isTag(e,"a")?e:o.J.closest(e,"a",t.editor)),(0, r.kG)(t,{filebrowser:t=>{t.files&&t.files.forEach((e=>n(t.baseurl+e))),i();},upload:!0,url:(t,e)=>{s?(s.setAttribute("href",t),s.setAttribute("title",e)):n(t,e),i();}},s,i,!1)},tags:["a"],tooltip:"Insert file"},n.fg.add("file",(function(t){t.registerButton({name:"file",group:"media"});}));},92553:function(t,e,i){var o=i(71842),n=i(56298),r=i(36115);r.T.prototype.autofocus=!1,r.T.prototype.cursorAfterAutofocus="end",r.T.prototype.saveSelectionOnBlur=!0,n.fg.add("focus",(function(t){t.o.saveSelectionOnBlur&&t.e.on("blur",(()=>{t.isEditorMode()&&t.s.save(!0);})).on("focus",(()=>{t.s.restore();}));const e=()=>{if(t.s.focus(),"end"===t.o.cursorAfterAutofocus){const e=o.J.last(t.editor,(t=>o.J.isText(t)));e&&t.s.setCursorIn(e,!1);}};t.e.on("afterInit",(()=>{t.o.autofocus&&(t.defaultTimeout?t.async.setTimeout(e,300):e());})),t.e.on("afterInit afterAddPlace",(()=>{t.e.off(t.editor,"mousedown.autofocus").on(t.editor,"mousedown.autofocus",(e=>{t.isEditorMode()&&e.target&&o.J.isBlock(e.target)&&!e.target.childNodes.length&&(t.editor===e.target?t.s.focus():t.s.setCursorIn(e.target));}));}));}));},67986:function(t,e,i){var o=i(71842),n=i(59101),r=i(38322),s=i(931),a=i(48842),l=i.n(a),c=i(25501),d=i.n(c),u=i(36115);u.T.prototype.defaultFontSizePoints="px",s.I.set("font",l()).set("fontsize",d()),u.T.prototype.controls.fontsize={command:"fontsize",data:{cssRule:"font-size",normalise:(t,e)=>/pt$/i.test(t)&&"pt"===e.o.defaultFontSizePoints?t.replace(/pt$/i,""):t},list:[8,9,10,11,12,14,16,18,24,30,32,34,36,48,60,72,96],textTemplate:(t,e)=>e+t.o.defaultFontSizePoints,childTemplate:(t,e,i)=>`${i}${t.o.defaultFontSizePoints}`,tooltip:"Font size",value:(t,e)=>{var i;const n=t.s.current();if(!n)return;const s=o.J.closest(n,o.J.isElement,t.editor);if(!s)return;const a=(null===(i=e.control.data)||void 0===i?void 0:i.cssRule)||"font-size";return (0, r.A)(s,a).toString()},isChildActive:(t,e)=>{var i,o;const n=e.state.value,r=null!==(o=null===(i=e.control.data)||void 0===i?void 0:i.normalize)&&void 0!==o?o:t=>t;return Boolean(n&&e.control.args&&r(e.control.args[0].toString())===r(n.toString()))},isActive:(t,e)=>{var i,o;const n=e.state.value;if(!n)return !1;const r=null!==(o=null===(i=e.control.data)||void 0===i?void 0:i.normalize)&&void 0!==o?o:t=>t;let s=e.control.data.cacheListSet;if(!s){const t=Object.keys(e.control.list).map(r);s=new Set(t),e.control.data.cacheListSet=s;}return s.has(r(n.toString()))}},u.T.prototype.controls.font={...u.T.prototype.controls.fontsize,command:"fontname",textTemplate:(t,e)=>{const[i]=e.split(",");return (0, n.Gd)(i,"\"'")},list:{"":"Default","Arial, Helvetica, sans-serif":"Arial","'Courier New', Courier, monospace":"Courier New","Georgia, Palatino, serif":"Georgia","'Lucida Sans Unicode', 'Lucida Grande', sans-serif":"Lucida Sans Unicode","Tahoma, Geneva, sans-serif":"Tahoma","'Times New Roman', Times, serif":"Times New Roman","'Trebuchet MS', Helvetica, sans-serif":"Trebuchet MS","Helvetica, sans-serif":"Helvetica","Impact, Charcoal, sans-serif":"Impact","Verdana, Geneva, sans-serif":"Verdana"},childTemplate:(t,e,i)=>{let o=!1;try{o=-1===e.indexOf("dings")&&document.fonts.check(`16px ${e}`,i);}catch(t){}return `<span data-style="${e}" style="${o?`font-family: ${e}!important;`:""}">${i}</span>`},data:{cssRule:"font-family",normalize:t=>t.toLowerCase().replace(/['"]+/g,"").replace(/[^a-z0-9-]+/g,",")},tooltip:"Font family"};},73077:function(t,e,i){var o=i(56298),n=i(65147);i(67986),o.fg.add("font",(function(t){t.registerButton({name:"font",group:"font"}).registerButton({name:"fontsize",group:"font"});const e=(e,i,o)=>{switch(e){case"fontsize":t.s.commitStyle({attributes:{style:{fontSize:(0, n.normalizeSize)(o,t.o.defaultFontSizePoints)}}});break;case"fontname":t.s.commitStyle({attributes:{style:{fontFamily:o}}});}return t.synchronizeValues(),!1};t.registerCommand("fontsize",e).registerCommand("fontname",e);}));},71576:function(t,e,i){var o=i(71842),n=i(931),r=i(29348),s=i.n(r),a=i(36115);n.I.set("paragraph",s()),a.T.prototype.controls.paragraph={command:"formatBlock",value(t,e){var i,n;const r=e.control,s=t.s.current(),a=o.J.closest(s,o.J.isBlock,t.editor);return null!==(i=null==a?void 0:a.nodeName.toLowerCase())&&void 0!==i?i:null===(n=r.data)||void 0===n?void 0:n.currentValue},update(t,e){const i=e.control;if(!t.s.current())return !1;const o=e.state.value,n=i.list;return n&&n[o.toString()]&&t.o.textIcons&&(e.state.text=n[o.toString()].toString()),!1},data:{currentValue:"p"},list:{p:"Paragraph",h1:"Heading 1",h2:"Heading 2",h3:"Heading 3",h4:"Heading 4",blockquote:"Quote",pre:"Code"},isChildActive:(t,e)=>{var i,o;return Boolean(e.state.value===(null===(o=null===(i=e.control)||void 0===i?void 0:i.args)||void 0===o?void 0:o[0]))},isActive:(t,e)=>{var i;return e.state.value!==t.o.enter&&Boolean(null===(i=e.control.list)||void 0===i?void 0:i[e.state.value])},childTemplate:(t,e,i)=>`<${e} style="margin:0;padding:0"><span>${t.i18n(i)}</span></${e}>`,tooltip:"Insert format block"};},88429:function(t,e,i){var o=i(56298);i(71576),o.fg.add("formatBlock",(function(t){t.registerButton({name:"paragraph",group:"font"}),t.registerCommand("formatblock",((e,i,o)=>(t.s.commitStyle({element:o}),t.synchronizeValues(),!1)));}));},70061:function(t,e,i){var o=i(17352),n=i(931),r=i(24772),s=i.n(r),a=i(66547),l=i.n(a),c=i(36115);c.T.prototype.fullsize=!1,c.T.prototype.globalFullSize=!0,n.I.set("fullsize",s()).set("shrink",l()),c.T.prototype.controls.fullsize={exec:t=>{t.toggleFullSize();},update(t,e){const i=t.isFullSize?"shrink":"fullsize";e.state.activated=t.isFullSize,t.o.textIcons?e.state.text=i:e.state.icon.name=i;},tooltip:"Open in fullsize",mode:o.MODE_SOURCE+o.MODE_WYSIWYG};},9443:function(t,e,i){var o=i(56298),n=i(83044),r=i(38322);i(70061);const s=new Set;o.fg.add("fullsize",(function(t){t.registerButton({name:"fullsize"});let e=!1,i=0,o=0,a=!1;const l=()=>{const{container:n,events:s}=t;s&&(e?(i=(0, r.A)(n,"height",!0),o=(0, r.A)(n,"width",!0),(0, r.A)(n,{height:t.ow.innerHeight,width:t.ow.innerWidth}),a=!0):a&&(0, r.A)(n,{height:i||"auto",width:o||"auto"}));},c=i=>{var o;const{container:a,events:c}=t;if(a){if(void 0===i&&(i=!a.classList.contains("jodit_fullsize")),t.setMod("fullsize",i),t.o.fullsize=i,e=i,a.classList.toggle("jodit_fullsize",i),t.toolbar&&((0, n.y)(t)&&(null===(o=t.toolbarContainer)||void 0===o||o.appendChild(t.toolbar.container)),(0, r.A)(t.toolbar.container,"width","auto")),i?s.add(a):s.delete(a),t.o.globalFullSize&&(1===s.size&&i||0===s.size&&!i)){let t=a.parentNode;for(;t&&t.nodeType!==Node.DOCUMENT_NODE&&t.nodeType!==Node.DOCUMENT_FRAGMENT_NODE;)t.classList.toggle("jodit_fullsize-box_true",i),t=t.parentNode;l();}c.fire("afterResize");}};t.o.globalFullSize&&t.e.on(t.ow,"resize",l),t.e.on("afterInit afterOpen",(()=>{var e;t.toggleFullSize(null===(e=null==t?void 0:t.options)||void 0===e?void 0:e.fullsize);})).on("toggleFullSize",c).on("beforeDestruct",(()=>{e&&c(!1);})).on("beforeDestruct",(()=>{t.events&&t.e.off(t.ow,"resize",l);}));}));},81522:function(t,e,i){i(36115).T.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"]};},30405:function(t,e,i){var o=i(17352),n=i(56298),r=i(65147),s=i(71005);i(81522),n.fg.add("hotkeys",class extends s.k{constructor(){super(...arguments),this.onKeyPress=t=>{const e=this.specialKeys[t.which],i=(t.key||String.fromCharCode(t.which)).toLowerCase(),o=[e||i];return ["alt","ctrl","shift","meta"].forEach((i=>{t[i+"Key"]&&e!==i&&o.push(i);})),(0, r.normalizeKeyAliases)(o.join("+"))},this.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:"'"};}afterInit(t){(0, r.keys)(t.o.commandToHotkeys,!1).forEach((e=>{const i=t.o.commandToHotkeys[e];i&&((0, r.isArray)(i)||(0, r.isString)(i))&&t.registerHotkeyToCommand(i,e);}));let e=!1;t.e.off(".hotkeys").on([t.ow,t.ew],"keydown.hotkeys",(t=>{if(t.key===o.KEY_ESC)return this.j.e.fire("escape",t)})).on("keydown.hotkeys",(i=>{const o=this.onKeyPress(i),n={shouldStop:!0};if(!1===this.j.e.fire(o+".hotkey",i.type,n)){if(n.shouldStop)return e=!0,t.e.stopPropagation("keydown"),!1;i.preventDefault();}}),{top:!0}).on("keyup.hotkeys",(()=>{if(e)return e=!1,t.e.stopPropagation("keyup"),!1}),{top:!0});}beforeDestruct(t){t.events&&t.e.off(".hotkeys");}});},89651:function(t,e,i){var o=i(71842),n=i(56298),r=i(931),s=i(89097),a=i.n(s),l=i(36115);r.I.set("hr",a()),l.T.prototype.controls.hr={command:"insertHorizontalRule",tags:["hr"],tooltip:"Insert Horizontal Line"},n.fg.add("hr",(function(t){t.registerButton({name:"hr",group:"insert"}),t.registerCommand("insertHorizontalRule",(()=>{const e=t.createInside.element("hr");t.s.insertNode(e,!1,!1);const i=o.J.closest(e.parentElement,o.J.isBlock,t.editor);i&&o.J.isEmpty(i)&&i!==t.editor&&(o.J.after(i,e),o.J.safeRemove(i));let n=o.J.next(e,o.J.isBlock,t.editor,!1);return n||(n=t.createInside.element(t.o.enter),o.J.after(e,n)),t.s.setCursorIn(n),!1}));}));},99689:function(t,e,i){var o=i(36115);o.T.prototype.iframeBaseUrl="",o.T.prototype.iframeTitle="Jodit Editor",o.T.prototype.iframeDoctype="<!DOCTYPE html>",o.T.prototype.iframeDefaultSrc="about:blank",o.T.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}',o.T.prototype.iframeCSSLinks=[];},26495:function(t,e,i){var o=i(17352),n=i(56298),r=i(65147);i(99689),n.fg.add("iframe",(function(t){const e=t.options;t.e.on("afterSetMode",(()=>{t.isEditorMode()&&t.s.focus();})).on("generateDocumentStructure.iframe",((t,i)=>{const o=t||i.iframe.contentWindow.document;if(o.open(),o.write(e.iframeDoctype+`<html dir="${e.direction}" class="jodit" lang="${(0, r.defaultLanguage)(e.language)}"><head>`+`<title>${e.iframeTitle}</title>`+(e.iframeBaseUrl?`<base href="${e.iframeBaseUrl}"/>`:"")+'</head><body class="jodit-wysiwyg"></body></html>'),o.close(),e.iframeCSSLinks&&e.iframeCSSLinks.forEach((t=>{const e=o.createElement("link");e.setAttribute("rel","stylesheet"),e.setAttribute("href",t),o.head&&o.head.appendChild(e);})),e.iframeStyle){const t=o.createElement("style");t.innerHTML=e.iframeStyle,o.head&&o.head.appendChild(t);}})).on("createEditor",(()=>{if(!e.iframe)return;const i=t.c.element("iframe");i.style.display="block",i.src="about:blank",i.className="jodit-wysiwyg_iframe",i.setAttribute("allowtransparency","true"),i.setAttribute("tabindex",e.tabIndex.toString()),i.setAttribute("frameborder","0"),t.workplace.appendChild(i),t.iframe=i;const n=t.e.fire("generateDocumentStructure.iframe",null,t);return (0, r.callPromise)(n,(()=>{if(!t.iframe)return !1;const i=t.iframe.contentWindow.document;t.editorWindow=t.iframe.contentWindow;const n=()=>{(0, r.attr)(i.body,"contenteditable",t.getMode()!==o.MODE_SOURCE&&!t.getReadOnly()||null);},s=t=>{const e=/<body.*<\/body>/im,i="{%%BODY%%}",o=e.exec(t);return o&&(t=t.replace(e,i).replace(/<span([^>]*?)>(.*?)<\/span>/gim,"").replace(/<span([^&]*?)>(.*?)<\/span>/gim,"").replace(i,o[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")),t};if(e.editHTMLDocumentMode){const e=t.element.tagName;if("TEXTAREA"!==e&&"INPUT"!==e)throw (0, r.error)("If enable `editHTMLDocumentMode` - source element should be INPUT or TEXTAREA");t.e.on("beforeGetNativeEditorValue",(()=>s(t.o.iframeDoctype+i.documentElement.outerHTML))).on("beforeSetNativeEditorValue",(({value:e})=>!t.isLocked&&(/<(html|body)/i.test(e)?s(i.documentElement.outerHTML)!==s(e)&&(i.open(),i.write(t.o.iframeDoctype+s(e)),i.close(),t.editor=i.body,t.e.fire("safeHTML",t.editor),n(),t.e.fire("prepareWYSIWYGEditor"),t.e.stopPropagation("beforeSetNativeEditorValue")):i.body.innerHTML=e,!0)),{top:!0});}if(t.editor=i.body,t.e.on("afterSetMode afterInit afterAddPlace",n),"auto"===e.height){i.documentElement&&(i.documentElement.style.overflowY="hidden");const o=t.async.throttle(((...i)=>{t.async.requestAnimationFrame((()=>{if(t.editor&&t.iframe&&"auto"===e.height){const e=t.ew.getComputedStyle(t.editor),i=parseInt(e.marginTop||"0",10)+parseInt(e.marginBottom||"0",10);(0, r.css)(t.iframe,"height",t.editor.offsetHeight+i);}}));}),t.defaultTimeout/2);if(t.e.on("change afterInit afterSetMode resize",o).on([t.iframe,t.ew,i.documentElement],"load",o).on(i,"readystatechange DOMContentLoaded",o),"function"==typeof ResizeObserver){const e=new ResizeObserver(o);e.observe(i.body),t.e.on("beforeDestruct",(()=>{e.disconnect();}));}}return i.documentElement&&t.e.on(i.documentElement,"mousedown touchend",(()=>{t.s.isFocused()||(t.s.focus(),t.editor===i.body&&t.s.setCursorIn(i.body));})).on(t.ew,"mousedown touchstart keydown keyup touchend click mouseup mousemove scroll",(e=>{var i;null===(i=t.events)||void 0===i||i.fire(t.ow,e);})),!1}))}));}));},67915:function(t,e,i){i(36115).T.prototype.imageProcessor={replaceDataURIToBlobIdInView:!0};},92097:function(t,e,i){var o=i(31635),n=i(17352),r=i(22664),s=i(56298),a=i(65147),l=i(71005);i(67915);const c="__jodit_imageprocessor_binded",d=c+"blob-id";class u extends l.k{afterInit(t){}beforeDestruct(t){const e=t.buffer.get(d);if(e){const i=Object.keys(e);for(const t of i)URL.revokeObjectURL(t);t.buffer.delete(d);}}onAfterGetValueFromEditor(t,e){if(e!==n.SOURCE_CONSUMER)return this.onBeforeSetElementValue(t)}onBeforeSetElementValue(t){const{jodit:e}=this;if(!e.o.imageProcessor.replaceDataURIToBlobIdInView)return;const i=e.buffer.get(d);if(i){const e=Object.keys(i);for(const o of e)for(;t.value.includes(o);)t.value=t.value.replace(o,i[o]);}}async afterChange(t){const{jodit:e}=this;e.editor&&(0, a.$$)("img",e.editor).forEach((t=>{(0, a.dataBind)(t,c)||((0, a.dataBind)(t,c,!0),t.complete||e.e.on(t,"load",(function i(){var o;!e.isInDestruct&&(null===(o=e.e)||void 0===o||o.fire("resize")),e.e.off(t,"load",i);})),t.src&&/^data:/.test(t.src)&&function(t,e){if(!t.o.imageProcessor.replaceDataURIToBlobIdInView)return;if("undefined"==typeof ArrayBuffer||"undefined"==typeof URL)return;const i=e.src,o=function(t){const e=atob(t.split(",")[1]),i=t.split(",")[0].split(":")[1].split(";")[0],o=new ArrayBuffer(e.length),n=new Uint8Array(o);for(let t=0;e.length>t;t++)n[t]=e.charCodeAt(t);return new Blob([o],{type:i})}(i);e.src=URL.createObjectURL(o),t.e.fire("internalUpdate");const{buffer:n}=t,r=n.get(d)||{};r[e.src]=i,t.buffer.set(d,r);}(e,t),e.e.on(t,"mousedown touchstart",(()=>{e.s.select(t);})));}));}}(0, o.Cg)([(0, r.watch)(":afterGetValueFromEditor")],u.prototype,"onAfterGetValueFromEditor",null),(0, o.Cg)([(0, r.watch)(":beforeSetElementValue")],u.prototype,"onBeforeSetElementValue",null),(0, o.Cg)([(0, r.watch)([":change",":afterInit",":changePlace"]),(0, r.debounce)()],u.prototype,"afterChange",null),s.fg.add("imageProcessor",u);},24654:function(t,e,i){i(36115).T.prototype.image={dialogWidth:600,openOnDblClick:!0,editSrc:!0,useImageEditor:!0,editTitle:!0,editAlt:!0,editLink:!0,editSize:!0,editBorderRadius:!0,editMargins:!0,editClass:!0,availableClasses:[],editStyle:!0,editId:!0,editAlign:!0,showPreview:!0,selectImageAfterClose:!0};},19085:function(t,e,i){var o=i(31635),n=i(22664),r=i(55186),s=i(56298),a=i(65147),l=i(29866),c=i(35265),d=(i(24654),i(31970)),u=i(80778),h=i(33733),p=i(5549),f=i(30393);class g extends l.k{constructor(){super(...arguments),this.state={image:new Image,sourceImage:new Image,get ratio(){const{naturalWidth:t,naturalHeight:e}=this.image;return t/e||1},sizeIsLocked:!0,marginIsLocked:!0,values:{style:"",imageSrc:"",borderRadius:0,imageTitle:"",imageAlt:"",imageLink:"",imageLinkOpenInNewTab:!1,imageWidth:0,imageHeight:0,marginTop:0,marginRight:0,marginBottom:0,marginLeft:0,classes:"",id:"",align:""}},this.activeTabState={activeTab:"Image"};}get form(){return new d.l(this.j,this.state,this.activeTabState,{openImageEditor:()=>(0, u.v)(this.j,this.state),openImagePopup:t=>(0, h.q)(this.j,this.dialog,this.state,t)})}get dialog(){const{j:t}=this,e=t.dlg({minWidth:Math.min(400,screen.width),minHeight:590,buttons:["fullsize","dialog.close"]}),i=this.__buttons;return i.check.onAction((()=>{(0, f.j)(t,this.state,this.state.sourceImage),t.synchronizeValues(),e.close();})),i.remove.onAction((()=>{t.s.removeNode(this.state.sourceImage),e.close();})),i.cancel.onAction((()=>{e.close();})),e.setHeader(t.i18n("Image properties")),e.setContent(this.form),e.setFooter([[i.cancel,i.remove],i.check]),t.e.on(e,"afterClose",(()=>{this.state.image.parentNode&&t.o.image.selectImageAfterClose&&t.s.select(this.state.sourceImage);})),e.setSize(t.o.image.dialogWidth),(0, a.markOwner)(t,e.container),e}get __buttons(){const{j:t}=this;return {check:(0, c.$n)(t,"ok","Apply","primary"),remove:(0, c.$n)(t,"bin","Delete"),cancel:(0, c.$n)(t,"cancel","Cancel")}}open(){return this.activeTabState.activeTab="Image",this.__lock(),this.dialog.open().setModal(!0).setPosition(),this.async.promise(((t,e)=>(0, p.U)(this.j,this.state).then(t,e))).catch((t=>{(0, a.isAbortError)(t)||this.dialog.message.error(t.message);})).finally((()=>this.__unlock())),!1}__lock(){this.dialog.lock(),this.form.setMod("lock",!0),Object.values(this.__buttons).forEach((t=>t.state.disabled=!0));}__unlock(){this.dialog.unlock(),this.form.setMod("lock",!1),Object.values(this.__buttons).forEach((t=>t.state.disabled=!1));}afterInit(t){const e=this;t.e.on("afterConstructor changePlace",(()=>{t.e.off(t.editor,".imageproperties").on(t.editor,"dblclick.imageproperties",(i=>{const o=i.target;if(r.J.isTag(o,"img"))if(t.o.image.openOnDblClick){if(!1===this.j.e.fire("openOnDblClick",o))return;e.state.sourceImage=o,e.state.image=o.cloneNode(!0),t.o.readonly||(i.stopImmediatePropagation(),i.preventDefault(),e.open());}else i.stopImmediatePropagation(),t.s.select(o);}));})).on("openImageProperties.imageproperties",(t=>{e.state.sourceImage=t,this.state.image=t.cloneNode(!0),this.open();}));}async onStateValuesImageSrcChange(){const{image:t,values:e}=this.state;if(t.src)try{if(this.__lock(),await t.decode(),this.state.sizeIsLocked&&(0,a.isNumeric)(e.imageWidth)){const t=parseFloat(e.imageWidth.toString());e.imageHeight=Math.round(t/this.state.ratio);}this.j.e.fire("updateImageProperties.imageproperties",t);}catch(t){this.j.alert(t.message);}finally{this.__unlock();}}beforeDestruct(t){var e,i,o;Object.values(null!==(e=(0, n.cached)(this,"__buttons"))&&void 0!==e?e:{}).forEach((t=>t.destruct())),null===(i=(0, n.cached)(this,"dialog"))||void 0===i||i.destruct(),null===(o=(0, n.cached)(this,"form"))||void 0===o||o.destruct(),t.e.off(t.editor,".imageproperties").off(".imageproperties");}}(0, o.Cg)([n.cache],g.prototype,"form",null),(0, o.Cg)([n.cache],g.prototype,"dialog",null),(0, o.Cg)([n.cache],g.prototype,"__buttons",null),(0, o.Cg)([(0, n.watch)("state.image")],g.prototype,"onStateValuesImageSrcChange",null),s.fg.add("imageProperties",g);},74260:function(t,e,i){i.d(e,{g:function(){return n}});var o=i(38322);function n(t,e){e.align=t.style.cssFloat&&-1!==["left","right"].indexOf(t.style.cssFloat.toLowerCase())?(0, o.A)(t,"float"):"block"===(0, o.A)(t,"display")&&"auto"===t.style.marginLeft&&"auto"===t.style.marginRight?"center":"";}},5549:function(t,e,i){i.d(e,{U:function(){return l}});var o=i(26150),n=i(74260),r=i(33201),s=i(85079),a=i(17880);async function l(t,e){const{sourceImage:i,values:l}=e;return (0, n.g)(i,l),l.borderRadius=parseInt(i.style.borderRadius||"0",10)||0,l.id=(0, o.C)(i,"id")||"",l.imageTitle=(0, o.C)(i,"title")||"",l.imageAlt=(0, o.C)(i,"alt")||"",l.style=(0, o.C)(i,"style")||"",l.classes=((0, o.C)(i,"class")||"").replace(/jodit_focused_image[\s]*/,""),(0, s.E)(i,l,e),(0, r.X)(e,t,l),l.imageSrc=(0, o.C)(i,"src")||"",(0, a.P)(i,l,e)}},33201:function(t,e,i){i.d(e,{X:function(){return r}});var o=i(55186),n=i(26150);function r(t,e,i){const r=o.J.closest(t.sourceImage,"a",e.editor);r?(i.imageLink=(0, n.C)(r,"href")||"",i.imageLinkOpenInNewTab="_blank"===(0, n.C)(r,"target")):(i.imageLink="",i.imageLinkOpenInNewTab=!1);}},85079:function(t,e,i){i.d(e,{E:function(){return n}});var o=i(449);function n(t,e,i){let n=!0,r=!1;["marginTop","marginRight","marginBottom","marginLeft"].forEach((i=>{let s=t.style.getPropertyValue((0, o.k)(i));if(!s)return r=!0,void(e[i]=0);/^[0-9]+(px)?$/.test(s)&&(s=parseInt(s,10)),e[i]=s,(r&&e[i]||n&&"marginTop"!==i&&e[i]!==e.marginTop)&&(n=!1);})),i.marginIsLocked=n;}},17880:function(t,e,i){i.d(e,{P:function(){return a}});var o=i(12461),n=i(26150),r=i(38322),s=i(9645);async function a(t,e,i){await t.decode();const a=(0, r.A)(t,"width",!0)||(0, n.C)(t,"width")||!1,l=(0, r.A)(t,"height",!0)||(0, n.C)(t,"height")||!1;e.imageWidth=!1!==a?(0, s.G)(a):t.offsetWidth||t.naturalWidth,e.imageHeight=(0, o.k)(e.imageWidth)?!1!==l?(0, s.G)(l):t.offsetHeight||t.naturalHeight:l||"";const{imageWidth:c,imageHeight:d}=e,u=parseFloat(c.toString());if(!(0, o.k)(c)||!(0, o.k)(d))return void(i.sizeIsLocked=!1);if(!1===l)return e.imageHeight=Math.round(u/i.ratio),void(i.sizeIsLocked=!0);const h=parseFloat(d.toString());i.sizeIsLocked=1>Math.abs(u-h*i.ratio);}},31970:function(t,e,i){i.d(e,{l:function(){return h}});var o=i(31635),n=i(22664),r=i(24767),s=i(65147),a=i(6455),l=i(931),c=i(16116),d=i(33403),u=i(46681);let h=class extends a.U{className(){return "UIImagePropertiesForm"}appendChildToContainer(){}getElm(t){const e=super.getElm(t);if(e)return e;for(const e of this.elements){const i=e.getElm(t);if(i)return i}return null}constructor(t,e,i,o){super(t),this.state=e,this.handlers=o,this.__mainTab=new d.k(this.jodit,this.state,this.handlers),this.__positionTab=new u._(this.jodit,this.state,this.handlers),this.getElm("tabsBox").appendChild((0, c.Zg)(t,[{name:"Image",content:this.__mainTab},{name:"Advanced",content:this.__positionTab}],i)),this.setMod("lock-size",this.state.sizeIsLocked),this.append(this.__mainTab).append(this.__positionTab);}render(){return `<form>\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="&__view-box">\n\t\t\t\t\t<div class="&__imageView">\n\t\t\t\t\t\t<img class="&__imageViewSrc" src="" alt=""/>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class="jodit-form__group &__imageSizes">\n\t\t\t\t\t\t<input type="text" class="jodit-input &__imageWidth"/>\n\t\t\t\t\t\t<a class="&__lockSize">${l.I.get("lock")}</a>\n\t\t\t\t\t\t<input 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 class="jodit_col-lg-3-5 jodit_col-xs-5-5 &__tabsBox"></div>\n\t\t</div>\n\t</form>`}onChangeSizeIsLocked(){const t=this.getElm("lockSize"),e=this.getElm("imageWidth");t.innerHTML=l.I.get(this.state.sizeIsLocked?"lock":"unlock"),this.setMod("lock-size",this.state.sizeIsLocked),this.j.e.fire(e,"change");}onLockSizeClick(){this.state.sizeIsLocked=!this.state.sizeIsLocked;}onStateValuesSizeChange(){const t=this.getElm("imageWidth"),e=this.getElm("imageHeight");t!==this.j.od.activeElement&&(t.value=this.state.values.imageWidth.toString()),e!==this.j.od.activeElement&&(e.value=this.state.values.imageHeight.toString());}onImageWidthChange(t){const e=this.getElm("imageWidth"),i=this.getElm("imageHeight");if(!this.state.sizeIsLocked||!(0, s.isNumeric)(e.value)||!(0, s.isNumeric)(i.value))return this.state.values.imageWidth=e.value,void(this.state.values.imageHeight=i.value);const o=parseFloat(e.value),n=parseFloat(i.value);t.target===e?(this.state.values.imageWidth=o,this.state.values.imageHeight=Math.round(o/this.state.ratio)):(this.state.values.imageWidth=Math.round(n*this.state.ratio),this.state.values.imageHeight=n);}onStateValuesImageSrcChange(){const{imageSrc:t}=this.state.values;if(!t)return;const e=this.getElm("imageViewSrc");(0, s.attr)(e,"src",t);const i=new Image;i.src=t,this.state.image=i;}hideFieldByOptions(){const t=this.j.o.image;[["editSize","imageSizes"],["showPreview","imageView"]].forEach((([e,i])=>{const o=this.getElm(i);(0, s.css)(o,"display",t[e]?null:"none");}));}};(0, o.Cg)([(0, n.hook)("ready"),(0, n.watch)("state.sizeIsLocked")],h.prototype,"onChangeSizeIsLocked",null),(0, o.Cg)([(0, n.watch)("lockSize:click")],h.prototype,"onLockSizeClick",null),(0, o.Cg)([(0, n.hook)("ready"),(0, n.watch)(["state.values.imageWidth","state.values.imageHeight"])],h.prototype,"onStateValuesSizeChange",null),(0, o.Cg)([(0, n.watch)(["imageWidth:change","imageHeight:change","imageWidth:keydown","imageHeight:keydown","imageWidth:mousedown","imageHeight:mousedown","imageWidth:paste","imageHeight:paste"]),(0, n.debounce)()],h.prototype,"onImageWidthChange",null),(0, o.Cg)([(0, n.hook)("ready"),(0, n.watch)("state.values.imageSrc")],h.prototype,"onStateValuesImageSrcChange",null),(0, o.Cg)([(0, n.hook)("ready")],h.prototype,"hideFieldByOptions",null),h=(0, o.Cg)([r.s],h);},33403:function(t,e,i){i.d(e,{k:function(){return c}});var o=i(31635),n=i(24767),r=i(71151),s=i(66927),a=i(65147),l=i(6455);let c=class extends l.U{className(){return "UIImageMainTab"}appendChildToContainer(){}constructor(t,e,i){super(t),this.state=e,this.handlers=i;}render(){return '<div class="jodit-form__group &__editSrc">\n\t\t\t<label>~Src~</label>\n\t\t\t<div class="jodit-input_group">\n\t\t\t\t<input class="jodit-input &__imageSrc" type="text"/>\n\t\t\t\t<div class="jodit-input_group-buttons &__fixImage">\n\t\t\t\t\t\t<a class="jodit-button &__changeImage">*image*</a>\n\t\t\t\t\t\t<a class="jodit-button &__editImage">*crop*</a>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</div>\n\t\t<div class="jodit-form__group &__editTitle">\n\t\t\t<label>~Title~</label>\n\t\t\t<input type="text" class="jodit-input &__imageTitle"/>\n\t\t</div>\n\t\t<div class="jodit-form__group &__editAlt">\n\t\t\t<label>~Alternative~</label>\n\t\t\t<input type="text" class="jodit-input &__imageAlt"/>\n\t\t</div>\n\t\t<div class="jodit-form__group &__editLink">\n\t\t\t<label>~Link~</label>\n\t\t\t<input type="text" class="jodit-input &__imageLink"/>\n\t\t</div>\n\t\t<div class="jodit-form__group &__editLinkTarget">\n\t\t\t<label class="jodit_vertical_middle">\n\t\t\t\t<input type="checkbox" class="jodit-checkbox &__imageLinkOpenInNewTab"/>\n\t\t\t\t<span>~Open link in new tab~</span>\n\t\t\t</label>\n\t\t</div>'}async onStateImageSrcChange(){this.getElm("imageSrc").value=this.state.values.imageSrc;}onImageSrcChange(){this.state.values.imageSrc=this.getElm("imageSrc").value;}onEditImageClick(t){this.handlers.openImageEditor(),t.stopPropagation();}onChangeImageClick(t){this.handlers.openImagePopup(this.getElm("changeImage")),t.stopPropagation();}onStateTitleChange(){this.getElm("imageTitle").value=this.state.values.imageTitle;}onTitleChange(){this.state.values.imageTitle=this.getElm("imageTitle").value;}onStateAltChange(){this.getElm("imageAlt").value=this.state.values.imageAlt;}onAltChange(){this.state.values.imageAlt=this.getElm("imageAlt").value;}onStateImageLinkChange(){this.getElm("imageLink").value=this.state.values.imageLink;}onImageLinkChange(){this.state.values.imageLink=this.getElm("imageLink").value;}onStateImageLinkOpenInNewTabChange(){this.getElm("imageLinkOpenInNewTab").checked=this.state.values.imageLinkOpenInNewTab;}onImageLinkOpenInNewTabChange(){this.state.values.imageLinkOpenInNewTab=this.getElm("imageLinkOpenInNewTab").checked;}hideFieldByOptions(){const t=this.j.o,e=t.image;[["editSrc","editSrc"],["editTitle","editTitle"],["editAlt","editAlt"],["editLink","editLink"],["editLink","editLinkTarget"],["useImageEditor","editImage"]].forEach((([t,i])=>{const o=this.getElm(i);(0, a.css)(o,"display",e[t]?null:"none");}));const i=this.getElm("changeImage"),o=Boolean(t.filebrowser.ajax.url||t.uploader.url);(0, a.css)(i,"display",o?null:"none");const n=this.getElm("editImage"),r=Boolean(t.filebrowser.ajax.url)&&e.useImageEditor;(0, a.css)(n,"display",r?null:"none");const s=this.getElm("fixImage");(0, a.css)(s,"display",o||r?null:"none");}};(0, o.Cg)([(0, s.w)("state.values.imageSrc")],c.prototype,"onStateImageSrcChange",null),(0, o.Cg)([(0, s.w)("imageSrc:change")],c.prototype,"onImageSrcChange",null),(0, o.Cg)([(0, s.w)("editImage:click")],c.prototype,"onEditImageClick",null),(0, o.Cg)([(0, s.w)("changeImage:click")],c.prototype,"onChangeImageClick",null),(0, o.Cg)([(0, s.w)("state.values.imageTitle")],c.prototype,"onStateTitleChange",null),(0, o.Cg)([(0, s.w)("imageTitle:change")],c.prototype,"onTitleChange",null),(0, o.Cg)([(0, s.w)("state.values.imageAlt")],c.prototype,"onStateAltChange",null),(0, o.Cg)([(0, s.w)("imageAlt:change")],c.prototype,"onAltChange",null),(0, o.Cg)([(0, s.w)("state.values.imageLink")],c.prototype,"onStateImageLinkChange",null),(0, o.Cg)([(0, s.w)("imageLink:change")],c.prototype,"onImageLinkChange",null),(0, o.Cg)([(0, s.w)("state.values.imageLinkOpenInNewTab")],c.prototype,"onStateImageLinkOpenInNewTabChange",null),(0, o.Cg)([(0, s.w)("imageLinkOpenInNewTab:change")],c.prototype,"onImageLinkOpenInNewTabChange",null),(0, o.Cg)([(0, r.A)("ready")],c.prototype,"hideFieldByOptions",null),c=(0, o.Cg)([n.s],c);},46681:function(t,e,i){i.d(e,{_:function(){return p}});var o=i(31635),n=i(24767),r=i(71151),s=i(66927),a=i(65147),l=i(98253),c=i(26150),d=i(29780),u=i(931),h=i(9645);let p=class extends d.D{className(){return "UIImagePositionTab"}constructor(t,e,i){super(t,{availableClasses:t.o.image.availableClasses}),this.state=e,this.handlers=i;}render({availableClasses:t}){return `<div class="jodit-form__group &__editMargins">\n\t\t\t<label>~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 &__marginTop" type="text" placeholder="~top~"/>\n\t\t\t\t<a style="text-align: center;" class="jodit-properties__lock jodit_col-lg-1-5 &__lockMargin">*lock*</a>\n\t\t\t\t<input disabled="disabled" class="jodit_col-lg-1-5 jodit-input &__marginRight" type="text" placeholder="~right~"/>\n\t\t\t\t<input disabled="disabled" class="jodit_col-lg-1-5 jodit-input &__marginBottom" type="text" placeholder="~bottom~"/>\n\t\t\t\t<input disabled="disabled" class="jodit_col-lg-1-5 jodit-input &__marginLeft" type="text" placeholder="~left~"/>\n\t\t\t</div>\n\t\t</div>\n\t\t<div class="jodit-form__group &__editAlign">\n\t\t\t<label>~Align~</label>\n\t\t\t<select class="jodit-select &__align">\n\t\t\t\t<option value="">~--Not Set--~</option>\n\t\t\t\t<option value="left">~Left~</option>\n\t\t\t\t<option value="center">~Center~</option>\n\t\t\t\t<option value="right">~Right~</option>\n\t\t\t</select>\n\t\t</div>\n\t\t<div class="jodit-form__group &__editStyle">\n\t\t\t<label>~Styles~</label>\n\t\t\t<input type="text" class="jodit-input &__style"/>\n\t\t</div>\n\t\t<div class="jodit-form__group &__editClass">\n\t\t\t<label>~Classes~</label>\n\t\t\t${(()=>{const e=[];return t&&t.length>0?(e.push('<select class="jodit-input jodit-select &__classes">'),t.forEach((t=>{(0, l.K)(t)?e.push(`<option value="${t}">${t}</option>`):e.push(`<option value="${t[0]}">${t[1]}</option>`);})),e.push("</select>")):e.push('<input type="text" class="jodit-input &__classes"/>'),e.join("")})()}\n\t\t</div>\n\t\t<div class="jodit-form__group &__editId">\n\t\t\t<label>Id</label>\n\t\t\t<input type="text" class="jodit-input &__id"/>\n\t\t</div>\n\t\t<div\n\t\t\tclass="jodit-form__group &__editBorderRadius"\n\t\t>\n\t\t\t<label>~Border radius~</label>\n\t\t\t<input type="number" class="jodit-input &__borderRadius"/>\n\t\t</div>`}onStateAlignChange(){this.getElm("align").value=this.state.values.align;}onChangeAlign(){const t=this.getElm("align");this.state.values.align=t.value;}onStateValuesBorderRadiusChange(){this.getElm("borderRadius").value=this.state.values.borderRadius.toString();}onChangeBorderRadius(){const t=this.getElm("borderRadius");this.state.values.borderRadius=parseFloat(t.value);}onStateValuesIdChange(){this.getElm("id").value=this.state.values.id;}onChangeId(){const t=this.getElm("id");this.state.values.id=t.value;}onStateValuesStyleChange(){this.getElm("style").value=this.state.values.style;}onChangeStyle(){const t=this.getElm("style");this.state.values.style=t.value;}onStateValuesClassesChange(){this.getElm("classes").value=this.state.values.classes;}onChangClasses(){const t=this.getElm("classes");this.state.values.classes=t.value;}onLockMarginClick(t){this.state.marginIsLocked=!this.state.marginIsLocked,t.preventDefault();}onChangeMarginIsLocked(){const t=this.getElm("marginBottom"),e=this.getElm("marginRight"),i=this.getElm("marginLeft"),o=this.getElm("lockMargin");if([e,t,i].forEach((t=>{(0, c.C)(t,"disabled",this.state.marginIsLocked||null);})),o.innerHTML=u.I.get(this.state.marginIsLocked?"lock":"unlock"),this.state.marginIsLocked){const t=this.state.values.marginTop;this.state.values.marginRight=t,this.state.values.marginBottom=t,this.state.values.marginLeft=t;}}onStateValuesMarginChange(){const t=this.getElm("marginTop"),e=this.getElm("marginRight"),i=this.getElm("marginBottom"),o=this.getElm("marginLeft");t.value=this.state.values.marginTop.toString(),e.value=this.state.values.marginRight.toString(),i.value=this.state.values.marginBottom.toString(),o.value=this.state.values.marginLeft.toString();}onChangeMargin(){const t=this.getElm("marginTop"),e=this.getElm("marginRight"),i=this.getElm("marginBottom"),o=this.getElm("marginLeft");this.state.values.marginTop=(0, h.G)(t.value),this.state.marginIsLocked?(this.state.values.marginRight=this.state.values.marginTop,this.state.values.marginBottom=this.state.values.marginTop,this.state.values.marginLeft=this.state.values.marginTop):(this.state.values.marginRight=(0, h.G)(e.value),this.state.values.marginBottom=(0, h.G)(i.value),this.state.values.marginLeft=(0, h.G)(o.value));}hideFieldByOptions(){const t=this.j.o.image;[["editMargins","editMargins"],["editAlign","editAlign"],["editStyle","editStyle"],["editClass","editClass"],["editId","editId"],["editBorderRadius","editBorderRadius"]].forEach((([e,i])=>{const o=this.getElm(i);(0, a.css)(o,"display",t[e]?null:"none");}));}};(0, o.Cg)([(0, r.A)("ready"),(0, s.w)("state.values.align")],p.prototype,"onStateAlignChange",null),(0, o.Cg)([(0, s.w)("align:change")],p.prototype,"onChangeAlign",null),(0, o.Cg)([(0, r.A)("ready"),(0, s.w)("state.values.borderRadius")],p.prototype,"onStateValuesBorderRadiusChange",null),(0, o.Cg)([(0, s.w)("borderRadius:change")],p.prototype,"onChangeBorderRadius",null),(0, o.Cg)([(0, r.A)("ready"),(0, s.w)("state.values.id")],p.prototype,"onStateValuesIdChange",null),(0, o.Cg)([(0, s.w)("id:change")],p.prototype,"onChangeId",null),(0, o.Cg)([(0, r.A)("ready"),(0, s.w)("state.values.style")],p.prototype,"onStateValuesStyleChange",null),(0, o.Cg)([(0, s.w)("style:change")],p.prototype,"onChangeStyle",null),(0, o.Cg)([(0, r.A)("ready"),(0, s.w)("state.values.classes")],p.prototype,"onStateValuesClassesChange",null),(0, o.Cg)([(0, s.w)("classes:change")],p.prototype,"onChangClasses",null),(0, o.Cg)([(0, s.w)("lockMargin:click")],p.prototype,"onLockMarginClick",null),(0, o.Cg)([(0, r.A)("ready"),(0, s.w)("state.marginIsLocked")],p.prototype,"onChangeMarginIsLocked",null),(0, o.Cg)([(0, r.A)("ready"),(0, s.w)(["state.values.marginTop","state.values.marginRight","state.values.marginBottom","state.values.marginLeft"])],p.prototype,"onStateValuesMarginChange",null),(0, o.Cg)([(0, s.w)(["marginTop:change","marginRight:change","marginBottom:change","marginLeft:change"])],p.prototype,"onChangeMargin",null),(0, o.Cg)([(0, r.A)("ready")],p.prototype,"hideFieldByOptions",null),p=(0, o.Cg)([n.s],p);},80778:function(t,e,i){i.d(e,{v:function(){return s}});var o=i(98253),n=i(26150),r=i(53804);function s(t,e){const i=(0, n.C)(e.image,"src")||"",s=t.c.element("a"),a=()=>{s.host===location.host||t.confirm("You can only edit your own images. Download this image on the host?",(i=>{i&&t.uploader&&t.uploader.uploadRemoteImage(s.href.toString(),(i=>{t.alert("The image has been successfully uploaded to the host!",(()=>{(0, o.K)(i.newfilename)&&(e.values.imageSrc=i.baseurl+i.newfilename);}));}),(e=>{t.alert("There was an error loading %s",e.message);}));}));};s.href=i,t.filebrowser.dataProvider.getPathByUrl(s.href.toString()).then((o=>{r.B.call(t.filebrowser,s.href,o.name,o.path,o.source,(()=>{const t=(new Date).getTime();e.values.imageSrc=i+(-1!==i.indexOf("?")?"":"?")+"&_tmp="+t.toString();}),(e=>{t.alert(e.message);}));})).catch((e=>{t.alert(e.message,a);}));}},33733:function(t,e,i){i.d(e,{q:function(){return a}});var o=i(37923),n=i(27594),r=i(80071),s=i(10067);function a(t,e,i,a){const l=new r.z(e),c=()=>{l.close(),l.destruct();};l.setContent((0, s.k)(t,{upload:t=>{t.files&&t.files.length&&(i.values.imageSrc=t.baseurl+t.files[0]),c();},filebrowser:async t=>{t&&(0, o.c)(t.files)&&t.files.length&&(i.values.imageSrc=t.files[0],c());}},i.image,c)).open((()=>(0, n.G)(a)));}},9645:function(t,e,i){i.d(e,{G:function(){return r},n:function(){return s}});var o=i(2461),n=i(59101);const r=t=>/^[-+]?[0-9.]+(px)?$/.test(t.toString())?parseFloat(t.toString()):t,s=t=>(0, o.E)(t)?t?t+"px":t.toString():(t=(0, n.Bq)(t),/^[0-9]+$/.test(t)?t+"px":t);},30393:function(t,e,i){i.d(e,{j:function(){return l}});var o=i(55186),n=i(97369),r=i(88269),s=i(78139),a=i(58972);function l(t,e,i){const{style:l,imageSrc:c,borderRadius:d,imageTitle:u,imageAlt:h,imageLink:p,imageWidth:f,imageHeight:g,marginTop:m,marginRight:b,marginBottom:_,marginLeft:v,imageLinkOpenInNewTab:x,align:w,classes:y,id:j}=e.values,k=t.o;k.image.editStyle&&(0, n.attr)(i,"style",l||null),c?((0, n.attr)(i,"src",c),i.style.borderRadius=d?d+"px":"",(0, n.attr)(i,"title",u||null),(0, n.attr)(i,"alt",h||null),(0, r.j)(t,i,p,x),(0, a.q)(i,f,g,e.sizeIsLocked),t.o.image.editMargins&&(0, s.N)(t,m,b,_,v,i,e.marginIsLocked),k.image.editClass&&(0, n.attr)(i,"class",y||null),k.image.editId&&(0, n.attr)(i,"id",j||null),k.image.editAlign&&(0, n.hAlignElement)(i,w)):o.J.safeRemove(i);}},88269:function(t,e,i){i.d(e,{j:function(){return r}});var o=i(55186),n=i(26150);function r(t,e,i,r){let s=o.J.closest(e,"a",t.editor);i?(s||(s=o.J.wrap(e,"a",t.createInside)),(0, n.C)(s,"href",i),(0, n.C)(s,"target",r?"_blank":null)):s&&s.parentNode&&s.parentNode.replaceChild(e,s);}},78139:function(t,e,i){i.d(e,{N:function(){return r}});var o=i(38322),n=i(9645);function r(t,e,i,r,s,a,l){const c=[e,i,r,s],d=(t,e)=>{const i=(0, o.A)(a,t),r=(0, n.n)(e);i.toString()!==r.toString()&&(0, o.A)(a,t,r);};if(l)d("margin",e);else {const t=["margin-top","margin-right","margin-bottom","margin-left"];c.forEach(((e,i)=>{d(t[i],e);}));}}},58972:function(t,e,i){i.d(e,{q:function(){return a}});var o=i(12461),n=i(26150),r=i(38322),s=i(9645);function a(t,e,i,a){if(e!==t.offsetWidth||i!==t.offsetHeight){const l=e?(0, s.n)(e):null;let c=i?(0, s.n)(i):null;(0, r.A)(t,{width:l,height:l&&a?null:c}),(0, n.C)(t,"width",l&&(0, o.k)(e)&&(0, n.C)(t,"width")?l:null),(0, n.C)(t,"width")&&!a||(c=null),(0, n.C)(t,"height",c);}}},49777:function(t,e,i){var o=i(71842),n=i(56298),r=i(65147),s=i(931),a=i(16116),l=i(64831),c=i.n(l),d=i(36115);s.I.set("image",c()),d.T.prototype.controls.image={popup:(t,e,i)=>{let n=null;return e&&!o.J.isText(e)&&o.J.isHTMLElement(e)&&(o.J.isTag(e,"img")||(0, r.$$)("img",e).length)&&(n=o.J.isTag(e,"img")?e:(0, r.$$)("img",e)[0]),t.s.save(),(0, a.kG)(t,{filebrowser:e=>{t.s.restore(),e.files&&e.files.forEach((i=>t.s.insertImage(e.baseurl+i,null,t.o.imageDefaultWidth))),i();},upload:!0,url:async(e,o)=>{t.s.restore(),/^[a-z\d_-]+(\.[a-z\d_-]+)+/i.test(e)&&(e="//"+e);const r=n||t.createInside.element("img");r.setAttribute("src",e),r.setAttribute("alt",o),n||await t.s.insertImage(r,null,t.o.imageDefaultWidth),i();}},n,i)},tags:["img"],tooltip:"Insert Image"},n.fg.add("image",(function(t){t.registerButton({name:"image",group:"media"});}));},97767:function(t,e,i){var o=i(71842),n=i(931),r=i(67176),s=i.n(r),a=i(14017),l=i.n(a),c=i(3392),d=i(36115);n.I.set("indent",s()).set("outdent",l()),d.T.prototype.controls.indent={tooltip:"Increase Indent"},d.T.prototype.controls.outdent={isDisabled:t=>{const e=t.s.current();if(e){const i=o.J.closest(e,o.J.isBlock,t.editor);if(i){const e=(0, c.i)(t.o.direction,i);return !i.style[e]||0>=parseInt(i.style[e],10)}}return !0},tooltip:"Decrease Indent"},d.T.prototype.indentMargin=10;},3392:function(t,e,i){i.d(e,{i:function(){return n}});var o=i(55186);const n=(t,e)=>`${o.J.isCell(e)?"padding":"margin"}${"rtl"===t?"Right":"Left"}`;},46079:function(t,e,i){var o=i(17352),n=i(71842),r=i(56298),s=i(65147),a=(i(97767),i(3392));r.fg.add("indent",(function(t){t.registerButton({name:"indent",group:"indent"}).registerButton({name:"outdent",group:"indent"});const e=e=>{const i=[];return t.s.eachSelection((r=>{t.s.save();let l=!!r&&n.J.up(r,n.J.isBlock,t.editor);const{enter:c}=t.o;if(!l&&r&&(l=n.J.wrapInline(r,c!==o.BR?c:o.PARAGRAPH,t)),!l)return t.s.restore(),!1;const d=i.includes(l);if(l&&!d){const o=(0, a.i)(t.o.direction,l);i.push(l);let n=l.style[o]?parseInt(l.style[o],10):0;n+=t.o.indentMargin*("outdent"===e?-1:1),l.style[o]=n>0?n+"px":"",(0, s.attr)(l,"style")||(0, s.attr)(l,"style",null);}t.s.restore();})),t.synchronizeValues(),!1};t.registerCommand("indent",{exec:e,hotkeys:["ctrl+]","cmd+]"]}),t.registerCommand("outdent",{exec:e,hotkeys:["ctrl+[","cmd+["]});}));},88222:function(t,e,i){i(14221),i(55989),i(13917),i(5929),i(49289),i(98341),i(38101),i(24593),i(36293),i(38373),i(64565),i(27509),i(13405),i(67335),i(92553),i(73077),i(88429),i(9443),i(30405),i(89651),i(26495),i(49777),i(92097),i(19085),i(46079),i(3459),i(99573),i(92225),i(9117),i(83105),i(47791),i(26421),i(76967),i(1239),i(13861),i(36969),i(56701),i(225),i(81089),i(44921),i(78757),i(60189),i(39147),i(76693),i(6857),i(17343),i(35523),i(46939),i(69077),i(93669),i(97179),i(65199),i(1677),i(35541),i(64241),i(59965),i(76385),i(2533),i(38309),i(14367),i(61589),i(36133),i(37873);},15776:function(t,e,i){var o=i(931),n=i(97836),r=i(82558),s=i(6295),a=i(26396),l=i(58540),c=i(36115),d=i(38681),u=i.n(d),h=i(64637),p=i.n(h),f=i(94190),g=i.n(f),m=i(51957),b=i.n(m),_=i(71940),v=i.n(_),x=i(43218),w=i.n(x),y=i(48007),j=i.n(y);c.T.prototype.toolbarInline=!0,c.T.prototype.toolbarInlineForSelection=!1,c.T.prototype.toolbarInlineDisableFor=[],c.T.prototype.toolbarInlineDisabledButtons=["source"],o.I.set("addcolumn",u()).set("addrow",p()).set("merge",g()).set("th",w()).set("splitg",b()).set("splitv",v()).set("th-list",j()),c.T.prototype.popup={a:n.A,img:a.A,cells:r.A,toolbar:l.A,jodit:s.A,iframe:s.A,"jodit-media":s.A,selection:["bold","underline","italic","ul","ol","\n","outdent","indent","fontsize","brush","cut","\n","paragraph","link","align","dots"]};},97836:function(t,e,i){var o=i(26150);e.A=[{name:"eye",tooltip:"Open link",exec:(t,e)=>{const i=(0, o.C)(e,"href");e&&i&&t.ow.open(i);}},{name:"link",tooltip:"Edit link",icon:"pencil"},"unlink","brush","file"];},82558:function(t,e,i){var o=i(9823),n=i(38322);const r=t=>t.args&&(0, o.Kg)(t.args[0])?t.args[0].toLowerCase():"";e.A=["brushCell",{name:"valign",list:["Top","Middle","Bottom","Normal"],childTemplate:(t,e,i)=>i,exec:(t,e,{control:i})=>{const o=r(i);t.getInstance("Table",t.o).getAllSelectedCells().forEach((t=>{(0, n.A)(t,"vertical-align","normal"===o?"":o);}));},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:(t,e,{control:i})=>{if(!(0, o.y0)(t))return;const n=r(i);t.execCommand(n,!1,e);},tooltip:"Add column"},{name:"addrow",list:{tableaddrowbefore:"Insert row above",tableaddrowafter:"Insert row below"},exec:(t,e,{control:i})=>{if(!(0, o.y0)(t))return;const n=r(i);t.execCommand(n,!1,e);},tooltip:"Add row"},{name:"delete",icon:"bin",list:{tablebin:"Delete table",tablebinrow:"Delete row",tablebincolumn:"Delete column",tableempty:"Empty cell"},exec:(t,e,{control:i})=>{if(!(0, o.y0)(t))return;const n=r(i);t.execCommand(n,!1,e),t.e.fire("hidePopup");},tooltip:"Delete"}];},6295:function(t,e,i){var o=i(26396);e.A=[{name:"bin",tooltip:"Delete",exec:(t,e)=>{e&&t.s.removeNode(e);}},o.M];},26396:function(t,e,i){i.d(e,{M:function(){return a}});var o=i(71842),n=i(98253),r=i(40080),s=i(38322);const a={name:"left",childTemplate:(t,e,i)=>i,list:["Left","Right","Center","Normal"],exec:(t,e,{control:i})=>{if(!o.J.isTag(e,new Set(["img","jodit","jodit-media"])))return;const s=i.args&&(0, n.K)(i.args[0])?i.args[0].toLowerCase():"";if(!s)return !1;(0, r.Mr)(e,s),o.J.isTag(e,new Set(["jodit","jodit-media"]))&&e.firstElementChild&&(0, r.Mr)(e.firstElementChild,s),t.synchronizeValues(),t.e.fire("recalcPositionPopup");},tooltip:"Horizontal align"};e.A=[{name:"delete",icon:"bin",tooltip:"Delete",exec:(t,e)=>{e&&t.s.removeNode(e);}},{name:"pencil",exec(t,e){"img"===e.tagName.toLowerCase()&&t.e.fire("openImageProperties",e);},tooltip:"Edit"},{name:"valign",list:["Top","Middle","Bottom","Normal"],tooltip:"Vertical align",exec:(t,e,{control:i})=>{if(!o.J.isTag(e,"img"))return;const r=i.args&&(0, n.K)(i.args[0])?i.args[0].toLowerCase():"";if(!r)return !1;(0, s.A)(e,"vertical-align","normal"===r?"":r),t.e.fire("recalcPositionPopup");}},a];},58540:function(t,e){e.A=["bold","italic","|","ul","ol","eraser","|","fontsize","brush","paragraph","---","image","table","\n","link","|","align","|","undo","redo","|","copyformat","fullsize","---","dots"];},3459:function(t,e,i){var o=i(31635),n=i(22664),r=i(71842),s=i(56298),a=i(65147),l=i(71005),c=i(53048),d=i(96369),u=i(8809);i(15776);class h extends l.k{constructor(){super(...arguments),this.type=null,this.snapRange=null,this.elmsList=(0, a.keys)(this.j.o.popup,!1).filter((t=>!this.isExcludedTarget(t)));}get popup(){return new d.z(this.jodit,!1)}get toolbar(){return (0, u.$K)(this.jodit,this.popup)}onClick(t){const e=this.elmsList,i=r.J.isTag(t,"img")?t:r.J.closest(t,e,this.j.editor);if(i&&this.canShowPopupForType(i.nodeName.toLowerCase()))return this.showPopup((()=>(0, a.position)(i,this.j)),i.nodeName.toLowerCase(),i),!1}showPopup(t,e,i){if(e=e.toLowerCase(),!this.canShowPopupForType(e))return !1;if(this.type!==e||i!==this.previousTarget){this.previousTarget=i;const t=this.j.o.popup[e];let o;o=(0, a.isFunction)(t)?t(this.j,i,this.popup.close):t,(0, a.isArray)(o)&&(this.toolbar.build(o,i),this.toolbar.buttonSize=this.j.o.toolbarButtonSize,o=this.toolbar.container),this.popup.setContent(o),this.type=e;}return this.popup.open(t),!0}hidePopup(t){!this.popup.isOpened||(0, a.isString)(t)&&t!==this.type||this.popup.close();}onOutsideClick(){this.popup.close();}canShowPopupForType(t){const e=this.j.o.popup[t.toLowerCase()];return !(this.j.o.readonly||!this.j.o.toolbarInline||!e||this.isExcludedTarget(t))}isExcludedTarget(t){return (0, a.splitArray)(this.j.o.toolbarInlineDisableFor).map((t=>t.toLowerCase())).includes(t.toLowerCase())}afterInit(t){this.j.e.on("getDiffButtons.mobile",(e=>{if(this.toolbar===e){const e=this.toolbar.getButtonsNames();return (0, a.toArray)(t.registeredButtons).filter((t=>!this.j.o.toolbarInlineDisabledButtons.includes(t.name))).filter((t=>{const i=(0, a.isString)(t)?t:t.name;return i&&"|"!==i&&"\n"!==i&&!e.includes(i)}))}})).on("hidePopup",this.hidePopup).on("showInlineToolbar",this.showInlineToolbar).on("showPopup",((t,e,i)=>{this.showPopup(e,i||((0, a.isString)(t)?t:t.nodeName),(0, a.isString)(t)?void 0:t);})).on("mousedown keydown",this.onSelectionStart).on("change",(()=>{this.popup.isOpened&&this.previousTarget&&!this.previousTarget.parentNode&&(this.hidePopup(),this.previousTarget=void 0);})).on([this.j.ew,this.j.ow],"mouseup keyup",this.onSelectionEnd),this.addListenersForElements();}onSelectionStart(){this.snapRange=this.j.s.range.cloneRange();}onSelectionEnd(t){if(t&&t.target&&c.D$.closestElement(t.target,d.z))return;const{snapRange:e}=this,{range:i}=this.j.s;e&&!i.collapsed&&i.startContainer===e.startContainer&&i.startOffset===e.startOffset&&i.endContainer===e.endContainer&&i.endOffset===e.endOffset||this.onSelectionChange();}onSelectionChange(){if(!this.j.o.toolbarInlineForSelection)return;const t="selection",e=this.j.s.sel,i=this.j.s.range;(null==e?void 0:e.isCollapsed)||this.isSelectedTarget(i)||this.tableModule.getAllSelectedCells().length?this.type===t&&this.popup.isOpened&&this.hidePopup():this.j.s.current()&&this.showPopup((()=>i.getBoundingClientRect()),t);}isSelectedTarget(t){const e=t.startContainer;return r.J.isElement(e)&&e===t.endContainer&&r.J.isTag(e.childNodes[t.startOffset],new Set((0, a.keys)(this.j.o.popup,!1)))&&t.startOffset===t.endOffset-1}get tableModule(){return this.j.getInstance("Table",this.j.o)}beforeDestruct(t){t.e.off("showPopup").off([this.j.ew,this.j.ow],"mouseup keyup",this.onSelectionEnd),this.removeListenersForElements();}_eventsList(){const t=this.elmsList;return t.map((t=>(0, a.camelCase)(`click_${t}`))).concat(t.map((t=>(0, a.camelCase)(`touchstart_${t}`)))).join(" ")}addListenersForElements(){this.j.e.on(this._eventsList(),this.onClick);}removeListenersForElements(){this.j.e.off(this._eventsList(),this.onClick);}showInlineToolbar(t){this.showPopup((()=>{if(t)return t;const{range:e}=this.j.s;return e.getBoundingClientRect()}),"toolbar");}}h.requires=["select"],(0, o.Cg)([n.cache],h.prototype,"popup",null),(0, o.Cg)([n.cache],h.prototype,"toolbar",null),(0, o.Cg)([n.autobind],h.prototype,"onClick",null),(0, o.Cg)([(0, n.wait)((t=>!t.j.isLocked))],h.prototype,"showPopup",null),(0, o.Cg)([(0, n.watch)([":clickEditor",":beforeCommandDelete",":backSpaceAfterDelete"]),n.autobind],h.prototype,"hidePopup",null),(0, o.Cg)([(0, n.watch)(":outsideClick")],h.prototype,"onOutsideClick",null),(0, o.Cg)([n.autobind],h.prototype,"onSelectionStart",null),(0, o.Cg)([n.autobind],h.prototype,"onSelectionEnd",null),(0, o.Cg)([(0, n.debounce)((t=>t.defaultTimeout))],h.prototype,"onSelectionChange",null),(0, o.Cg)([n.autobind],h.prototype,"showInlineToolbar",null),s.fg.add("inlinePopup",h);},99573:function(t,e,i){var o=i(55186),n=i(56298),r=i(40080),s=i(38322),a=i(931),l=i(80515),c=i.n(l),d=i(36115);a.I.set("justify",c()),d.T.prototype.controls.align={name:"left",tooltip:"Align",update(t,e){const i=e.control,n=t.s.current();if(n){const r=o.J.closest(n,o.J.isBlock,t.editor)||t.editor;let a=(0, s.A)(r,"text-align").toString();i.defaultValue&&-1!==i.defaultValue.indexOf(a)&&(a="left"),i.data&&i.data.currentValue!==a&&i.list&&i.list[a]&&(t.o.textIcons||"select"===i.component?e.state.text=a:e.state.icon.name=a,i.data.currentValue=a);}},isActive:(t,e)=>{const i=t.s.current();if(!i||!e.control.defaultValue)return !1;const n=o.J.closest(i,o.J.isBlock,t.editor)||t.editor;return -1===e.control.defaultValue.indexOf((0, s.A)(n,"text-align").toString())},defaultValue:["left","start","inherit"],data:{currentValue:"left"},list:["center","left","right","justify"]},d.T.prototype.controls.center={command:"justifyCenter",css:{"text-align":"center"},tooltip:"Align Center"},d.T.prototype.controls.justify={command:"justifyFull",css:{"text-align":"justify"},tooltip:"Align Justify"},d.T.prototype.controls.left={command:"justifyLeft",css:{"text-align":"left"},tooltip:"Align Left"},d.T.prototype.controls.right={command:"justifyRight",css:{"text-align":"right"},tooltip:"Align Right"},n.fg.add("justify",(function(t){t.registerButton({name:"align",group:"indent"});const e=e=>(t.s.focus(),t.s.eachSelection((i=>{if(!i)return;let n=o.J.up(i,o.J.isBlock,t.editor);n||(n=o.J.wrapInline(i,t.o.enterBlock,t)),(0, r.Op)(e,n);})),!1);t.registerCommand("justifyfull",e),t.registerCommand("justifyright",e),t.registerCommand("justifyleft",e),t.registerCommand("justifycenter",e);}));},92225:function(t,e,i){var o=i(31635),n=i(17352),r=i(22664),s=i(55186),a=i(56298),l=i(71005);class c extends l.k{afterInit(t){}beforeDestruct(t){}onKeyDownArrow(t){var e;if(t.key!==n.KEY_RIGHT||!this.j.selection.isCollapsed())return;const{endContainer:i,endOffset:o}=this.j.selection.range;if(s.J.isText(i)&&(null===(e=i.nodeValue)||void 0===e?void 0:e.length)===o){const{parentNode:t}=i;s.J.isInlineBlock(t)&&!s.J.findNotEmptyNeighbor(t,!1,this.j.editor)&&s.J.after(t,this.j.createInside.text(n.NBSP_SPACE));}}}(0, o.Cg)([(0, r.watch)(":keydown")],c.prototype,"onKeyDownArrow",null),a.fg.add("keyArrowOutside",c);},87238:function(t,e,i){var o=i(36115);o.T.prototype.limitWords=!1,o.T.prototype.limitChars=!1,o.T.prototype.limitHTML=!1;},9117:function(t,e,i){var o=i(31635),n=i(17352),r=i(22664),s=i(56298),a=i(71005);i(87238);class l extends a.k{afterInit(t){const{limitWords:e,limitChars:i}=t.o;if(t&&(e||i)){let e=null;t.e.off(".limit").on("beforePaste.limit",(()=>{e=t.history.snapshot.make();})).on("keydown.limit keyup.limit beforeEnter.limit",this.checkPreventKeyPressOrPaste).on("change.limit",this.checkPreventChanging).on("afterPaste.limit",(()=>{if(this.__shouldDenyInput(!0)&&e)return t.history.snapshot.restore(e),t.e.fire("denyPaste.limit"),!1}));}}shouldPreventInsertHTML(t){return (!t||!(n.COMMAND_KEYS.includes(t.key)||t.ctrlKey||t.metaKey))&&this.__shouldDenyInput(!1)}__shouldDenyInput(t){const{jodit:e}=this,{limitWords:i,limitChars:o}=e.o,n=this.__splitWords(e.o.limitHTML?e.value:e.text);if(i&&c(n.length,i,t))return e.e.fire("denyWords.limit limit.limit"),!0;const r=Boolean(o&&c(n.join("").length,o,t));return r&&e.e.fire("denyChars.limit limit.limit"),r}checkPreventKeyPressOrPaste(t){if(this.shouldPreventInsertHTML(t))return !1}checkPreventChanging(t,e){const{jodit:i}=this;this.__shouldDenyInput(!0)&&(i.value=e);}__splitWords(t){return t.replace((0, n.INVISIBLE_SPACE_REG_EXP)(),"").split((0, n.SPACE_REG_EXP)()).filter((t=>t.length))}beforeDestruct(t){t.e.off(".limit");}}function c(t,e,i){return i?t>e:t>=e}(0, o.Cg)([r.autobind],l.prototype,"checkPreventKeyPressOrPaste",null),(0, o.Cg)([r.autobind],l.prototype,"checkPreventChanging",null),s.fg.add("limit",l);},26725:function(t,e,i){var o=i(65147),n=i(931),r=i(223),s=i.n(r),a=i(36115);a.T.prototype.defaultLineHeight=null,n.I.set("line-height",s()),a.T.prototype.controls.lineHeight={command:"applyLineHeight",tags:["ol"],tooltip:"Line height",list:[1,1.1,1.2,1.3,1.4,1.5,2],exec:(t,e,{control:i})=>(0, o.memorizeExec)(t,e,{control:i},(t=>t))};},14100:function(t){t.exports={"Line height":"ارتفاع الخط"};},10229:function(t){t.exports={"Line height":"Výška čáry"};},10572:function(t){t.exports={"Line height":"Zeilenhöhe"};},27671:function(t){t.exports={"Line height":"Altura de la línea"};},30382:function(t){t.exports={"Line height":"ارتفاع خط"};},14950:function(t){t.exports={"Line height":"Rivin korkeus"};},85051:function(t){t.exports={"Line height":"Hauteur de ligne"};},2928:function(t){t.exports={"Line height":"גובה שורה"};},29920:function(t){t.exports={"Line height":"Vonal magassága"};},65226:function(t){t.exports={"Line height":"Tinggi baris"};},39053:function(t,e,i){i.r(e),i.d(e,{ar:function(){return o},cs_cz:function(){return n},de:function(){return r},es:function(){return s},fa:function(){return a},fi:function(){return l},fr:function(){return c},he:function(){return d},hu:function(){return u},id:function(){return h},it:function(){return p},ja:function(){return f},ko:function(){return g},mn:function(){return m},nl:function(){return b},pl:function(){return _},pt_br:function(){return v},ru:function(){return x},tr:function(){return w},zh_cn:function(){return y},zh_tw:function(){return j}});var o=i(14100),n=i(10229),r=i(10572),s=i(27671),a=i(30382),l=i(14950),c=i(85051),d=i(2928),u=i(29920),h=i(65226),p=i(51162),f=i(4410),g=i(84777),m=i(25884),b=i(46433),_=i(42055),v=i(70846),x=i(15966),w=i(41145),y=i(76877),j=i(83289);},51162:function(t){t.exports={"Line height":"Altezza linea"};},4410:function(t){t.exports={"Line height":"ラインの高さ"};},84777:function(t){t.exports={"Line height":"선 높이"};},25884:function(t){t.exports={"Line height":"Зураасны өндөр"};},46433:function(t){t.exports={"Line height":"Lijnhoogte"};},42055:function(t){t.exports={"Line height":"Wysokość linii"};},70846:function(t){t.exports={"Line height":"Altura da linha"};},15966:function(t){t.exports={"Line height":"Высота линии"};},41145:function(t){t.exports={"Line height":"Çizgi yüksekliği"};},76877:function(t){t.exports={"Line height":"线高"};},83289:function(t){t.exports={"Line height":"行高"};},83105:function(t,e,i){var o=i(31635),n=i(22664),r=i(55186),s=i(56298),a=i(65147),l=i(71005),c=(i(26725),i(39053));class d extends l.k{constructor(t){super(t),this.buttons=[{name:"lineHeight",group:"font"}],(0, s.JW)(c);}afterInit(t){(0, a.css)(t.editor,{lineHeight:t.o.defaultLineHeight}),t.registerCommand("applyLineHeight",this.applyLineHeight);}applyLineHeight(t,e,i){const{s:o,createInside:n,editor:s,o:l}=this.j;let c;o.isFocused()||o.focus(),o.save();const d=t=>{let e=r.J.closest(t,r.J.isBlock,s);e||(e=r.J.wrap(t,l.enter,n));const o=(0, a.css)(e,"lineHeight");void 0===c&&(c=o.toString()!==i.toString()),(0, a.css)(e,"lineHeight",c?i:null);};try{if(o.isCollapsed()){const t=n.fake();o.insertNode(t,!1,!1),d(t),r.J.safeRemove(t);}else o.eachSelection(d);}finally{o.restore();}}beforeDestruct(t){(0, a.css)(t.editor,{lineHeight:null});}}(0, o.Cg)([n.autobind],d.prototype,"applyLineHeight",null),s.fg.add("lineHeight",d);},64953:function(t,e,i){var o=i(55186),n=i(931),r=i(95032),s=i.n(r),a=i(73533),l=i.n(a),c=i(21329),d=i(36115);d.T.prototype.link={formTemplate:c.B,followOnDblClick:!1,processVideoLink:!0,processPastedLink:!0,noFollowCheckbox:!0,openInNewTabCheckbox:!0,modeClassName:"input",selectMultipleClassName:!0,selectSizeClassName:3,selectOptionsClassName:[],hotkeys:["ctrl+k","cmd+k"]},n.I.set("link",s()).set("unlink",l()),d.T.prototype.controls.unlink={exec:(t,e)=>{const i=o.J.closest(e,"a",t.editor);i&&o.J.unwrap(i),t.synchronizeValues(),t.e.fire("hidePopup");},tooltip:"Unlink"},d.T.prototype.controls.link={isActive:t=>{const e=t.s.current();return Boolean(e&&o.J.closest(e,"a",t.editor))},popup:(t,e,i)=>t.e.fire("generateLinkForm.link",e,i),tags:["a"],tooltip:"Insert link"};},47791:function(t,e,i){var o=i(31635),n=i(22664),r=i(71842),s=i(56298),a=i(65147),l=i(71005);i(64953);class c extends l.k{constructor(){super(...arguments),this.buttons=[{name:"link",group:"insert"}];}afterInit(t){t.o.link.followOnDblClick&&t.e.on("dblclick.link",this.onDblClickOnLink),t.o.link.processPastedLink&&t.e.on("processPaste.link",this.onProcessPasteLink),t.e.on("generateLinkForm.link",this.__generateForm),t.registerCommand("openLinkDialog",{exec:()=>{const e=t.dlg({resizable:!1}),i=this.__generateForm(t.s.current(),(()=>{e.close();}));i.container.classList.add("jodit-dialog_alert"),e.setContent(i),e.open(),t.async.requestIdleCallback((()=>{const{url_input:t}=(0, a.refs)(i.container);null==t||t.focus();}));},hotkeys:t.o.link.hotkeys});}onDblClickOnLink(t){if(!r.J.isTag(t.target,"a"))return;const e=(0, a.attr)(t.target,"href");e&&(location.href=e,t.preventDefault());}onProcessPasteLink(t,e){const{jodit:i}=this;if((0, a.isURL)(e)&&i.o.link.processPastedLink){if(i.e.stopPropagation("processPaste"),i.o.link.processVideoLink){const t=(0, a.convertMediaUrlToVideoEmbed)(e);if(t!==e)return i.createInside.fromHTML(t)}if(i.s.isCollapsed()){const t=i.createInside.element("a");return t.setAttribute("href",e),t.textContent=e,i.e.fire("applyLink",i,t,null),t}return i.s.commitStyle({element:"a",attributes:{href:e}}),!0}}__generateForm(t,e){const{jodit:i}=this,o=i.i18n.bind(i),{openInNewTabCheckbox:n,noFollowCheckbox:s,formTemplate:l,formClassName:c,modeClassName:d}=i.o.link,u=l(i),h=(0, a.isString)(u)?i.c.fromHTML(u,{target_checkbox_box:n,nofollow_checkbox_box:s}):u,p=r.J.isElement(h)?h:h.container,f=(0, a.refs)(p),{insert:g,unlink:m,content_input_box:b}=f,{target_checkbox:_,nofollow_checkbox:v,url_input:x}=f,w=r.J.isImage(t);let{content_input:y}=f;const{className_input:j}=f,{className_select:k}=f;let C;y||(y=i.c.element("input",{type:"hidden",ref:"content_input"})),c&&p.classList.add(c),w&&r.J.hide(b);const S=()=>C?C.innerText:(0, a.stripTags)(i.s.range.cloneContents(),i.ed);if(C=!(!t||!r.J.closest(t,"a",i.editor))&&r.J.closest(t,"a",i.editor),!w&&t&&(y.value=S()),C){if(x.value=(0, a.attr)(C,"href")||"",d)switch(d){case"input":j&&(j.value=(0, a.attr)(C,"class")||"");break;case"select":if(k){for(let t=0;k.selectedOptions.length>t;t++){const e=k.options.item(t);e&&(e.selected=!1);}((0, a.attr)(C,"class")||"").split(" ").forEach((t=>{if(t)for(let e=0;k.options.length>e;e++){const i=k.options.item(e);(null==i?void 0:i.value)&&i.value===t&&(i.selected=!0);}}));}}n&&_&&(_.checked="_blank"===(0, a.attr)(C,"target")),s&&v&&(v.checked="nofollow"===(0, a.attr)(C,"rel")),g.textContent=o("Update");}else r.J.hide(m);i.editor.normalize();const z=i.history.snapshot.make();m&&i.e.on(m,"click",(t=>{i.s.restore(),i.history.snapshot.restore(z),C&&r.J.unwrap(C),i.synchronizeValues(),e(),t.preventDefault();}));const T=()=>{if(!x.value.trim().length)return x.focus(),x.classList.add("jodit_error"),!1;let t;i.s.restore(),i.s.removeMarkers(),i.editor.normalize(),i.history.snapshot.restore(z);const o=S()!==y.value.trim(),l=i.createInside;if(C)t=[C];else {if(i.s.isCollapsed()){const e=l.element("a");i.s.insertNode(e,!1,!1),t=[e];}else {const e=i.s.current();t=r.J.isTag(e,"img")?[r.J.wrap(e,"a",l)]:i.s.wrapInTag("a");}t.forEach((t=>i.s.select(t)));}return t.forEach((t=>{var e;if((0, a.attr)(t,"href",x.value),d&&(null!=j?j:k))if("input"===d)""===j.value&&t.hasAttribute("class")&&(0, a.attr)(t,"class",null),""!==j.value&&(0, a.attr)(t,"class",j.value);else if("select"===d){t.hasAttribute("class")&&(0, a.attr)(t,"class",null);for(let i=0;k.selectedOptions.length>i;i++){const o=null===(e=k.selectedOptions.item(i))||void 0===e?void 0:e.value;o&&t.classList.add(o);}}if(!w){let e=t.textContent;y.value.trim().length?o&&(e=y.value):e=x.value,e!==t.textContent&&(t.textContent=e);}n&&_&&(0, a.attr)(t,"target",_.checked?"_blank":null),s&&v&&(0, a.attr)(t,"rel",v.checked?"nofollow":null),i.e.fire("applyLink",i,t,h);})),i.synchronizeValues(),e(),!1};return r.J.isElement(h)?i.e.on(h,"submit",(t=>(t.preventDefault(),t.stopImmediatePropagation(),T(),!1))):h.onSubmit(T),h}beforeDestruct(t){t.e.off("generateLinkForm.link",this.__generateForm).off("dblclick.link",this.onDblClickOnLink).off("processPaste.link",this.onProcessPasteLink);}}(0, o.Cg)([n.autobind],c.prototype,"onDblClickOnLink",null),(0, o.Cg)([n.autobind],c.prototype,"onProcessPasteLink",null),(0, o.Cg)([n.autobind],c.prototype,"__generateForm",null),s.fg.add("link",c);},21329:function(t,e,i){i.d(e,{B:function(){return r}});var o=i(35265),n=i(20703);const r=t=>{const{openInNewTabCheckbox:e,noFollowCheckbox:i,modeClassName:r,selectSizeClassName:s,selectMultipleClassName:a,selectOptionsClassName:l}=t.o.link;return new n.XV(t,[new n.Yh(t,[new n.tS(t,{name:"url",type:"text",ref:"url_input",label:"URL",placeholder:"http://",required:!0})]),new n.Yh(t,[new n.tS(t,{name:"content",ref:"content_input",label:"Text"})],{ref:"content_input_box"}),r?new n.Yh(t,["input"===r?new n.tS(t,{name:"className",ref:"className_input",label:"Class name"}):"select"===r?new n.$6(t,{name:"className",ref:"className_select",label:"Class name",size:s,multiple:a,options:l}):null]):null,e?new n.cY(t,{name:"target",ref:"target_checkbox",label:"Open in new tab"}):null,i?new n.cY(t,{name:"nofollow",ref:"nofollow_checkbox",label:"No follow"}):null,new n.Yh(t,[new o.lD(t,{name:"unlink",variant:"default",text:"Unlink"}),new o.lD(t,{name:"insert",type:"submit",variant:"primary",text:"Insert"})],{align:"full"})])};},24103:function(t,e,i){var o=i(36115);o.T.prototype.mediaFakeTag="jodit-media",o.T.prototype.mediaInFakeBlock=!0,o.T.prototype.mediaBlocks=["video","audio"];},26421:function(t,e,i){var o=i(17352),n=i(56298),r=i(97369);i(24103),n.fg.add("media",(function(t){const e="jodit_fake_wrapper",{mediaFakeTag:i,mediaBlocks:n,mediaInFakeBlock:s}=t.options;s&&t.e.on("afterGetValueFromEditor",(t=>{const o=new RegExp(`<${i}[^>]+data-${e}[^>]+>([^]+?)</${i}>`,"ig");o.test(t.value)&&(t.value=t.value.replace(o,"$1"));})).on("change afterInit afterSetMode changePlace",t.async.debounce((()=>{t.isDestructed||t.getMode()===o.MODE_SOURCE||(0, r.$$)(n.join(","),t.editor).forEach((o=>{(0, r.dataBind)(o,e)||((0, r.dataBind)(o,e,!0),(o=>{if(o.parentNode&&(0, r.attr)(o.parentNode,"data-jodit_iframe_wrapper"))o=o.parentNode;else {const n=t.createInside.element(i,{"data-jodit-temp":1,contenteditable:!1,draggable:!0,[`data-${e}`]:1});(0, r.attr)(n,"style",(0, r.attr)(o,"style")),n.style.display="inline-block"===o.style.display?"inline-block":"block",n.style.width=o.offsetWidth+"px",n.style.height=o.offsetHeight+"px",o.parentNode&&o.parentNode.insertBefore(n,o),n.appendChild(o),o=n;}t.e.off(o,"mousedown.select touchstart.select").on(o,"mousedown.select touchstart.select",(()=>{t.s.setCursorAfter(o);}));})(o));}));}),t.defaultTimeout));}));},88011:function(t,e,i){var o=i(17352),n=i(65147),r=i(97394),s=i(8809),a=i(36115);a.T.prototype.mobileTapTimeout=300,a.T.prototype.toolbarAdaptive=!0,a.T.prototype.buttonsMD=[{group:"font-style",buttons:[]},{group:"list",buttons:[]},{group:"font",buttons:[]},"---",{group:"media",buttons:[]},"\n",{group:"state",buttons:[]},{group:"insert",buttons:[]},{group:"indent",buttons:[]},{group:"color",buttons:[]},"---",{group:"history",buttons:[]},{group:"other",buttons:[]},"|","dots"],a.T.prototype.buttonsSM=[{group:"font-style",buttons:[]},{group:"list",buttons:[]},"---",{group:"font",buttons:[]},"\n",{group:"state",buttons:[]},{group:"indent",buttons:[]},{group:"color",buttons:[]},"---",{group:"history",buttons:[]},"|","dots"],a.T.prototype.buttonsXS=[{group:"font-style",buttons:[]},{group:"list",buttons:[]},"---",{group:"font",buttons:[]},{group:"color",buttons:[]},"---","dots"],a.T.prototype.controls.dots={mode:o.MODE_SOURCE+o.MODE_WYSIWYG,popup:(t,e,i,o)=>{let a=o.control.data;return void 0===a&&(a={toolbar:(0, s.$K)(t),rebuild:()=>{var e,i;if(o){const s=t.e.fire("getDiffButtons.mobile",o.closest(r.Q));if(s&&a){a.toolbar.build((0, n.splitArray)(s));const o=(null===(i=null===(e=t.toolbar)||void 0===e?void 0:e.firstButton)||void 0===i?void 0:i.container.offsetWidth)||36;a.toolbar.container.style.width=3*(o+4)+"px";}}}},o.control.data=a),a.rebuild(),a.toolbar},tooltip:"Show all"};},76967:function(t,e,i){var o=i(56298),n=i(65147),r=i(39611);i(88011),o.fg.add("mobile",(function(t){let e=0,i=(0, n.splitArray)(t.o.buttons);t.o.mobileTapTimeout&&t.e.on("touchend",(i=>{if(i.changedTouches&&i.changedTouches.length){const o=(new Date).getTime(),n=o-e;n>t.o.mobileTapTimeout&&(e=o,1.5*t.o.mobileTapTimeout>n&&t.s.insertCursorAtPoint(i.clientX,i.clientY));}})),t.e.on("getDiffButtons.mobile",(e=>{if(e===t.toolbar){const e=(0, r.V)((0, n.splitArray)(t.o.buttons),t),o=(0, r.V)(i,t);return (0, n.toArray)(e).reduce(((t,e)=>(o.has(e)||t.push(e),t)),[])}})),t.o.toolbarAdaptive&&t.e.on("resize afterInit recalcAdaptive changePlace afterAddPlace",(()=>{var e,o;if(!t.o.toolbar)return;const r=(null!==(e=t.container.parentElement)&&void 0!==e?e:t.container).offsetWidth,s=(0, n.splitArray)(t.isFullSize||r>=t.o.sizeLG?t.o.buttons:t.o.sizeMD>r?t.o.sizeSM>r?t.o.buttonsXS:t.o.buttonsSM:t.o.buttonsMD);s.toString()!==i.toString()&&(i=s,t.e.fire("closeAllPopups"),null===(o=t.toolbar)||void 0===o||o.setRemoveButtons(t.o.removeButtons).build(i.concat(t.o.extraButtons)));})).on(t.ow,"load resize",(()=>t.e.fire("recalcAdaptive")));}));},20797:function(t,e,i){var o=i(72197),n=i(931),r=i(40037),s=i.n(r),a=i(83207),l=i.n(a),c=i(36115);const d=(t,e,{control:i})=>{var n;const r=`button${i.command}`,s=null!==(n=i.args&&i.args[0])&&void 0!==n?n:(0, o.m)(t,r);(0, o.m)(t,r,s),t.execCommand(i.command,!1,"default"===s?null:s);};n.I.set("ol",s()).set("ul",l()),c.T.prototype.controls.ul={command:"insertUnorderedList",tags:["ul"],tooltip:"Insert Unordered List",list:{default:"Default",circle:"Circle",disc:"Dot",square:"Quadrate"},exec:d},c.T.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:d};},1239:function(t,e,i){var o=i(31635),n=i(22664),r=i(56298),s=i(71005);i(20797);class a extends s.k{constructor(){super(...arguments),this.buttons=[{name:"ul",group:"list"},{name:"ol",group:"list"}];}afterInit(t){t.registerCommand("insertUnorderedList",this.onCommand).registerCommand("insertOrderedList",this.onCommand);}onCommand(t,e,i){return this.jodit.s.commitStyle({element:"insertunorderedlist"===t?"ul":"ol",attributes:{style:{listStyleType:null!=i?i:null}}}),this.jodit.synchronizeValues(),!1}beforeDestruct(t){}}(0, o.Cg)([n.autobind],a.prototype,"onCommand",null),r.fg.add("orderedList",a);},93324:function(t,e,i){var o=i(17352),n=i(36115);n.T.prototype.askBeforePasteFromWord=!0,n.T.prototype.processPasteFromWord=!0,n.T.prototype.defaultActionOnPasteFromWord=null,n.T.prototype.pasteFromWordActionList=[{value:o.INSERT_AS_HTML,text:"Keep"},{value:o.INSERT_AS_TEXT,text:"Clean"},{value:o.INSERT_ONLY_TEXT,text:"Insert only Text"}];},36969:function(t,e,i){var o=i(31635),n=i(17352),r=i(22664),s=i(56298),a=i(65147),l=i(71005),c=(i(93324),i(90823));class d extends l.k{afterInit(t){}beforeDestruct(t){}processWordHTML(t,e,i){const{j:o}=this,{processPasteFromWord:n,askBeforePasteFromWord:r,defaultActionOnPasteFromWord:s,defaultActionOnPaste:l,pasteFromWordActionList:d}=o.o;return !(!n||!(0, a.isHtmlFromWord)(e)||(r?(0, c.PU)(o,"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",(o=>{this.insertFromWordByType(t,e,o,i);}),d):this.insertFromWordByType(t,e,s||l,i),0))}insertFromWordByType(t,e,i,o){var r;switch(i){case n.INSERT_AS_HTML:{e=(0, a.applyStyles)(e);const t=null===(r=this.j.events)||void 0===r?void 0:r.fire("beautifyHTML",e);(0, a.isString)(t)&&(e=t);break}case n.INSERT_AS_TEXT:e=(0, a.cleanFromWord)(e);break;case n.INSERT_ONLY_TEXT:e=(0, a.stripTags)((0, a.cleanFromWord)(e));}(0, c.sX)(t,this.j,e);}}d.requires=["paste"],(0, o.Cg)([(0, r.watch)(":processHTML")],d.prototype,"processWordHTML",null),s.fg.add("pasteFromWord",d);},56701:function(t,e,i){var o=i(17352),n=i(55186),r=i(56298),s=i(65147),a=i(29866),l=i(92032);r.fg.add("pasteStorage",class extends a.k{constructor(){super(...arguments),this.currentIndex=0,this.list=[],this.container=null,this.listBox=null,this.previewBox=null,this.dialog=null,this.paste=()=>{if(this.j.s.focus(),this.j.s.insertHTML(this.list[this.currentIndex]),0!==this.currentIndex){const t=this.list[0];this.list[0]=this.list[this.currentIndex],this.list[this.currentIndex]=t;}this.dialog&&this.dialog.close(),this.j.synchronizeValues(),this.j.e.fire("afterPaste");},this.onKeyDown=t=>{let e=this.currentIndex;-1!==[o.KEY_UP,o.KEY_DOWN,o.KEY_ENTER].indexOf(t.key)&&(t.key===o.KEY_UP&&(0===e?e=this.list.length-1:e-=1),t.key===o.KEY_DOWN&&(e===this.list.length-1?e=0:e+=1),t.key!==o.KEY_ENTER?(e!==this.currentIndex&&this.selectIndex(e),t.stopImmediatePropagation(),t.preventDefault()):this.paste());},this.selectIndex=t=>{this.listBox&&(0, s.toArray)(this.listBox.childNodes).forEach(((e,i)=>{e.classList.remove("jodit_active"),t===i&&this.previewBox&&(e.classList.add("jodit_active"),this.previewBox.innerHTML=this.list[t],e.focus());})),this.currentIndex=t;},this.showDialog=()=>{2>this.list.length||(this.dialog||this.createDialog(),this.listBox&&(this.listBox.innerHTML=""),this.previewBox&&(this.previewBox.innerHTML=""),this.list.forEach(((t,e)=>{const i=this.j.c.element("a");i.textContent=e+1+". "+t.replace((0, o.SPACE_REG_EXP)(),""),this.j.e.on(i,"keydown",this.onKeyDown),(0, s.attr)(i,"href","#"),(0, s.attr)(i,"data-index",e.toString()),(0, s.attr)(i,"tab-index","-1"),this.listBox&&this.listBox.appendChild(i);})),this.dialog&&this.dialog.open(),this.j.async.setTimeout((()=>{this.selectIndex(0);}),100));};}createDialog(){this.dialog=this.j.dlg();const t=(0, l.$n)(this.j,"paste","Paste","primary");t.onAction(this.paste);const e=(0, l.$n)(this.j,"","Cancel");e.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,e]),this.j.e.on(this.listBox,"click dblclick",(t=>{const e=t.target;return n.J.isTag(e,"a")&&e.hasAttribute("data-index")&&this.selectIndex(parseInt((0, s.attr)(e,"-index")||"0",10)),"dblclick"===t.type&&this.paste(),!1}));}afterInit(){this.j.e.off("afterCopy.paste-storage").on("pasteStorageList.paste-storage",(()=>this.list.length)).on("afterCopy.paste-storage",(t=>{-1!==this.list.indexOf(t)&&this.list.splice(this.list.indexOf(t),1),this.list.unshift(t),this.list.length>5&&(this.list.length=5);})),this.j.registerCommand("showPasteStorage",{exec:this.showDialog,hotkeys:["ctrl+shift+v","cmd+shift+v"]});}beforeDestruct(){this.dialog&&this.dialog.destruct(),this.j.e.off(".paste-storage"),n.J.safeRemove(this.previewBox),n.J.safeRemove(this.listBox),n.J.safeRemove(this.container),this.container=null,this.listBox=null,this.previewBox=null,this.dialog=null,this.list=[];}});},70674:function(t,e,i){var o=i(17352),n=i(90823),r=i(36115);r.T.prototype.askBeforePasteHTML=!0,r.T.prototype.processPasteHTML=!0,r.T.prototype.scrollToPastedContent=!0,r.T.prototype.pasteExcludeStripTags=["br","hr"],r.T.prototype.pasteHTMLActionList=[{value:o.INSERT_AS_HTML,text:"Keep"},{value:o.INSERT_AS_TEXT,text:"Insert as Text"},{value:o.INSERT_ONLY_TEXT,text:"Insert only Text"}],r.T.prototype.memorizeChoiceWhenPasteFragment=!1,r.T.prototype.nl2brInPlainText=!0;const s="pasteStorage";r.T.prototype.controls.paste={tooltip:"Paste from clipboard",async exec(t,e,{control:i}){if(i.name===s)return void t.execCommand("showPasteStorage");t.s.focus();let r="",a=!0;if(navigator.clipboard){try{const t=await navigator.clipboard.read();if(t&&t.length){const e=await t[0].getType(o.TEXT_PLAIN);r=await new Response(e).text();}a=!1;}catch(t){}if(a)try{r=await navigator.clipboard.readText(),a=!1;}catch(t){}}a&&(r=t.buffer.get(o.CLIPBOARD_ID)||"",a=0===r.length);const l=t.value;a?(t.ed.execCommand("paste"),a=l===t.value,!a&&t.e.fire("afterPaste")):r.length?((0, n.sX)(null,t,r),t.e.fire("afterPaste")):a&&t.alert("Your browser doesn't support direct access to the clipboard.",(()=>{t.s.focus();}));},list:{[s]:"Paste Storage"},isChildDisabled:t=>2>t.e.fire("pasteStorageList")};},90823:function(t,e,i){i.d(e,{DI:function(){return l},PU:function(){return c},sX:function(){return a}});var o=i(17352),n=i(55186),r=i(9823),s=i(92032);function a(t,e,i){if(e.isInDestruct)return;(function(t){return Boolean(t&&"drop"===t.type)})(t)&&e.s.insertCursorAtPoint(t.clientX,t.clientY);const o=e.e.fire("beforePasteInsert",i);!(0, r.Rd)(o)&&((0, r.Kg)(o)||(0, r.Et)(o)||n.J.isNode(o))&&(i=o),(0, r.Kg)(i)&&(i=function(t){const e=(t=t.replace(/<meta[^>]+?>/g,"")).search(/<!--StartFragment-->/i);-1!==e&&(t=t.substring(e+20));const i=t.search(/<!--EndFragment-->/i);return -1!==i&&(t=t.substring(0,i)),t}(i)),e.s.insertHTML(i);}function l(t){const e=t.types;let i="";if((0, r.cy)(e)||"[object DOMStringList]"==={}.toString.call(e))for(let t=0;e.length>t;t+=1)i+=e[t]+";";else i=(e||o.TEXT_PLAIN).toString()+";";return i}function c(t,e,i,o,n){if(!1===t.e.fire("beforeOpenPasteDialog",e,i,o,n))return;const r=t.confirm(`<div style="word-break: normal; white-space: normal">${t.i18n(e)}</div>`,t.i18n(i)),a=n.map((({text:e,value:i})=>(0, s.$n)(t,{text:e,name:e.toLowerCase(),tabIndex:0}).onAction((()=>{r.close(),o(i);}))));r.e.one(r,"afterClose",(()=>{t.s.isFocused()||t.s.focus();}));const l=(0, s.$n)(t,{text:"Cancel",tabIndex:0}).onAction((()=>{r.close();}));return r.setFooter([...a,l]),a[0].focus(),a[0].state.variant="primary",t.e.fire("afterOpenPasteDialog",r,e,i,o,n),r}},13861:function(t,e,i){var o=i(31635),n=i(17352),r=i(22664),s=i(55186),a=i(56298),l=i(65147),c=i(29866),d=(i(70674),i(90823));class u extends c.k{constructor(){super(...arguments),this.pasteStack=new l.LimitedStack(20),this._isDialogOpened=!1;}afterInit(t){t.e.on("paste.paste",this.onPaste).on("pasteStack.paste",(t=>this.pasteStack.push(t))),t.o.nl2brInPlainText&&this.j.e.on("processPaste.paste",this.onProcessPasteReplaceNl2Br);}beforeDestruct(t){t.e.off("paste.paste",this.onPaste).off("processPaste.paste",this.onProcessPasteReplaceNl2Br).off(".paste");}onPaste(t){try{if(!1===this.customPasteProcess(t)||!1===this.j.e.fire("beforePaste",t))return t.preventDefault(),!1;this.defaultPasteProcess(t);}finally{this.j.e.fire("afterPaste",t);}}customPasteProcess(t){if(!this.j.o.processPasteHTML)return;const e=(0, l.getDataTransfer)(t),i=[null==e?void 0:e.getData(n.TEXT_PLAIN),null==e?void 0:e.getData(n.TEXT_HTML),null==e?void 0:e.getData(n.TEXT_RTF)];for(const e of i)if((0, l.isHTML)(e)&&(this.j.e.fire("processHTML",t,e,{plain:i[0],html:i[1],rtf:i[2]})||this.processHTML(t,e)))return !1}defaultPasteProcess(t){const e=(0, l.getDataTransfer)(t);let i=(null==e?void 0:e.getData(n.TEXT_HTML))||(null==e?void 0:e.getData(n.TEXT_PLAIN));if(e&&i&&""!==(0, l.trim)(i)){const o=this.j.e.fire("processPaste",t,i,(0, d.DI)(e));void 0!==o&&(i=o),((0, l.isString)(i)||s.J.isNode(i))&&this.__insertByType(t,i,this.j.o.defaultActionOnPaste),t.preventDefault(),t.stopPropagation();}}processHTML(t,e){if(!this.j.o.askBeforePasteHTML)return !1;if(this.j.o.memorizeChoiceWhenPasteFragment){const i=this.pasteStack.find((t=>t.html===e));if(i)return this.__insertByType(t,e,i.action||this.j.o.defaultActionOnPaste),!0}if(this._isDialogOpened)return !0;const i=(0, d.PU)(this.j,"Your code is similar to HTML. Keep as HTML?","Paste as HTML",(i=>{this._isDialogOpened=!1,this.__insertByType(t,e,i);}),this.j.o.pasteHTMLActionList);return i&&(this._isDialogOpened=!0,i.e.on("beforeClose",(()=>{this._isDialogOpened=!1;}))),!0}__insertByType(t,e,i){if(this.pasteStack.push({html:e,action:i}),(0, l.isString)(e))switch(this.j.buffer.set(n.CLIPBOARD_ID,e),i){case n.INSERT_CLEAR_HTML:e=(0, l.cleanFromWord)(e);break;case n.INSERT_ONLY_TEXT:e=(0, l.stripTags)(e,this.j.ed,new Set(this.j.o.pasteExcludeStripTags));break;case n.INSERT_AS_TEXT:e=(0, l.htmlspecialchars)(e);}(0, d.sX)(t,this.j,e);}onProcessPasteReplaceNl2Br(t,e,i){if(i===n.TEXT_PLAIN+";"&&!(0, l.isHTML)(e))return (0, l.nl2br)(e)}}(0, o.Cg)([r.autobind],u.prototype,"onPaste",null),(0, o.Cg)([r.autobind],u.prototype,"onProcessPasteReplaceNl2Br",null),a.fg.add("paste",u);},50248:function(t,e,i){var o=i(36115);o.T.prototype.showPlaceholder=!0,o.T.prototype.placeholder="Type something",o.T.prototype.useInputsPlaceholder=!0;},225:function(t,e,i){var o=i(31635),n=i(17352),r=i(22664),s=i(55186),a=i(56298),l=i(71274),c=i(26150),d=i(38322),u=i(29866);i(50248);class h extends u.k{constructor(){super(...arguments),this.addNativeListeners=()=>{this.j.e.off(this.j.editor,"input.placeholder keydown.placeholder").on(this.j.editor,"input.placeholder keydown.placeholder",this.toggle);},this.addEvents=()=>{const t=this.j;t.o.useInputsPlaceholder&&t.element.hasAttribute("placeholder")&&(this.placeholderElm.innerHTML=(0, c.C)(t.element,"placeholder")||""),t.e.fire("placeholder",this.placeholderElm.innerHTML),t.e.off(".placeholder").on("changePlace.placeholder",this.addNativeListeners).on("change.placeholder focus.placeholder keyup.placeholder mouseup.placeholder keydown.placeholder mousedown.placeholder afterSetMode.placeholder changePlace.placeholder",this.toggle).on(window,"load",this.toggle),this.addNativeListeners(),this.toggle();};}afterInit(t){t.o.showPlaceholder&&(this.placeholderElm=t.c.fromHTML(`<span data-ref="placeholder" style="display: none;" class="jodit-placeholder">${t.i18n(t.o.placeholder)}</span>`),"rtl"===t.o.direction&&(this.placeholderElm.style.right="0px",this.placeholderElm.style.direction="rtl"),t.e.on("readonly",(t=>{t?this.hide():this.toggle();})).on("changePlace",this.addEvents),this.addEvents());}show(){const t=this.j;if(t.o.readonly)return;let e=0,i=0;const o=t.s.current(),n=o&&s.J.closest(o,s.J.isBlock,t.editor)||t.editor,r=t.ew.getComputedStyle(n),a=t.ew.getComputedStyle(t.editor);t.workplace.appendChild(this.placeholderElm);const{firstChild:c}=t.editor;if(s.J.isElement(c)&&!(0, l.r)(c)){const o=t.ew.getComputedStyle(c);e=parseInt(o.getPropertyValue("margin-top"),10),i=parseInt(o.getPropertyValue("margin-left"),10),this.placeholderElm.style.fontSize=parseInt(o.getPropertyValue("font-size"),10)+"px",this.placeholderElm.style.lineHeight=o.getPropertyValue("line-height");}else this.placeholderElm.style.fontSize=parseInt(r.getPropertyValue("font-size"),10)+"px",this.placeholderElm.style.lineHeight=r.getPropertyValue("line-height");(0, d.A)(this.placeholderElm,{display:"block",textAlign:r.getPropertyValue("text-align"),paddingTop:parseInt(a.paddingTop,10)+"px",paddingLeft:parseInt(a.paddingLeft,10)+"px",paddingRight:parseInt(a.paddingRight,10)+"px",marginTop:Math.max(parseInt(r.getPropertyValue("margin-top"),10),e),marginLeft:Math.max(parseInt(r.getPropertyValue("margin-left"),10),i)});}hide(){s.J.safeRemove(this.placeholderElm);}toggle(){const t=this.j;t.editor&&!t.isInDestruct&&(t.getRealMode()===n.MODE_WYSIWYG&&function(t){var e;if(!t.firstChild)return !0;const i=t.firstChild;if(n.INSEPARABLE_TAGS.has(null===(e=i.nodeName)||void 0===e?void 0:e.toLowerCase())||/^(TABLE)$/i.test(i.nodeName))return !1;const o=s.J.next(i,(t=>t&&!s.J.isEmptyTextNode(t)),t);return s.J.isText(i)&&!o?s.J.isEmptyTextNode(i):!o&&s.J.each(i,(t=>!(s.J.isLeaf(t)||s.J.isList(t))&&(s.J.isEmpty(t)||s.J.isTag(t,"br"))))}(t.editor)?this.show():this.hide());}beforeDestruct(t){this.hide(),t.e.off(".placeholder").off(window,"load",this.toggle);}}(0, o.Cg)([(0, r.debounce)((t=>t.defaultTimeout/10),!0)],h.prototype,"toggle",null),a.fg.add("placeholder",h);},81089:function(t,e,i){i(56298).fg.add("poweredByJodit",(function(t){const{o:e}=t;e.hidePoweredByJodit||e.inline||!(e.showCharsCounter||e.showWordsCounter||e.showXPathInStatusbar)||t.hookStatus("ready",(()=>{t.statusbar.append(t.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);}));}));},44921:function(t,e,i){var o=i(17352),n=i(56298),r=i(98434);i(36115).T.prototype.controls.preview={icon:"eye",command:"preview",mode:o.MODE_SOURCE+o.MODE_WYSIWYG,tooltip:"Preview"},n.fg.add("preview",(function(t){t.registerButton({name:"preview"}),t.registerCommand("preview",((e,i,o)=>{const n=t.dlg();n.setSize(1024,600).open("",t.i18n("Preview")).setModal(!0);const[,s]=(0, r.u)(t,o,"px",n.getElm("content"));n.e.on(n,"afterClose",s);}));}));},11131:function(t,e,i){i.d(e,{Y:function(){return n}});var o=i(42448);function n(t){const e=(t,e=t.ownerDocument.styleSheets)=>(0, o.$)(e).map((t=>{try{return (0,o.$)(t.cssRules)}catch(t){}return []})).flat().filter((e=>{try{return Boolean(e&&t.matches(e.selectorText))}catch(t){}return !1}));class i{constructor(i,o,n){this.css={};const r=n||{},s=e=>{const i=e.selectorText.split(",").map((t=>t.trim())).sort().join(",");!1===Boolean(this.css[i])&&(this.css[i]={});const o=e.style.cssText.split(/;(?![A-Za-z0-9])/);for(let e=0;o.length>e;e++){if(!o[e])continue;const n=o[e].split(":");n[0]=n[0].trim(),n[1]=n[1].trim(),this.css[i][n[0]]=n[1].replace(/var\(([^)]+)\)/g,((e,i)=>{const[o,n]=i.split(",");return (t.ew.getComputedStyle(t.editor).getPropertyValue(o.trim())||n||e).trim()}));}};(()=>{const n=i.innerHeight,a=o.createTreeWalker(t.editor,NodeFilter.SHOW_ELEMENT,(()=>NodeFilter.FILTER_ACCEPT));for(;a.nextNode();){const t=a.currentNode;if(n>t.getBoundingClientRect().top||r.scanFullPage){const i=e(t);if(i)for(let t=0;i.length>t;t++)s(i[t]);}}})();}generateCSS(){let t="";for(const e in this.css)if(!/:not\(/.test(e)){t+=e+" { ";for(const i in this.css[e])t+=i+": "+this.css[e][i]+"; ";t+="}\n";}return t}}try{return new i(t.ew,t.ed,{scanFullPage:!0}).generateCSS()}catch(t){}return ""}},78757:function(t,e,i){var o=i(17352),n=i(71842),r=i(56298),s=i(17527),a=i(98434),l=i(931),c=i(11131),d=i(59827),u=i.n(d),h=i(36115);l.I.set("print",u()),h.T.prototype.controls.print={exec:t=>{const e=t.create.element("iframe");Object.assign(e.style,{position:"fixed",right:0,bottom:0,width:0,height:0,border:0}),(0, r.My)(t,h.T).appendChild(e);const i=()=>{t.e.off(t.ow,"mousemove",i),n.J.safeRemove(e);},o=e.contentWindow;if(o){t.e.on(o,"onbeforeunload onafterprint",i).on(t.ow,"mousemove",i),t.o.iframe?(t.e.fire("generateDocumentStructure.iframe",o.document,t),o.document.body.innerHTML=t.value):(o.document.write('<!doctype html><html lang="'+(0, s.e)(t.o.language)+'"><head><title></title></head><style>'+(0, c.Y)(t)+"</style><body></body></html>"),o.document.close(),(0, a.u)(t,void 0,"px",o.document.body));const e=o.document.createElement("style");e.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}",o.document.head.appendChild(e),o.focus(),o.print();}},mode:o.MODE_SOURCE+o.MODE_WYSIWYG,tooltip:"Print"},r.fg.add("print",(function(t){t.registerButton({name:"print"});}));},60189:function(t,e,i){var o=i(17352),n=i(56298),r=i(29866),s=i(931),a=i(34045),l=i.n(a),c=i(39199),d=i.n(c),u=i(36115);s.I.set("redo",l()).set("undo",d()),u.T.prototype.controls.redo={mode:o.MODE_SPLIT,isDisabled:t=>!t.history.canRedo(),tooltip:"Redo"},u.T.prototype.controls.undo={mode:o.MODE_SPLIT,isDisabled:t=>!t.history.canUndo(),tooltip:"Undo"},n.fg.add("redoUndo",class extends r.k{constructor(){super(...arguments),this.buttons=[{name:"undo",group:"history"},{name:"redo",group:"history"}];}beforeDestruct(){}afterInit(t){const e=e=>(t.history[e](),!1);t.registerCommand("redo",{exec:e,hotkeys:["ctrl+y","ctrl+shift+z","cmd+y","cmd+shift+z"]}),t.registerCommand("undo",{exec:e,hotkeys:["ctrl+z","cmd+z"]});}});},36001:function(t,e,i){i(36115).T.prototype.tableAllowCellResize=!0;},39147:function(t,e,i){var o=i(31635),n=i(17352),r=i(22664),s=i(55186),a=i(56298),l=i(65147),c=i(37435);i(36001);const d="table_processor_observer-resize";class u extends c.Plugin{constructor(){super(...arguments),this.selectMode=!1,this.resizeDelta=0,this.createResizeHandle=()=>{this.resizeHandler||(this.resizeHandler=this.j.c.div("jodit-table-resizer"),this.j.e.on(this.resizeHandler,"mousedown.table touchstart.table",this.onHandleMouseDown).on(this.resizeHandler,"mouseenter.table",(()=>{this.j.async.clearTimeout(this.hideTimeout);})));},this.hideTimeout=0,this.drag=!1,this.minX=0,this.maxX=0,this.startX=0;}get module(){return this.j.getInstance("Table",this.j.o)}get isRTL(){return "rtl"===this.j.o.direction}showResizeHandle(){this.j.async.clearTimeout(this.hideTimeout),this.j.workplace.appendChild(this.resizeHandler);}hideResizeHandle(){this.hideTimeout=this.j.async.setTimeout((()=>{s.J.safeRemove(this.resizeHandler);}),{timeout:this.j.defaultTimeout,label:"hideResizer"});}onHandleMouseDown(t){if(this.j.isLocked)return;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=t.clientX,this.j.lock(d),this.resizeHandler.classList.add("jodit-table-resizer_moved");let e,i=this.workTable.getBoundingClientRect();if(this.minX=0,this.maxX=1e6,null!=this.wholeTable)i=this.workTable.parentNode.getBoundingClientRect(),this.minX=i.left,this.maxX=this.minX+i.width;else {const t=this.module.formalCoordinate(this.workTable,this.workCell,!0);this.module.formalMatrix(this.workTable,((i,o,r)=>{t[1]===r&&(e=i.getBoundingClientRect(),this.minX=Math.max(e.left+n.NEARBY/2,this.minX)),t[1]+(this.isRTL?-1:1)===r&&(e=i.getBoundingClientRect(),this.maxX=Math.min(e.left+e.width-n.NEARBY/2,this.maxX));}));}return !1}onMouseMove(t){if(!this.drag)return;this.j.e.fire("closeAllPopups");let e=t.clientX;const i=(0, l.offset)(this.resizeHandler.parentNode||this.j.od.documentElement,this.j,this.j.od,!0);this.minX>e&&(e=this.minX),e>this.maxX&&(e=this.maxX),this.resizeDelta=e-this.startX+(this.j.o.iframe?i.left:0),this.resizeHandler.style.left=e-(this.j.o.iframe?0:i.left)+"px";const o=this.j.s.sel;o&&o.removeAllRanges();}onMouseUp(t){(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!==t.clientX&&(null==this.wholeTable?this.resizeColumns():this.resizeTable()),this.j.synchronizeValues(),this.j.s.focus());}resizeColumns(){const t=this.resizeDelta,e=[],i=this.module;i.setColumnWidthByDelta(this.workTable,i.formalCoordinate(this.workTable,this.workCell,!0)[1],t,!0,e);const o=(0, l.call)(this.isRTL?s.J.prev:s.J.next,this.workCell,s.J.isCell,this.workCell.parentNode);i.setColumnWidthByDelta(this.workTable,i.formalCoordinate(this.workTable,o)[1],-t,!1,e);}resizeTable(){const t=this.resizeDelta*(this.isRTL?-1:1),e=this.workTable.offsetWidth,i=(0, l.getContentWidth)(this.workTable.parentNode,this.j.ew),o=!this.wholeTable;if(this.isRTL?!o:o)this.workTable.style.width=(e+t)/i*100+"%";else {const o=this.isRTL?"marginRight":"marginLeft",n=parseInt(this.j.ew.getComputedStyle(this.workTable)[o]||"0",10);this.workTable.style.width=(e-t)/i*100+"%",this.workTable.style[o]=(n+t)/i*100+"%";}}setWorkCell(t,e=null){this.wholeTable=e,this.workCell=t,this.workTable=s.J.up(t,(t=>s.J.isTag(t,"table")),this.j.editor);}calcHandlePosition(t,e,i=0,o=0){const r=(0, l.offset)(e,this.j,this.j.ed);if(i>n.NEARBY&&r.width-n.NEARBY>i)return void this.hideResizeHandle();const a=(0, l.offset)(this.j.workplace,this.j,this.j.od,!0),c=(0, l.offset)(t,this.j,this.j.ed);if(this.resizeHandler.style.left=(i>n.NEARBY?r.left+r.width:r.left)-a.left+o+"px",Object.assign(this.resizeHandler.style,{height:c.height+"px",top:c.top-a.top+"px"}),this.showResizeHandle(),i>n.NEARBY){const t=(0, l.call)(this.isRTL?s.J.prev:s.J.next,e,s.J.isCell,e.parentNode);this.setWorkCell(e,!!t&&null);}else {const t=(0, l.call)(this.isRTL?s.J.next:s.J.prev,e,s.J.isCell,e.parentNode);this.setWorkCell(t||e,!t||null);}}afterInit(t){t.o.tableAllowCellResize&&t.e.off(this.j.ow,".resize-cells").off(".resize-cells").on("change.resize-cells afterCommand.resize-cells afterSetMode.resize-cells",(()=>{(0, l.$$)("table",t.editor).forEach(this.observe);})).on(this.j.ow,"scroll.resize-cells",(()=>{if(!this.drag)return;const e=s.J.up(this.workCell,(t=>s.J.isTag(t,"table")),t.editor);if(e){const t=e.getBoundingClientRect();this.resizeHandler.style.top=t.top+"px";}})).on("beforeSetMode.resize-cells",(()=>{const e=this.module;e.getAllSelectedCells().forEach((i=>{e.removeSelection(i),e.normalizeTable(s.J.closest(i,"table",t.editor));}));}));}observe(t){(0, l.dataBind)(t,d)||((0, l.dataBind)(t,d,!0),this.j.e.on(t,"mouseleave.resize-cells",(t=>{this.resizeHandler&&this.resizeHandler!==t.relatedTarget&&this.hideResizeHandle();})).on(t,"mousemove.resize-cells touchmove.resize-cells",this.j.async.throttle((e=>{if(this.j.isLocked)return;const i=s.J.up(e.target,s.J.isCell,t);i&&this.calcHandlePosition(t,i,e.offsetX);}),{timeout:this.j.defaultTimeout})),this.createResizeHandle());}beforeDestruct(t){t.events&&(t.e.off(this.j.ow,".resize-cells"),t.e.off(".resize-cells"));}}(0, o.Cg)([r.autobind],u.prototype,"onHandleMouseDown",null),(0, o.Cg)([r.autobind],u.prototype,"onMouseMove",null),(0, o.Cg)([r.autobind],u.prototype,"onMouseUp",null),(0, o.Cg)([r.autobind],u.prototype,"observe",null),a.fg.add("resizeCells",u);},57362:function(t,e,i){var o=i(36115);o.T.prototype.allowResizeX=!1,o.T.prototype.allowResizeY=!0;},76693:function(t,e,i){var o=i(31635),n=i(22664),r=i(71842),s=i(56298),a=i(71005),l=i(53048);i(57362);let c=class extends a.k{constructor(){super(...arguments),this.isResized=!1,this.start={x:0,y:0,w:0,h:0},this.handle=this.j.c.div("jodit-editor__resize",l.In.get("resize_handler"));}afterInit(t){const{height:e,width:i,allowResizeX:o}=t.o;let{allowResizeY:n}=t.o;"auto"===e&&"auto"!==i&&(n=!1),"auto"===e&&"auto"===i||!o&&!n||(t.statusbar.setMod("resize-handle",!0),t.e.on("toggleFullSize.resizeHandler",(()=>{this.handle.style.display=t.isFullSize?"none":"block";})).on(this.handle,"mousedown touchstart",this.onHandleResizeStart).on(t.ow,"mouseup touchend",this.onHandleResizeEnd),t.container.appendChild(this.handle));}onHandleResizeStart(t){this.isResized=!0,this.start.x=t.clientX,this.start.y=t.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),t.preventDefault();}onHandleResize(t){this.isResized&&(this.j.o.allowResizeY&&this.j.e.fire("setHeight",this.start.h+t.clientY-this.start.y),this.j.o.allowResizeX&&this.j.e.fire("setWidth",this.start.w+t.clientX-this.start.x),this.j.e.fire("resize"));}onHandleResizeEnd(){this.isResized&&(this.isResized=!1,this.j.e.off(this.j.ow,"mousemove touchmove",this.onHandleResize),this.j.unlock());}beforeDestruct(){r.J.safeRemove(this.handle),this.j.e.off(this.j.ow,"mouseup touchsend",this.onHandleResizeEnd);}};c.requires=["size"],c=(0, o.Cg)([n.autobind],c),s.fg.add("resizeHandler",c);},69505:function(t,e,i){var o=i(36115);o.T.prototype.allowResizeTags=new Set(["img","iframe","table","jodit"]),o.T.prototype.resizer={showSize:!0,hideSizeTimeout:1e3,forImageChangeAttributes:!0,min_width:10,min_height:10,useAspectRatio:new Set(["img"])};},6857:function(t,e,i){var o=i(31635),n=i(17352),r=i(22664),s=i(55186),a=i(56298),l=i(65147),c=i(29866);i(69505);const d="__jodit-resizer_binded";class u extends c.k{constructor(){super(...arguments),this.LOCK_KEY="resizer",this.element=null,this.isResizeMode=!1,this.isShown=!1,this.startX=0,this.startY=0,this.width=0,this.height=0,this.ratio=0,this.rect=this.j.c.fromHTML(`<div title="${this.j.i18n("Press Alt for custom resizing")}" 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>`),this.sizeViewer=this.rect.getElementsByTagName("span")[0],this.pointerX=0,this.pointerY=0,this.isAltMode=!1,this.onClickElement=t=>{this.isResizeMode||this.element===t&&this.isShown||(this.element=t,this.show(),s.J.isTag(this.element,"img")&&!this.element.complete&&this.j.e.one(this.element,"load",this.updateSize));},this.updateSize=()=>{if(!this.isInDestruct&&this.isShown&&this.element&&this.rect){const t=this.getWorkplacePosition(),e=(0, l.offset)(this.element,this.j,this.j.ed),i=parseInt(this.rect.style.left||"0",10),o=parseInt(this.rect.style.top||"0",10),n=e.top-t.top,r=e.left-t.left;o===n&&i===r&&this.rect.offsetWidth===this.element.offsetWidth&&this.rect.offsetHeight===this.element.offsetHeight||((0, l.css)(this.rect,{top:n,left:r,width:this.element.offsetWidth,height:this.element.offsetHeight}),this.j.events&&(this.j.e.fire(this.element,"changesize"),isNaN(i)||this.j.e.fire("resize")));}},this.hideSizeViewer=()=>{this.sizeViewer.style.opacity="0";};}afterInit(t){(0, l.$$)("div",this.rect).forEach((e=>{t.e.on(e,"mousedown.resizer touchstart.resizer",this.onStartResizing.bind(this,e));})),a.RR.on("hideHelpers",this.hide),t.e.on("readonly",(t=>{t&&this.hide();})).on("afterInit changePlace",this.addEventListeners.bind(this)).on("afterGetValueFromEditor.resizer",(t=>{const e=/<jodit[^>]+data-jodit_iframe_wrapper[^>]+>(.*?<iframe[^>]*>.*?<\/iframe>.*?)<\/jodit>/gi;e.test(t.value)&&(t.value=t.value.replace(e,"$1"));})),this.addEventListeners(),this.__onChangeEditor();}onEditorClick(t){let e=t.target;const{editor:i,options:{allowResizeTags:o}}=this.j;for(;e&&e!==i;){if(s.J.isTag(e,o))return this.__bind(e),void this.onClickElement(e);e=e.parentNode;}}addEventListeners(){const t=this.j;t.e.off(t.editor,".resizer").off(t.ow,".resizer").on(t.editor,"keydown.resizer",(t=>{this.isShown&&t.key===n.KEY_DELETE&&this.element&&!s.J.isTag(this.element,"table")&&this.onDelete(t);})).on(t.ow,"resize.resizer",this.updateSize).on("resize.resizer",this.updateSize).on([t.ow,t.editor],"scroll.resizer",(()=>{this.isShown&&!this.isResizeMode&&this.hide();})).on(t.ow,"keydown.resizer",this.onKeyDown).on(t.ow,"keyup.resizer",this.onKeyUp).on(t.ow,"mouseup.resizer touchend.resizer",this.onClickOutside);}onStartResizing(t,e){if(!this.element||!this.element.parentNode)return this.hide(),!1;this.handle=t,e.cancelable&&e.preventDefault(),e.stopImmediatePropagation(),this.width=this.element.offsetWidth,this.height=this.element.offsetHeight,this.ratio=this.width/this.height,this.isResizeMode=!0,this.startX=e.clientX,this.startY=e.clientY,this.pointerX=e.clientX,this.pointerY=e.clientY;const{j:i}=this;i.e.fire("hidePopup"),i.lock(this.LOCK_KEY),i.e.on(i.ow,"mousemove.resizer touchmove.resizer",this.onResize);}onEndResizing(){const{j:t}=this;t.unlock(),this.isResizeMode=!1,this.isAltMode=!1,t.synchronizeValues(),t.e.off(t.ow,"mousemove.resizer touchmove.resizer",this.onResize);}onResize(t){if(this.isResizeMode){if(!this.element)return;let e,i;if(this.pointerX=t.clientX,this.pointerY=t.clientY,this.j.options.iframe){const o=this.getWorkplacePosition();e=t.clientX+o.left-this.startX,i=t.clientY+o.top-this.startY;}else e=this.pointerX-this.startX,i=this.pointerY-this.startY;const o=this.handle.className;let n=0,r=0;const a=this.j.o.resizer.useAspectRatio;!this.isAltMode&&(!0===a||a&&s.J.isTag(this.element,a))?(e?(n=this.width+(o.match(/left/)?-1:1)*e,r=Math.round(n/this.ratio)):(r=this.height+(o.match(/top/)?-1:1)*i,n=Math.round(r*this.ratio)),n>(0, l.innerWidth)(this.j.editor,this.j.ow)&&(n=(0, l.innerWidth)(this.j.editor,this.j.ow),r=Math.round(n/this.ratio))):(n=this.width+(o.match(/left/)?-1:1)*e,r=this.height+(o.match(/top/)?-1:1)*i),n>this.j.o.resizer.min_width&&this.applySize(this.element,"width",this.rect.parentNode.offsetWidth>n?n:"100%"),r>this.j.o.resizer.min_height&&this.applySize(this.element,"height",r),this.updateSize(),this.showSizeViewer(this.element.offsetWidth,this.element.offsetHeight),t.stopImmediatePropagation();}}onKeyDown(t){this.isAltMode=t.key===n.KEY_ALT,!this.isAltMode&&this.isResizeMode&&this.onEndResizing();}onKeyUp(){this.isAltMode&&this.isResizeMode&&this.element&&(this.width=this.element.offsetWidth,this.height=this.element.offsetHeight,this.ratio=this.width/this.height,this.startX=this.pointerX,this.startY=this.pointerY),this.isAltMode=!1;}onClickOutside(t){if(this.isShown){if(!this.isResizeMode)return this.hide();t.stopImmediatePropagation(),this.onEndResizing();}}getWorkplacePosition(){return (0, l.offset)(this.rect.parentNode||this.j.od.documentElement,this.j,this.j.od,!0)}applySize(t,e,i){const o=s.J.isImage(t)&&this.j.o.resizer.forImageChangeAttributes;o&&(0, l.attr)(t,e,i),o&&!t.style[e]||(0, l.css)(t,e,i);}onDelete(t){this.element&&("JODIT"!==this.element.tagName?this.j.s.select(this.element):(s.J.safeRemove(this.element),this.hide(),t.preventDefault()));}__onChangeEditor(){this.isShown&&(this.element&&this.element.parentNode?this.updateSize():this.hide()),(0, l.$$)("iframe",this.j.editor).forEach(this.__bind);}__bind(t){if(!s.J.isHTMLElement(t)||!this.j.o.allowResizeTags.has(t.tagName.toLowerCase())||(0, l.dataBind)(t,d))return;let e;if((0, l.dataBind)(t,d,!0),s.J.isTag(t,"iframe")){const i=t;s.J.isHTMLElement(t.parentNode)&&(0, l.attr)(t.parentNode,"-jodit_iframe_wrapper")?t=t.parentNode:(e=this.j.createInside.element("jodit",{"data-jodit-temp":1,contenteditable:!1,draggable:!0,"data-jodit_iframe_wrapper":1}),(0, l.attr)(e,"style",(0, l.attr)(t,"style")),(0, l.css)(e,{display:"inline-block"===t.style.display?"inline-block":"block",width:t.offsetWidth,height:t.offsetHeight}),t.parentNode&&t.parentNode.insertBefore(e,t),e.appendChild(t),this.j.e.on(e,"click",(()=>{(0, l.attr)(e,"data-jodit-wrapper_active",!0);})),t=e),this.j.e.off(t,"mousedown.select touchstart.select").on(t,"mousedown.select touchstart.select",(()=>{this.j.s.select(t);})).off(t,"changesize").on(t,"changesize",(()=>{i.setAttribute("width",t.offsetWidth+"px"),i.setAttribute("height",t.offsetHeight+"px");}));}this.j.e.on(t,"dragstart",this.hide),!n.IS_ES_NEXT&&n.IS_IE&&this.j.e.on(t,"mousedown",(e=>{s.J.isTag(t,"img")&&e.preventDefault();}));}showSizeViewer(t,e){this.j.o.resizer.showSize&&(this.sizeViewer.offsetWidth>t||this.sizeViewer.offsetHeight>e?this.hideSizeViewer():(this.sizeViewer.style.opacity="1",this.sizeViewer.textContent=`${t} x ${e}`,this.j.async.setTimeout(this.hideSizeViewer,{timeout:this.j.o.resizer.hideSizeTimeout,label:"hideSizeViewer"})));}show(){this.j.o.readonly||this.isShown||(this.isShown=!0,this.rect.parentNode||((0, l.markOwner)(this.j,this.rect),this.j.workplace.appendChild(this.rect)),this.j.isFullSize&&(this.rect.style.zIndex=(0, l.css)(this.j.container,"zIndex").toString()),this.updateSize());}hide(){this.isResizeMode||(this.isResizeMode=!1,this.isShown=!1,this.element=null,s.J.safeRemove(this.rect),(0, l.$$)("[data-jodit-wrapper_active='true']",this.j.editor).forEach((t=>(0, l.attr)(t,"data-jodit-wrapper_active",!1))));}beforeDestruct(t){this.hide(),a.RR.off("hideHelpers",this.hide),t.e.off(this.j.ow,".resizer").off(".resizer");}}(0, o.Cg)([(0, r.watch)(":click")],u.prototype,"onEditorClick",null),(0, o.Cg)([r.autobind],u.prototype,"onStartResizing",null),(0, o.Cg)([r.autobind],u.prototype,"onEndResizing",null),(0, o.Cg)([r.autobind],u.prototype,"onResize",null),(0, o.Cg)([r.autobind],u.prototype,"onKeyDown",null),(0, o.Cg)([r.autobind],u.prototype,"onKeyUp",null),(0, o.Cg)([r.autobind],u.prototype,"onClickOutside",null),(0, o.Cg)([(0, r.watch)(":change")],u.prototype,"__onChangeEditor",null),(0, o.Cg)([r.autobind],u.prototype,"__bind",null),(0, o.Cg)([r.autobind,(0, r.watch)(":hideResizer")],u.prototype,"hide",null),a.fg.add("resizer",u);},78593:function(t,e,i){var o=i(931),n=i(21917),r=i.n(n),s=i(36115);s.T.prototype.useSearch=!0,s.T.prototype.search={lazyIdleTimeout:0,useCustomHighlightAPI:void 0!==window.Highlight},o.I.set("search",r()),s.T.prototype.controls.find={tooltip:"Find",icon:"search",exec(t,e,{control:i}){switch(i.args&&i.args[0]){case"findPrevious":t.e.fire("searchPrevious");break;case"findNext":t.e.fire("searchNext");break;case"replace":t.execCommand("openReplaceDialog");break;default:t.execCommand("openSearchDialog");}},list:{search:"Find",findNext:"Find Next",findPrevious:"Find Previous",replace:"Replace"},childTemplate:(t,e,i)=>i};},89568:function(t,e,i){i.d(e,{IJ:function(){return l},Tz:function(){return c},_B:function(){return s},zy:function(){return a}});var o=i(55186),n=i(58720);const r="jd-tmp-selection";function s(t,e,i,n,s){if(null==e.startContainer.nodeValue||null==e.endContainer.nodeValue)return;if(t.o.search.useCustomHighlightAPI&&void 0!==window.Highlight){const o=[e,...i].map((e=>{const i=t.selection.createRange();return i.setStart(e.startContainer,e.startOffset),i.setEnd(e.endContainer,e.endOffset),i})),n=new Highlight(...o);return CSS.highlights.clear(),CSS.highlights.set("jodit-search-result",n),void(i.length=0)}const a=n.element("span",{[r]:!0});o.J.markTemporary(a);const l=e.startContainer.nodeValue;let c=0;if(0!==e.startOffset){const t=n.text(l.substring(0,e.startOffset));e.startContainer.nodeValue=l.substring(e.startOffset),o.J.before(e.startContainer,t),e.startContainer===e.endContainer&&(c=e.startOffset,e.endOffset-=c),e.startOffset=0;}const d=e.endContainer.nodeValue;if(e.endOffset!==d.length){const t=n.text(d.substring(e.endOffset));e.endContainer.nodeValue=d.substring(0,e.endOffset),o.J.after(e.endContainer,t);for(const o of i){if(o.startContainer!==e.endContainer)break;o.startContainer=t,o.startOffset=o.startOffset-e.endOffset-c,o.endContainer===e.endContainer&&(o.endContainer=t,o.endOffset=o.endOffset-e.endOffset-c);}e.endOffset=e.endContainer.nodeValue.length;}let u=e.startContainer;do{if(!u)break;if(!o.J.isText(u)||o.J.isElement(h=u.parentNode)&&h.hasAttribute(r)||o.J.wrap(u,a.cloneNode(),n),u===e.endContainer)break;let t=u.firstChild||u.nextSibling;if(!t){for(;u&&!u.nextSibling&&u!==s;)u=u.parentNode;t=null==u?void 0:u.nextSibling;}u=t;}while(u&&u!==s);var h;}function a(t){return (0, n.$$)(`[${r}]`,t)}function l(t){a(t).forEach((t=>o.J.unwrap(t)));}function c(t){return t.replace(RegExp(`<span[^>]+${r}[^>]+>(.*?)</span>`,"g"),"$1")}},78817:function(t,e,i){i.d(e,{IJ:function(){return o.IJ},QN:function(){return n.Q},Tz:function(){return o.Tz},_B:function(){return o._B},zy:function(){return o.zy}});var o=i(89568),n=i(30621);},30621:function(t,e,i){i.d(e,{Q:function(){return n}});var o=i(67975);class n{constructor(t=o.H){this.searchIndex=t,this.queue=[],this.value="";}add(t){var e;const i=(null!==(e=t.nodeValue)&&void 0!==e?e:"").toLowerCase();if(!i.length)return;const o=this.value.length;this.queue.push({startIndex:o,endIndex:o+i.length,node:t}),this.value+=i;}ranges(t,e=0){const i=[];let o=e,n=0,r=0;do{if([o,n]=this.searchIndex(t,this.value,o),-1!==o){let t,e,s=0,a=0;for(let i=r;this.queue.length>i;i+=1)if(!t&&this.queue[i].endIndex>o&&(t=this.queue[i].node,s=o-this.queue[i].startIndex),t&&this.queue[i].endIndex>=o+n){e=this.queue[i].node,a=o+n-this.queue[i].startIndex,r=i;break}t&&e&&i.push({startContainer:t,startOffset:s,endContainer:e,endOffset:a}),o+=n;}}while(-1!==o);return 0===i.length?null:i}}},17343:function(t,e,i){var o=i(31635),n=(i(17352),i(22664)),r=i(71842),s=i(56298),a=i(65147),l=i(71005),c=(i(78593),i(78817)),d=i(63064);class u extends l.k{constructor(){super(...arguments),this.buttons=[{name:"find",group:"search"}],this.previousQuery="",this.drawPromise=null,this.walker=null,this.walkerCount=null,this.cache={},this.wrapFrameRequest=0;}get ui(){return new d.F(this.j)}async updateCounters(){this.ui.isOpened&&(this.ui.count=await this.calcCounts(this.ui.query));}onPressReplaceButton(){this.findAndReplace(this.ui.query),this.updateCounters();}tryScrollToElement(t){let e=r.J.closest(t,r.J.isElement,this.j.editor);e||(e=r.J.prev(t,r.J.isElement,this.j.editor)),e&&e!==this.j.editor&&(0, a.scrollIntoViewIfNeeded)(e,this.j.editor,this.j.ed);}async calcCounts(t){return (await this.findQueryBounds(t,"walkerCount")).length}async findQueryBounds(t,e){let i=this[e];return i&&i.break(),i=new r.p(this.j.async,{timeout:this.j.o.search.lazyIdleTimeout}),this[e]=i,this.find(i,t).catch((t=>[]))}async findAndReplace(t){const e=await this.findQueryBounds(t,"walker");if(!e.length)return !1;let i=this.findCurrentIndexInRanges(e,this.j.s.range);-1===i&&(i=0);const o=e[i];if(o){try{const e=this.j.ed.createRange();e.setStart(o.startContainer,o.startOffset),e.setEnd(o.endContainer,o.endOffset),e.deleteContents();const n=this.j.createInside.text(this.ui.replace);r.J.safeInsertNode(e,n),(0,c.IJ)(this.j.editor),this.j.s.setCursorAfter(n),this.tryScrollToElement(n),this.cache={},this.ui.currentIndex=i,await this.findAndSelect(t,!0).catch((t=>null));}finally{this.j.synchronizeValues();}return this.j.e.fire("afterFindAndReplace"),!0}return !1}async findAndSelect(t,e){var i;const o=await this.findQueryBounds(t,"walker");if(!o.length)return !1;this.previousQuery===t&&(0, c.zy)(this.j.editor).length||(null===(i=this.drawPromise)||void 0===i||i.rejectCallback(),this.j.async.cancelAnimationFrame(this.wrapFrameRequest),(0, c.IJ)(this.j.editor),this.drawPromise=this.__drawSelectionRanges(o)),this.previousQuery=t;let n=this.ui.currentIndex-1;n=-1===n?0:e?n===o.length-1?0:n+1:0===n?o.length-1:n-1,this.ui.currentIndex=n+1;const r=o[n];if(r){const e=this.j.ed.createRange();try{e.setStart(r.startContainer,r.startOffset),e.setEnd(r.endContainer,r.endOffset),this.j.s.selectRange(e);}catch(t){}return this.tryScrollToElement(r.startContainer),await this.updateCounters(),await this.drawPromise,this.j.e.fire("afterFindAndSelect"),!0}return !1}findCurrentIndexInRanges(t,e){return t.findIndex((t=>t.startContainer===e.startContainer&&t.startOffset===e.startOffset&&t.endContainer===e.startContainer&&t.endOffset===e.endOffset))}async isValidCache(t){return (await t).every((t=>{var e,i,o,n;return t.startContainer.isConnected&&t.startOffset<=(null!==(i=null===(e=t.startContainer.nodeValue)||void 0===e?void 0:e.length)&&void 0!==i?i:0)&&t.endContainer.isConnected&&t.endOffset<=(null!==(n=null===(o=t.endContainer.nodeValue)||void 0===o?void 0:o.length)&&void 0!==n?n:0)}))}async find(t,e){if(!e.length)return [];const i=this.cache[e];return i&&await this.isValidCache(i)?i:(this.cache[e]=this.j.async.promise((i=>{const o=new c.QN(this.j.o.search.fuzzySearch);t.on("break",(()=>{i([]);})).on("visit",(t=>(r.J.isText(t)&&o.add(t),!1))).on("end",(()=>{var t;i(null!==(t=o.ranges(e))&&void 0!==t?t:[]);})).setWork(this.j.editor);})),this.cache[e])}__drawSelectionRanges(t){const{async:e,createInside:i,editor:o}=this.j;e.cancelAnimationFrame(this.wrapFrameRequest);const n=[...t];let r,s=0;return e.promise((t=>{const a=()=>{do{r=n.shift(),r&&(0, c._B)(this.j,r,n,i,o),s+=1;}while(r&&5>=s);n.length?this.wrapFrameRequest=e.requestAnimationFrame(a):t();};a();}))}onAfterGetValueFromEditor(t){t.value=(0, c.Tz)(t.value);}afterInit(t){if(t.o.useSearch){const e=this;t.e.on("beforeSetMode.search",(()=>{this.ui.close();})).on(this.ui,"afterClose",(()=>{(0, c.IJ)(t.editor),this.ui.currentIndex=0,this.ui.count=0,this.cache={};})).on("click",(()=>{this.ui.currentIndex=0,(0, c.IJ)(t.editor);})).on("change.search",(()=>{this.cache={};})).on("keydown.search mousedown.search",t.async.debounce((()=>{this.ui.selInfo&&(t.s.removeMarkers(),this.ui.selInfo=null),this.ui.isOpened&&this.updateCounters();}),t.defaultTimeout)).on("searchNext.search searchPrevious.search",(()=>(this.ui.isOpened||this.ui.open(),e.findAndSelect(e.ui.query,"searchNext"===t.e.current).catch((t=>{}))))).on("search.search",((t,i=!0)=>(this.ui.currentIndex=0,e.findAndSelect(t||"",i).catch((t=>{}))))),t.registerCommand("search",{exec:(t,i,o=!0)=>(i&&e.findAndSelect(i,o).catch((t=>{})),!1)}).registerCommand("openSearchDialog",{exec:(t,i)=>(e.ui.open(i),!1),hotkeys:["ctrl+f","cmd+f"]}).registerCommand("openReplaceDialog",{exec:(i,o,n)=>(t.o.readonly||e.ui.open(o,n,!0),!1),hotkeys:["ctrl+h","cmd+h"]});}}beforeDestruct(t){this.ui.destruct(),t.e.off(".search");}}(0, o.Cg)([n.cache],u.prototype,"ui",null),(0, o.Cg)([(0, n.watch)("ui:needUpdateCounters")],u.prototype,"updateCounters",null),(0, o.Cg)([(0, n.watch)("ui:pressReplaceButton")],u.prototype,"onPressReplaceButton",null),(0, o.Cg)([n.autobind],u.prototype,"findQueryBounds",null),(0, o.Cg)([n.autobind],u.prototype,"findAndReplace",null),(0, o.Cg)([n.autobind],u.prototype,"findAndSelect",null),(0, o.Cg)([n.autobind],u.prototype,"find",null),(0, o.Cg)([(0, n.watch)(":afterGetValueFromEditor")],u.prototype,"onAfterGetValueFromEditor",null),s.fg.add("search",u);},63064:function(t,e,i){i.d(e,{F:function(){return c}});var o=i(31635),n=i(17352),r=i(22664),s=i(71842),a=i(65147),l=i(53048);let c=class extends l.D${className(){return "UISearch"}render(){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">${l.In.get("angle-down")}</button>\n\t\t\t\t\t<button data-ref="prev" tabindex="0" type="button">${l.In.get("angle-up")}</button>\n\t\t\t\t\t<button data-ref="cancel" tabindex="0" type="button">${l.In.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>`}get currentIndex(){return this._currentIndex}set currentIndex(t){this._currentIndex=t,this.currentBox.innerText=t.toString();}set count(t){this.countBox.innerText=t.toString();}get query(){return this.queryInput.value}get replace(){return this.replaceInput.value}constructor(t){super(t),this.selInfo=null,this._currentIndex=0,this.isOpened=!1;const{query:e,replace:i,cancel:o,next:r,prev:s,replaceBtn:l,current:c,count:d}=(0, a.refs)(this.container);this.queryInput=e,this.replaceInput=i,this.closeButton=o,this.replaceButton=l,this.currentBox=c,this.countBox=d,t.e.on(this.closeButton,"pointerdown",(()=>(this.close(),!1))).on(this.queryInput,"input",(()=>{this.currentIndex=0;})).on(this.queryInput,"pointerdown",(()=>{t.s.isFocused()&&(t.s.removeMarkers(),this.selInfo=t.s.save());})).on(this.replaceButton,"pointerdown",(()=>(t.e.fire(this,"pressReplaceButton"),!1))).on(r,"pointerdown",(()=>(t.e.fire("searchNext"),!1))).on(s,"pointerdown",(()=>(t.e.fire("searchPrevious"),!1))).on(this.queryInput,"input",(()=>{this.setMod("empty-query",!(0, a.trim)(this.queryInput.value).length);})).on(this.queryInput,"keydown",this.j.async.debounce((e=>{e.key===n.KEY_ENTER?(e.preventDefault(),e.stopImmediatePropagation(),t.e.fire("searchNext")&&this.close()):t.e.fire(this,"needUpdateCounters");}),this.j.defaultTimeout));}onEditorKeyDown(t){if(!this.isOpened)return;const{j:e}=this;if(e.getRealMode()===n.MODE_WYSIWYG)switch(t.key){case n.KEY_ESC:this.close();break;case n.KEY_F3:this.queryInput.value&&(e.e.fire(t.shiftKey?"searchPrevious":"searchNext"),t.preventDefault());}}open(t,e,i=!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",i);const o=null!=t?t:(this.j.s.sel||"").toString();o&&(this.queryInput.value=o),e&&(this.replaceInput.value=e),this.setMod("empty-query",!o.length),this.j.e.fire(this,"needUpdateCounters"),o?this.queryInput.select():this.queryInput.focus();}close(){this.isOpened&&(this.j.s.restore(),s.J.safeRemove(this.container),this.isOpened=!1,this.j.e.fire(this,"afterClose"));}calcSticky(t){if(this.isOpened)if(this.setMod("sticky",t),t){const t=(0, a.position)(this.j.toolbarContainer);(0, a.css)(this.container,{top:t.top+t.height,left:t.left+t.width});}else (0, a.css)(this.container,{top:null,left:null});}};(0, o.Cg)([(0, r.watch)([":keydown","queryInput:keydown"])],c.prototype,"onEditorKeyDown",null),(0, o.Cg)([r.autobind],c.prototype,"open",null),(0, o.Cg)([r.autobind],c.prototype,"close",null),(0, o.Cg)([(0, r.watch)(":toggleSticky")],c.prototype,"calcSticky",null),c=(0, o.Cg)([r.component],c);},29581:function(t,e,i){i(36115).T.prototype.tableAllowCellSelection=!0;},46939:function(t,e,i){var o=i(31635),n=i(17352),r=i(22664),s=i(55186),a=i(56298),l=i(65147),c=i(71005),d=i(11648);i(29581);const u="table_processor_observer",h="onMoveTableSelectCell";class p extends c.k{constructor(){super(...arguments),this.__selectedCell=null,this.__isSelectionMode=!1;}get __tableModule(){return this.j.getInstance(d.X,this.j.o)}afterInit(t){t.o.tableAllowCellSelection&&t.e.on("keydown.select-cells",(t=>{t.key===n.KEY_TAB&&this.unselectCells();})).on("beforeCommand.select-cells",this.onExecCommand).on("afterCommand.select-cells",this.onAfterCommand).on(["clickEditor","mousedownTd","mousedownTh","touchstartTd","touchstartTh"].map((t=>t+".select-cells")).join(" "),this.onStartSelection).on("clickTr clickTbody",(()=>{var t;const e=this.__tableModule.getAllSelectedCells().length;if(e)return e>1&&(null===(t=this.j.s.sel)||void 0===t||t.removeAllRanges()),!1}));}onStartSelection(t){if(this.j.o.readonly)return;if(this.unselectCells(),t===this.j.editor)return;const e=s.J.closest(t,"table",this.j.editor);return t&&e?(t.firstChild||t.appendChild(this.j.createInside.element("br")),this.__isSelectionMode=!0,this.__selectedCell=t,this.__tableModule.addSelection(t),this.j.e.on(e,"mousemove.select-cells touchmove.select-cells",this.j.async.throttle(this.__onMove.bind(this,e),{label:h,timeout:this.j.defaultTimeout/2})).on(e,"mouseup.select-cells touchend.select-cells",this.__onStopSelection.bind(this,e)),!1):void 0}onOutsideClick(){this.__selectedCell=null,this.__onRemoveSelection();}onChange(){this.j.isLocked||this.__isSelectionMode||this.__onRemoveSelection();}__onMove(t,e){var i;if(this.j.o.readonly&&!this.j.isLocked)return;if(this.j.isLockedNotBy(u))return;const o=this.j.ed.elementFromPoint(e.clientX,e.clientY);if(!o)return;const n=s.J.closest(o,["td","th"],t);if(!n||!this.__selectedCell)return;n!==this.__selectedCell&&this.j.lock(u),this.unselectCells();const r=this.__tableModule.getSelectedBound(t,[n,this.__selectedCell]),a=this.__tableModule.formalMatrix(t);for(let t=r[0][0];r[1][0]>=t;t+=1)for(let e=r[0][1];r[1][1]>=e;e+=1)this.__tableModule.addSelection(a[t][e]);this.__tableModule.getAllSelectedCells().length>1&&(null===(i=this.j.s.sel)||void 0===i||i.removeAllRanges()),this.j.e.fire("hidePopup"),e.stopPropagation(),(()=>{const t=this.j.createInside.fromHTML('<div style="color:rgba(0,0,0,0.01);width:0;height:0"> </div>');n.appendChild(t),this.j.async.setTimeout((()=>{var e;null===(e=t.parentNode)||void 0===e||e.removeChild(t);}),this.j.defaultTimeout/5);})();}__onRemoveSelection(t){var e;if(!(null===(e=null==t?void 0:t.buffer)||void 0===e?void 0:e.actionTrigger)&&!this.__selectedCell&&this.__tableModule.getAllSelectedCells().length)return this.j.unlock(),this.unselectCells(),void this.j.e.fire("hidePopup","cells");this.__isSelectionMode=!1,this.__selectedCell=null;}__onStopSelection(t,e){if(!this.__selectedCell)return;this.__isSelectionMode=!1,this.j.unlock();const i=this.j.ed.elementFromPoint(e.clientX,e.clientY);if(!i)return;const o=s.J.closest(i,["td","th"],t);if(!o)return;const n=s.J.closest(o,"table",t);if(n&&n!==t)return;const r=this.__tableModule.getSelectedBound(t,[o,this.__selectedCell]),a=this.__tableModule.formalMatrix(t),c=a[r[1][0]][r[1][1]],d=a[r[0][0]][r[0][1]];this.j.e.fire("showPopup",t,(()=>{const t=(0, l.position)(d,this.j),e=(0, l.position)(c,this.j);return {left:t.left,top:t.top,width:e.left-t.left+e.width,height:e.top-t.top+e.height}}),"cells"),(0, l.$$)("table",this.j.editor).forEach((t=>{this.j.e.off(t,"mousemove.select-cells touchmove.select-cells mouseup.select-cells touchend.select-cells");})),this.j.async.clearTimeout(h);}unselectCells(t){const e=this.__tableModule,i=e.getAllSelectedCells();i.length&&i.forEach((i=>{t&&t===i||e.removeSelection(i);}));}onExecCommand(t){if(/table(splitv|splitg|merge|empty|bin|binrow|bincolumn|addcolumn|addrow)/.test(t)){t=t.replace("table","");const e=this.__tableModule.getAllSelectedCells();if(e.length){const[i]=e;if(!i)return;const o=s.J.closest(i,"table",this.j.editor);if(!o)return;switch(t){case"splitv":this.__tableModule.splitVertical(o);break;case"splitg":this.__tableModule.splitHorizontal(o);break;case"merge":this.__tableModule.mergeSelected(o);break;case"empty":e.forEach((t=>s.J.detach(t)));break;case"bin":s.J.safeRemove(o);break;case"binrow":new Set(e.map((t=>t.parentNode))).forEach((t=>{this.__tableModule.removeRow(o,t.rowIndex);}));break;case"bincolumn":{const t=new Set;e.reduce(((e,i)=>(t.has(i.cellIndex)||(e.push(i),t.add(i.cellIndex)),e)),[]).forEach((t=>{this.__tableModule.removeColumn(o,t.cellIndex);}));}break;case"addcolumnafter":case"addcolumnbefore":this.__tableModule.appendColumn(o,i.cellIndex,"addcolumnafter"===t);break;case"addrowafter":case"addrowbefore":this.__tableModule.appendRow(o,i.parentNode,"addrowafter"===t);}}return !1}}onAfterCommand(t){/^justify/.test(t)&&this.__tableModule.getAllSelectedCells().forEach((e=>(0, l.alignElement)(t,e)));}beforeDestruct(t){this.__onRemoveSelection(),t.e.off(".select-cells");}}p.requires=["select"],(0, o.Cg)([r.autobind],p.prototype,"onStartSelection",null),(0, o.Cg)([(0, r.watch)(":outsideClick")],p.prototype,"onOutsideClick",null),(0, o.Cg)([(0, r.watch)(":change")],p.prototype,"onChange",null),(0, o.Cg)([r.autobind],p.prototype,"__onRemoveSelection",null),(0, o.Cg)([r.autobind],p.prototype,"__onStopSelection",null),(0, o.Cg)([r.autobind],p.prototype,"onExecCommand",null),(0, o.Cg)([r.autobind],p.prototype,"onAfterCommand",null),a.fg.add("selectCells",p);},41133:function(t,e,i){i(36115).T.prototype.select={normalizeSelectionBeforeCutAndCopy:!1,normalizeTripleClick:!0};},35523:function(t,e,i){var o=i(31635),n=i(22664),r=i(55186),s=i(56298),a=i(83260),l=i(71005),c=i(53048);i(41133);class d extends l.k{constructor(){super(...arguments),this.proxyEventsList=["click","mousedown","touchstart","mouseup","touchend"];}afterInit(t){this.proxyEventsList.forEach((e=>{t.e.on(e+".select",this.onStartSelection);}));}beforeDestruct(t){this.proxyEventsList.forEach((e=>{t.e.on(e+".select",this.onStartSelection);}));}onStartSelection(t){const{j:e}=this;let i,o=t.target;for(;void 0===i&&o&&o!==e.editor;)i=e.e.fire((0, a.x)(t.type+"_"+o.nodeName.toLowerCase()),o,t),o=o.parentElement;"click"===t.type&&void 0===i&&o===e.editor&&e.e.fire(t.type+"Editor",o,t);}onOutsideClick(t){const e=t.target;r.J.up(e,(t=>t===this.j.editor))||c.D$.closestElement(e,c.zD)||this.j.e.fire("outsideClick",t);}beforeCommandCut(){const{s:t}=this.j;if(!t.isCollapsed()){const e=t.current();e&&r.J.isOrContains(this.j.editor,e)&&this.onCopyNormalizeSelectionBound();}}beforeCommandSelectAll(){const{s:t}=this.j;return t.focus(),t.select(this.j.editor,!0),t.expandSelection(),!1}onTripleClickNormalizeSelection(t){if(3!==t.detail||!this.j.o.select.normalizeTripleClick)return;const{s:e}=this.j,{startContainer:i,startOffset:o}=e.range;0===o&&r.J.isText(i)&&e.select(r.J.closest(i,r.J.isBlock,this.j.editor)||i,!0);}onCopyNormalizeSelectionBound(t){const{s:e,editor:i,o}=this.j;o.select.normalizeSelectionBeforeCutAndCopy&&!e.isCollapsed()&&(!t||t.isTrusted&&r.J.isNode(t.target)&&r.J.isOrContains(i,t.target))&&this.jodit.s.expandSelection();}}(0, o.Cg)([n.autobind],d.prototype,"onStartSelection",null),(0, o.Cg)([(0, n.watch)("ow:click")],d.prototype,"onOutsideClick",null),(0, o.Cg)([(0, n.watch)([":beforeCommandCut"])],d.prototype,"beforeCommandCut",null),(0, o.Cg)([(0, n.watch)([":beforeCommandSelectall"])],d.prototype,"beforeCommandSelectAll",null),(0, o.Cg)([(0, n.watch)([":click"])],d.prototype,"onTripleClickNormalizeSelection",null),(0, o.Cg)([(0, n.watch)([":copy",":cut"])],d.prototype,"onCopyNormalizeSelectionBound",null),s.fg.add("select",d);},78134:function(t,e,i){var o=i(36115);o.T.prototype.minWidth=200,o.T.prototype.maxWidth="100%",o.T.prototype.minHeight=200,o.T.prototype.maxHeight="auto",o.T.prototype.saveHeightInStorage=!1;},69077:function(t,e,i){var o=i(31635),n=i(22664),r=i(56298),s=i(2461),a=i(38322),l=i(29866);i(78134);let c=class extends l.k{constructor(){super(...arguments),this.__resizeWorkspaces=this.j.async.debounce(this.__resizeWorkspaceImd,this.j.defaultTimeout,!0);}afterInit(t){t.e.on("setHeight.size",this.__setHeight).on("setWidth.size",this.__setWidth).on("afterInit.size changePlace.size",this.__initialize,{top:!0}).on(t.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();}__initialize(){const{j:t}=this;if(t.o.inline)return;let{height:e}=t.o;if(t.o.saveHeightInStorage&&"auto"!==e){const i=t.storage.get("height");i&&(e=i);}(0, a.A)(t.editor,{minHeight:"100%"}),(0, a.A)(t.container,{minHeight:t.o.minHeight,maxHeight:t.o.maxHeight,minWidth:t.o.minWidth,maxWidth:t.o.maxWidth}),t.isFullSize||(this.__setHeight(e),this.__setWidth(t.o.width));}__setHeight(t){if((0, s.E)(t)){const{minHeight:e,maxHeight:i}=this.j.o;(0, s.E)(e)&&e>t&&(t=e),(0, s.E)(i)&&t>i&&(t=i);}(0, a.A)(this.j.container,"height",t),this.j.o.saveHeightInStorage&&this.j.storage.set("height",t),this.__resizeWorkspaceImd();}__setWidth(t){if((0, s.E)(t)){const{minWidth:e,maxWidth:i}=this.j.o;(0, s.E)(e)&&e>t&&(t=e),(0, s.E)(i)&&t>i&&(t=i);}(0, a.A)(this.j.container,"width",t),this.__resizeWorkspaceImd();}__getNotWorkHeight(){var t,e;return ((null===(t=this.j.toolbarContainer)||void 0===t?void 0:t.offsetHeight)||0)+((null===(e=this.j.statusbar)||void 0===e?void 0:e.getHeight())||0)+2}__resizeWorkspaceImd(){if(!this.j||this.j.isDestructed||!this.j.o||this.j.o.inline)return;if(!this.j.container||!this.j.container.parentNode)return;const t=((0, a.A)(this.j.container,"minHeight")||0)-this.__getNotWorkHeight();if((0, s.E)(t)&&t>0&&([this.j.workplace,this.j.iframe,this.j.editor].map((e=>{e&&(0, a.A)(e,"minHeight",t);})),this.j.e.fire("setMinHeight",t)),(0, s.E)(this.j.o.maxHeight)){const t=this.j.o.maxHeight-this.__getNotWorkHeight();[this.j.workplace,this.j.iframe,this.j.editor].map((e=>{e&&(0, a.A)(e,"maxHeight",t);})),this.j.e.fire("setMaxHeight",t);}this.j.container&&(0, a.A)(this.j.workplace,"height","auto"!==this.j.o.height||this.j.isFullSize?this.j.container.offsetHeight-this.__getNotWorkHeight():"auto");}beforeDestruct(t){t.e.off(t.ow,"load.size",this.__resizeWorkspaces).off(".size");}};(0, o.Cg)([(0, n.throttle)()],c.prototype,"__initialize",null),(0, o.Cg)([n.autobind],c.prototype,"__resizeWorkspaceImd",null),c=(0, o.Cg)([n.autobind],c),r.fg.add("size",c);},90722:function(t,e,i){var o=i(17352),n=i(931),r=i(9103),s=i.n(r),a=i(36115);a.T.prototype.beautifyHTML=!o.IS_IE,a.T.prototype.sourceEditor="ace",a.T.prototype.sourceEditorNativeOptions={showGutter:!0,theme:"ace/theme/idle_fingers",mode:"ace/mode/html",wrap:!0,highlightActiveLine:!0},a.T.prototype.sourceEditorCDNUrlsJS=["https://cdnjs.cloudflare.com/ajax/libs/ace/1.4.2/ace.js"],a.T.prototype.beautifyHTMLCDNUrlsJS=["https://cdnjs.cloudflare.com/ajax/libs/js-beautify/1.14.4/beautify.min.js","https://cdnjs.cloudflare.com/ajax/libs/js-beautify/1.14.4/beautify-html.min.js"],n.I.set("source",s()),a.T.prototype.controls.source={mode:o.MODE_SPLIT,exec:t=>{t.toggleMode();},isActive:t=>t.getRealMode()===o.MODE_SOURCE,tooltip:"Change mode"};},5533:function(t,e,i){i.d(e,{p:function(){return s}});var o=i(17352),n=i(65147),r=i(53380);class s extends r.F{constructor(){super(...arguments),this.className="jodit_ace_editor",this.proxyOnBlur=t=>{this.j.e.fire("blur",t);},this.proxyOnFocus=t=>{this.j.e.fire("focus",t);},this.proxyOnMouseDown=t=>{this.j.e.fire("mousedown",t);};}aceExists(){return void 0!==this.j.ow.ace}getLastColumnIndex(t){return this.instance.session.getLine(t).length}getLastColumnIndices(){const t=this.instance.session.getLength(),e=[];let i=0;for(let o=0;t>o;o++)i+=this.getLastColumnIndex(o),o>0&&(i+=1),e[o]=i;return e}getRowColumnIndices(t){const e=this.getLastColumnIndices();if(e[0]>=t)return {row:0,column:t};let i=1;for(let o=1;e.length>o;o++)t>e[o]&&(i=o+1);return {row:i,column:t-e[i-1]-1}}setSelectionRangeIndices(t,e){const i=this.getRowColumnIndices(t),o=this.getRowColumnIndices(e);this.instance.getSelection().setSelectionRange({start:i,end:o});}getIndexByRowColumn(t,e){return this.getLastColumnIndices()[t]-this.getLastColumnIndex(t)+e}init(t){const e=()=>{if(void 0!==this.instance||!this.aceExists())return;const e=this.j.c.div("jodit-source__mirror-fake");this.container.appendChild(e),this.instance=t.ow.ace.edit(e),this.instance.setTheme(t.o.sourceEditorNativeOptions.theme),this.instance.renderer.setShowGutter(t.o.sourceEditorNativeOptions.showGutter),this.instance.getSession().setMode(t.o.sourceEditorNativeOptions.mode),this.instance.setHighlightActiveLine(t.o.sourceEditorNativeOptions.highlightActiveLine),this.instance.getSession().setUseWrapMode(!0),this.instance.setOption("indentedSoftWrap",!1),this.instance.setOption("wrap",t.o.sourceEditorNativeOptions.wrap),this.instance.getSession().setUseWorker(!1),this.instance.$blockScrolling=1/0,this.instance.on("change",this.toWYSIWYG),this.instance.on("focus",this.proxyOnFocus),this.instance.on("mousedown",this.proxyOnMouseDown),this.instance.on("blur",this.proxyOnBlur),t.getRealMode()!==o.MODE_WYSIWYG&&this.setValue(this.getValue());const i=this.j.async.debounce((()=>{t.isInDestruct||(this.instance.setOption("maxLines","auto"!==t.o.height?t.workplace.offsetHeight/this.instance.renderer.lineHeight:1/0),this.instance.resize());}),2*this.j.defaultTimeout);t.e.on("afterResize afterSetMode",i),i(),this.onReady();};t.e.on("afterSetMode",(()=>{t.getRealMode()!==o.MODE_SOURCE&&t.getMode()!==o.MODE_SPLIT||(this.fromWYSIWYG(),e());})),e(),this.aceExists()||(0, n.loadNext)(t,t.o.sourceEditorCDNUrlsJS).then((()=>{t.isInDestruct||e();})).catch((()=>null));}destruct(){var t,e;this.instance.off("change",this.toWYSIWYG),this.instance.off("focus",this.proxyOnFocus),this.instance.off("mousedown",this.proxyOnMouseDown),this.instance.destroy(),null===(e=null===(t=this.j)||void 0===t?void 0:t.events)||void 0===e||e.off("aceInited.source");}setValue(t){if(!this.j.o.editHTMLDocumentMode&&this.j.o.beautifyHTML){const e=this.j.e.fire("beautifyHTML",t);(0, n.isString)(e)&&(t=e);}this.instance.setValue(t),this.instance.clearSelection();}getValue(){return this.instance.getValue()}setReadOnly(t){this.instance.setReadOnly(t);}get isFocused(){return this.instance.isFocused()}focus(){this.instance.focus();}blur(){this.instance.blur();}getSelectionStart(){const t=this.instance.selection.getRange();return this.getIndexByRowColumn(t.start.row,t.start.column)}getSelectionEnd(){const t=this.instance.selection.getRange();return this.getIndexByRowColumn(t.end.row,t.end.column)}selectAll(){this.instance.selection.selectAll();}insertRaw(t){const e=this.instance.selection.getCursor(),i=this.instance.session.insert(e,t);this.instance.selection.setRange({start:e,end:i},!1);}setSelectionRange(t,e){this.setSelectionRangeIndices(t,e);}setPlaceHolder(t){}replaceUndoManager(){const{history:t}=this.jodit;this.instance.commands.addCommand({name:"Undo",bindKey:{win:"Ctrl-Z",mac:"Command-Z"},exec:()=>{t.undo();}}),this.instance.commands.addCommand({name:"Redo",bindKey:{win:"Ctrl-Shift-Z",mac:"Command-Shift-Z"},exec:()=>{t.redo();}});}}},55265:function(t,e,i){i.d(e,{S:function(){return s}});var o=i(55186),n=i(38322),r=i(53380);class s extends r.F{constructor(){super(...arguments),this.autosize=this.j.async.debounce((()=>{this.instance.style.height="auto",this.instance.style.height=this.instance.scrollHeight+"px";}),this.j.defaultTimeout);}init(t){this.instance=t.c.element("textarea",{class:"jodit-source__mirror"}),this.container.appendChild(this.instance),t.e.on(this.instance,"mousedown keydown touchstart input",t.async.debounce(this.toWYSIWYG,t.defaultTimeout)).on("setMinHeight.source",(t=>{(0, n.A)(this.instance,"minHeight",t);})).on(this.instance,"change keydown mousedown touchstart input",this.autosize).on("afterSetMode.source",this.autosize).on(this.instance,"mousedown focus",(e=>{t.e.fire(e.type,e);})),this.autosize(),this.onReady();}destruct(){o.J.safeRemove(this.instance);}getValue(){return this.instance.value}setValue(t){this.instance.value=t;}insertRaw(t){const e=this.getValue();if(0>this.getSelectionStart())this.setValue(e+t);else {const i=this.getSelectionStart(),o=this.getSelectionEnd();this.setValue(e.substring(0,i)+t+e.substring(o,e.length));}}getSelectionStart(){return this.instance.selectionStart}getSelectionEnd(){return this.instance.selectionEnd}setSelectionRange(t,e=t){this.instance.setSelectionRange(t,e);}get isFocused(){return this.instance===this.j.od.activeElement}focus(){this.instance.focus();}blur(){this.instance.blur();}setPlaceHolder(t){this.instance.setAttribute("placeholder",t);}setReadOnly(t){t?this.instance.setAttribute("readonly","true"):this.instance.removeAttribute("readonly");}selectAll(){this.instance.select();}replaceUndoManager(){const{history:t}=this.jodit;this.j.e.on(this.instance,"keydown",(e=>{if((e.ctrlKey||e.metaKey)&&"z"===e.key)return e.shiftKey?t.redo():t.undo(),this.setSelectionRange(this.getValue().length),!1}));}}},76134:function(t,e,i){i.d(e,{S:function(){return n.S},p:function(){return o.p}});var o=i(5533),n=i(55265);},1992:function(t,e,i){i.d(e,{b:function(){return r}});var o=i(65147),n=i(76134);function r(t,e,i,r,s){let a;if((0, o.isFunction)(t))a=t(e);else switch(t){case"ace":if(!e.o.shadowRoot){a=new n.p(e,i,r,s);break}default:a=new n.S(e,i,r,s);}return a.init(e),a.onReadyAlways((()=>{a.setReadOnly(e.o.readonly);})),a}},53380:function(t,e,i){i.d(e,{F:function(){return o}});class o{constructor(t,e,i,o){this.jodit=t,this.container=e,this.toWYSIWYG=i,this.fromWYSIWYG=o,this.className="",this.isReady=!1;}get j(){return this.jodit}onReady(){this.replaceUndoManager(),this.isReady=!0,this.j.e.fire(this,"ready");}onReadyAlways(t){var e;this.isReady?t():null===(e=this.j.events)||void 0===e||e.on(this,"ready",t);}}},93669:function(t,e,i){var o=i(31635),n=i(17352),r=i(22664),s=i(55186),a=i(56298),l=i(65147),c=i(71005),d=(i(90722),i(1992));class u extends c.k{constructor(){super(...arguments),this.buttons=[{name:"source",group:"source"}],this.__lock=!1,this.__oldMirrorValue="",this.tempMarkerStart="{start-jodit-selection}",this.tempMarkerStartReg=/{start-jodit-selection}/g,this.tempMarkerEnd="{end-jodit-selection}",this.tempMarkerEndReg=/{end-jodit-selection}/g,this.getSelectionStart=()=>{var t,e;return null!==(e=null===(t=this.sourceEditor)||void 0===t?void 0:t.getSelectionStart())&&void 0!==e?e:0},this.getSelectionEnd=()=>{var t,e;return null!==(e=null===(t=this.sourceEditor)||void 0===t?void 0:t.getSelectionEnd())&&void 0!==e?e:0};}onInsertHTML(t){var e;if(!this.j.o.readonly&&!this.j.isEditorMode())return null===(e=this.sourceEditor)||void 0===e||e.insertRaw(t),this.toWYSIWYG(),!1}fromWYSIWYG(t=!1){if(!this.__lock||!0===t){this.__lock=!0;const t=this.j.getEditorValue(!1,n.SOURCE_CONSUMER);t!==this.getMirrorValue()&&this.setMirrorValue(t),this.__lock=!1;}}toWYSIWYG(){if(this.__lock)return;const t=this.getMirrorValue();t!==this.__oldMirrorValue&&(this.__lock=!0,this.j.value=t,this.__lock=!1,this.__oldMirrorValue=t);}getNormalPosition(t,e){for(e=e.replace(/<(script|style|iframe)[^>]*>[^]*?<\/\1>/im,(t=>{let e="";for(let i=0;t.length>i;i+=1)e+=n.INVISIBLE_SPACE;return e}));t>0&&e[t]===n.INVISIBLE_SPACE;)t--;let i=t;for(;i>0;){if(i--,"<"===e[i]&&void 0!==e[i+1]&&e[i+1].match(/[\w/]+/i))return i;if(">"===e[i])return t}return t}clnInv(t){return t.replace(n.INVISIBLE_SPACE_REG_EXP(),"")}onSelectAll(t){var e;if("selectall"===t.toLowerCase()&&this.j.getRealMode()===n.MODE_SOURCE)return null===(e=this.sourceEditor)||void 0===e||e.selectAll(),!1}getMirrorValue(){var t;return (null===(t=this.sourceEditor)||void 0===t?void 0:t.getValue())||""}setMirrorValue(t){var e;null===(e=this.sourceEditor)||void 0===e||e.setValue(t);}setFocusToMirror(){var t;null===(t=this.sourceEditor)||void 0===t||t.focus();}saveSelection(){if(this.j.getRealMode()===n.MODE_WYSIWYG)this.j.s.save(),this.j.synchronizeValues(),this.fromWYSIWYG(!0);else {if(this.j.o.editHTMLDocumentMode)return;const t=this.getMirrorValue();if(this.getSelectionStart()===this.getSelectionEnd()){const e=this.j.s.marker(!0),i=this.getNormalPosition(this.getSelectionStart(),this.getMirrorValue());this.setMirrorValue(t.substring(0,i)+this.clnInv(e.outerHTML)+t.substring(i));}else {const e=this.j.s.marker(!0),i=this.j.s.marker(!1),o=this.getNormalPosition(this.getSelectionStart(),t),n=this.getNormalPosition(this.getSelectionEnd(),t);this.setMirrorValue(t.slice(0,o)+this.clnInv(e.outerHTML)+t.slice(o,n)+this.clnInv(i.outerHTML)+t.slice(n));}this.toWYSIWYG();}}removeSelection(){if(this.j.getRealMode()===n.MODE_WYSIWYG)return this.__lock=!0,this.j.s.restore(),void(this.__lock=!1);let t=this.getMirrorValue(),e=0,i=0;try{if(t=t.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){const e=this.j.e.fire("beautifyHTML",t);(0,l.isString)(e)&&(t=e);}if(e=t.indexOf(this.tempMarkerStart),i=e,t=t.replace(this.tempMarkerStartReg,""),-1!==e){const e=t.indexOf(this.tempMarkerEnd);-1!==e&&(i=e);}t=t.replace(this.tempMarkerEndReg,"");}finally{t=t.replace(this.tempMarkerEndReg,"").replace(this.tempMarkerStartReg,"");}this.setMirrorValue(t),this.setMirrorSelectionRange(e,i),this.toWYSIWYG(),this.setFocusToMirror();}setMirrorSelectionRange(t,e){var i;null===(i=this.sourceEditor)||void 0===i||i.setSelectionRange(t,e);}onReadonlyReact(){var t;null===(t=this.sourceEditor)||void 0===t||t.setReadOnly(this.j.o.readonly);}afterInit(t){if(this.mirrorContainer=t.c.div("jodit-source"),t.workplace.appendChild(this.mirrorContainer),t.e.on("afterAddPlace changePlace afterInit",(()=>{t.workplace.appendChild(this.mirrorContainer);})),this.sourceEditor=(0, d.b)("area",t,this.mirrorContainer,this.toWYSIWYG,this.fromWYSIWYG),t.e.on(t.ow,"keydown",(t=>{var e;t.key===n.KEY_ESC&&(null===(e=this.sourceEditor)||void 0===e?void 0:e.isFocused)&&this.sourceEditor.blur();})),this.onReadonlyReact(),t.e.on("placeholder.source",(t=>{var e;null===(e=this.sourceEditor)||void 0===e||e.setPlaceHolder(t);})).on("change.source",this.syncValueFromWYSIWYG).on("beautifyHTML",(t=>t)),t.o.beautifyHTML){const e=()=>{var e;if(t.isInDestruct)return !1;const i=t.ow.html_beautify;return !(!i||t.isInDestruct||(null===(e=t.events)||void 0===e||e.off("beautifyHTML").on("beautifyHTML",(t=>i(t))),0))};e()||(0, l.loadNext)(t,t.o.beautifyHTMLCDNUrlsJS).then(e,(()=>null));}this.syncValueFromWYSIWYG(!0),this.initSourceEditor(t);}syncValueFromWYSIWYG(t=!1){const e=this.j;e.getMode()!==n.MODE_SPLIT&&e.getMode()!==n.MODE_SOURCE||this.fromWYSIWYG(t);}initSourceEditor(t){var e;if("area"!==t.o.sourceEditor){const e=(0, d.b)(t.o.sourceEditor,t,this.mirrorContainer,this.toWYSIWYG,this.fromWYSIWYG);e.onReadyAlways((()=>{var i,o;null===(i=this.sourceEditor)||void 0===i||i.destruct(),this.sourceEditor=e,this.syncValueFromWYSIWYG(!0),null===(o=t.events)||void 0===o||o.fire("sourceEditorReady",t);}));}else null===(e=this.sourceEditor)||void 0===e||e.onReadyAlways((()=>{var e;this.syncValueFromWYSIWYG(!0),null===(e=t.events)||void 0===e||e.fire("sourceEditorReady",t);}));}beforeDestruct(){this.sourceEditor&&(this.sourceEditor.destruct(),delete this.sourceEditor),s.J.safeRemove(this.mirrorContainer);}}(0, o.Cg)([(0, r.watch)(":insertHTML.source")],u.prototype,"onInsertHTML",null),(0, o.Cg)([r.autobind],u.prototype,"fromWYSIWYG",null),(0, o.Cg)([r.autobind],u.prototype,"toWYSIWYG",null),(0, o.Cg)([r.autobind],u.prototype,"getNormalPosition",null),(0, o.Cg)([(0, r.watch)(":beforeCommand.source")],u.prototype,"onSelectAll",null),(0, o.Cg)([(0, r.watch)(":beforeSetMode.source")],u.prototype,"saveSelection",null),(0, o.Cg)([(0, r.watch)(":afterSetMode.source")],u.prototype,"removeSelection",null),(0, o.Cg)([r.autobind],u.prototype,"setMirrorSelectionRange",null),(0, o.Cg)([(0, r.watch)(":readonly.source")],u.prototype,"onReadonlyReact",null),(0, o.Cg)([r.autobind],u.prototype,"syncValueFromWYSIWYG",null),a.fg.add("source",u);},71096:function(t,e,i){var o=i(9810),n=i(72197),r=i(931),s=i(71722),a=i(93676),l=i(22227),c=i.n(l),d=i(36115);d.T.prototype.speechRecognize={api:s.o,sound:!0,continuous:!0,interimResults:!0,commands:{"newline|enter":"enter","delete|remove word|delete word":"backspaceWordButton",comma:"inserthtml::,",underline:"inserthtml::_",hyphen:"inserthtml::-",space:"inserthtml:: ",question:"inserthtml::?",dot:"inserthtml::.","quote|quotes|open quote":"inserthtml::'","header|header h1":"formatblock::h1","select all":"selectall"}},r.I.set("speech-recognize",c()),d.T.prototype.controls.speechRecognize={isActive(t,e){const i=(0, n.m)(t,"speech");return Boolean(null==i?void 0:i.isEnabled)},isDisabled:t=>!t.o.speechRecognize.api,exec(t,e,{button:i,control:r}){const{api:s,lang:l,continuous:c,interimResults:d,sound:u}=t.o.speechRecognize;if(!s)return void t.alert("Speech recognize API unsupported in your browser");let h=(0, n.m)(t,"speech");if(!h){const e=new s;h=new a.g(t.async,e),h.lang=l,h.continuous=c,h.interimResults=d,h.sound=u,(0, n.m)(t,"speech",h),h.on("pulse",(t=>{i.setMod("pulse",t);})),h.on("result",(e=>t.e.fire("speechRecognizeResult",e))),h.on("progress",(e=>t.e.fire("speechRecognizeProgressResult",e))),i.hookStatus("beforeDestruct",(()=>{h.destruct();}));}if(r.args){const t=r.args[0];if((0, o.L)(h[t]))return h[t]=!h[t],void(h.isEnabled&&h.restart())}h.toggle(),i.state.activated=h.isEnabled;},name:"speechRecognize",command:"toggleSpeechRecognize",tooltip:"Speech Recognize",list:{sound:"Sound",interimResults:"Interim Results"},childTemplate(t,e,i){var o;const r=(0, n.m)(t,"speech");return `<span class='jodit-speech-recognize__list-item'><input ${(null!==(o=null==r?void 0:r[e])&&void 0!==o?o:t.o.speechRecognize[e])?"checked":""} class='jodit-checkbox' type='checkbox'> ${i}</span>`},mods:{stroke:!1}};},81629:function(t,e,i){i.d(e,{N:function(){return o},Z:function(){return n}});const o=440,n=940;},71722:function(t,e,i){i.d(e,{o:function(){return o}});const o=window.SpeechRecognition||window.webkitSpeechRecognition;},50834:function(t,e,i){function o(t,e){const[i,o]=e.split("::");t.execCommand(i,null,o);}i.d(e,{F:function(){return o}});},93676:function(t,e,i){i.d(e,{g:function(){return c}});var o,n=i(31635),r=i(22664),s=i(43431),a=i(95473),l=i(81629);let c=o=class extends s.h{set lang(t){this._lang=t,this._api.lang=t;}get lang(){return this._lang}set continuous(t){this._continuous=t,this._api.continuous=t;}get continuous(){return this._continuous}set interimResults(t){this._interimResults=t,this._api.interimResults=t;}get interimResults(){return this._interimResults}constructor(t,e){super(),this.async=t,this._continuous=!1,this._interimResults=!1,this.sound=!0,this._isEnabled=!1,this._restartTimeout=0,this._onSpeechStart=t=>{this._isEnabled&&(this.async.clearTimeout(this._restartTimeout),this._restartTimeout=this.async.setTimeout((()=>{this.restart(),this.emit("pulse",!1),this._makeSound(l.Z);}),5e3),this.emit("pulse",!0));},this._progressTimeout=0,this._api=e,o._instances.add(this);}destruct(){this.stop(),o._instances.delete(this),super.destruct();}get isEnabled(){return this._isEnabled}start(){this._isEnabled||(this._isEnabled=!0,o._instances.forEach((t=>{t!==this&&t.stop();})),this._api.start(),this.__on("speechstart",this._onSpeechStart).__on("error",this._onError).__on("result",this._onResult));}stop(){if(this._isEnabled){try{this._api.abort(),this._api.stop();}catch(t){}this.__off("speechstart",this._onSpeechStart).__off("error",this._onError).__off("result",this._onResult),this.async.clearTimeout(this._restartTimeout),this._isEnabled=!1,this.emit("pulse",!1);}}toggle(){this._isEnabled?this.stop():this.start();}restart(){this.stop(),this.start();}__on(t,e){return this._api.addEventListener(t,e),this}__off(t,e){return this._api.removeEventListener(t,e),this}_onResult(t){if(!this._isEnabled)return;this.async.clearTimeout(this._progressTimeout);const e=t.results.item(t.resultIndex),{transcript:i}=e.item(0),o=()=>{try{this.async.clearTimeout(this._restartTimeout),this.emit("result",i);}catch(t){}this.restart(),this.emit("pulse",!1),this._makeSound(l.N);};if(!1===e.isFinal)return this.emit("progress",i),void(this._progressTimeout=this.async.setTimeout(o,500));o();}_onError(){this._isEnabled&&(this._makeSound(l.Z),this.emit("pulse",!1),this.restart());}_makeSound(t){this.sound&&(0, a.s)({frequency:t});}};c._instances=new Set,c=o=(0, n.Cg)([r.autobind],c);},95473:function(t,e,i){i.d(e,{s:function(){return n}});var o=i(81629);function n({sec:t=.1,frequency:e=o.N,gain:i=.1,type:n="sine"}={}){if(void 0===window.AudioContext&&void 0===window.webkitAudioContext)return;const r=new(window.AudioContext||window.webkitAudioContext),s=r.createGain(),a=r.createOscillator();a.type=n,a.frequency.value=e,a.connect(s),s.connect(r.destination),a.start(),a.stop(r.currentTime+t),s.gain.value=i;}},61593:function(t){t.exports={newline:"الخط الجديد",delete:"حذف",space:"الفضاء","Speech Recognize":"التعرف على الكلام",Sound:"الصوت","Interim Results":"النتائج المؤقتة"};},64458:function(t){t.exports={newline:"řádek",delete:"odstranit",space:"prostora","Speech Recognize":"Rozpoznání Řeči",Sound:"Zvuk","Interim Results":"Průběžné Výsledky"};},89601:function(t){t.exports={newline:"Zeilenumbruch",delete:"löschen",space:"Raum","Speech Recognize":"Sprache Erkennen",Sound:"Sound","Interim Results":"Zwischenergebnis"};},87710:function(t){t.exports={newline:"nueva línea",delete:"eliminar",space:"espacio","Speech Recognize":"Reconocimiento de Voz",Sound:"Sonido","Interim Results":"Resultados Provisionales"};},15603:function(t){t.exports={newline:"خط جدید",delete:"حذف",space:"فضا","Speech Recognize":"گفتار را تشخیص دهید",Sound:"صدا","Interim Results":"نتایج موقت"};},84059:function(t){t.exports={"Speech Recognize":"Puheentunnistus",newline:"uusi rivi",delete:"poistaa",space:"tilaa",Sound:"Ääni","Interim Results":"Välitulokset"};},13958:function(t){t.exports={newline:"nouvelle ligne",delete:"supprimer",space:"espace","Speech Recognize":"Reconnaissance Vocale",Sound:"Son","Interim Results":"Résultats Intermédiaires"};},18717:function(t){t.exports={newline:"חדשות",delete:"מחק",space:"שטח","Speech Recognize":"דיבור מזהה",Sound:"קול","Interim Results":"תוצאות ביניים"};},14765:function(t){t.exports={newline:"újsor",delete:"törlés",space:"tér","Speech Recognize":"A Beszéd Felismeri",Sound:"Hang","Interim Results":"Időközi Eredmények"};},77995:function(t){t.exports={newline:"newline",delete:"Hapus",space:"ruang","Speech Recognize":"Pidato Mengenali",Sound:"Suara","Interim Results":"Hasil Sementara"};},25202:function(t,e,i){i.r(e),i.d(e,{ar:function(){return o},cs_cz:function(){return n},de:function(){return r},es:function(){return s},fa:function(){return a},fi:function(){return l},fr:function(){return c},he:function(){return d},hu:function(){return u},id:function(){return h},it:function(){return p},ja:function(){return f},ko:function(){return g},mn:function(){return m},nl:function(){return b},pl:function(){return _},pt_br:function(){return v},ru:function(){return x},tr:function(){return w},zh_cn:function(){return y},zh_tw:function(){return j}});var o=i(61593),n=i(64458),r=i(89601),s=i(87710),a=i(15603),l=i(84059),c=i(13958),d=i(18717),u=i(14765),h=i(77995),p=i(92315),f=i(54711),g=i(68632),m=i(76769),b=i(3424),_=i(85454),v=i(64149),x=i(16491),w=i(48948),y=i(84370),j=i(56646);},92315:function(t){t.exports={newline:"nuova riga",delete:"eliminare",space:"spazio","Speech Recognize":"Discorso Riconoscere",Sound:"Suono","Interim Results":"Risultati intermedi"};},54711:function(t){t.exports={newline:"改行",delete:"削除",space:"スペース","Speech Recognize":"音声認識",Sound:"音","Interim Results":"中間結果"};},68632:function(t){t.exports={newline:"줄 바꿈",delete:"삭제",space:"공간","Speech Recognize":"음성 인식",Sound:"소리","Interim Results":"중간 결과"};},76769:function(t){t.exports={newline:"Шинэ мөр",delete:"Устгах",space:"Зай","Speech Recognize":"Дуу хоолой таних",Sound:"Дуу","Interim Results":"Түр зуурын үр дүн"};},3424:function(t){t.exports={newline:"regel",delete:"verwijderen",space:"ruimte","Speech Recognize":"Spraak Herkennen",Sound:"Geluid","Interim Results":"Tussentijdse Resultaten"};},85454:function(t){t.exports={newline:"newline",delete:"usunąć",space:"przestrzeń","Speech Recognize":"Rozpoznawanie Mowy",Sound:"Dźwięk","Interim Results":"Wyniki Okresowe"};},64149:function(t){t.exports={newline:"linha",delete:"excluir",space:"espaco","Speech Recognize":"Discurso Reconhecer",Sound:"Som","Interim Results":"Resultados Provisórios"};},16491:function(t){t.exports={newline:"новая строка|перенос|энтер",delete:"удалить",space:"пробел","Speech Recognize":"Распознавание речи",Sound:"Звук","Interim Results":"Промежуточные результаты"};},48948:function(t){t.exports={newline:"yeni satır",delete:"silmek",space:"uzay","Speech Recognize":"Konuşma Tanıma",Sound:"Ses","Interim Results":"Ara Sonuçlar"};},84370:function(t){t.exports={newline:"新行",delete:"删除",space:"空间","Speech Recognize":"言语识别",Sound:"声音","Interim Results":"中期业绩"};},56646:function(t){t.exports={newline:"換行",delete:"刪除",space:"空白","Speech Recognize":"語音辨識",Sound:"聲音","Interim Results":"階段性辨識結果"};},37873:function(t,e,i){var o=i(31635),n=i(37075),r=i(66927),s=i(55186),a=i(56298),l=i(84976),c=i(71005),d=(i(71096),i(46173)),u=i(50834),h=i(25202);class p extends c.k{constructor(t){super(t),this._commandToWord={},t.o.speechRecognize.api&&t.registerButton({group:"state",name:"speechRecognize"});}afterInit(t){const{commands:e}=t.o.speechRecognize;e&&((0, a.JW)(h),(0, l.HP)(e,!1).forEach((i=>{i.split("|").forEach((o=>{o=o.trim().toLowerCase(),this._commandToWord[o]=e[i];const n=t.i18n(o);n!==o&&n.split("|").forEach((t=>{this._commandToWord[t.trim().toLowerCase()]=e[i].trim();}));}));})));}beforeDestruct(t){}onSpeechRecognizeProgressResult(t){this.messagePopup||(this.messagePopup=this.j.create.div("jodit-speech-recognize__popup")),this.j.workplace.appendChild(this.messagePopup),this.j.async.setTimeout((()=>{s.J.safeRemove(this.messagePopup);}),{label:"onSpeechRecognizeProgressResult",timeout:1e3}),this.messagePopup.innerText=t+"|";}onSpeechRecognizeResult(t){const{j:e}=this,{s:i}=e;if(s.J.safeRemove(this.messagePopup),!this._checkCommand(t)){const{range:o}=i,n=i.current();if(i.isCollapsed()&&s.J.isText(n)&&s.J.isOrContains(e.editor,n)&&n.nodeValue){const r=n.nodeValue;n.nodeValue=r+(/[\u00A0 ]\uFEFF*$/.test(r)?"":" ")+t,o.setStartAfter(n),i.selectRange(o),e.synchronizeValues();}else i.insertHTML(t);}}_checkCommand(t){return t=t.toLowerCase().replace(/\./g,""),!!this._commandToWord[t]&&((0, u.F)(this.j,this._commandToWord[t]),!0)}}(0, o.Cg)([(0, r.w)(":speechRecognizeProgressResult"),(0, n.s)()],p.prototype,"onSpeechRecognizeProgressResult",null),(0, o.Cg)([(0, r.w)(":speechRecognizeResult")],p.prototype,"onSpeechRecognizeResult",null),d.x.plugins.add("speech-recognize",p);},78703:function(t,e,i){var o=i(931),n=i(49989),r=i.n(n),s=i(36115);s.T.prototype.spellcheck=!1,o.I.set("spellcheck",r()),s.T.prototype.controls.spellcheck={isActive:t=>t.o.spellcheck,icon:r(),name:"spellcheck",command:"toggleSpellcheck",tooltip:"Spellcheck"};},82602:function(t){t.exports={Spellcheck:"التدقيق الإملائي"};},24575:function(t){t.exports={Spellcheck:"Kontrola pravopisu"};},37414:function(t){t.exports={Spellcheck:"Rechtschreibprüfung"};},82333:function(t){t.exports={Spellcheck:"Corrección ortográfica"};},80124:function(t){t.exports={Spellcheck:"غلطیابی املایی"};},96516:function(t){t.exports={Spellcheck:"Oikeinkirjoituksen tarkistus"};},30965:function(t){t.exports={Spellcheck:"Vérification Orthographique"};},80194:function(t){t.exports={Spellcheck:"בדיקת איות"};},49458:function(t){t.exports={Spellcheck:"Helyesírás-ellenőrzés"};},8916:function(t){t.exports={Spellcheck:"Spellchecking"};},11995:function(t,e,i){i.r(e),i.d(e,{ar:function(){return o},cs_cz:function(){return n},de:function(){return r},es:function(){return s},fa:function(){return a},fi:function(){return l},fr:function(){return c},he:function(){return d},hu:function(){return u},id:function(){return h},it:function(){return p},ja:function(){return f},ko:function(){return g},mn:function(){return m},nl:function(){return b},pl:function(){return _},pt_br:function(){return v},ru:function(){return x},tr:function(){return w},zh_cn:function(){return y},zh_tw:function(){return j}});var o=i(82602),n=i(24575),r=i(37414),s=i(82333),a=i(80124),l=i(96516),c=i(30965),d=i(80194),u=i(49458),h=i(8916),p=i(43268),f=i(11968),g=i(12715),m=i(45698),b=i(40119),_=i(92657),v=i(68648),x=i(70420),w=i(98439),y=i(55835),j=i(34747);},43268:function(t){t.exports={Spellcheck:"Controllo ortografico"};},11968:function(t){t.exports={Spellcheck:"スペルチェック"};},12715:function(t){t.exports={Spellcheck:"맞춤법 검사"};},45698:function(t){t.exports={Spellcheck:"Дүрмийн алдаа шалгах"};},40119:function(t){t.exports={Spellcheck:"Spellingcontrole"};},92657:function(t){t.exports={Spellcheck:"Sprawdzanie pisowni"};},68648:function(t){t.exports={Spellcheck:"Verificação ortográfica"};},70420:function(t){t.exports={Spellcheck:"Проверка орфографии"};},98439:function(t){t.exports={Spellcheck:"Yazım denetimi"};},55835:function(t){t.exports={Spellcheck:"拼写检查"};},34747:function(t){t.exports={Spellcheck:"拼字檢查"};},97179:function(t,e,i){var o=i(31635),n=i(22664),r=i(56298),s=i(26150),a=i(71005),l=(i(78703),i(11995));class c extends a.k{constructor(t){super(t),this.buttons=[{group:"state",name:"spellcheck"}],(0, r.JW)(l);}afterInit(t){t.e.on("afterInit afterAddPlace prepareWYSIWYGEditor",this.toggleSpellcheck),this.toggleSpellcheck(),t.registerCommand("toggleSpellcheck",(()=>{this.jodit.o.spellcheck=!this.jodit.o.spellcheck,this.toggleSpellcheck(),this.j.e.fire("updateToolbar");}));}toggleSpellcheck(){(0, s.C)(this.jodit.editor,"spellcheck",this.jodit.o.spellcheck);}beforeDestruct(t){}}(0, o.Cg)([n.autobind],c.prototype,"toggleSpellcheck",null),r.fg.add("spellcheck",c);},27195:function(t,e,i){var o=i(36115);o.T.prototype.showCharsCounter=!0,o.T.prototype.countHTMLChars=!1,o.T.prototype.showWordsCounter=!0;},65199:function(t,e,i){var o=i(17352),n=i(55186),r=i(56298),s=i(29866);i(27195),r.fg.add("stat",class extends s.k{constructor(){super(...arguments),this.charCounter=null,this.wordCounter=null,this.reInit=()=>{this.j.o.showCharsCounter&&this.charCounter&&this.j.statusbar.append(this.charCounter,!0),this.j.o.showWordsCounter&&this.wordCounter&&this.j.statusbar.append(this.wordCounter,!0),this.j.e.off("change keyup",this.calc).on("change keyup",this.calc),this.calc();},this.calc=this.j.async.throttle((()=>{const t=this.j.text;if(this.j.o.showCharsCounter&&this.charCounter){const e=this.j.o.countHTMLChars?this.j.value:t.replace((0, o.SPACE_REG_EXP)(),"");this.charCounter.textContent=this.j.i18n("Chars: %d",e.length);}this.j.o.showWordsCounter&&this.wordCounter&&(this.wordCounter.textContent=this.j.i18n("Words: %d",t.replace((0, o.INVISIBLE_SPACE_REG_EXP)(),"").split((0, o.SPACE_REG_EXP)()).filter((t=>t.length)).length));}),this.j.defaultTimeout);}afterInit(){this.charCounter=this.j.c.span(),this.wordCounter=this.j.c.span(),this.j.e.on("afterInit changePlace afterAddPlace",this.reInit),this.reInit();}beforeDestruct(){n.J.safeRemove(this.charCounter),n.J.safeRemove(this.wordCounter),this.j.e.off("afterInit changePlace afterAddPlace",this.reInit),this.charCounter=null,this.wordCounter=null;}});},63400:function(t,e,i){var o=i(36115);o.T.prototype.toolbarSticky=!0,o.T.prototype.toolbarDisableStickyForMobile=!0,o.T.prototype.toolbarStickyOffset=0;},1677:function(t,e,i){var o=i(31635),n=i(17352),r=i(22664),s=i(55186),a=i(56298),l=i(65147),c=i(29866);i(63400);const d=!n.IS_ES_NEXT&&n.IS_IE;class u extends c.k{constructor(){super(...arguments),this.__isToolbarStuck=!1,this.__createDummy=t=>{this.__dummyBox=this.j.c.div(),this.__dummyBox.classList.add("jodit_sticky-dummy_toolbar"),this.j.container.insertBefore(this.__dummyBox,t);},this.addSticky=t=>{this.__isToolbarStuck||(d&&!this.__dummyBox&&this.__createDummy(t),this.j.container.classList.add("jodit_sticky"),this.__isToolbarStuck=!0),(0, l.css)(t,{top:this.j.o.toolbarStickyOffset||null,width:this.j.container.offsetWidth-2}),this.__dummyBox&&(0, l.css)(this.__dummyBox,{height:t.offsetHeight});},this.removeSticky=t=>{this.__isToolbarStuck&&((0, l.css)(t,{width:"",top:""}),this.j.container.classList.remove("jodit_sticky"),this.__isToolbarStuck=!1);};}afterInit(t){t.e.on(t.ow,"scroll.sticky wheel.sticky mousewheel.sticky resize.sticky",this.__onScroll).on("getStickyState.sticky",(()=>this.__isToolbarStuck));}__onScroll(){const{jodit:t}=this;if(!t.o.toolbarSticky||!t.o.toolbar)return;const e=t.ow.pageYOffset||t.od.documentElement&&t.od.documentElement.scrollTop||0,i=(0, l.offset)(t.container,t,t.od,!0),o=t.getMode()===n.MODE_WYSIWYG&&e+t.o.toolbarStickyOffset>i.top&&i.top+i.height>e+t.o.toolbarStickyOffset&&!(t.o.toolbarDisableStickyForMobile&&this.__isMobile());if(this.__isToolbarStuck===o)return;const r=t.toolbarContainer;r&&(o?this.addSticky(r):this.removeSticky(r)),t.e.fire("toggleSticky",o);}__isMobile(){const{j:t}=this;return t&&t.options&&t.container&&t.options.sizeSM>=t.container.offsetWidth}beforeDestruct(t){s.J.safeRemove(this.__dummyBox),t.e.off(t.ow,"scroll.sticky wheel.sticky mousewheel.sticky resize.sticky",this.__onScroll).off(".sticky");}}(0, o.Cg)([(0, r.throttle)()],u.prototype,"__onScroll",null),a.fg.add("sticky",u);},61964:function(t,e,i){var o=i(931),n=i(81875),r=i.n(n),s=i(36115);s.T.prototype.usePopupForSpecialCharacters=!1,s.T.prototype.specialCharacters=["!",""","#","$","%","&","'","(",")","*","+","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","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","{","|","}","~","€","‘","’","“","”","–","—","¡","¢","£","¤","¥","¦","§","¨","©","ª","«","»","¬","®","¯","°","²","³","´","µ","¶","·","¸","¹","º","¼","½","¾","¿","À","Á","Â","Ã","Ä","Å","Æ","Ç","È","É","Ê","Ë","Ì","Í","Î","Ï","Ð","Ñ","Ò","Ó","Ô","Õ","Ö","×","Ø","Ù","Ú","Û","Ü","Ý","Þ","ß","à","á","â","ã","ä","å","æ","ç","è","é","ê","ë","ì","í","î","ï","ð","ñ","ò","ó","ô","õ","ö","÷","ø","ù","ú","û","ü","ý","þ","ÿ","Œ","œ","Ŵ","Ŷ","ŵ","ŷ","‚","‛","„","…","™","►","•","→","⇒","⇔","♦","≈"],o.I.set("symbols",r()),s.T.prototype.controls.symbols={hotkeys:["ctrl+shift+i","cmd+shift+i"],tooltip:"Insert Special Character",popup:(t,e,i)=>{const o=t.e.fire("generateSpecialCharactersTable.symbols");if(o){if(t.o.usePopupForSpecialCharacters){const e=t.c.div();return e.classList.add("jodit-symbols"),e.appendChild(o),t.e.on(o,"close_dialog",i),e}{t.alert(o,"Select Special Character",void 0,"jodit-symbols").bindDestruct(t);const e=o.querySelector("a");e&&e.focus();}}}};},37605:function(t){t.exports={symbols:"رمز"};},4726:function(t){t.exports={symbols:"symbol"};},68349:function(t){t.exports={symbols:"Symbol"};},88146:function(t){t.exports={symbols:"Símbolo"};},11799:function(t){t.exports={symbols:"سمبل"};},1311:function(t){t.exports={symbols:"Symbolit"};},96282:function(t){t.exports={symbols:"caractère"};},87809:function(t){t.exports={symbols:"תו מיוחד"};},60817:function(t){t.exports={symbols:"Szimbólum"};},48207:function(t){t.exports={symbols:"simbol"};},84182:function(t,e,i){i.r(e),i.d(e,{ar:function(){return o},cs_cz:function(){return n},de:function(){return r},es:function(){return s},fa:function(){return a},fi:function(){return l},fr:function(){return c},he:function(){return d},hu:function(){return u},id:function(){return h},it:function(){return p},ja:function(){return f},ko:function(){return g},mn:function(){return m},nl:function(){return b},pl:function(){return _},pt_br:function(){return v},ru:function(){return x},tr:function(){return w},zh_cn:function(){return y},zh_tw:function(){return j}});var o=i(37605),n=i(4726),r=i(68349),s=i(88146),a=i(11799),l=i(1311),c=i(96282),d=i(87809),u=i(60817),h=i(48207),p=i(1663),f=i(37107),g=i(73948),m=i(12333),b=i(82556),_=i(56114),v=i(47321),x=i(9407),w=i(98376),y=i(47238),j=i(72386);},1663:function(t){t.exports={symbols:"Simbolo"};},37107:function(t){t.exports={symbols:"symbol"};},73948:function(t){t.exports={symbols:"기호"};},12333:function(t){t.exports={symbols:"тэмдэгт"};},82556:function(t){t.exports={symbols:"symbool"};},56114:function(t){t.exports={symbols:"symbol"};},47321:function(t){t.exports={symbols:"Símbolo"};},9407:function(t){t.exports={symbols:"символ"};},98376:function(t){t.exports={symbols:"Sembol"};},47238:function(t){t.exports={symbols:"符号"};},72386:function(t){t.exports={symbols:"符號"};},35541:function(t,e,i){var o=i(17352),n=i(55186),r=i(56298),s=i(97369),a=i(29866),l=(i(61964),i(84182));r.fg.add("symbols",class extends a.k{constructor(t){super(t),this.buttons=[{name:"symbols",group:"insert"}],this.countInRow=17,(0, r.JW)(l);}afterInit(t){t.e.on("generateSpecialCharactersTable.symbols",(()=>{const e=t.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>'),i=e.querySelector(".jodit-symbols__preview"),r=e.querySelector("table").tBodies[0],a=[];for(let e=0;t.o.specialCharacters.length>e;){const i=t.c.element("tr");for(let o=0;this.countInRow>o&&t.o.specialCharacters.length>e;o+=1,e+=1){const n=t.c.element("td"),r=t.c.fromHTML(`<a\n\t\t\t\t\t\t\t\t\tdata-index="${e}"\n\t\t\t\t\t\t\t\t\tdata-index-j="${o}"\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>${t.o.specialCharacters[e]}</a>`);a.push(r),n.appendChild(r),i.appendChild(n);}r.appendChild(i);}const l=this;return t.e.on(a,"focus",(function(){i.innerHTML=this.innerHTML;})).on(a,"mousedown",(function(e){n.J.isTag(this,"a")&&(t.s.focus(),t.s.insertHTML(this.innerHTML),t.e.fire(this,"close_dialog"),e&&e.preventDefault(),e&&e.stopImmediatePropagation());})).on(a,"mouseenter",(function(){n.J.isTag(this,"a")&&this.focus();})).on(a,"keydown",(e=>{const i=e.target;if(n.J.isTag(i,"a")){const n=parseInt((0, s.attr)(i,"-index")||"0",10),r=parseInt((0, s.attr)(i,"data-index-j")||"0",10);let c;switch(e.key){case o.KEY_UP:case o.KEY_DOWN:c=e.key===o.KEY_UP?n-l.countInRow:n+l.countInRow,void 0===a[c]&&(c=e.key===o.KEY_UP?Math.floor(a.length/l.countInRow)*l.countInRow+r:r,c>a.length-1&&(c-=l.countInRow)),a[c]&&a[c].focus();break;case o.KEY_RIGHT:case o.KEY_LEFT:c=e.key===o.KEY_LEFT?n-1:n+1,void 0===a[c]&&(c=e.key===o.KEY_LEFT?a.length-1:0),a[c]&&a[c].focus();break;case o.KEY_ENTER:t.e.fire(i,"mousedown"),e.stopImmediatePropagation(),e.preventDefault();}}})),e}));}beforeDestruct(t){t.e.off("generateSpecialCharactersTable.symbols");}});},48840:function(t,e,i){i.d(e,{O:function(){return o.O}});var o=i(86572);},86572:function(t,e,i){i.d(e,{O:function(){return n}});var o=i(55186);function n(t,e=!1){if(!t.o.tab.tabInsideLiInsertNewList)return !1;const[i,n]=function(t){const e=t.createInside.fake(),i=t.createInside.fake(),o=t.s.range.cloneRange();o.collapse(!0),o.insertNode(e);const n=t.s.range.cloneRange();return n.collapse(!1),n.insertNode(i),[e,i]}(t);try{const n=function(t,e,i){const n=o.J.closest(e,"li",t.editor);return !!n&&!(!i&&!o.J.isLeaf(n.previousElementSibling))&&!(i&&!o.J.closest(n,"li",t.editor))&&n}(t,i,e);if(!n)return !1;if(!function(t,e,i){const n=o.J.closest(i,"li",e.editor);return !(!n||n!==t&&!t.contains(n))}(n,t,i))return !1;const r=o.J.closest(n,["ol","ul"],t.editor);return !(!r||e&&!o.J.closest(r,"li",t.editor)||(e?function(t,e,i){const n=o.J.closest(e,"li",t.editor),r=Array.from(e.children).filter((t=>o.J.isLeaf(t)));o.J.after(n,i);const s=r.indexOf(i);if(0!==s&&1!==r.length||o.J.safeRemove(e),s!==r.length-1){const t=e.cloneNode();o.J.append(i,t);for(let e=s+1;r.length>e;e+=1)o.J.append(t,r[e]);}}(t,r,n):function(t,e,i){const n=i.previousElementSibling,r=n.lastElementChild,s=o.J.isTag(r,e.tagName)?r:t.createInside.element(e.tagName,Array.from(e.attributes).reduce(((t,e)=>(t[e.name]=e.value,t)),{}));s.appendChild(i),r!==s&&n.appendChild(s);}(t,r,n),0))}finally{const e=t.s.createRange();e.setStartAfter(i),e.setEndBefore(n),t.s.selectRange(e),o.J.safeRemove(i),o.J.safeRemove(n);}return !1}i(28712);},50974:function(t,e,i){i(36115).T.prototype.tab={tabInsideLiInsertNewList:!0};},59965:function(t,e,i){var o=i(31635),n=i(17352),r=i(22664),s=i(56298),a=i(71005),l=(i(50974),i(48840));class c extends a.k{afterInit(t){}__onTab(t){if(t.key===n.KEY_TAB&&this.__onShift(t.shiftKey))return !1}__onCommand(t){if(("indent"===t||"outdent"===t)&&this.__onShift("outdent"===t))return !1}__onShift(t){const e=(0, l.O)(this.j,t);return e&&this.j.e.fire("afterTab",t),e}beforeDestruct(t){}}(0, o.Cg)([(0, r.watch)(":keydown.tab")],c.prototype,"__onTab",null),(0, o.Cg)([(0, r.watch)(":beforeCommand.tab")],c.prototype,"__onCommand",null),s.fg.add("tab",c);},2533:function(t,e,i){var o=i(17352),n=i(55186),r=i(56298),s=i(65147),a=i(11648);const l=new Set([o.KEY_TAB,o.KEY_LEFT,o.KEY_RIGHT,o.KEY_UP,o.KEY_DOWN]);r.fg.add("tableKeyboardNavigation",(function(t){t.e.off(".tableKeyboardNavigation").on("keydown.tableKeyboardNavigation",(e=>{const{key:i}=e;if(!l.has(i))return;const r=t.s.current();if(!r)return;const c=n.J.up(r,n.J.isCell,t.editor);if(!c)return;const{range:d}=t.s;if(i!==o.KEY_TAB&&r!==c){const t=i===o.KEY_RIGHT||i===o.KEY_DOWN,e=(0, s.call)(t?n.J.next:n.J.prev,r,(t=>i===o.KEY_UP||i===o.KEY_DOWN?n.J.isTag(t,"br"):Boolean(t)),c);if(!t&&(e||i!==o.KEY_UP&&n.J.isText(r)&&0!==d.startOffset)||t&&(e||i!==o.KEY_DOWN&&n.J.isText(r)&&r.nodeValue&&d.startOffset!==r.nodeValue.length))return}const u=t.getInstance(a.X,t.o),h=n.J.closest(c,"table",t.editor);let p=null;const f=i===o.KEY_LEFT||e.shiftKey,g=()=>(0, s.call)(f?n.J.prev:n.J.next,c,n.J.isCell,h);switch(i){case o.KEY_TAB:case o.KEY_LEFT:p=g(),p||(u.appendRow(h,!!f&&h.querySelector("tr"),!f),p=g());break;case o.KEY_UP:case o.KEY_DOWN:{const t=u.formalMatrix(h),[e,n]=u.formalCoordinate(h,c);i===o.KEY_UP?void 0!==t[e-1]&&(p=t[e-1][n]):void 0!==t[e+1]&&(p=t[e+1][n]);}}if(p){if(t.e.fire("hidePopup hideResizer"),p.firstChild)i===o.KEY_TAB?t.s.select(p,!0):t.s.setCursorIn(p,i===o.KEY_RIGHT||i===o.KEY_DOWN);else {const e=t.createInside.element("br");p.appendChild(e),t.s.setCursorBefore(e);}return t.synchronizeValues(),!1}}));}));},94291:function(t,e,i){var o=i(71842),n=i(65147),r=i(97369),s=i(931),a=i(67447),l=i.n(a),c=i(36115);c.T.prototype.table={selectionCellStyle:"border: 1px double #1e88e5 !important;",useExtraClassesOptions:!1},s.I.set("table",l()),c.T.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:(t,e,i,s)=>{const a=s.control,l=a.data&&a.data.rows?a.data.rows:10,c=a.data&&a.data.cols?a.data.cols:10,d=t.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">'+(()=>{if(!t.o.table.useExtraClassesOptions)return "";const e=[];if(a.data){const t=a.data.classList;Object.keys(t).forEach((i=>{e.push(`<label class="jodit_vertical_middle"><input class="jodit-checkbox" value="${i}" type="checkbox"/>${t[i]}</label>`);}));}return e.join("")})()+'</div></div><label class="jodit-form__center"><span>1</span> × <span>1</span></label></form>'),u=d.querySelectorAll("span")[0],h=d.querySelectorAll("span")[1],p=d.querySelector(".jodit-form__container"),f=d.querySelector(".jodit-form__options"),g=[],m=l*c;for(let e=0;m>e;e+=1)g[e]||g.push(t.c.element("span",{dataIndex:e}));if(t.e.on(p,"mousemove",((t,e)=>{const i=t.target;if(!o.J.isTag(i,"span"))return;const n=void 0===e||isNaN(e)?parseInt((0, r.attr)(i,"-index")||"0",10):e||0,s=Math.ceil((n+1)/c),a=n%c+1;for(let t=0;g.length>t;t+=1)g[t].className=t%c+1>a||s<Math.ceil((t+1)/c)?"":"jodit_hovered";h.textContent=a.toString(),u.textContent=s.toString();})).on(p,"touchstart mousedown",(e=>{const s=e.target;if(e.preventDefault(),e.stopImmediatePropagation(),!o.J.isTag(s,"span"))return;const a=parseInt((0, r.attr)(s,"-index")||"0",10),l=Math.ceil((a+1)/c),d=a%c+1,u=t.createInside,h=u.element("tbody"),p=u.element("table");p.appendChild(h);let g,m,b=null;for(let t=1;l>=t;t+=1){g=u.element("tr");for(let t=1;d>=t;t+=1)m=u.element("td"),b||(b=m),(0, n.css)(m,"width",(100/d).toFixed(4)+"%"),m.appendChild(u.element("br")),g.appendChild(u.text("\n")),g.appendChild(u.text("\t")),g.appendChild(m);h.appendChild(u.text("\n")),h.appendChild(g);}(0, n.$$)("input[type=checkbox]:checked",f).forEach((t=>{t.value.split(/[\s]+/).forEach((t=>{p.classList.add(t);}));})),t.editor.firstChild&&t.s.insertNode(u.text("\n"),!1,!1),t.s.insertNode(p,!1),b&&(t.s.setCursorIn(b),(0, n.scrollIntoViewIfNeeded)(b,t.editor,t.ed)),i();})),s&&s.parentElement){for(let e=0;l>e;e+=1){const i=t.c.div();for(let t=0;c>t;t+=1)i.appendChild(g[e*c+t]);p.appendChild(i);}g[0]&&(g[0].className="hovered");}return d},tooltip:"Insert table"};},76385:function(t,e,i){var o=i(56298);i(94291),o.fg.add("table",(function(t){t.registerButton({name:"table",group:"insert"});}));},31686:function(t,e,i){var o=i(65147),n=i(35265),r=i(20703),s=i(931),a=i(16116),l=i(36339),c=i.n(l),d=i(36115);s.I.set("video",c()),d.T.prototype.controls.video={popup:(t,e,i)=>{const s=new r.XV(t,[new r.Yh(t,[new r.tS(t,{name:"url",required:!0,label:"URL",placeholder:"https://",validators:["url"]})]),new r.Yh(t,[(0, n.$n)(t,"","Insert","primary").onAction((()=>s.submit()))])]),l=new r.XV(t,[new r.Yh(t,[new r.F0(t,{name:"code",required:!0,label:"Embed code"})]),new r.Yh(t,[(0, n.$n)(t,"","Insert","primary").onAction((()=>l.submit()))])]),c=[],d=e=>{t.s.restore(),t.s.insertHTML(e),i();};return t.s.save(),c.push({icon:"link",name:"Link",content:s.container},{icon:"source",name:"Code",content:l.container}),s.onSubmit((t=>{d((0, o.convertMediaUrlToVideoEmbed)(t.url));})),l.onSubmit((t=>{d(t.code);})),(0, a.Zg)(t,c)},tags:["iframe"],tooltip:"Insert youtube/vimeo video"};},38309:function(t,e,i){var o=i(56298);i(31686),o.fg.add("video",(function(t){t.registerButton({name:"video",group:"media"});}));},2805:function(t,e,i){i(36115).T.prototype.wrapNodes={exclude:new Set(["hr","style","br"]),emptyBlockAfterInit:!0};},14367:function(t,e,i){var o=i(31635),n=i(22664),r=i(71842),s=i(56298),a=i(98253),l=i(71005);i(2805);class c extends l.k{constructor(){super(...arguments),this.isSuitableStart=t=>{var e;return r.J.isText(t)&&(0, a.K)(t.nodeValue)&&(/[^\s]/.test(t.nodeValue)||(null===(e=t.parentNode)||void 0===e?void 0:e.firstChild)===t&&this.isSuitable(t.nextSibling))||this.isNotWrapped(t)&&!r.J.isTemporary(t)},this.isSuitable=t=>r.J.isText(t)||this.isNotWrapped(t),this.isNotWrapped=t=>r.J.isElement(t)&&!(r.J.isBlock(t)||r.J.isTag(t,this.j.o.wrapNodes.exclude));}afterInit(t){"br"!==t.o.enter.toLowerCase()&&t.e.on("drop.wtn focus.wtn keydown.wtn mousedown.wtn afterInit.wtn backSpaceAfterDelete.wtn",this.preprocessInput,{top:!0}).on("afterInit.wtn postProcessSetEditorValue.wtn afterCommitStyle.wtn backSpaceAfterDelete.wtn",this.postProcessSetEditorValue);}beforeDestruct(t){t.e.off(".wtn");}postProcessSetEditorValue(){const{jodit:t}=this;if(!t.isEditorMode())return;let e=t.editor.firstChild,i=!1;for(;e;){if(e=d(e,t),this.isSuitableStart(e)){i||t.s.save(),i=!0;const o=t.createInside.element(t.o.enter);for(r.J.before(e,o);e&&this.isSuitable(e);){const t=e.nextSibling;o.appendChild(e),e=t;}o.normalize(),e=o;}e=e&&e.nextSibling;}i&&(t.s.restore(),"afterInit"===t.e.current&&t.e.fire("internalChange"));}preprocessInput(){const{jodit:t}=this,e="afterInit"===t.e.current;if(!t.isEditorMode()||t.editor.firstChild||!t.o.wrapNodes.emptyBlockAfterInit&&e)return;const i=t.createInside.element(t.o.enter),o=t.createInside.element("br");r.J.append(i,o),r.J.append(t.editor,i),t.s.isFocused()&&t.s.setCursorBefore(o),t.e.fire("internalChange");}}function d(t,e){let i=t,o=t;do{if(!r.J.isElement(o)||!r.J.isLeaf(o)||r.J.isList(o.parentElement))break;{const t=r.J.findNotEmptySibling(o,!1);r.J.isTag(i,"ul")?i.appendChild(o):i=r.J.wrap(o,"ul",e.createInside),o=t;}}while(o);return i}(0, o.Cg)([n.autobind],c.prototype,"postProcessSetEditorValue",null),(0, o.Cg)([n.autobind],c.prototype,"preprocessInput",null),s.fg.add("wrapNodes",c);},88850:function(t,e,i){i(36115).T.prototype.showXPathInStatusbar=!0;},36133:function(t,e,i){var o=i(17352),n=i(71842),r=i(56298),s=i(65147),a=i(71005),l=i(34248),c=i(8809);i(88850),r.fg.add("xpath",class extends a.k{constructor(){super(...arguments),this.onContext=(t,e)=>(this.menu||(this.menu=new l.t(this.j)),this.menu.show(e.clientX,e.clientY,[{icon:"bin",title:t===this.j.editor?"Clear":"Remove",exec:()=>{t!==this.j.editor?n.J.safeRemove(t):this.j.value="",this.j.synchronizeValues();}},{icon:"select-all",title:"Select",exec:()=>{this.j.s.select(t);}}]),!1),this.onSelectPath=(t,e)=>{this.j.s.focus();const i=(0, s.attr)(e.target,"-path")||"/";if("/"===i)return this.j.execCommand("selectall"),!1;try{const t=this.j.ed.evaluate(i,this.j.editor,null,XPathResult.ANY_TYPE,null).iterateNext();if(t)return this.j.s.select(t),!1}catch(t){}return this.j.s.select(t),!1},this.tpl=(t,e,i,o)=>{const n=this.j.c.fromHTML(`<span class="jodit-xpath__item"><a role="button" data-path="${e}" title="${o}" tabindex="-1"'>${(0, s.trim)(i)}</a></span>`),r=n.firstChild;return this.j.e.on(r,"click",this.onSelectPath.bind(this,t)).on(r,"contextmenu",this.onContext.bind(this,t)),n},this.removeSelectAll=()=>{this.selectAllButton&&(this.selectAllButton.destruct(),delete this.selectAllButton);},this.appendSelectAll=()=>{this.removeSelectAll(),this.selectAllButton=(0, c.BJ)(this.j,{name:"selectall",...this.j.o.controls.selectall}),this.selectAllButton.state.size="tiny",this.container&&this.container.insertBefore(this.selectAllButton.container,this.container.firstChild);},this.calcPathImd=()=>{if(this.isDestructed)return;const t=this.j.s.current();if(this.container&&(this.container.innerHTML=o.INVISIBLE_SPACE),t){let e,i,o;n.J.up(t,(t=>{!t||this.j.editor===t||n.J.isText(t)||n.J.isComment(t)||(e=t.nodeName.toLowerCase(),i=(0, s.getXPathByElement)(t,this.j.editor).replace(/^\//,""),o=this.tpl(t,i,e,this.j.i18n("Select %s",e)),this.container&&this.container.insertBefore(o,this.container.firstChild));}),this.j.editor);}this.appendSelectAll();},this.calcPath=this.j.async.debounce(this.calcPathImd,2*this.j.defaultTimeout);}afterInit(){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",(()=>{this.j.o.showXPathInStatusbar&&this.container&&(this.j.statusbar.append(this.container),this.j.getRealMode()===o.MODE_WYSIWYG?this.calcPath():(this.container&&(this.container.innerHTML=o.INVISIBLE_SPACE),this.appendSelectAll()));})),this.calcPath());}beforeDestruct(){this.j&&this.j.events&&this.j.e.off(".xpath"),this.removeSelectAll(),this.menu&&this.menu.destruct(),n.J.safeRemove(this.container),delete this.menu,delete this.container;}});},79721:function(t,e,i){i.r(e),i.d(e,{angle_down:function(){return n.a},angle_left:function(){return s.a},angle_right:function(){return l.a},angle_up:function(){return d.a},bin:function(){return h.a},cancel:function(){return f.a},center:function(){return m.a},check:function(){return _.a},chevron:function(){return x.a},dots:function(){return y.a},eye:function(){return k.a},file:function(){return S.a},folder:function(){return T.a},info_circle:function(){return I.a},left:function(){return L.a},lock:function(){return P.a},ok:function(){return N.a},pencil:function(){return D.a},plus:function(){return O.a},resize_handler:function(){return H.a},right:function(){return V.a},save:function(){return U.a},settings:function(){return Y.a},unlock:function(){return G.a},update:function(){return Z.a},upload:function(){return tt.a},valign:function(){return it.a}});var o=i(88497),n=i.n(o),r=i(91882),s=i.n(r),a=i(14305),l=i.n(a),c=i(58446),d=i.n(c),u=i(39858),h=i.n(u),p=i(70881),f=i.n(p),g=i(60636),m=i.n(g),b=i(32013),_=i.n(b),v=i(45512),x=i.n(v),w=i(80347),y=i.n(w),j=i(95134),k=i.n(j),C=i(70697),S=i.n(C),z=i(49983),T=i.n(z),E=i(98964),I=i.n(E),A=i(8136),L=i.n(A),M=i(94806),P=i.n(M),R=i(31365),N=i.n(R),B=i(44636),D=i.n(B),q=i(36327),O=i.n(q),J=i(53328),H=i.n(J),F=i(98711),V=i.n(F),W=i(53808),U=i.n(W),$=i(20784),Y=i.n($),K=i(70999),G=i.n(K),X=i(45244),Z=i.n(X),Q=i(99876),tt=i.n(Q),et=i(14006),it=i.n(et);},57741:function(t){t.exports.default=["إبدأ في الكتابة...","حول جوديت","محرر جوديت","دليل مستخدم جوديت","يحتوي على مساعدة مفصلة للاستخدام","للحصول على معلومات حول الترخيص، يرجى الذهاب لموقعنا:","شراء النسخة الكاملة","حقوق الطبع والنشر © XDSoft.net - Chupurnov Valeriy. كل الحقوق محفوظة.","مِرْساة","فتح في نافذة جديدة","فتح المحرر في الحجم الكامل","مسح التنسيق","ملء اللون أو تعيين لون النص","إعادة","تراجع","عريض","مائل","إدراج قائمة غير مرتبة","إدراج قائمة مرتبة","محاذاة للوسط","محاذاة مثبتة","محاذاة لليسار","محاذاة لليمين","إدراج خط أفقي","إدراج صورة","ادخال الملف","إدراج فيديو يوتيوب/فيميو ","إدراج رابط","حجم الخط","نوع الخط","إدراج كتلة تنسيق","عادي","عنوان 1","عنوان 2","عنوان 3","عنوان 4","إقتباس","كود","إدراج","إدراج جدول","تقليل المسافة البادئة","زيادة المسافة البادئة","تحديد أحرف خاصة","إدراج حرف خاص","تنسيق الرسم","تغيير الوضع","هوامش","أعلى","يمين","أسفل","يسار","الأنماط","الطبقات","محاذاة","اليمين","الوسط","اليسار","--غير مضبوط--","Src","العنوان","العنوان البديل","الرابط","افتح الرابط في نافذة جديدة","الصورة","ملف","متقدم","خصائص الصورة","إلغاء","حسنا","متصفح الملفات","حدث خطأ في تحميل القائمة ","حدث خطأ في تحميل المجلدات","هل أنت واثق؟","أدخل اسم المجلد","إنشاء مجلد","أكتب إسم","إسقاط صورة","إسقاط الملف","أو أنقر","النص البديل","رفع","تصفح","الخلفية","نص","أعلى","الوسط","الأسفل","إدراج عمود قبل","إدراج عمود بعد","إدراج صف أعلى","إدراج صف أسفل","حذف الجدول","حذف الصف","حذف العمود","خلية فارغة","%d حرف","%d كلام","اضرب من خلال","أكد","حرف فوقي","مخطوطة","قطع الاختيار","اختر الكل","استراحة","البحث عن","استبدل ب","محل","معجون","اختر محتوى للصق","مصدر","بالخط العريض","مائل","شغل","صلة","إلغاء","كرر","طاولة","صورة","نظيف","فقرة","حجم الخط","فيديو","الخط","حول المحرر","طباعة","أكد","شطب","المسافة البادئة","نتوء","ملء الشاشة","الحجم التقليدي","الخط","قائمة","قائمة مرقمة","قطع","اختر الكل","قانون","فتح الرابط","تعديل الرابط","سمة Nofollow","إزالة الرابط","تحديث","لتحرير","مراجعة","URL","تحرير","محاذاة أفقية","فلتر","عن طريق التغيير","بالاسم","حسب الحجم","إضافة مجلد","إعادة","احتفظ","حفظ باسم","تغيير الحجم","حجم القطع","عرض","ارتفاع","حافظ على النسب","أن","لا","حذف","تميز","تميز %s","محاذاة عمودية","انشق، مزق","اذهب","أضف العمود","اضف سطر","رخصة %s","حذف","انقسام عمودي","تقسيم أفقي","الحدود","يشبه الكود الخاص بك HTML. تبقي كما HTML؟","الصق ك HTML","احتفظ","إدراج كنص","إدراج النص فقط","يمكنك فقط تحرير صورك الخاصة. تحميل هذه الصورة على المضيف؟","تم تحميل الصورة بنجاح على الخادم!","لوحة","لا توجد ملفات في هذا الدليل.","إعادة تسمية","أدخل اسم جديد","معاينة","تحميل","لصق من الحافظة","متصفحك لا يدعم إمكانية الوصول المباشر إلى الحافظة.","نسخ التحديد","نسخ","دائرة نصف قطرها الحدود","عرض كل","تطبيق","يرجى ملء هذا المجال","يرجى إدخال عنوان ويب","الافتراضي","دائرة","نقطة","المربعة","البحث","تجد السابقة","تجد التالي","للصق المحتوى قادم من Microsoft Word/Excel الوثيقة. هل تريد أن تبقي شكل أو تنظيفه ؟ ","كلمة لصق الكشف عن","نظيفة","أدخل اسم الفصل","اضغط البديل لتغيير حجم مخصص"];},56014:function(t){t.exports.default=["Napiš něco","O Jodit","Editor Jodit","Jodit Uživatelská příručka","obsahuje detailní nápovědu","Pro informace o licenci, prosím, přejděte na naši stránku:","Koupit plnou verzi","Copyright © XDSoft.net - Chupurnov Valeriy. Všechna práva vyhrazena.","Anchor","Otevřít v nové záložce","Otevřít v celoobrazovkovém režimu","Vyčistit formátování","Barva výplně a písma","Vpřed","Zpět","Tučné","Kurzíva","Odrážky","Číslovaný seznam","Zarovnat na střed","Zarovnat do bloku","Zarovnat vlevo","Zarovnat vpravo","Vložit horizontální linku","Vložit obrázek","Vložit soubor","Vložit video (YT/Vimeo)","Vložit odkaz","Velikost písma","Typ písma","Formátovat blok","Normální text","Nadpis 1","Nadpis 2","Nadpis 3","Nadpis 4","Citát","Kód","Vložit","Vložit tabulku","Zmenšit odsazení","Zvětšit odsazení","Vybrat speciální symbol","Vložit speciální symbol","Použít formát","Změnit mód","Okraje","horní","pravý","spodní","levý","Styly","Třídy","Zarovnání","Vpravo","Na střed","Vlevo","--nenastaveno--","src","Titulek","Alternativní text (alt)","Link","Otevřít link v nové záložce","Obrázek","soubor","Rozšířené","Vlastnosti obrázku","Zpět","Ok","Prohlížeč souborů","Chyba při načítání seznamu souborů","Chyba při načítání složek","Jste si jistý(á)?","Název složky","Vytvořit složku","název","Přetáhněte sem obrázek","Přetáhněte sem soubor","nebo klikněte","Alternativní text","Nahrát","Server","Pozadí","Text","Nahoru","Na střed","Dolu","Vložit sloupec před","Vložit sloupec za","Vložit řádek nad","Vložit řádek pod","Vymazat tabulku","Vymazat řádku","Vymazat sloupec","Vyčistit buňku","Znaky: %d","Slova: %d","Přeškrtnuto","Podtrženo","Horní index","Dolní index","Vyjmout označené","Označit vše","Zalomení","Najdi","Nahradit za","Vyměňte","Vložit","Vyber obsah pro vložení","HTML","tučně","kurzíva","štětec","odkaz","zpět","vpřed","tabulka","obrázek","guma","odstavec","velikost písma","video","písmo","о editoru","tisk","podtrženo","přeškrtnuto","zvětšit odsazení","zmenšit odsazení","celoobrazovkový režim","smrsknout","Linka","Odrážka","Číslovaný seznam","Vyjmout","Označit vše","Kód","Otevřít odkaz","Upravit odkaz","Atribut no-follow","Odstranit odkaz","Aktualizovat","Chcete-li upravit","Zobrazit","URL","Editovat","Horizontální zarovnání","Filtr","Dle poslední změny","Dle názvu","Dle velikosti","Přidat složku","Reset","Uložit","Uložit jako...","Změnit rozměr","Ořezat","Šířka","Výška","Ponechat poměr","Ano","Ne","Vyjmout","Označit","Označit %s","Vertikální zarovnání","Rozdělit","Spojit","Přidat sloupec","Přidat řádek","Licence: %s","Vymazat","Rozdělit vertikálně","Rozdělit horizontálně","Okraj","Váš text se podobá HTML. Vložit ho jako HTML?","Vložit jako HTML","Ponechat originál","Vložit jako TEXT","Vložit pouze TEXT","Můžete upravovat pouze své obrázky. Načíst obrázek?","Obrázek byl úspěšně nahrán!","paleta","V tomto adresáři nejsou žádné soubory.","přejmenovat","Zadejte nový název","náhled","Stažení","Vložit ze schránky","Váš prohlížeč nepodporuje přímý přístup do schránky.","Kopírovat výběr","kopírování","Border radius","Zobrazit všechny","Platí","Prosím, vyplňte toto pole","Prosím, zadejte webovou adresu","Výchozí","Kruh","Dot","Quadrate","Najít","Najít Předchozí","Najít Další","Obsah, který vkládáte, je pravděpodobně z Microsoft Word / Excel. Chcete ponechat formát nebo vložit pouze text?","Detekován fragment z Wordu nebo Excelu","Vyčistit","Vložte název třídy","Stiskněte Alt pro vlastní změnu velikosti"];},95461:function(t){t.exports.default=["Bitte geben Sie einen Text ein","Über Jodit","Jodit Editor","Das Jodit Benutzerhandbuch","beinhaltet ausführliche Informationen wie Sie den Editor verwenden können.","Für Informationen zur Lizenz, besuchen Sie bitte unsere Web-Präsenz:","Vollversion kaufen","Copyright © XDSoft.net - Chupurnov Valeriy. Alle Rechte vorbehalten.","Anker","In neuer Registerkarte öffnen","Editor in voller Größe öffnen","Formatierung löschen","Füllfarbe oder Textfarbe ändern","Wiederholen","Rückgängig machen","Fett","Kursiv","Unsortierte Liste einfügen","Nummerierte Liste einfügen","Mittig ausrichten","Blocksatz","Links ausrichten","Rechts ausrichten","Horizontale Linie einfügen","Bild einfügen","Datei einfügen","Youtube/vimeo Video einfügen","Link einfügen","Schriftgröße","Schriftfamilie","Formatblock einfügen","Normal","Überschrift 1","Überschrift 2","Überschrift 3","Überschrift 4","Zitat","Code","Einfügen","Tabelle einfügen","Einzug verkleinern","Einzug vergrößern","Sonderzeichen auswählen","Sonderzeichen einfügen","Format kopieren","Änderungsmodus","Ränder","Oben","Rechts","Unten","Links","CSS Stil","CSS Klassen","Ausrichtung","Rechts","Zentriert","Links","Keine","Pfad","Titel","Alternativer Text","Link","Link in neuem Tab öffnen","Bild","Datei","Fortgeschritten","Bildeigenschaften","Abbrechen","OK","Dateibrowser","Fehler beim Laden der Liste","Fehler beim Laden der Ordner","Sind Sie sicher?","Geben Sie den Verzeichnisnamen ein","Verzeichnis erstellen","Typname","Bild hier hinziehen","Datei löschen","oder hier klicken","Alternativtext","Hochladen","Auswählen","Hintergrund","Text","Oben","Mittig","Unten","Spalte davor einfügen","Spalte danach einfügen","Zeile oberhalb einfügen","Zeile unterhalb einfügen","Tabelle löschen","Zeile löschen","Spalte löschen","Zelle leeren","Zeichen: %d","Wörter: %d","Durchstreichen","Unterstreichen","Hochstellen","Tiefstellen","Auswahl ausschneiden","Alles markieren","Pause","Suche nach","Ersetzen durch","Ersetzen","Einfügen","Wählen Sie den Inhalt zum Einfügen aus","HTML","Fett gedruckt","Kursiv","Bürste","Verknüpfung","Rückgängig machen","Wiederholen","Tabelle","Bild","Radiergummi","Absatz","Schriftgröße","Video","Schriftart","Über","Drucken","Unterstreichen","Durchstreichen","Einzug","Herausstellen","Vollgröße","Schrumpfen","die Linie","Liste von","Nummerierte Liste","Schneiden","Wählen Sie Alle aus","Code einbetten","Link öffnen","Link bearbeiten","Nofollow-Attribut","Link entfernen","Aktualisieren","Bearbeiten","Ansehen","URL","Bearbeiten","Horizontale Ausrichtung","Filter","Sortieren nach geändert","Nach Name sortieren","Nach Größe sortiert","Ordner hinzufügen","Wiederherstellen","Speichern","Speichern als","Größe ändern","Größe anpassen","Breite","Höhe","Seitenverhältnis beibehalten","Ja","Nein","Entfernen","Markieren","Markieren: %s","Vertikale Ausrichtung","Unterteilen","Vereinen","Spalte hinzufügen","Zeile hinzufügen",null,"Löschen","Vertikal unterteilen","Horizontal unterteilen","Rand","Ihr Text ähnelt HTML-Code. Als HTML beibehalten?","Als HTML einfügen?","Original speichern","Als Text einfügen","Nur Text einfügen","Sie können nur Ihre eigenen Bilder bearbeiten. Dieses Bild auf den Host herunterladen?","Das Bild wurde erfolgreich auf den Server hochgeladen!","Palette","In diesem Verzeichnis befinden sich keine Dateien.","Umbenennen","Geben Sie einen neuen Namen ein","Vorschau","Herunterladen","Aus Zwischenablage einfügen","Ihr Browser unterstützt keinen direkten Zugriff auf die Zwischenablage.","Auswahl kopieren","Kopieren","Radius für abgerundete Ecken","Alle anzeigen","Anwenden","Bitte füllen Sie dieses Feld aus","Bitte geben Sie eine Web-Adresse ein","Standard","Kreis","Punkte","Quadrate","Suchen","Suche vorherige","Weitersuchen","Der Inhalt, den Sie einfügen, stammt aus einem Microsoft Word / Excel-Dokument. Möchten Sie das Format erhalten oder bereinigen?","In Word formatierter Text erkannt","Säubern","className (CSS) einfügen","Drücken Sie Alt für benutzerdefinierte Größenanpassung"];},63837:function(t){t.exports.default={"Type something":"Start writing...",pencil:"Edit",Quadrate:"Square"};},39386:function(t){t.exports.default=["Escriba algo...","Acerca de Jodit","Jodit Editor","Guía de usuario Jodit","contiene ayuda detallada para el uso.","Para información sobre la licencia, por favor visite nuestro sitio:","Compre la versión completa","Copyright © XDSoft.net - Chupurnov Valeriy. Todos los derechos reservados.","Anclar","Abrir en nueva pestaña","Abrir editor en pantalla completa","Limpiar formato","Color de relleno o de letra","Rehacer","Deshacer","Negrita","Cursiva","Insertar lista no ordenada","Insertar lista ordenada","Alinear Centrado","Alinear Justificado","Alinear Izquierda","Alinear Derecha","Insertar línea horizontal","Insertar imagen","Insertar archivo","Insertar video de Youtube/vimeo","Insertar vínculo","Tamaño de letra","Familia de letra","Insertar bloque","Normal","Encabezado 1","Encabezado 2","Encabezado 3","Encabezado 4","Cita","Código","Insertar","Insertar tabla","Disminuir sangría","Aumentar sangría","Seleccionar caracter especial","Insertar caracter especial","Copiar formato","Cambiar modo","Márgenes","arriba","derecha","abajo","izquierda","Estilos CSS","Clases CSS","Alinear","Derecha","Centrado","Izquierda","--No Establecido--","Fuente","Título","Texto Alternativo","Vínculo","Abrir vínculo en nueva pestaña","Imagen","Archivo","Avanzado","Propiedades de imagen","Cancelar","Aceptar","Buscar archivo","Error al cargar la lista","Error al cargar las carpetas","¿Está seguro?","Entre nombre de carpeta","Crear carpeta","Entre el nombre","Soltar imagen","Soltar archivo","o click","Texto alternativo","Subir","Buscar","Fondo","Texto","Arriba","Centro","Abajo","Insertar columna antes","Interar columna después","Insertar fila arriba","Insertar fila debajo","Borrar tabla","Borrar fila","Borrar columna","Vaciar celda","Caracteres: %d","Palabras: %d","Tachado","Subrayado","superíndice","subíndice","Cortar selección","Seleccionar todo","Pausa","Buscar","Reemplazar con","Reemplazar","Pegar","Seleccionar contenido para pegar","HTML","negrita","cursiva","Brocha","Vínculo","deshacer","rehacer","Tabla","Imagen","Borrar","Párrafo","Tamaño de letra","Video","Letra","Acerca de","Imprimir","subrayar","tachar","sangría","quitar sangría","Tamaño completo","encoger","línea horizontal","lista sin ordenar","lista ordenada","Cortar","Seleccionar todo","Incluir código","Abrir vínculo","Editar vínculo","No seguir","Desvincular","Actualizar","Para editar","Ver","URL","Editar","Alineación horizontal","Filtrar","Ordenar por fecha modificación","Ordenar por nombre","Ordenar por tamaño","Agregar carpeta","Resetear","Guardar","Guardar como...","Redimensionar","Recortar","Ancho","Alto","Mantener relación de aspecto","Si","No","Quitar","Seleccionar","Seleccionar: %s","Alineación vertical","Dividir","Mezclar","Agregar columna","Agregar fila",null,"Borrar","Dividir vertical","Dividir horizontal","Borde","El código es similar a HTML. ¿Mantener como HTML?","Pegar como HTML?","Mantener","Insertar como texto","Insertar solo texto","Solo puedes editar tus propias imágenes. ¿Descargar esta imagen en el servidor?","¡La imagen se ha subido correctamente al servidor!","paleta","No hay archivos en este directorio.","renombrar","Ingresa un nuevo nombre","avance","Descargar","Pegar desde el portapapeles","Su navegador no soporta el acceso directo en el portapapeles.","Selección de copia","copia","Radio frontera","Mostrar todos los","Aplicar","Por favor, rellene este campo","Por favor, introduzca una dirección web","Predeterminado","Círculo","Punto","Cuadro","Encontrar","Buscar Anterior","Buscar Siguiente","El contenido pegado proviene de un documento de Microsoft Word/Excel. ¿Desea mantener el formato o limpiarlo?","Pegado desde Word detectado","Limpiar","Insertar nombre de clase","Presione Alt para cambiar el tamaño personalizado"];},62327:function(t){t.exports.default=["Kirjoita jotain...","Tietoja Jodit:ista","Jodit Editor","Jodit käyttäjän ohje","sisältää tarkempaa tietoa käyttämiseen","Tietoa lisensoinnista, vieraile verkkosivuillamme:","Osta täysi versio","Copyright © XDSoft.net - Chupurnov Valeriy. Kaikki oikeudet pidätetään.","Ankkuri","Avaa uudessa välilehdessä","Avaa täysikokoisena","Poista muotoilu","Täytä värillä tai aseta tekstin väri","Tee uudelleen","Peruuta","Lihavoitu","Kursiivi","Lisää järjestämätön lista","Lisää järjestetty lista","Asemoi keskelle","Asemoi tasavälein","Asemoi vasemmalle","Asemoi oikealle","Lisää vaakasuuntainen viiva","Lisää kuva","Lisää tiedosto","Lisää Youtube-/vimeo- video","Lisää linkki","Kirjasimen koko","Kirjasimen nimi","Lisää muotoilualue","Normaali","Otsikko 1","Otsikko 2","Otsikko 3","Otsikko 4","Lainaus","Koodi","Lisää","Lisää taulukko","Pienennä sisennystä","Lisää sisennystä","Valitse erikoismerkki","Lisää erikoismerkki","Maalaa muotoilu","Vaihda tilaa","Marginaalit","ylös","oikealle","alas","vasemmalle","CSS-tyylit","CSS-luokat","Asemointi","Oikea","Keskellä","Vasen","--Ei asetettu--","Fuente","Otsikko","Vaihtoehtoinen teksti","Linkki","Avaa uudessa välilehdessä","Kuva","Tiedosto","Avanzado","Kuvan ominaisuudet","Peruuta","Ok","Tiedostoselain","Virhe listan latauksessa","Virhe kansioiden latauksessa","Oletko varma?","Syötä hakemiston nimi","Luo hakemisto","Syötä nimi","Pudota kuva","Pudota tiedosto","tai klikkaa","Vaihtoehtoinen teksti","Lataa","Selaa","Tausta","Teksti","Ylös","Keskelle","Alas","Lisää sarake ennen","Lisää sarake jälkeen","Lisää rivi ylös","Lisää rivi alle","Poista taulukko","Poista rivi","Poista sarake","Tyhjennä solu","Merkit: %d","Sanat: %d","Yliviivaus","Alleviivaus","yläviite","alaviite","Leikkaa valinta","Valitse kaikki","Vaihto","Etsi arvoa","Korvaa arvolla","Korvaa","Liitä","Valitse liitettävä sisältö","HTML","lihavoitu","kursiivi","sivellin","linkki","peruuta","tee uudelleen","taulukko","kuva","pyyhekumi","kappale","tekstin koko","video","kirjasin","tietoja","tulosta","alleviivaa","yliviivaa","sisennä","pienennä sisennystä","täysikokoinen","pienennä","vaakaviiva","järjestetty lista","järjestämätön lista","leikkaa","valitse kaikki","Sisällytä koodi","Avaa linkki","Muokkaa linkkiä","Älä seuraa","Pura linkki","Päivitä","Muokkaa","Ver","URL","Muokkaa","Vaaka-asemointi","Suodatin","Järjestä muuttuneilla","Järjestä nimellä","Järjestä koolla","Lisää kansio","Nollaa","Tallenna","Tallenna nimellä ...","Muuta kokoa","Rajaa","Leveys","Korkeus","Säilytä kuvasuhde","Kyllä","Ei","Poista","Valitse","Valitse: %s","Pystyasemointi","Jaa","Yhdistä","Lisää sarake","Lisää rivi",null,"Poista","Jaa pystysuuntaisesti","Jaa vaakasuuntaisesti","Reuna","Koodi on HTML:n tapaista. Säilytetäänkö HTML?","Liitä HTML:nä?","Säilytä","Lisää tekstinä","Lisää vain teksti","Voit muokata vain omia kuvia. Lataa tämä kuva palvelimelle?","Kuva on onnistuneesti ladattu palvelimelle!","paletti","Tiedostoja ei ole","Nimeä uudelleen","Syötä uusi nimi","esikatselu","Lataa","Liitä leikepöydältä","Selaimesi ei tue suoraa pääsyä leikepöydälle.","Kopioi valinta","kopioi","Reunan pyöristys","Näytä kaikki","Käytä","Täytä tämä kenttä","Annan web-osoite","Oletus","Ympyrä","Piste","Neliö","Hae","Hae edellinen","Hae seuraava","Liitetty sisältö tulee Microsoft Word-/Excel- tiedostosta. Haluatko säilyttää muotoilun vai poistaa sen?","Word liittäminen havaittu","Tyhjennä","Lisää luokkanimi","Paina Alt muokattuun koon muuttamiseen"];},25090:function(t){t.exports.default=["Ecrivez ici","A propos de Jodit","Editeur Jodit","Guide de l'utilisateur","Aide détaillée à l'utilisation","Consulter la licence sur notre site web:","Acheter la version complète","Copyright © XDSoft.net - Chupurnov Valeriy. Tous droits réservés.","Ancre","Ouvrir dans un nouvel onglet","Ouvrir l'éditeur en pleine page","Supprimer le formattage","Modifier la couleur du fond ou du texte","Refaire","Défaire","Gras","Italique","Liste non ordonnée","Liste ordonnée","Centrer","Justifier","Aligner à gauche ","Aligner à droite","Insérer une ligne horizontale","Insérer une image","Insérer un fichier","Insérer une vidéo","Insérer un lien","Taille des caractères","Famille des caractères","Bloc formatté","Normal","Titre 1","Titre 2","Titre 3","Titre 4","Citation","Code","Insérer","Insérer un tableau","Diminuer le retrait","Retrait plus","Sélectionnez un caractère spécial","Insérer un caractère spécial","Cloner le format","Mode wysiwyg <-> code html","Marges","haut","droite","Bas","gauche","Styles","Classes","Alignement","Droite","Centre","Gauche","--Non disponible--","Source","Titre","Alternative","Lien","Ouvrir le lien dans un nouvel onglet","Image","fichier","Avancé","Propriétés de l'image","Annuler","OK","Explorateur de fichiers","Erreur de liste de chargement","Erreur de dossier de chargement","Etes-vous sûrs ?","Entrer le nom de dossier","Créer un dossier","type de fichier","Coller une image","Déposer un fichier","ou cliquer","Texte de remplacemement","Charger","Chercher","Arrière-plan","Texte","Haut","Milieu","Bas","Insérer une colonne avant","Insérer une colonne après","Insérer une ligne au dessus","Insérer une ligne en dessous","Supprimer le tableau","Supprimer la ligne","Supprimer la colonne","Vider la cellule","Symboles: %d","Mots: %d","Barrer","Souligner","exposant","indice","Couper la sélection","Tout sélectionner","Pause","Rechercher","Remplacer par","Remplacer","Coller","Choisissez le contenu à coller","la source","gras","italique","pinceau","lien","annuler","refaire","tableau","image","gomme","clause","taille de police","Video","police","à propos de l'éditeur","impression","souligné","barré","indentation","retrait","taille réelle","taille conventionnelle","la ligne","Liste","Liste numérotée","Couper","Sélectionner tout",null,"Ouvrir le lien","Modifier le lien","Attribut Nofollow","Supprimer le lien","Mettre à jour","Pour éditer","Voir","URL",null,"Alignement horizontal","Filtre","Trier par modification","Trier par nom","Trier par taille","Créer le dossier","Restaurer","Sauvegarder","Enregistrer sous","Changer la taille","Taille de garniture","Largeur","Hauteur","Garder les proportions","Oui","Non","Supprimer","Mettre en évidence","Mettre en évidence: %s","Alignement vertical","Split","aller","Ajouter une colonne","Ajouter une rangée",null,"Effacer","Split vertical","Split horizontal","Bordure","Votre texte que vous essayez de coller est similaire au HTML. Collez-le en HTML?","Coller en HTML?","Sauvegarder l'original","Coller en tant que texte","Coller le texte seulement","Vous ne pouvez éditer que vos propres images. Téléchargez cette image sur l'hôte?","L'image a été téléchargée avec succès sur le serveur!","Palette","Il n'y a aucun fichier dans ce répertoire.","renommer","Entrez un nouveau nom","Aperçu","Télécharger","Coller à partir du presse-papiers","Votre navigateur ne prend pas en charge l'accès direct au presse-papiers.","Copier la sélection","copie","Rayon des bordures","Afficher tous","Appliquer","Veuillez remplir ce champ","Veuillez entrer une adresse web","Par défaut","Cercle","Point","Quadratique","Trouver","Précédent","Suivant","Le contenu que vous insérez provient d'un document Microsoft Word / Excel. Voulez-vous enregistrer le format ou l'effacer?","C'est peut-être un fragment de Word ou Excel","Nettoyer","Insérer un nom de classe","Appuyez sur Alt pour un redimensionnement personnalisé"];},53113:function(t){t.exports.default=["הקלד משהו...","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.","מקום עיגון","פתח בכרטיסיה חדשה","פתח את העורך בחלון חדש","נקה עיצוב","שנה צבע טקסט או רקע","בצע שוב","בטל","מודגש","נטוי","הכנס רשימת תבליטים","הכנס רשימה ממוספרת","מרכז","ישר ","ישר לשמאל","ישר לימין","הכנס קו אופקי","הכנס תמונה","הכנס קובץ","הכנס סרטון וידאו מYouTube/Vimeo","הכנס קישור","גודל גופן","גופן","מעוצב מראש","רגיל","כותרת 1","כותרת 2","כותרת 3","כותרת 4","ציטוט","קוד","הכנס","הכנס טבלה","הקטן כניסה","הגדל כניסה","בחר תו מיוחד","הכנס תו מיוחד","העתק עיצוב","החלף מצב","ריווח","עליון","ימין","תחתון","שמאל","עיצוב CSS","מחלקת CSS","יישור","ימין","מרכז","שמאל","--לא נקבע--","מקור","כותרת","כיתוב חלופי","קישור","פתח בכרטיסיה חדשה","תמונה","קובץ","מתקדם","מאפייני תמונה","ביטול","אישור","סייר הקבצים","שגיאה בזמן טעינת רשימה","שגיאה בזמן טעינת תקיות","האם אתה בטוח?","הכנס שם תקיה","צור תקיה","סוג הקובץ","הסר תמונה","הסר קובץ","או לחץ","כיתוב חלופי","העלה","סייר","רקע","טקסט","עליון","מרכז","תחתון","הכנס עמודה לפני","הכנס עמודה אחרי","הכנס שורה מעל","הכנס שורה מתחת","מחק טבלה","מחק שורה","מחק עמודה","רוקן תא","תווים: %d","מילים: %d","קו חוצה","קו תחתון","superscript","subscript","גזור בחירה","בחר הכל","שבירת שורה","חפש","החלף ב","להחליף","הדבק","בחר תוכן להדבקה","HTML","מודגש","נטוי","מברשת","קישור","בטל","בצע שוב","טבלה","תמונה","מחק","פסקה","גודל גופן","וידאו","גופן","עלינו","הדפס","קו תחתון","קו חוצה","הגדל כניסה","הקטן כניסה","גודל מלא","כווץ","קו אופקי","רשימת תבליטים","רשימה ממוספרת","חתוך","בחר הכל","הוסף קוד","פתח קישור","ערוך קישור","ללא מעקב","בטל קישור","עדכן","כדי לערוך","הצג","כתובת","ערוך","יישור אופקי","סנן","מין לפי שינוי","מיין לפי שם","מיין לפי גודל","הוסף תקייה","אפס","שמור","שמור בשם...","שנה גודל","חתוך","רוחב","גובה","שמור יחס","כן","לא","הסר","בחר","נבחר: %s","יישור אנכי","פיצול","מזג","הוסף עמודה","הוסף שורה",null,"מחק","פיצול אנכי","פיצול אופקי","מסגרת","הקוד דומה לHTML, האם להשאיר כHTML","הדבק כHTML","השאר","הכנס כטקסט","הכנס טקסט בלבד","רק קבצים המשוייכים שלך ניתנים לעריכה. האם להוריד את הקובץ?","התמונה עלתה בהצלחה!","לוח","אין קבצים בספריה זו.","הונגרית","הזן שם חדש","תצוגה מקדימה","הורד","להדביק מהלוח","הדפדפן שלך לא תומך גישה ישירה ללוח.","העתק בחירה","העתק","רדיוס הגבול","הצג את כל","החל","נא למלא שדה זה","אנא הזן כתובת אינטרנט","ברירת המחדל","מעגל","נקודה","הריבוע הזה","למצוא","מצא את הקודם","חפש את הבא","התוכן המודבק מגיע ממסמך וורד/אקסל. האם ברצונך להשאיר את העיצוב או לנקותו",'זוהתה הדבקה מ"וורד"',"נקה","הכנס את שם הכיתה","לחץ על אלט לשינוי גודל מותאם אישית"];},81321:function(t){t.exports.default=["Írjon be valamit","Joditról","Jodit Editor","Jodit útmutató","további segítséget tartalmaz","További licence információkért látogassa meg a weboldalunkat:","Teljes verzió megvásárlása","Copyright © XDSoft.net - Chupurnov Valeriy. Minden jog fenntartva.","Horgony","Megnyitás új lapon","Megnyitás teljes méretben","Formázás törlése","Háttér/szöveg szín","Újra","Visszavon","Félkövér","Dőlt","Pontozott lista","Számozott lista","Középre zárt","Sorkizárt","Balra zárt","Jobbra zárt","Vízszintes vonal beszúrása","Kép beszúrás","Fájl beszúrás","Youtube videó beszúrása","Link beszúrás","Betűméret","Betűtípus","Formázott blokk beszúrása","Normál","Fejléc 1","Fejléc 2","Fejléc 3","Fejléc 4","Idézet","Kód","Beszúr","Táblázat beszúrása","Behúzás csökkentése","Behúzás növelése","Speciális karakter kiválasztása","Speciális karakter beszúrása","Kép formázása","Nézet váltása","Szegélyek","felső","jobb","alsó","bal","CSS stílusok","CSS osztályok","Igazítás","Jobbra","Középre","Balra","Nincs","Forrás","Cím","Helyettesítő szöveg","Link","Link megnyitása új lapon","Kép","Fájl","Haladó","Kép tulajdonságai","Mégsem","OK","Fájl tallózó","Hiba a lista betöltése közben","Hiba a mappák betöltése közben","Biztosan ezt szeretné?","Írjon be egy mappanevet","Mappa létrehozása","írjon be bevet","Húzza ide a képet","Húzza ide a fájlt","vagy kattintson","Helyettesítő szöveg","Feltölt","Tallóz","Háttér","Szöveg","Fent","Középen","Lent","Oszlop beszúrás elé","Oszlop beszúrás utána","Sor beszúrás fölé","Sor beszúrás alá","Táblázat törlése","Sor törlése","Oszlop törlése","Cella tartalmának törlése","Karakterek száma: %d","Szavak száma: %d","Áthúzott","Aláhúzott","Felső index","Alsó index","Kivágás","Összes kijelölése","Szünet","Keresés","Csere erre","Cserélje ki","Beillesztés","Válasszon tartalmat a beillesztéshez","HTML","Félkövér","Dőlt","Ecset","Link","Visszavon","Újra","Táblázat","Kép","Törlés","Paragráfus","Betűméret","Videó","Betű","Rólunk","Nyomtat","Aláhúzott","Áthúzott","Behúzás","Aussenseiter","Teljes méret","Összenyom","Egyenes vonal","Lista","Számozott lista","Kivág","Összes kijelölése","Beágyazott kód","Link megnyitása","Link szerkesztése","Nincs követés","Link leválasztása","Frissít","Szerkesztés","felülvizsgálat","URL","Szerkeszt","Vízszintes igazítás","Szűrő","Rendezés módosítás szerint","Rendezés név szerint","Rendezés méret szerint","Mappa hozzáadás","Visszaállít","Mentés","Mentés másként...","Átméretezés","Kivág","Szélesség","Magasság","Képarány megtartása","Igen","Nem","Eltávolít","Kijelöl","Kijelöl: %s","Függőleges igazítás","Felosztás","Összevonás","Oszlop hozzáadás","Sor hozzáadás",null,"Törlés","Függőleges felosztás","Vízszintes felosztás","Szegély","A beillesztett szöveg HTML-nek tűnik. Megtartsuk HTML-ként?","Beszúrás HTML-ként","Megtartás","Beszúrás szövegként","Csak szöveg beillesztése","Csak a saját képeit tudja szerkeszteni. Letölti ezt a képet?","Kép sikeresen feltöltve!","Palette","Er zijn geen bestanden in deze map.","átnevezés","Adja meg az új nevet","előnézet","Letöltés","Illessze be a vágólap","A böngésző nem támogatja a közvetlen hozzáférést biztosít a vágólapra.","Másolás kiválasztása","másolás","Határ sugár","Összes","Alkalmazni","Kérjük, töltse ki ezt a mezőt,","Kérjük, írja be a webcímet","Alapértelmezett","Kör","Pont","Quadrate","Találni","Megtalálja Előző","Következő Keresése","A beillesztett tartalom Microsoft Word/Excel dokumentumból származik. Meg szeretné tartani a formátumát?","Word-ből másolt szöveg","Elvetés","Helyezze be az osztály nevét","Nyomja meg az Alt egyéni átméretezés"];},4679:function(t){t.exports.default=["Ketik sesuatu","Tentang Jodit","Editor Jodit","Panduan Pengguna Jodit","mencakup detail bantuan penggunaan","Untuk informasi tentang lisensi, silakan kunjungi website:","Beli versi lengkap","Hak Cipta © XDSoft.net - Chupurnov Valeriy. Hak cipta dilindungi undang-undang.","Tautan","Buka di tab baru","Buka editor dalam ukuran penuh","Hapus Pemformatan","Isi warna atau atur warna teks","Ulangi","Batalkan","Tebal","Miring","Sisipkan Daftar Tidak Berurut","Sisipkan Daftar Berurut","Tengah","Penuh","Kiri","Kanan","Sisipkan Garis Horizontal","Sisipkan Gambar","Sisipkan Berkas","Sisipkan video youtube/vimeo","Sisipkan tautan","Ukuran font","Keluarga font","Sisipkan blok format","Normal","Heading 1","Heading 2","Heading 3","Heading 4","Kutip","Kode","Sisipkan","Sisipkan tabel","Kurangi Indentasi","Tambah Indentasi","Pilih Karakter Spesial","Sisipkan Karakter Spesial","Formar warna","Ubah mode","Batas","atas","kanan","bawah","kiri","Gaya","Class","Rata","Kanan","Tengah","Kiri","--Tidak diset--","Src","Judul","Teks alternatif","Tautan","Buka tautan di tab baru","Gambar","berkas","Lanjutan","Properti gambar","Batal","Ya","Penjelajah Berkas","Error ketika memuat list","Error ketika memuat folder","Apakah Anda yakin?","Masukkan nama Direktori","Buat direktori","ketik nama","Letakkan gambar","Letakkan berkas","atau klik","Teks alternatif","Unggah","Jelajahi","Latar Belakang","Teks","Atas","Tengah","Bawah","Sisipkan kolom sebelumnya","Sisipkan kolom setelahnya","Sisipkan baris di atasnya","Sisipkan baris di bawahnya","Hapus tabel","Hapus baris","Hapus kolom","Kosongkan cell","Karakter: %d","Kata: %d","Coret","Garis Bawah","Superskrip","Subskrip","Potong pilihan","Pilih semua","Berhenti","Mencari","Ganti dengan","Mengganti","Paste","Pilih konten untuk dipaste","sumber","tebal","miring","sikat","tautan","batalkan","ulangi","tabel","gambar","penghapus","paragraf","ukuran font","video","font","tentang","cetak","garis bawah","coret","menjorok ke dalam","menjorok ke luar","ukuran penuh","menyusut","hr","ul","ol","potong","Pilih semua","Kode embed","Buka tautan","Edit tautan","No follow","Hapus tautan","Perbarui","pensil","Mata","URL","Edit","Perataan horizontal","Filter","Urutkan berdasarkan perubahan","Urutkan berdasarkan nama","Urutkan berdasarkan ukuran","Tambah folder","Reset","Simpan","Simpan sebagai...","Ubah ukuran","Crop","Lebar","Tinggi","Jaga aspek rasio","Ya","Tidak","Copot","Pilih","Pilih %s","Rata vertikal","Bagi","Gabungkan","Tambah kolom","tambah baris","Lisensi: %s","Hapus","Bagi secara vertikal","Bagi secara horizontal","Bingkai","Kode Anda cenderung ke HTML. Biarkan sebagai HTML?","Paste sebagai HTML","Jaga","Sisipkan sebagai teks","Sisipkan hanya teks","Anda hanya dapat mengedit gambar Anda sendiri. Unduh gambar ini di host?","Gambar telah sukses diunggah ke host!","palet","Tidak ada berkas","ganti nama","Masukkan nama baru","pratinjau","Unduh","Paste dari clipboard","Browser anda tidak mendukung akses langsung ke clipboard.","Copy seleksi","copy","Border radius","Tampilkan semua","Menerapkan","Silahkan mengisi kolom ini","Silahkan masukkan alamat web","Default","Lingkaran","Dot","Kuadrat","Menemukan","Menemukan Sebelumnya","Menemukan Berikutnya","Konten dipaste dari dokumen Microsoft Word/Excel. Apakah Anda ingin tetap menjaga format atau membersihkannya?","Terdeteksi paste dari Word","Bersih","Masukkan nama kelas","Tekan Alt untuk mengubah ukuran kustom"];},31927:function(t){t.exports.default=["Scrivi qualcosa...","A proposito di Jodit","Jodit Editor","Guida utente di Jodit","contiene una guida dettagliata per l'uso.","Per informazioni sulla licenza, si prega di visitare il nostro sito web:","Acquista la versione completa","Copyright © XDSoft.net - Chupurnov Valeriy. Tutti i diritti riservati.","Link","Apri in una nuova scheda","Apri l'editor a schermo intero","Pulisci Formattazione","Colore di sfondo o del testo","Ripristina","Annulla","Grassetto","Corsivo","Inserisci lista non ordinata","Inserisci lista ordinata","Allinea al centro","Allineamento Giustificato","Allinea a Sinistra","Allinea a Destra","Inserisci una linea orizzontale","Inserisci immagine","Inserisci un file","Inserisci video Youtube/Vimeo","Inserisci link","Dimensione carattere","Tipo di font","Inserisci blocco","Normale","Intestazione 1","Intestazione 2","Intestazione 3","Intestazione 4","Citazione","Codice","Inserisci","Inserisci tabella","Riduci il rientro","Aumenta il rientro","Seleziona un carattere speciale","Inserisci un carattere speciale","Copia formato","Cambia modalita'","Margini","su","destra","giù","sinistra","Stili CSS","Classi CSS","Allinea","Destra","Centro","Sinistra","--Non Impostato--","Fonte","Titolo","Testo Alternativo","Link","Apri il link in una nuova scheda","Immagine","Archivio","Avanzato","Proprietà dell'immagine","Annulla","Accetta","Cerca file","Errore durante il caricamento dell'elenco","Errore durante il caricamento delle cartelle","Sei sicuro?","Inserisci il nome della cartella","Crea cartella","Digita il nome","Cancella immagine","Cancella file","o clicca","Testo alternativo","Carica","Sfoglia","Sfondo","Testo","Su","Centro","Sotto","Inserisci la colonna prima","Inserisci la colonna dopo","Inserisci la riga sopra","Inserisci la riga sotto","Elimina tabella","Elimina riga","Elimina colonna","Cella vuota","Caratteri: %d","Parole: %d","Barrato","Sottolineato","indice","pedice","Taglia selezione","Seleziona tutto","Pausa","Cerca per","Sostituisci con","Sostituisci","Incolla","Seleziona il contenuto da incollare","risorsa","Grassetto","Corsivo","Pennello","Link","Annulla","Ripristina","Tabella","Immagine","Gomma","Paragrafo","Dimensione del carattere","Video","Font","Approposito di","Stampa","Sottolineato","Barrato","aumenta rientro","riduci rientro","espandi","comprimi","linea orizzontale","lista non ordinata","lista ordinata","Taglia","Seleziona tutto","Includi codice","Apri link","Modifica link","Non seguire","Rimuovi link","Aggiorna","Per modificare","Recensione"," URL","Modifica","Allineamento orizzontale","Filtro","Ordina per data di modifica","Ordina per nome","Ordina per dimensione","Aggiungi cartella","Reset","Salva","Salva con nome...","Ridimensiona","Ritaglia","Larghezza","Altezza","Mantieni le proporzioni","Si","No","Rimuovi","Seleziona","Seleziona: %s","Allineamento verticala","Dividi","Fondi","Aggiungi colonna","Aggiungi riga",null,"Cancella","Dividi verticalmente","Dividi orizzontale","Bordo","Il codice è simile all'HTML. Mantieni come HTML?","Incolla come HTML","Mantieni","Inserisci come testo","Inserisci solo il testo","Puoi modificare solo le tue immagini. Vuoi scaricare questa immagine dal server?","L'immagine è stata caricata correttamente sul server!","tavolozza","Non ci sono file in questa directory.","Rinomina","Inserisci un nuovo nome","anteprima","Scarica","Incolla dagli appunti","Il tuo browser non supporta l'accesso diretto agli appunti.","Copia selezione","copia","Border radius","Mostra tutti","Applica","Si prega di compilare questo campo","Si prega di inserire un indirizzo web","Default","Cerchio","Punto","Quadrato","Trova","Trova Precedente","Trova Successivo","Il contenuto incollato proviene da un documento Microsoft Word / Excel. Vuoi mantenere il formato o pulirlo?","Incolla testo da Word rilevato","Pulisci","Inserisci il nome della classe","Premere Alt per il ridimensionamento personalizzato"];},21195:function(t){t.exports.default=["なにかタイプしてください","Joditについて","Jodit Editor","Jodit ユーザーズ・ガイド","詳しい使い方","ライセンス詳細についてはJodit Webサイトを確認ください:","フルバージョンを購入","Copyright © XDSoft.net - Chupurnov Valeriy. All rights reserved.","Anchor","新しいタブで開く","エディターのサイズ(フル/ノーマル)","書式をクリア","テキストの色","やり直し","元に戻す","太字","斜体","箇条書き","番号付きリスト","中央揃え","両端揃え","左揃え","右揃え","区切り線を挿入","画像を挿入","ファイルを挿入","Youtube/Vimeo 動画","リンクを挿入","フォントサイズ","フォント","テキストのスタイル","指定なし","タイトル1","タイトル2","タイトル3","タイトル4","引用","コード","挿入","表を挿入","インデント減","インデント増","特殊文字を選択","特殊文字を挿入","書式を貼付け","編集モード切替え","マージン","上","右","下","左","スタイル","クラス","配置","右寄せ","中央寄せ","左寄せ","指定なし","ソース","タイトル","代替テキスト","リンク","新しいタブで開く","画像","ファイル","高度な設定","画像のプロパティー","キャンセル","確定","File Browser","Error on load list","Error on load folders","Are you sure?","Enter Directory name","Create directory","type name","ここに画像をドロップ","ここにファイルをドロップ","or クリック","代替テキスト","アップロード","ブラウズ","背景","文字","上","中央","下","左に列を挿入","右に列を挿入","上に行を挿入","下に行を挿入","表を削除","行を削除","列を削除","セルを空にする","文字数: %d","単語数: %d","取り消し線","下線","上付き文字","下付き文字","切り取り","すべて選択","Pause","検索","置換","交換","貼付け","選択した内容を貼付け","source","bold","italic","brush","link","undo","redo","table","image","eraser","paragraph","fontsize","video","font","about","print","underline","strikethrough","indent","outdent","fullsize","shrink","分割線","箇条書き","番号付きリスト","切り取り","すべて選択","埋め込みコード","リンクを開く","リンクを編集","No follow","リンク解除","更新","鉛筆","サイトを確認","URL","編集","水平方向の配置","Filter","Sort by changed","Sort by name","Sort by size","Add folder","リセット","保存","Save as ...","リサイズ","Crop","幅","高さ","縦横比を保持","はい","いいえ","移除","選択","選択: %s","垂直方向の配置","分割","セルの結合","列を追加","行を追加",null,"削除","セルの分割(垂直方向)","セルの分割(水平方向)","境界線","HTMLコードを保持しますか?","HTMLで貼付け","HTMLを保持","HTMLをテキストにする","テキストだけ","You can only edit your own images. Download this image on the host?","The image has been successfully uploaded to the host!","パレット","There are no files","Rename","Enter new name","プレビュー","ダウンロード","貼り付け","お使いのブラウザはクリップボードを使用できません","コピー","copy","角の丸み","全て表示","適用","まだこの分野","を入力してくださいウェブアドレス","デフォルト","白丸","黒丸","四角","見","探前","由来","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","Clean","クラス名を挿入","カスタムサイズ変更のためのAltキーを押します"];},53414:function(t){t.exports.default=["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.","Anchor","Open in new tab","Open 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","Heading 2","Heading 3","Heading 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","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","Words: %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","underline","strikethrough","indent","outdent","fullsize","shrink","hr","ul","ol","cut","selectall","Embed code","Open link","Edit link","No follow","Unlink","Update","pencil","Eye"," 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","Vertical align","Split","Merge","Add column","Add row","License: %s","Delete","Split vertical","Split horizontal","Border","Your code is similar to HTML. Keep as HTML?","Paste as 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?","Word Paste Detected","Clean","Insert className","Press Alt for custom resizing"];},11012:function(t){t.exports.default=["무엇이든 입력하세요","Jodit에 대하여","Jodit Editor","Jodit 사용자 안내서","자세한 도움말이 들어있어요","라이센스에 관해서는 Jodit 웹 사이트를 방문해주세요:","풀 버전 구입하기","© XDSoft.net - Chupurnov Valeriy. 에게 저작권과 모든 권리가 있습니다.","Anchor","새 탭에서 열기","전체 크기로 보기","서식 지우기","글씨 색상","재실행","실행 취소","굵게","기울임","글머리 목록","번호 목록","가운데 정렬","양쪽 정렬","왼쪽 정렬","오른쪽 정렬","수평 구분선 넣기","이미지 넣기","파일 넣기","Youtube/Vimeo 동영상","링크 넣기","글꼴 크기","글꼴","블록 요소 넣기","일반 텍스트","제목 1","제목 2","제목 3","제목 4","인용","코드","붙여 넣기","테이블","들여쓰기 감소","들여쓰기 증가","특수문자 선택","특수문자 입력","페인트 형식","편집모드 변경","마진","위","오른쪽","아래","왼쪽","스타일","클래스","정렬","오른쪽으로","가운데로","왼쪽으로","--지정 안 함--","경로(src)","제목","대체 텍스트(alt)","링크","새 탭에서 열기",null,"파일","고급","이미지 속성","취소","확인","파일 탐색기","목록 불러오기 에러","폴더 불러오기","정말 진행할까요?","디렉토리 이름 입력","디렉토리 생성","이름 입력","이미지 드래그","파일 드래그","혹은 클릭","대체 텍스트","업로드","탐색","배경","텍스트","위","중앙","아래","이전 열에 삽입","다음 열에 삽입","위 행에 삽입","아래 행에 삽입","테이블 삭제","행 삭제","열 삭제","빈 셀","문자수: %d","단어수: %d","취소선","밑줄","윗첨자","아래첨자","선택 잘라내기","모두 선택","구분자","검색","대체하기","대체","붙여넣기","붙여넣을 내용 선택","HTML 소스","볼드","이탤릭","브러시","링크","실행 취소","재실행","테이블","이미지","지우개","문단","글꼴 크기","비디오","글꼴","편집기 정보","프린트","밑줄","취소선","들여쓰기","내어쓰기","전체 화면","일반 화면","구분선","글머리 목록","번호 목록","잘라내기","모두 선택","Embed 코드","링크 열기","링크 편집","No follow","링크 제거","갱신","연필","사이트 확인","URL","편집","수평 정렬","필터","변경일 정렬","이름 정렬","크기 정렬","새 폴더","초기화","저장","새로 저장하기 ...","리사이즈","크롭","가로 길이","세로 높이","비율 유지하기","네","아니오","제거","선택","선택: %s","수직 정렬","분할","셀 병합","열 추가","행 추가","라이센스: %s","삭제","세로 셀 분할","가로 셀 분할","외곽선","HTML 코드로 감지했어요. 코드인채로 붙여넣을까요?","HTML로 붙여넣기","원본 유지","텍스트로 넣기","텍스트만 넣기","외부 이미지는 편집할 수 없어요. 외부 이미지를 다운로드 할까요?","이미지를 무사히 업로드 했어요!","팔레트","파일이 없어요","이름 변경","새 이름 입력","미리보기","다운로드","클립보드 붙여넣기","사용중인 브라우저가 클립보드 접근을 지원하지 않아요.","선택 복사","복사","둥근 테두리","모두 보기","적용","이 항목을 입력해주세요!","웹 URL을 입력해주세요.","기본","원","점","정사각형","찾기","이전 찾기","다음 찾기","Microsoft Word/Excel 문서로 감지했어요. 서식을 유지한채로 붙여넣을까요?","Word 붙여넣기 감지","지우기","className 입력","사용자 지정 크기 조정에 대 한 고도 누르십시오"];},87061:function(t){t.exports.default=["Бичээд үзээрэй","Jodit-ын талаар ","Jodit програм","Jodit гарын авлага","хэрэглээний талаар дэлгэрэнгүй мэдээллийг агуулна","Лицензийн мэдээллийг манай вэб хуудаснаас авна уу:","Бүрэн хувилбар худалдан авах","Зохиогчийн эрх хамгаалагдсан © XDSoft.net - Chupurnov Valeriy. Бүх эрхийг эзэмшинэ.","Холбоо барих","Шинэ табаар нээх","Бүтэн дэлгэцээр нээх","Форматыг арилгах","Өнгөөр будах эсвэл текстийн өнгө сонгох","Дахих","Буцаах","Тод","Налуу","Тэмдэгт жагсаалт нэмэх","Дугаарт жагсаалт нэмэх","Голлож байрлуулах","Тэгшитгэн байрлуулах","Зүүнд байрлуулах","Баруунд байрлуулах","Хэвтээ зураас нэмэх","Зураг нэмэх","Файл нэмэх","Youtube/Vimeo видео нэмэх","Холбоос нэмэх","Фонтын хэмжээ","Фонтын бүл","Блок нэмэх","Хэвийн","Гарчиг 1","Гарчиг 2","Гарчиг 3","Гарчиг 4","Ишлэл","Код","Оруулах","Хүснэгт оруулах","Доголын зай хасах","Доголын зай нэмэх","Тусгай тэмдэгт сонгох","Тусгай тэмдэгт нэмэх","Зургийн формат","Горим өөрчлөх","Цаасны зай","Дээрээс","Баруунаас","Доороос","Зүүнээс","CSS стиль","CSS анги","Байрлуулах","Баруун","Төв","Зүүн","--Тодорхойгүй--","Эх үүсвэр","Гарчиг","Алтернатив текст","Холбоос","Холбоосыг шинэ хавтсанд нээх","Зураг","Файл","Дэвшилтэт","Зургийн үзүүлэлт","Цуцлах","Ok","Файлын цонх","Жагсаалт татах үед алдаа гарлаа","Хавтас татах үед алдаа гарлаа","Итгэлтэй байна уу?","Хавтсын нэр оруулах","Хавтас үүсгэх","Нэр бичих","Зураг буулгах","Файл буулгах","эсвэл товш","Алтернатив текст","Байршуулах","Үзэх","Арын зураг","Текст","Дээр","Дунд","Доор","Урд нь багана нэмэх","Ард нь багана нэмэх","Дээр нь мөр нэмэх","Доор нь мөр нэмэх","Хүснэгт устгах","Мөр устгах","Багана устгах","Нүд цэвэрлэх","Тэмдэгт: %d","Үг: %d","Дээгүүр зураас","Доогуур зураас","Дээд индекс","Доод индекс","Сонголтыг таслах","Бүгдийг сонго","Мөрийг таслах","Хайх","Үүгээр солих","Солих","Буулгах","Буулгах агуулгаа сонгоно уу","Эх үүсвэр","Тод","Налуу","Будах","Холбоос","Буцаах","Дахих","Хүснэгт","Зураг","Баллуур","Параграф","Фонтын хэмжээ","Видео","Фонт","Тухай","Хэвлэх","Доогуур зураас","Дээгүүр зураас","Догол нэмэх","Догол багасгах","Бүтэн дэлгэц","Багасга","Хаалт","Тэмдэгт жагсаалт","Дугаарласан жагсаалт","Таслах","Бүгдийг сонго","Код оруулах","Холбоос нээх","Холбоос засах","Nofollow özelliği","Холбоос салгах","Шинэчлэх","Засах","Нүд","URL","Засах","Хэвтээ эгнүүлэх","Шүүх","Сүүлд өөрчлөгдсөнөөр жагсаах","Нэрээр жагсаах","Хэмжээгээр жагсаах","Хавтас нэмэх","Буцаах","Хадгалах","Өөрөөр хадгалах","Хэмжээг өөрчил","Тайрах","Өргөн","Өндөр","Харьцааг хадгал","Тийм","Үгүй","Арилга","Сонго","Сонго: %s","Босоо эгнүүлэх","Задлах","Нэгтгэх","Багана нэмэх","Мөр нэмэх",null,"Устгах","Баганаар задлах","Мөрөөр задлах","Хүрээ","Таны код HTML кодтой адил байна. HTML форматаар үргэлжлүүлэх үү?","HTML байдлаар буулгах","Хадгалах","Текст байдлаар нэмэх","Зөвхөн текст оруулах","Та зөвхөн өөрийн зургуудаа янзлах боломжтой. Энэ зургийг өөр лүүгээ татмаар байна уу?","Зургийг хост руу амжилттай хадгалсан","Палет","Энд ямар нэг файл алга","Шинээр нэрлэх","Шинэ нэр оруулна уу","Урьдчилан харах","Татах","Самбараас хуулах ","Энэ вэб хөтчөөс самбарт хандах эрх алга.","Сонголтыг хуул","Хуулах","Хүрээний радиус","Бүгдийг харуулах","Хэрэгжүүл","Энэ талбарыг бөглөнө үү","Вэб хаягаа оруулна уу","Үндсэн","Дугуй","Цэг","Дөрвөлжин","Хайх","Өмнөхийг ол","Дараагийнхийг ол","Буулгасан агуулга Microsoft Word/Excel форматтай байна. Энэ форматыг хэвээр хадгалах уу эсвэл арилгах уу?","Word байдлаар буулгасан байна","Цэвэрлэх","Бүлгийн нэрээ оруулна уу","Хэмжээсийг шинээр өөчрлөхийн тулд Alt товчин дээр дарна уу"];},3268:function(t){t.exports.default=["Begin met typen..","Over Jodit","Jodit Editor","Jodit gebruikershandleiding","bevat gedetailleerde informatie voor gebruik.","Voor informatie over de licentie, ga naar onze website:","Volledige versie kopen","Copyright © XDSoft.net - Chupurnov Valeriy. Alle rechten voorbehouden.","Anker","Open in nieuwe tab","Editor in volledig scherm openen","Opmaak verwijderen","Vulkleur of tekstkleur aanpassen","Opnieuw","Ongedaan maken","Vet","Cursief","Geordende list invoegen","Ongeordende lijst invoegen","Centreren","Uitlijnen op volledige breedte","Links uitlijnen","Rechts uitlijnen","Horizontale lijn invoegen","Afbeelding invoegen","Bestand invoegen","Youtube/Vimeo video invoegen","Link toevoegen","Tekstgrootte","Lettertype","Format blok invoegen","Normaal","Koptekst 1","Koptekst 2","Koptekst 3","Koptekst 4","Citaat","Code","Invoegen","Tabel invoegen","Inspringing verkleinen","Inspringing vergroten","Symbool selecteren","Symbool invoegen","Opmaak kopieren","Modus veranderen","Marges","Boven","Rechts","Onder","Links","CSS styles","CSS classes","Uitlijning","Rechts","Gecentreerd","Links","--Leeg--","Src","Titel","Alternatieve tekst","Link","Link in nieuwe tab openen","Afbeelding","Bestand","Geavanceerd","Afbeeldingseigenschappen","Annuleren","OK","Bestandsbrowser","Fout bij het laden van de lijst","Fout bij het laden van de mappenlijst","Weet je het zeker?","Geef de map een naam","Map aanmaken","Type naam","Sleep hier een afbeelding naartoe","Sleep hier een bestand naartoe","of klik","Alternatieve tekst","Uploaden","Bladeren","Achtergrond","Tekst","Boven","Midden","Onder","Kolom invoegen (voor)","Kolom invoegen (na)","Rij invoegen (boven)","Rij invoegen (onder)","Tabel verwijderen","Rij verwijderen","Kolom verwijderen","Cel leegmaken","Tekens: %d","Woorden: %d","Doorstrepen","Onderstrepen","Superscript","Subscript","Selectie knippen","Selecteer alles","Enter","Zoek naar","Vervangen door","Vervangen","Plakken","Kies content om te plakken","Broncode","vet","cursief","kwast","link","ongedaan maken","opnieuw","tabel","afbeelding","gum","paragraaf","lettergrootte","video","lettertype","over","afdrukken","onderstreept","doorgestreept","inspringen","minder inspringen","volledige grootte","kleiner maken","horizontale lijn","lijst","genummerde lijst","knip","alles selecteren","Embed code","Link openen","Link aanpassen","Niet volgen","link verwijderen","Updaten","Om te bewerken","Recensie"," URL","Bewerken","Horizontaal uitlijnen","Filteren","Sorteren op wijzigingsdatum","Sorteren op naam","Sorteren op grootte","Map toevoegen","Herstellen","Opslaan","Opslaan als ...","Grootte aanpassen","Bijknippen","Breedte","Hoogte","Verhouding behouden","Ja","Nee","Verwijderen","Selecteren","Selecteer: %s","Verticaal uitlijnen","Splitsen","Samenvoegen","Kolom toevoegen","Rij toevoegen",null,"Verwijderen","Verticaal splitsen","Horizontaal splitsen","Rand","Deze code lijkt op HTML. Als HTML behouden?","Invoegen als HTML","Origineel behouden","Als tekst invoegen","Als onopgemaakte tekst invoegen","Je kunt alleen je eigen afbeeldingen aanpassen. Deze afbeelding downloaden?","De afbeelding is succesvol geüploadet!","Palette","Er zijn geen bestanden in deze map.","Hernoemen","Voer een nieuwe naam in","Voorvertoning","Download","Plakken van klembord","Uw browser ondersteunt geen directe toegang tot het klembord.","Selectie kopiëren","kopiëren","Border radius","Toon alle","Toepassen","Vul dit veld in","Voer een webadres in","Standaard","Cirkel","Punt","Kwadraat","Zoeken","Vorige Zoeken","Volgende Zoeken","De geplakte tekst is afkomstig van een Microsoft Word/Excel document. Wil je de opmaak behouden of opschonen?","Word-tekst gedetecteerd","Opschonen","Voeg de klassenaam in","Druk op Alt voor aangepaste grootte"];},97834:function(t){t.exports.default=["Napisz coś","O Jodit","Edytor Jodit","Instrukcja Jodit","zawiera szczegółowe informacje dotyczące użytkowania.","Odwiedź naszą stronę, aby uzyskać więcej informacji na temat licencji:","Zakup pełnej wersji","Copyright © XDSoft.net - Chupurnov Valeriy. Wszystkie prawa zastrzeżone.","Kotwica","Otwórz w nowej zakładce","Otwórz edytor w pełnym rozmiarze","Wyczyść formatowanie","Kolor wypełnienia lub ustaw kolor tekstu","Ponów","Cofnij","Pogrubienie","Kursywa","Wstaw listę wypunktowaną","Wstaw listę numeryczną","Wyśrodkuj","Wyjustuj","Wyrównaj do lewej","Wyrównaj do prawej","Wstaw linię poziomą","Wstaw grafikę","Wstaw plik","Wstaw film Youtube/vimeo","Wstaw link","Rozmiar tekstu","Krój czcionki","Wstaw formatowanie","Normalne","Nagłówek 1","Nagłówek 2","Nagłówek 3","Nagłówek 4","Cytat","Kod","Wstaw","Wstaw tabelę","Zmniejsz wcięcie","Zwiększ wcięcie","Wybierz znak specjalny","Wstaw znak specjalny","Malarz formatów","Zmień tryb","Marginesy","Górny","Prawy","Dolny","Levy","Style CSS","Klasy CSS","Wyrównanie","Prawa","środek","Lewa","brak","Źródło","Tytuł","Tekst alternatywny","Link","Otwórz w nowej zakładce","Grafika","Plik","Zaawansowane","Właściwości grafiki","Anuluj","OK","Przeglądarka plików","Błąd ładowania listy plików","Błąd ładowania folderów","Czy jesteś pewien?","Wprowadź nazwę folderu","Utwórz folder","wprowadź nazwę","Upuść plik graficzny","Upuść plik","lub kliknij tu","Tekst alternatywny","Wczytaj","Przeglądaj","Tło","Treść","Góra","Środek","Dół","Wstaw kolumnę przed","Wstaw kolumnę po","Wstaw wiersz przed","Wstaw wiersz po","Usuń tabelę","Usuń wiersz","Usuń kolumnę","Wyczyść komórkę","Znaki: %d","Słowa: %d","Przekreślenie","Podkreślenie","indeks górny","index dolny","Wytnij zaznaczenie","Wybierz wszystko","Przerwa","Szukaj","Zamień na","Wymienić","Wklej","Wybierz zawartość do wklejenia","HTML","pogrubienie","kursywa","pędzel","link","cofnij","ponów","tabela","grafika","wyczyść","akapit","rozmiar czcionki","wideo","czcionka","O programie","drukuj","podkreślenie","przekreślenie","wcięcie","wycięcie","pełen rozmiar","przytnij","linia pozioma","lista","lista numerowana","wytnij","zaznacz wszystko","Wstaw kod","otwórz link","edytuj link","Atrybut no-follow","Usuń link","Aktualizuj","edytuj","szukaj","URL","Edytuj","Wyrównywanie w poziomie","Filtruj","Sortuj wg zmiany","Sortuj wg nazwy","Sortuj wg rozmiaru","Dodaj folder","wyczyść","zapisz","zapisz jako","Zmień rozmiar","Przytnij","Szerokość","Wysokość","Zachowaj proporcje","Tak","Nie","Usuń","Wybierz","Wybierz: %s","Wyrównywanie w pionie","Podziel","Scal","Dodaj kolumnę","Dodaj wiersz",null,"Usuń","Podziel w pionie","Podziel w poziomie","Obramowanie","Twój kod wygląda jak HTML. Zachować HTML?","Wkleić jako HTML?","Oryginalny tekst","Wstaw jako tekst","Wstaw tylko treść","Możesz edytować tylko swoje grafiki. Czy chcesz pobrać tą grafikę?","Grafika została pomyślnienie dodana na serwer","Paleta","Brak plików.","zmień nazwę","Wprowadź nową nazwę","podgląd","pobierz","Wklej ze schowka","Twoja przeglądarka nie obsługuje schowka","Kopiuj zaznaczenie","kopiuj","Zaokrąglenie krawędzi","Pokaż wszystkie","Zastosuj","Proszę wypełnić to pole","Proszę, wpisz adres sieci web","Domyślnie","Koło","Punkt","Kwadrat","Znaleźć","Znaleźć Poprzednie","Znajdź Dalej","Wklejany tekst pochodzi z dokumentu Microsoft Word/Excel. Chcesz zachować ten format czy wyczyścić go? ","Wykryto tekst w formacie Word","Wyczyść","Wstaw nazwę zajęć","Naciśnij Alt, aby zmienić rozmiar"];},86433:function(t){t.exports.default=["Escreva algo...","Sobre o Jodit","Editor Jodit","Guia de usuário Jodit","contém ajuda detalhada para o uso.","Para informação sobre a licença, por favor visite nosso site:","Compre a versão completa","Copyright © XDSoft.net - Chupurnov Valeriy. Todos os direitos reservados.","Link","Abrir em nova aba","Abrir editor em tela cheia","Limpar formatação","Cor de preenchimento ou cor do texto","Refazer","Desfazer","Negrito","Itálico","Inserir lista não ordenada","Inserir lista ordenada","Centralizar","Justificar","Alinhar à Esquerda","Alinhar à Direita","Inserir linha horizontal","Inserir imagem","Inserir arquivo","Inserir vídeo do Youtube/vimeo","Inserir link","Tamanho da letra","Fonte","Inserir bloco","Normal","Cabeçalho 1","Cabeçalho 2","Cabeçalho 3","Cabeçalho 4","Citação","Código","Inserir","Inserir tabela","Diminuir recuo","Aumentar recuo","Selecionar caractere especial","Inserir caractere especial","Copiar formato","Mudar modo","Margens","cima","direta","baixo","esquerda","Estilos CSS","Classes CSS","Alinhamento","Direita","Centro","Esquerda","--Não Estabelecido--","Fonte","Título","Texto Alternativo","Link","Abrir link em nova aba","Imagem","Arquivo","Avançado","Propriedades da imagem","Cancelar","Ok","Procurar arquivo","Erro ao carregar a lista","Erro ao carregar as pastas","Você tem certeza?","Escreva o nome da pasta","Criar pasta","Escreva seu nome","Soltar imagem","Soltar arquivo","ou clique","Texto alternativo","Upload","Explorar","Fundo","Texto","Cima","Meio","Baixo","Inserir coluna antes","Inserir coluna depois","Inserir linha acima","Inserir linha abaixo","Excluir tabela","Excluir linha","Excluir coluna","Limpar célula","Caracteres: %d","Palavras: %d","Tachado","Sublinhar","sobrescrito","subscrito","Cortar seleção","Selecionar tudo","Pausa","Procurar por","Substituir com","Substituir","Colar","Escolher conteúdo para colar","HTML","negrito","itálico","pincel","link","desfazer","refazer","tabela","imagem","apagar","parágrafo","tamanho da letra","vídeo","fonte","Sobre de","Imprimir","sublinhar","tachado","recuar","diminuir recuo","Tamanho completo","diminuir","linha horizontal","lista não ordenada","lista ordenada","Cortar","Selecionar tudo","Incluir código","Abrir link","Editar link","Não siga","Remover link","Atualizar","Editar","Visualizar","URL","Editar","Alinhamento horizontal","filtrar","Ordenar por modificação","Ordenar por nome","Ordenar por tamanho","Adicionar pasta","Resetar","Salvar","Salvar como...","Redimensionar","Recortar","Largura","Altura","Manter a proporção","Sim","Não","Remover","Selecionar","Selecionar: %s","Alinhamento vertical","Dividir","Mesclar","Adicionar coluna","Adicionar linha",null,"Excluir","Dividir vertical","Dividir horizontal","Borda","Seu código é similar ao HTML. Manter como HTML?","Colar como HTML?","Manter","Inserir como Texto","Inserir somente o Texto","Você só pode editar suas próprias imagens. Baixar essa imagem pro servidor?","A imagem foi enviada com sucesso para o servidor!","Palette","Não há arquivos nesse diretório.","Húngara","Digite um novo nome","preview","Baixar","Colar da área de transferência","O seu navegador não oferece suporte a acesso direto para a área de transferência.","Selecção de cópia","cópia","Border radius","Mostrar todos os","Aplicar","Por favor, preencha este campo","Por favor introduza um endereço web","Padrão","Círculo","Ponto","Quadro","Encontrar","Encontrar Anteriores","Localizar Próxima","O conteúdo colado veio de um documento Microsoft Word/Excel. Você deseja manter o formato ou limpa-lo?","Colado do Word Detectado","Limpar","Insira o nome da classe","Pressione Alt para redimensionamento personalizado"];},28359:function(t){t.exports.default=["Напишите что-либо","О Jodit","Редактор Jodit","Jodit Руководство пользователя","содержит детальную информацию по использованию","Для получения сведений о лицензии , пожалуйста, перейдите на наш сайт:","Купить полную версию","Авторские права © XDSoft.net - Чупурнов Валерий. Все права защищены.","Анкор","Открывать ссылку в новой вкладке","Открыть редактор в полном размере","Очистить форматирование","Цвет заливки или цвет текста","Повтор","Отмена","Жирный","Наклонный","Вставка маркированного списка","Вставить нумерованный список","Выровнять по центру","Выровнять по ширине","Выровнять по левому краю","Выровнять по правому краю","Вставить горизонтальную линию","Вставить изображение","Вставить файл","Вставьте видео","Вставить ссылку","Размер шрифта","Шрифт","Вставить блочный элемент","Нормальный текст","Заголовок 1","Заголовок 2","Заголовок 3","Заголовок 4","Цитата","Код","Вставить","Вставить таблицу","Уменьшить отступ","Увеличить отступ","Выберите специальный символ","Вставить специальный символ","Формат краски","Источник","Отступы","сверху","справа","снизу","слева","Стили","Классы","Выравнивание","По правому краю","По центру","По левому краю","--не устанавливать--","src","Заголовок","Альтернативный текст (alt)","Ссылка","Открывать ссылку в новом окне",null,"Файл","Расширенные","Свойства изображения","Отмена","Ок","Браузер файлов","Ошибка при загрузке списка изображений","Ошибка при загрузке списка директорий","Вы уверены?","Введите название директории","Создать директорию","введите название","Перетащите сюда изображение","Перетащите сюда файл","или нажмите","Альтернативный текст","Загрузка","Сервер","Фон","Текст"," К верху","По середине","К низу","Вставить столбец до","Вставить столбец после","Вставить ряд выше","Вставить ряд ниже","Удалить таблицу","Удалять ряд","Удалить столбец","Очистить ячейку","Символов: %d","Слов: %d","Перечеркнуть","Подчеркивание","верхний индекс","индекс","Вырезать","Выделить все","Разделитель","Найти","Заменить на","Заменить","Вставить","Выбрать контент для вставки","HTML","жирный","курсив","заливка","ссылка","отменить","повторить","таблица","Изображение","очистить","параграф","размер шрифта","видео","шрифт","о редакторе","печать","подчеркнутый","перечеркнутый","отступ","выступ","во весь экран","обычный размер","линия","Список","Нумерованный список","Вырезать","Выделить все","Код","Открыть ссылку","Редактировать ссылку","Атрибут nofollow","Убрать ссылку","Обновить","Редактировать","Просмотр","URL","Редактировать","Горизонтальное выравнивание","Фильтр","По изменению","По имени","По размеру","Добавить папку","Восстановить","Сохранить","Сохранить как","Изменить размер","Обрезать размер","Ширина","Высота","Сохранять пропорции","Да","Нет","Удалить","Выделить","Выделить: %s","Вертикальное выравнивание","Разделить","Объединить в одну","Добавить столбец","Добавить строку","Лицензия: %s","Удалить","Разделить по вертикали","Разделить по горизонтали","Рамка","Ваш текст, который вы пытаетесь вставить похож на HTML. Вставить его как HTML?","Вставить как HTML?","Сохранить оригинал","Вставить как текст","Вставить только текст","Вы можете редактировать только свои собственные изображения. Загрузить это изображение на ваш сервер?","Изображение успешно загружено на сервер!","палитра","В данном каталоге нет файлов","Переименовать","Введите новое имя","Предпросмотр","Скачать","Вставить из буфера обмена","Ваш браузер не поддерживает прямой доступ к буферу обмена.","Скопировать выделенное","копия","Радиус границы","Показать все","Применить","Пожалуйста, заполните это поле","Пожалуйста, введите веб-адрес","По умолчанию","Круг","Точка","Квадрат","Найти","Найти Предыдущие","Найти Далее","Контент который вы вставляете поступает из документа Microsoft Word / Excel. Вы хотите сохранить формат или очистить его?","Возможно это фрагмент Word или Excel","Почистить","Вставить название класса","Нажмите Alt для изменения пользовательского размера"];},68368:function(t){t.exports.default=["Bir şeyler yaz","Jodit Hakkında","Jodit Editor","Jodit Kullanım Kılavuzu","kullanım için detaylı bilgiler içerir","Lisans hakkında bilgi için lütfen web sitemize gidin:","Tam versiyonunu satın al","Copyright © XDSoft.net - Chupurnov Valeriy. Tüm hakları saklıdır.","Bağlantı","Yeni sekmede aç","Editörü tam ekranda aç","Stili temizle","Renk doldur veya yazı rengi seç","Yinele","Geri Al","Kalın","İtalik","Sırasız Liste Ekle","Sıralı Liste Ekle","Ortala","Kenarlara Yasla","Sola Yasla","Sağa Yasla","Yatay Çizgi Ekle","Resim Ekle","Dosya Ekle","Youtube/Vimeo Videosu Ekle","Bağlantı Ekle","Font Boyutu","Font Ailesi","Blok Ekle","Normal","Başlık 1","Başlık 2","Başlık 3","Başlık 4","Alıntı","Kod","Ekle","Tablo Ekle","Girintiyi Azalt","Girintiyi Arttır","Özel Karakter Seç","Özel Karakter Ekle","Resim Biçimi","Mod Değiştir","Boşluklar","Üst","Sağ","Alt","Sol","CSS Stilleri","CSS Sınıfları","Hizalama","Sağ","Ortalı","Sol","Belirsiz","Kaynak","Başlık","Alternatif Yazı","Link","Bağlantıyı yeni sekmede aç","Resim","Dosya","Gelişmiş","Resim özellikleri","İptal","Tamam","Dosya Listeleyici","Liste yüklenirken hata oluştu","Klasörler yüklenirken hata oluştur","Emin misiniz?","Dizin yolu giriniz","Dizin oluştur","İsim yaz","Resim bırak","Dosya bırak","veya tıkla","Alternatif yazı","Yükle","Gözat","Arka plan","Yazı","Üst","Orta","Aşağı","Öncesine kolon ekle","Sonrasına kolon ekle","Üstüne satır ekle","Altına satır ekle","Tabloyu sil","Satırı sil","Kolonu sil","Hücreyi temizle","Harfler: %d","Kelimeler: %d","Üstü çizili","Alt çizgi","Üst yazı","Alt yazı","Seçilimi kes","Tümünü seç","Satır sonu","Ara","Şununla değiştir","Değiştir","Yapıştır","Yapıştırılacak içerik seç","Kaynak","Kalın","italik","Fırça","Bağlantı","Geri al","Yinele","Tablo","Resim","Silgi","Paragraf","Font boyutu","Video","Font","Hakkında","Yazdır","Alt çizgi","Üstü çizili","Girinti","Çıkıntı","Tam ekran","Küçült","Ayraç","Sırasız liste","Sıralı liste","Kes","Tümünü seç","Kod ekle","Bağlantıyı aç","Bağlantıyı düzenle","Nofollow özelliği","Bağlantıyı kaldır","Güncelle","Düzenlemek için","Yorumu","URL","Düzenle","Yatay hizala","Filtre","Değişime göre sırala","İsme göre sırala","Boyuta göre sırala","Klasör ekle","Sıfırla","Kaydet","Farklı kaydet","Boyutlandır","Kırp","Genişlik","Yükseklik","En boy oranını koru","Evet","Hayır","Sil","Seç","Seç: %s","Dikey hizala","Ayır","Birleştir","Kolon ekle","Satır ekle",null,"Sil","Dikey ayır","Yatay ayır","Kenarlık","Kodunuz HTML koduna benziyor. HTML olarak devam etmek ister misiniz?","HTML olarak yapıştır","Sakla","Yazı olarak ekle","Sadece yazıyı ekle","Sadece kendi resimlerinizi düzenleyebilirsiniz. Bu görseli kendi hostunuza indirmek ister misiniz?","Görsel başarıyla hostunuza yüklendi","Palet","Bu dizinde dosya yok","Yeniden isimlendir","Yeni isim girin","Ön izleme","İndir","Panodan yapıştır ","Tarayıcınız panoya doğrudan erişimi desteklemiyor.","Seçimi kopyala","Kopyala","Sınır yarıçapı","Tümünü Göster","Uygula","Lütfen bu alanı doldurun","Lütfen bir web adresi girin","Varsayılan","Daire","Nokta","Kare","Bul","Öncekini Bul","Sonrakini Bul","Der Inhalt, den Sie einfügen, stammt aus einem Microsoft Word / Excel-Dokument. Möchten Sie das Format erhalten oder löschen?","Word biçiminde yapıştırma algılandı","Temizle","Sınıf adı girin","Özel yeniden boyutlandırma için Alt tuşuna basın"];},25182:function(t){t.exports.default=["输入一些内容","关于Jodit","Jodit Editor","开发者指南","使用帮助","有关许可证的信息,请访问我们的网站:","购买完整版本","Copyright © XDSoft.net - Chupurnov Valeriy. 版权所有","Anchor","在新窗口打开","全屏编辑","清除样式","颜色","重做","撤销","粗体","斜体","符号列表","编号","居中","对齐文本","左对齐","右对齐","分割线","图片","文件","视频","链接","字号","字体","格式块","默认","标题1","标题2","标题3","标题4","引用","代码","插入","表格","减少缩进","增加缩进","选择特殊符号","特殊符号","格式复制","改变模式","外边距(Margins)","top","right","bottom","left","样式","Classes","对齐方式","居右","居中","居左","无","Src","Title","Alternative","Link","在新窗口打开链接","图片","file","高级","图片属性","取消","确定","文件管理","加载list错误","加载folders错误","你确定吗?","输入路径","创建路径","type name","拖动图片到此","拖动文件到此","或点击","Alternative text","上传","浏览","背景色","文字","顶部","中间","底部","在之前插入列","在之后插入列","在之前插入行","在之后插入行","删除表格","删除行","删除列","清除内容","字符数: %d","单词数: %d","删除线","下划线","上标","下标","剪切","全选","Break","查找","替换为","替换","粘贴","选择内容并粘贴","源码","粗体","斜体","颜色","链接","撤销","重做","表格","图片","橡皮擦","段落","字号","视频","字体","关于","打印","下划线","上出现","增加缩进","减少缩进","全屏","收缩","分割线","无序列表","顺序列表","剪切","全选","嵌入代码","打开链接","编辑链接","No follow","取消链接","更新","铅笔","预览","URL","编辑","水平对齐","筛选","修改时间排序","名称排序","大小排序","新建文件夹","重置","保存","保存为","调整大小","剪切","宽","高","保持长宽比","是","不","移除","选择","选择: %s","垂直对齐","拆分","合并","添加列","添加行",null,"删除","垂直拆分","水平拆分","边框","你粘贴的文本是一段html代码,是否保留源格式","html粘贴","保留源格式","把html代码视为普通文本","只保留文本","你只能编辑你自己的图片。Download this image on the host?","图片上传成功","调色板","此目录中沒有文件。","重命名","输入新名称","预览","下载","粘贴从剪贴板","你浏览器不支持直接访问的剪贴板。","复制选中内容","复制","边界半径","显示所有","应用","请填写这个字段","请输入一个网址","默认","圆圈","点","方形","搜索","查找上一个","查找下一个","正在粘贴 Word/Excel 的文本,是否保留源格式?","文本粘贴","匹配目标格式","插入班级名称","按Alt自定义调整大小"];},44906:function(t){t.exports.default=["輸入一些內容","關於Jodit","Jodit Editor","開發者指南","使用幫助","相關授權條款資訊,請造訪我們的網站:","購買完整版本","Copyright © XDSoft.net - Chupurnov Valeriy. All rights reserved.","錨點","在新分頁開啟","全螢幕編輯","清除樣式","顏色","取消復原","復原","粗體","斜體","項目符號清單","編號清單","置中","文字對齊","靠左","靠右","分割線","圖片","檔案","插入 youtube/vimeo 影片","插入連結","文字大小","字型","格式化區塊","內文","標題1","標題2","標題3","標題4","引文","程式碼","插入","表格","減少縮排","增加縮排","選擇特殊符號","特殊符號","格式複製","檢視原始碼","邊距","上","右","下","左","樣式","Classes","對齊方式","靠右","置中","靠左","無","Src","Title","替代","Link","在新分頁開啟連結","圖片","檔案","進階","圖片屬性","取消","確定","檔案瀏覽","清單載入錯誤","資料夾載入錯誤","您確定嗎?","輸入路徑","創建路徑","type name","拖曳圖片至此","拖曳檔案至此","或點擊","替代文字","上傳","瀏覽","背景色","文字","頂部","中間","底部","插入左方欄","插入右方欄","插入上方列","插入下方列","刪除表格","刪除整列","刪除整欄","清除內容","字元數: %d","單字數: %d","刪除線","底線","上標","下標","剪下","全選","斷行","尋找","取代為","取代","貼上","選擇內容並貼上","原始碼","粗體","斜體","顏色","連結","復原","取消復原","表格","圖片","橡皮擦","段落","文字大小","影片","字型","關於","列印","底線","刪除線","增加縮排","減少縮排","全螢幕","縮減","分隔線","項目符號清單","編號清單","剪下","全選","嵌入程式碼","打開連結","編輯連結","No follow","取消連結","更新","鉛筆","查看","URL",null,"水平對齊","篩選","修改時間排序","名稱排序","大小排序","新增資料夾","重設","儲存","另存為...","調整大小","裁切","寬","高","維持長寬比","是","否","移除","選擇","選擇: %s","垂直對齊","分割","合併","新增欄","新增列",null,"刪除","垂直分割","水平分割","邊框","您的程式碼與 HTML 類似,是否貼上 HTML 格式?","貼上 HTML","保留原始格式","以純文字貼上","僅貼上內文","您只能編輯您自己的圖片。是否下載此圖片?","圖片上傳成功","調色盤","沒有檔案","重新命名","輸入新名稱","預覽","下載","從剪貼簿貼上","瀏覽器無法存取剪貼簿。","複製已選取項目","複製","邊框圓角","顯示全部","應用","請輸入此欄位","請輸入網址","預設","圓圈","點","方形","尋找","尋找上一個","尋找下一個","正在貼上 Word/Excel 文件的內容,是否保留原始格式?","貼上 Word 格式","清除格式","插入 class 名稱","按住 Alt 以調整自訂大小"];},928:function(t){t.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>';},31230:function(t){t.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>';},54522:function(t){t.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>';},17995:function(t){t.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>';},86634:function(t){t.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>';},91115:function(t){t.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 270 270"> <path d="M 255.9537,58.150081 237.69527,40.997278 c -1.49414,-1.375593 -3.43653,-2.077427 -5.37891,-2.077427 -1.94239,0 -3.88478,0.701834 -5.37892,2.077427 L 29.919751,226.1128 c -2.988286,2.77926 -2.988286,7.32714 0,10.13447 L 48.148295,253.372 c 1.46426,1.37559 3.406646,2.1055 5.378915,2.1055 1.972268,0 3.884771,-0.72991 5.378914,-2.1055 L 221.34935,100.73732 255.9537,68.284552 c 2.9584,-2.807333 2.9584,-7.355212 0,-10.134471 z M 251.17244,63.79282 221.34935,91.781927 201.89561,73.506191 231.68882,45.48901 c 0.20918,-0.140367 0.38847,-0.224587 0.62754,-0.224587 0.23906,0 0.44824,0.08422 0.59765,0.224587 l 18.25843,17.152803 c 0,0 0.23906,0.33688 0.23906,0.561467 0,0.224586 -0.0896,0.4211 -0.23906,0.58954 z" style="stroke-width:2.8964;stroke-opacity:1" /> <path d="m 48.626421,116.87948 10.578532,23.10435 c 0.83672,1.82477 3.615826,1.85284 4.452546,0 l 10.937126,-23.52545 c 2.629692,-5.69888 7.470715,-10.24676 13.536935,-12.71722 l 25.07172,-10.274833 c 1.94239,-0.786053 1.94239,-3.396873 0,-4.182926 L 88.13156,79.008563 C 82.06534,76.53811 77.224317,71.990231 74.594625,66.291346 L 63.657499,42.737824 c -0.83672,-1.824766 -3.615826,-1.824766 -4.452546,0 L 48.267826,66.291346 C 45.638135,71.990231 40.797112,76.53811 34.730891,79.008563 L 9.6292894,89.311474 c -1.9423859,0.786054 -1.9423859,3.3688 0,4.182926 l 25.5498446,10.61172 c 6.036338,2.49852 10.847478,7.07448 13.477169,12.77336 z" style="stroke-width:2.8964;fill-opacity:1;stroke-opacity:1" /> <path d="m 111.79878,33.136746 13.56682,5.642739 c 3.19747,1.319446 5.76739,3.761826 7.14201,6.793745 l 5.61797,12.268044 c 0.44825,0.982567 1.91251,0.982567 2.36075,0 l 5.79727,-12.492631 c 1.4045,-3.031919 3.97442,-5.446225 7.20177,-6.765672 l 13.29788,-5.446225 c 1.0459,-0.4211 1.0459,-1.796693 0,-2.217793 l -13.29788,-5.446225 c -3.22735,-1.319447 -5.79727,-3.733753 -7.20177,-6.765672 L 140.48633,6.2144248 c -0.44824,-0.9825664 -1.9125,-0.9825664 -2.36075,0 l -5.79727,12.4926312 c -1.4045,3.031919 -3.97442,5.446225 -7.20177,6.765672 l -13.32776,5.474298 c -1.01601,0.4211 -1.0459,1.796693 0,2.217793 z" style="stroke-width:2.8964;fill-opacity:1" /> <path d="m 233.09331,192.98627 -14.13459,-5.7831 c -3.40665,-1.40367 -6.12599,-3.95834 -7.62013,-7.1587 l -6.15587,-13.27868 c -0.47813,-1.03872 -2.03203,-1.03872 -2.51016,0 l -6.15587,13.27868 c -1.49414,3.20036 -4.21348,5.75503 -7.62013,7.1587 l -14.13459,5.81118 c -1.10567,0.44917 -1.10567,1.90898 0,2.35816 l 14.40354,5.97961 c 3.40664,1.40367 6.12598,3.98642 7.59024,7.21485 l 5.97658,13.02602 c 0.47812,1.03872 2.03203,1.03872 2.51016,0 l 6.15586,-13.25061 c 1.49415,-3.20036 4.21349,-5.75503 7.62013,-7.1587 l 14.1346,-5.7831 c 1.10566,-0.44917 1.10566,-1.90899 0,-2.35816 z" style="stroke-width:2.8964;stroke-opacity:1" /> </svg>';},1916:function(t){t.exports='<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox="0 0 24 24"> <g transform="scale(1.2 1.2) translate(-2 -0.5)"> <path d="M 22,12.5 A 1.49995,1.49995 0 0 0 20.50006,11 H 20 V 10 A 3,3 0 0 0 17,7 H 13 V 5.7226 a 2,2 0 1 0 -2,0 V 7 H 7 a 3,3 0 0 0 -3,3 v 1 H 3.49994 a 1.5,1.5 0 0 0 0,3 H 4 v 1 A 3.00128,3.00128 0 0 0 6.20251,17.89282 1.03113,1.03113 0 0 1 7,18.86975 v 0.716 a 0.99928,0.99928 0 0 0 1.00726,1.002 0.9792,0.9792 0 0 0 0.69983,-0.29486 l 2,-2 A 1,1 0 0 1 11.41425,18 H 17 a 3,3 0 0 0 3,-3 v -1 h 0.50006 A 1.49995,1.49995 0 0 0 22,12.5 Z M 19,15 a 2.00226,2.00226 0 0 1 -2,2 H 11.41425 A 1.987,1.987 0 0 0 10,17.58575 l -2,2 v -0.716 A 2.02082,2.02082 0 0 0 6.46771,16.92865 2.00439,2.00439 0 0 1 5,15 V 10 A 2.00226,2.00226 0 0 1 7,8 h 10 a 2.00222,2.00222 0 0 1 2,2 z M 10,12.5 A 1.5,1.5 0 1 1 8.5,11 1.5,1.5 0 0 1 10,12.5 Z m 7,0 A 1.5,1.5 0 1 1 15.5,11 1.5,1.5 0 0 1 17,12.5 Z"/> </g> </svg>';},52450:function(t){t.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>';},41111:function(t){t.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>';},49972:function(t){t.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>';},45062:function(t){t.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>';},18605:function(t){t.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>';},83389:function(t){t.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>';},93267:function(t){t.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>';},71948:function(t){t.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>';},51457:function(t){t.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>';},23602:function(t){t.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>';},86899:function(t){t.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>';},95320:function(t){t.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>';},45674:function(t){t.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>';},3843:function(t){t.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>';},48842:function(t){t.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>';},25501:function(t){t.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>';},29348:function(t){t.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>';},24772:function(t){t.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>';},66547:function(t){t.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>';},89097:function(t){t.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>';},64831:function(t){t.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>';},67176:function(t){t.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>';},14017:function(t){t.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>';},38681:function(t){t.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>';},64637:function(t){t.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>';},94190:function(t){t.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>';},51957:function(t){t.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>';},71940:function(t){t.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>';},48007:function(t){t.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>';},43218:function(t){t.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>';},80515:function(t){t.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>';},223:function(t){t.exports='<svg 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>';},95032:function(t){t.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>';},73533:function(t){t.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>';},40037:function(t){t.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>';},83207:function(t){t.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>';},59827:function(t){t.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>';},34045:function(t){t.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>';},39199:function(t){t.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>';},21917:function(t){t.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>';},9103:function(t){t.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>';},22227:function(t){t.exports='<svg viewBox="0 0 16 16" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"> <path d="M8,11c1.657,0,3-1.343,3-3V3c0-1.657-1.343-3-3-3S5,1.343,5,3v5C5,9.657,6.343,11,8,11z"/> <path d="M13,8V6h-1l0,1.844c0,1.92-1.282,3.688-3.164,4.071C6.266,12.438,4,10.479,4,8V6H3v2c0,2.414,1.721,4.434,4,4.899V15H5v1h6 v-1H9v-2.101C11.279,12.434,13,10.414,13,8z"/> </svg>';},49989:function(t){t.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>';},81875:function(t){t.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>';},67447:function(t){t.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>';},36339:function(t){t.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>';},88497:function(t){t.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>';},91882:function(t){t.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>';},14305:function(t){t.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>';},58446:function(t){t.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>';},39858:function(t){t.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>';},70881:function(t){t.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>';},60636:function(t){t.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>';},32013:function(t){t.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>';},45512:function(t){t.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>';},80347:function(t){t.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>';},95134:function(t){t.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>';},70697:function(t){t.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>';},49983:function(t){t.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>';},98964:function(t){t.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>';},8136:function(t){t.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>';},94806:function(t){t.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>';},31365:function(t){t.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>';},44636:function(t){t.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>';},36327:function(t){t.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>';},53328:function(t){t.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>';},98711:function(t){t.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>';},53808:function(t){t.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>';},20784:function(t){t.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>';},70999:function(t){t.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>';},45244:function(t){t.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>';},99876:function(t){t.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>';},14006:function(t){t.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>';},28712:function(t){t.exports={assert(){}};},31635:function(t,e,i){function o(t,e,i,o){var n,r=arguments.length,s=3>r?e:null===o?o=Object.getOwnPropertyDescriptor(e,i):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(t,e,i,o);else for(var a=t.length-1;a>=0;a--)(n=t[a])&&(s=(3>r?n(s):r>3?n(e,i,s):n(e,i))||s);return r>3&&s&&Object.defineProperty(e,i,s),s}i.d(e,{Cg:function(){return o}}),"function"==typeof SuppressedError&&SuppressedError;}},e={};function i(o){var n=e[o];if(void 0!==n)return n.exports;var r=e[o]={exports:{}};return t[o](r,r.exports,i),r.exports}i.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return i.d(e,{a:e}),e},i.d=function(t,e){for(var o in e)i.o(e,o)&&!i.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:e[o]});},i.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},i.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0});};var o={};return function(){i.r(o),i.d(o,{CommitMode:function(){return d},Jodit:function(){return a.x}});var t=i(9823),e=(i(88222),i(17352)),n=i(22664),r=i(37435),s=i(79721),a=i(46173),l=i(74470);Object.keys(e).forEach((t=>{a.x[t]=e[t];}));const c=t=>"__esModule"!==t;Object.keys(s).filter(c).forEach((t=>{r.Icon.set(t.replace("_","-"),s[t]);})),Object.keys(r).filter(c).forEach((e=>{var i;const o=r[e],n=(0, t.Tn)(null===(i=o.prototype)||void 0===i?void 0:i.className)?o.prototype.className():e;(0, t.Kg)(n)&&(a.x.modules[n]=o);})),Object.keys(n).filter(c).forEach((t=>{a.x.decorators[t]=n[t];})),["Confirm","Alert","Prompt"].forEach((t=>{a.x[t]=r[t];})),Object.keys(l.A).filter(c).forEach((t=>{a.x.lang[t]=l.A[t];}));class d{}}(),o}();},428:(t,e,i)=>{var o=i(134);function n(){}function r(){}r.resetWarningCache=n,t.exports=function(){function t(t,e,i,n,r,s){if(s!==o){var a=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw a.name="Invariant Violation",a}}function e(){return t}t.isRequired=t;var i={array:t,bigint:t,bool:t,func:t,number:t,object:t,string:t,symbol:t,any:t,arrayOf:e,element:t,elementType:t,instanceOf:e,node:t,objectOf:e,oneOf:e,oneOfType:e,shape:e,exact:e,checkPropTypes:r,resetWarningCache:n};return i.PropTypes=i,i};},526:(t,e,i)=>{t.exports=i(428)();},134:t=>{t.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED";},78:(t,e,i)=>{i.d(e,{Z:()=>m});var o=i(499),n=i.n(o),r=i(922),s=i.n(r),a=i(155),l=i.n(a),c=new URL(i(683),i.b),d=new URL(i(963),i.b),u=new URL(i(98),i.b),h=s()(n()),p=l()(c),f=l()(d),g=l()(u);h.push([t.id,`/*!\n * jodit - Jodit is an awesome and useful wysiwyg editor with filebrowser\n * Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/jodit/)\n * Version: v4.2.10\n * Url: https://xdsoft.net/jodit/\n * License(s): MIT\n */\n\t/*!\n * jodit - Jodit is an awesome and useful wysiwyg editor with filebrowser\n * Author: Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/jodit/)\n * Version: v4.2.10\n * Url: https://xdsoft.net/jodit/\n * License(s): MIT\n */\n\t.jodit-about{padding:20px}.jodit-about a{color:#459ce7;text-decoration:none}.jodit-about a:focus,.jodit-about a:hover{color:#23527c;outline:0;text-decoration:underline}.jodit-about div{margin-bottom:calc(8px/2)}.jodit-ui-group{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-negative:0;flex-shrink:0;-ms-flex-wrap:wrap;flex-wrap:wrap;max-width:100%}.jodit-ui-group_line_true{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch}.jodit-ui-group_separated_true:not(:last-child):not(.jodit-ui-group_before-spacer_true):after{border-left:0;border-right:1px solid #dadada;content:"";cursor:default;margin:2px;padding:0}.jodit-ui-group:last-child{border-bottom:0}.jodit-ui-list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.jodit-ui-list_mode_vertical .jodit-ui-group{background-color:transparent;border:0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.jodit-ui-list_mode_vertical .jodit-toolbar-button{height:auto;min-height:calc(14px + calc((14px - 4px)*2) + 2px*2)}.jodit-ui-list_mode_vertical .jodit-toolbar-button__button{cursor:pointer;height:auto;min-height:calc(14px + calc((14px - 4px)*2) + 2px*2);width:100%}.jodit-ui-list_mode_vertical .jodit-toolbar-button__text:not(:empty){-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.jodit-ui-separator{border-left:0;border-right:1px solid #dadada;cursor:default;margin:2px;padding:0}.jodit-ui-break{border-top:1px solid #dadada;-ms-flex-preferred-size:100%;flex-basis:100%;height:0!important;width:0}.jodit-ui-spacer{-webkit-box-flex:1;-ms-flex:1;flex:1}.jodit-ui-button-icon-text__icon{display:none}.jodit-ui-button-icon-text__icon:not(:empty){display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.jodit-ui-button-icon-text__text{display:none}.jodit-ui-button-icon-text__text:not(:empty){display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:14px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.jodit-ui-button-icon-text_context_menu .jodit-ui-button-icon-text__text{-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;padding-left:8px;position:relative}.jodit-ui-button-icon-text_context_menu .jodit-ui-button-icon-text__text:before{border-left:1px solid #dadada;content:"";height:35px;left:0;position:absolute;top:calc(8px*-1)}.jodit-ui-button-icon-text__icon:not(:empty)+.jodit-ui-button-icon-text__text:not(:empty){margin-left:8px}.jodit-ui-button-icon-text__icon:empty+.jodit-ui-button-icon-text__text:not(:empty){padding:0 8px}.jodit-ui-button-clear,.jodit-ui-button_clear{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:0;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:border-box;box-sizing:border-box;font-style:normal;outline:0;padding:0;position:relative;text-align:center;text-decoration:none;text-transform:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.jodit-ui-button-sizes{height:34px;min-width:34px}.jodit-ui-button-sizes .jodit-icon{height:14px;width:14px}.jodit-ui-button-sizes button{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:34px;min-width:34px;padding:0}.jodit-ui-button-sizes_text-icons_true button{padding:0 8px}.jodit-ui-button-sizes_size_tiny{height:16px;min-width:16px}.jodit-ui-button-sizes_size_tiny .jodit-icon{height:8px;width:8px}.jodit-ui-button-sizes_size_tiny button{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:16px;min-width:16px;padding:0}.jodit-ui-button-sizes_size_tiny_text-icons_true button{padding:0 8px}.jodit-ui-button-sizes_size_xsmall{height:22px;min-width:22px}.jodit-ui-button-sizes_size_xsmall .jodit-icon{height:10px;width:10px}.jodit-ui-button-sizes_size_xsmall button{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:22px;min-width:22px;padding:0}.jodit-ui-button-sizes_size_xsmall_text-icons_true button{padding:0 8px}.jodit-ui-button-sizes_size_small{height:28px;min-width:28px}.jodit-ui-button-sizes_size_small .jodit-icon{height:12px;width:12px}.jodit-ui-button-sizes_size_small button{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:28px;min-width:28px;padding:0}.jodit-ui-button-sizes_size_small_text-icons_true button{padding:0 8px}.jodit-ui-button-sizes_size_large{height:40px;min-width:40px}.jodit-ui-button-sizes_size_large .jodit-icon{height:16px;width:16px}.jodit-ui-button-sizes_size_large button{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:40px;min-width:40px;padding:0}.jodit-ui-button-sizes_size_large_text-icons_true button{padding:0 8px}.jodit-ui-button-variants_variant_outline{border:1px solid #dadada}.jodit-ui-button-variants_variant_default{background-color:#e3e3e3;color:#212529}.jodit-ui-button-variants_variant_default svg{fill:#212529;stroke:#212529}.jodit-ui-button-variants_variant_default [disabled]{opacity:.7}.jodit-ui-button-variants_variant_default:hover:not([disabled]){background-color:#c9cdd1;color:#212529}.jodit-ui-button-variants_variant_default:hover:not([disabled]) svg{fill:#212529;stroke:#212529}.jodit-ui-button-variants_variant_default:active:not([disabled]){background-color:#dae0e5;color:#212529}.jodit-ui-button-variants_variant_default:active:not([disabled]) svg{fill:#212529;stroke:#212529}.jodit-ui-button-variants_variant_default:focus:not([disabled]){outline:1px dashed #dae0e5}.jodit-ui-button-variants_variant_primary{background-color:#007bff;color:#fff}.jodit-ui-button-variants_variant_primary svg{fill:#fff;stroke:#fff}.jodit-ui-button-variants_variant_primary [disabled]{opacity:.7}.jodit-ui-button-variants_variant_primary:hover:not([disabled]){background-color:#0069d9;color:#fff}.jodit-ui-button-variants_variant_primary:hover:not([disabled]) svg{fill:#fff;stroke:#fff}.jodit-ui-button-variants_variant_primary:active:not([disabled]){background-color:#0062cc;color:#fff}.jodit-ui-button-variants_variant_primary:active:not([disabled]) svg{fill:#fff;stroke:#fff}.jodit-ui-button-variants_variant_primary:focus:not([disabled]){outline:1px dashed #0062cc}.jodit-ui-button-variants_variant_secondary{background-color:#d8d8d8;border-radius:0;color:#212529}.jodit-ui-button-variants_variant_secondary svg{fill:#212529;stroke:#212529}.jodit-ui-button-variants_variant_secondary [disabled]{opacity:.7}.jodit-ui-button-variants_variant_secondary:hover:not([disabled]){background-color:#c9cdd1;color:#212529}.jodit-ui-button-variants_variant_secondary:hover:not([disabled]) svg{fill:#212529;stroke:#212529}.jodit-ui-button-variants_variant_secondary:active:not([disabled]){background-color:#dae0e5;color:#212529}.jodit-ui-button-variants_variant_secondary:active:not([disabled]) svg{fill:#212529;stroke:#212529}.jodit-ui-button-variants_variant_secondary:focus:not([disabled]){outline:1px dashed #dae0e5}.jodit-ui-button-variants_variant_success{background-color:#28a745;color:#fff}.jodit-ui-button-variants_variant_success svg{fill:#fff;stroke:#fff}.jodit-ui-button-variants_variant_success [disabled]{opacity:.7}.jodit-ui-button-variants_variant_success:hover:not([disabled]){background-color:#218838;color:#fff}.jodit-ui-button-variants_variant_success:hover:not([disabled]) svg{fill:#fff;stroke:#fff}.jodit-ui-button-variants_variant_success:active:not([disabled]){background-color:#1e7e34;color:#fff}.jodit-ui-button-variants_variant_success:active:not([disabled]) svg{fill:#fff;stroke:#fff}.jodit-ui-button-variants_variant_success:focus:not([disabled]){outline:1px dashed #1e7e34}.jodit-ui-button-variants_variant_danger{background-color:#dc3545;color:#fff}.jodit-ui-button-variants_variant_danger svg{fill:#fff;stroke:#fff}.jodit-ui-button-variants_variant_danger [disabled]{opacity:.7}.jodit-ui-button-variants_variant_danger:hover:not([disabled]){background-color:#c82333;color:#fff}.jodit-ui-button-variants_variant_danger:hover:not([disabled]) svg{fill:#fff;stroke:#fff}.jodit-ui-button-variants_variant_danger:active:not([disabled]){background-color:#bd2130;color:#fff}.jodit-ui-button-variants_variant_danger:active:not([disabled]) svg{fill:#fff;stroke:#fff}.jodit-ui-button-variants_variant_danger:focus:not([disabled]){outline:1px dashed #bd2130}.jodit-ui-button-style{border-radius:3px;padding:0 8px}.jodit-ui-button{-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:rgba(0,0,0,.75);display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.jodit-ui-button-style{-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:rgba(0,0,0,.75);display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.jodit-ui-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:0;border-radius:3px;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer;font-style:normal;height:34px;min-width:34px;outline:0;padding:0;padding:0 8px;position:relative;text-align:center;text-decoration:none;text-transform:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.jodit-ui-button:focus-visible:not([disabled]){background-color:#dcdcdc;opacity:1;outline:0}.jodit-ui-button:hover:not([disabled]){background-color:#dcdcdc;opacity:1;outline:0}.jodit-ui-button:active:not([disabled]){background-color:hsla(0,0%,86%,.4);outline:0}.jodit-ui-button[aria-pressed=true]:not([disabled]){background-color:hsla(0,0%,86%,.4);outline:0}.jodit-ui-button[aria-pressed=true]:hover:not([disabled]){background-color:hsla(0,0%,86%,.6)}.jodit-ui-button[disabled]{opacity:.3;pointer-events:none}.jodit-ui-button .jodit-icon{height:14px;width:14px}.jodit-ui-button button{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:34px;min-width:34px;padding:0}.jodit-ui-button_text-icons_true button{padding:0 8px}.jodit-ui-button_size_tiny{height:16px;min-width:16px}.jodit-ui-button_size_tiny .jodit-icon{height:8px;width:8px}.jodit-ui-button_size_tiny button{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:16px;min-width:16px;padding:0}.jodit-ui-button_size_tiny_text-icons_true button{padding:0 8px}.jodit-ui-button_size_xsmall{height:22px;min-width:22px}.jodit-ui-button_size_xsmall .jodit-icon{height:10px;width:10px}.jodit-ui-button_size_xsmall button{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:22px;min-width:22px;padding:0}.jodit-ui-button_size_xsmall_text-icons_true button{padding:0 8px}.jodit-ui-button_size_small{height:28px;min-width:28px}.jodit-ui-button_size_small .jodit-icon{height:12px;width:12px}.jodit-ui-button_size_small button{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:28px;min-width:28px;padding:0}.jodit-ui-button_size_small_text-icons_true button{padding:0 8px}.jodit-ui-button_size_large{height:40px;min-width:40px}.jodit-ui-button_size_large .jodit-icon{height:16px;width:16px}.jodit-ui-button_size_large button{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:40px;min-width:40px;padding:0}.jodit-ui-button_size_large_text-icons_true button{padding:0 8px}.jodit-ui-button__icon{display:none}.jodit-ui-button__icon:not(:empty){display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.jodit-ui-button__text{display:none}.jodit-ui-button__text:not(:empty){display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:14px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.jodit-ui-button_context_menu .jodit-ui-button__text{-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;padding-left:8px;position:relative}.jodit-ui-button_context_menu .jodit-ui-button__text:before{border-left:1px solid #dadada;content:"";height:35px;left:0;position:absolute;top:calc(8px*-1)}.jodit-ui-button__icon:not(:empty)+.jodit-ui-button__text:not(:empty){margin-left:8px}.jodit-ui-button__icon:empty+.jodit-ui-button__text:not(:empty){padding:0 8px}.jodit-ui-button:focus:not([disabled]){outline:1px dashed #b5d6fd}.jodit-ui-button_variant_outline{border:1px solid #dadada}.jodit-ui-button_variant_default{background-color:#e3e3e3;color:#212529}.jodit-ui-button_variant_default svg{fill:#212529;stroke:#212529}.jodit-ui-button_variant_default [disabled]{opacity:.7}.jodit-ui-button_variant_default:hover:not([disabled]){background-color:#c9cdd1;color:#212529}.jodit-ui-button_variant_default:hover:not([disabled]) svg{fill:#212529;stroke:#212529}.jodit-ui-button_variant_default:active:not([disabled]){background-color:#dae0e5;color:#212529}.jodit-ui-button_variant_default:active:not([disabled]) svg{fill:#212529;stroke:#212529}.jodit-ui-button_variant_default:focus:not([disabled]){outline:1px dashed #dae0e5}.jodit-ui-button_variant_primary{background-color:#007bff;color:#fff}.jodit-ui-button_variant_primary svg{fill:#fff;stroke:#fff}.jodit-ui-button_variant_primary [disabled]{opacity:.7}.jodit-ui-button_variant_primary:hover:not([disabled]){background-color:#0069d9;color:#fff}.jodit-ui-button_variant_primary:hover:not([disabled]) svg{fill:#fff;stroke:#fff}.jodit-ui-button_variant_primary:active:not([disabled]){background-color:#0062cc;color:#fff}.jodit-ui-button_variant_primary:active:not([disabled]) svg{fill:#fff;stroke:#fff}.jodit-ui-button_variant_primary:focus:not([disabled]){outline:1px dashed #0062cc}.jodit-ui-button_variant_secondary{background-color:#d8d8d8;border-radius:0;color:#212529}.jodit-ui-button_variant_secondary svg{fill:#212529;stroke:#212529}.jodit-ui-button_variant_secondary [disabled]{opacity:.7}.jodit-ui-button_variant_secondary:hover:not([disabled]){background-color:#c9cdd1;color:#212529}.jodit-ui-button_variant_secondary:hover:not([disabled]) svg{fill:#212529;stroke:#212529}.jodit-ui-button_variant_secondary:active:not([disabled]){background-color:#dae0e5;color:#212529}.jodit-ui-button_variant_secondary:active:not([disabled]) svg{fill:#212529;stroke:#212529}.jodit-ui-button_variant_secondary:focus:not([disabled]){outline:1px dashed #dae0e5}.jodit-ui-button_variant_success{background-color:#28a745;color:#fff}.jodit-ui-button_variant_success svg{fill:#fff;stroke:#fff}.jodit-ui-button_variant_success [disabled]{opacity:.7}.jodit-ui-button_variant_success:hover:not([disabled]){background-color:#218838;color:#fff}.jodit-ui-button_variant_success:hover:not([disabled]) svg{fill:#fff;stroke:#fff}.jodit-ui-button_variant_success:active:not([disabled]){background-color:#1e7e34;color:#fff}.jodit-ui-button_variant_success:active:not([disabled]) svg{fill:#fff;stroke:#fff}.jodit-ui-button_variant_success:focus:not([disabled]){outline:1px dashed #1e7e34}.jodit-ui-button_variant_danger{background-color:#dc3545;color:#fff}.jodit-ui-button_variant_danger svg{fill:#fff;stroke:#fff}.jodit-ui-button_variant_danger [disabled]{opacity:.7}.jodit-ui-button_variant_danger:hover:not([disabled]){background-color:#c82333;color:#fff}.jodit-ui-button_variant_danger:hover:not([disabled]) svg{fill:#fff;stroke:#fff}.jodit-ui-button_variant_danger:active:not([disabled]){background-color:#bd2130;color:#fff}.jodit-ui-button_variant_danger:active:not([disabled]) svg{fill:#fff;stroke:#fff}.jodit-ui-button_variant_danger:focus:not([disabled]){outline:1px dashed #bd2130}.jodit-popup{background:0 0;border:0;-webkit-box-shadow:0 4px 1px -2px rgba(76,76,76,.2),0 3px 3px 0 rgba(76,76,76,.15),0 1px 4px 0 rgba(76,76,76,.13);box-shadow:0 4px 1px -2px rgba(76,76,76,.2),0 3px 3px 0 rgba(76,76,76,.15),0 1px 4px 0 rgba(76,76,76,.13);display:inline-block;float:none;height:auto;margin:0;max-width:none;outline:0;padding:0;position:static;position:fixed;-webkit-transform:translateZ(0);transform:translateZ(0);width:auto;z-index:10000001}.jodit-popup__content{background:#fff;font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:14px;max-height:300px;overflow:auto;padding:8px;overflow-scrolling:touch}.jodit-popup_padding_false .jodit-popup__content{padding:0}.jodit-popup_max-height_false .jodit-popup__content{max-height:-webkit-fit-content;max-height:-moz-fit-content;max-height:fit-content}.jodit-context-menu{background:0 0;border:0;-webkit-box-shadow:0 4px 1px -2px rgba(76,76,76,.2),0 3px 3px 0 rgba(76,76,76,.15),0 1px 4px 0 rgba(76,76,76,.13);box-shadow:0 4px 1px -2px rgba(76,76,76,.2),0 3px 3px 0 rgba(76,76,76,.15),0 1px 4px 0 rgba(76,76,76,.13);display:inline-block;float:none;height:auto;margin:0;max-width:none;outline:0;padding:0;position:static;position:fixed;-webkit-transform:translateZ(0);transform:translateZ(0);width:auto;z-index:10000001;z-index:30000005}.jodit-context-menu{font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:14px}.jodit-context-menu__content{font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:14px}.jodit-context-menu__content{background:#fff;max-height:300px;overflow:auto;padding:8px;overflow-scrolling:touch}.jodit-context-menu_padding_false .jodit-context-menu__content{padding:0}.jodit-context-menu_max-height_false .jodit-context-menu__content{max-height:-webkit-fit-content;max-height:-moz-fit-content;max-height:fit-content}.jodit-context-menu .jodit-ui-button{display:-webkit-box;display:-ms-flexbox;display:flex}.jodit-context-menu button{width:100%}.jodit-context-menu_theme_dark{background-color:#575757}.jodit-ui-button-group{margin-bottom:8px}.jodit-ui-button-group__label{color:#a5a5a5;display:block;font-size:.8em;margin-bottom:calc(8px/4)}.jodit-ui-button-group__options{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.jodit-ui-button-group .jodit-ui-button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.jodit-ui-button-group .jodit-ui-button+.jodit-ui-button{border-bottom-left-radius:0;border-left:1px solid hsla(0,0%,86%,.4);border-top-left-radius:0}.jodit-ui-button-group .jodit-ui-button[aria-pressed=true]:not([disabled]){background-color:#dcdcdc;border-left:0;-webkit-box-shadow:inset 0 0 3px 0 #4c4c4c;box-shadow:inset 0 0 3px 0 #4c4c4c;color:#4c4c4c;outline:0}.jodit-ui-button-group .jodit-ui-button[aria-pressed=true]:not([disabled])+.jodit-ui-button{border:0}.jodit-ui-tooltip{-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;background-clip:padding-box;background-color:rgba(0,0,0,.7);border-radius:4px;-webkit-box-shadow:0 0 0 0 #e5e5e5,0 8px 20px 0 rgba(0,0,0,.15);box-shadow:0 0 0 0 #e5e5e5,0 8px 20px 0 rgba(0,0,0,.15);color:#fff;font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:11px;line-height:1.4;max-width:120px;opacity:0;outline:none;position:fixed;text-rendering:optimizelegibility;-webkit-transform:translate(-50%,calc(8px/2));-ms-transform:translate(-50%,calc(8px/2));transform:translate(-50%,calc(8px/2));-webkit-transition:opacity .2s ease 0s;transition:opacity .2s ease 0s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:normal;width:auto;z-index:30000006}@media (max-width:768px){.jodit-ui-tooltip{display:none}}.jodit-ui-tooltip__content{padding:calc(8px/2) calc(8px*1.5)}.jodit-ui-tooltip.jodit-ui-tooltip_visible_true{opacity:1}.jodit-ui-block{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch;margin-bottom:8px}.jodit-ui-block_width_full{width:100%}.jodit-ui-block_align_full{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.jodit-ui-block_align_right{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.jodit-ui-block_padding_true{padding:8px}.jodit-ui-label{color:#a5a5a5;display:block;font-size:.8em;margin-bottom:calc(8px/4)}.jodit-ui-input{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-bottom:8px}.jodit-ui-input__input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border:0;border-radius:0;-webkit-box-sizing:border-box;box-sizing:border-box;font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:14px;height:32px;line-height:1.2;outline:none;padding:0 8px;width:100%}.jodit-ui-input__input[disabled]{background-color:#f0f0f0;color:#dadada}.jodit-ui-input__input_has-error_true{border-color:#ff3b3b}.jodit-ui-input__input:focus{outline:0}.jodit-ui-input_theme_dark .jodit-ui-input__input{background-color:#dadada}.jodit-ui-input_has-error_true .jodit-ui-input__input{border-color:#ff3b3b}.jodit-ui-input__error{color:#a5a5a5;display:block;font-size:.8em;margin-bottom:calc(8px/4)}.jodit-ui-input__label{color:#a5a5a5;display:block;font-size:.8em;margin-bottom:calc(8px/4)}.jodit-ui-input__error{color:#ff3b3b}.jodit-ui-input_has-error_true .jodit-ui-input__label{color:#ff3b3b}.jodit-ui-input__wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#fff;border:1px solid #dadada;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch;min-width:200px}@media (max-width:480px){.jodit-ui-input__wrapper{min-width:140px}}.jodit-ui-input_theme_dark .jodit-ui-input__wrapper{background-color:#dadada;border-color:#dadada}.jodit-ui-input_focused_true .jodit-ui-input__wrapper{border-color:#1e88e5}.jodit-ui-input__icon:not(:empty){-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;padding:0 8px}.jodit-ui-input__icon:not(:empty) svg{height:16px;width:16px;fill:#dadada}.jodit-ui-input__icon:not(:empty)+.jodit-ui-input__input{padding-left:0}.jodit-ui-input__clear{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;opacity:.8;padding:0 8px 0 0}.jodit-ui-input__clear:active{opacity:1;-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}.jodit-ui-input__clear svg{height:12px;width:12px;fill:#dadada}.jodit-ui-input_theme_dark .jodit-ui-input__clear svg{fill:#4c4c4c}.jodit-ui-input_theme_dark .jodit-ui-input__icon svg{fill:#4c4c4c}.jodit-ui-block .jodit-ui-input{margin-bottom:0}.jodit-ui-select{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-bottom:8px}.jodit-ui-select__input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border:0;border-radius:0;-webkit-box-sizing:border-box;box-sizing:border-box;font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:14px;height:32px;line-height:1.2;outline:none;padding:0 8px;width:100%}.jodit-ui-select__input[disabled]{background-color:#f0f0f0;color:#dadada}.jodit-ui-select__input_has-error_true{border-color:#ff3b3b}.jodit-ui-select__input:focus{outline:0}.jodit-ui-select_theme_dark .jodit-ui-select__input{background-color:#dadada}.jodit-ui-select_has-error_true .jodit-ui-select__input{border-color:#ff3b3b}.jodit-ui-select__error{color:#a5a5a5;display:block;font-size:.8em;margin-bottom:calc(8px/4)}.jodit-ui-select__label{color:#a5a5a5;display:block;font-size:.8em;margin-bottom:calc(8px/4)}.jodit-ui-select__error{color:#ff3b3b}.jodit-ui-select_has-error_true .jodit-ui-select__label{color:#ff3b3b}.jodit-ui-select__wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#fff;border:1px solid #dadada;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch;min-width:200px}@media (max-width:480px){.jodit-ui-select__wrapper{min-width:140px}}.jodit-ui-select_theme_dark .jodit-ui-select__wrapper{background-color:#dadada;border-color:#dadada}.jodit-ui-select_focused_true .jodit-ui-select__wrapper{border-color:#1e88e5}.jodit-ui-select__icon:not(:empty){-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;padding:0 8px}.jodit-ui-select__icon:not(:empty) svg{height:16px;width:16px;fill:#dadada}.jodit-ui-select__icon:not(:empty)+.jodit-ui-select__input{padding-left:0}.jodit-ui-select__clear{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;opacity:.8;padding:0 8px 0 0}.jodit-ui-select__clear:active{opacity:1;-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}.jodit-ui-select__clear svg{height:12px;width:12px;fill:#dadada}.jodit-ui-select_theme_dark .jodit-ui-select__clear svg{fill:#4c4c4c}.jodit-ui-select_theme_dark .jodit-ui-select__icon svg{fill:#4c4c4c}.jodit-ui-select__input{background-image:url(${p});background-position:98% 50%;background-repeat:no-repeat;padding-right:calc(8px*2)}.jodit-ui-select_size_tiny{margin-bottom:0}.jodit-ui-select_size_tiny .jodit-ui-select__input{height:calc(32px/1.8);line-height:calc(32px/1.8)}.jodit-ui-select_variant_outline .jodit-ui-select__wrapper{border:0}.jodit-ui-select_variant_outline .jodit-ui-select__wrapper select{outline:0}.jodit-ui-select_width_auto{width:auto}.jodit-ui-select_width_auto .jodit-ui-select__wrapper{min-width:auto}.jodit-ui-text-area{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-bottom:8px;width:100%}.jodit-ui-text-area__input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border:0;border-radius:0;-webkit-box-sizing:border-box;box-sizing:border-box;font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:14px;height:32px;line-height:1.2;outline:none;padding:0 8px;width:100%}.jodit-ui-text-area__input[disabled]{background-color:#f0f0f0;color:#dadada}.jodit-ui-text-area__input_has-error_true{border-color:#ff3b3b}.jodit-ui-text-area__input:focus{outline:0}.jodit-ui-text-area_theme_dark .jodit-ui-text-area__input{background-color:#dadada}.jodit-ui-text-area_has-error_true .jodit-ui-text-area__input{border-color:#ff3b3b}.jodit-ui-text-area__error{color:#a5a5a5;display:block;font-size:.8em;margin-bottom:calc(8px/4)}.jodit-ui-text-area__label{color:#a5a5a5;display:block;font-size:.8em;margin-bottom:calc(8px/4)}.jodit-ui-text-area__error{color:#ff3b3b}.jodit-ui-text-area_has-error_true .jodit-ui-text-area__label{color:#ff3b3b}.jodit-ui-text-area__wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#fff;border:1px solid #dadada;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch;min-width:200px}@media (max-width:480px){.jodit-ui-text-area__wrapper{min-width:140px}}.jodit-ui-text-area_theme_dark .jodit-ui-text-area__wrapper{background-color:#dadada;border-color:#dadada}.jodit-ui-text-area_focused_true .jodit-ui-text-area__wrapper{border-color:#1e88e5}.jodit-ui-text-area__icon:not(:empty){-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;padding:0 8px}.jodit-ui-text-area__icon:not(:empty) svg{height:16px;width:16px;fill:#dadada}.jodit-ui-text-area__icon:not(:empty)+.jodit-ui-text-area__input{padding-left:0}.jodit-ui-text-area__clear{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;opacity:.8;padding:0 8px 0 0}.jodit-ui-text-area__clear:active{opacity:1;-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}.jodit-ui-text-area__clear svg{height:12px;width:12px;fill:#dadada}.jodit-ui-text-area_theme_dark .jodit-ui-text-area__clear svg{fill:#4c4c4c}.jodit-ui-text-area_theme_dark .jodit-ui-text-area__icon svg{fill:#4c4c4c}.jodit-ui-text-area__wrapper{-webkit-box-flex:1;-ms-flex:1;flex:1}.jodit-ui-text-area__input{height:100%;min-height:60px;padding:8px}.jodit-ui-checkbox{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin-bottom:8px}.jodit-ui-checkbox__input{margin-right:8px}.jodit-ui-checkbox_switch_true .jodit-ui-checkbox__wrapper{display:inline-block;height:34px;margin-right:8px;position:relative;width:60px}.jodit-ui-checkbox_switch_true .jodit-ui-checkbox__wrapper input{height:0;opacity:0;width:0}.jodit-ui-checkbox_switch_true .jodit-ui-checkbox__switch-slider{background-color:#ccc;border-radius:34px;cursor:pointer;inset:0;position:absolute;-webkit-transition:.4s;transition:.4s}.jodit-ui-checkbox_switch_true .jodit-ui-checkbox__switch-slider:before{background-color:#fff;border-radius:50%;bottom:4px;content:"";height:26px;left:4px;position:absolute;-webkit-transition:.4s;transition:.4s;width:26px}.jodit-ui-checkbox_switch_true.jodit-ui-checkbox_checked_true .jodit-ui-checkbox__switch-slider{background-color:#2196f3}.jodit-ui-checkbox_switch_true.jodit-ui-checkbox_checked_true .jodit-ui-checkbox__switch-slider:before{-webkit-transform:translateX(26px);-ms-transform:translateX(26px);transform:translateX(26px)}.jodit-ui-checkbox_switch_true.jodit-ui-checkbox_focused_true .jodit-ui-checkbox__switch-slider{-webkit-box-shadow:0 0 1px #2196f3;box-shadow:0 0 1px #2196f3}.jodit-ui-block .jodit-ui-checkbox{margin-bottom:0}.jodit-ui-file-input{overflow:hidden;position:relative}.jodit-ui-file-input__input{bottom:0;cursor:pointer;font-size:400px;margin:0 calc(8px*-1) 0 0;opacity:0;padding:0;position:absolute;right:0;top:0}@-webkit-keyframes a{30%{opacity:.6}60%{opacity:0}to{opacity:.6}}@keyframes a{30%{opacity:.6}60%{opacity:0}to{opacity:.6}}.jodit-progress-bar{border-radius:1px;height:2px;left:0;opacity:.7;position:absolute;top:0;z-index:2147483647}.jodit-progress-bar div{background:#b91f1f;height:2px;position:relative;-webkit-transition:width .5s ease-out,opacity .5s linear;transition:width .5s ease-out,opacity .5s linear;will-change:width,opacity}.jodit-progress-bar div:after{-webkit-animation:a 2s ease-out 0s infinite;animation:a 2s ease-out 0s infinite;border-radius:100%;-webkit-box-shadow:#b91f1f 1px 0 6px 1px;box-shadow:#b91f1f 1px 0 6px 1px;content:"";display:inline-block;height:2px;opacity:.6;position:absolute;top:0}.jodit-progress-bar div:before{-webkit-animation:a 2s ease-out 0s infinite;animation:a 2s ease-out 0s infinite;border-radius:100%;-webkit-box-shadow:#b91f1f 1px 0 6px 1px;box-shadow:#b91f1f 1px 0 6px 1px;content:"";display:inline-block;height:2px;opacity:.6;position:absolute;top:0}.jodit-progress-bar div:before{right:-80px;width:180px;clip:rect(-6px,90px,14px,-6px)}.jodit-progress-bar div:after{right:0;width:20px;clip:rect(-6px,22px,14px,8px)}.jodit-ui-messages{bottom:0;height:0;overflow:visible;position:absolute;right:0;width:0;z-index:3}.jodit-ui-message{background:#cfe2ff;border:1px solid #b6d4fe;border-radius:0.375rem;bottom:0;color:#084298;cursor:pointer;display:block;font-size:1rem;opacity:0;padding:0.5rem 1rem;position:absolute;right:calc(8px/2);-webkit-transition:opacity .1s linear,bottom .3s linear,-webkit-transform .1s ease-out;transition:opacity .1s linear,bottom .3s linear,-webkit-transform .1s ease-out;transition:opacity .1s linear,bottom .3s linear,transform .1s ease-out;transition:opacity .1s linear,bottom .3s linear,transform .1s ease-out,-webkit-transform .1s ease-out;white-space:pre}.jodit-ui-message_active_true{opacity:1}.jodit-ui-message:active{-webkit-transform:scale(.76);-ms-transform:scale(.76);transform:scale(.76)}.jodit-ui-message_variant_danger{background:#f8d7da;border-color:#f5c2c7;color:#842029}.jodit-ui-message_variant_error{background:#f8d7da;border-color:#f5c2c7;color:#842029}.jodit-ui-message_variant_secondary{background:#e2e3e5;border-color:#d3d6d8;color:#41464b}.jodit-ui-message_variant_success{background:#d1e7dd;border-color:#badbcc;color:#0f5132}.jodit-toolbar-collection,.jodit-toolbar-editor-collection{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.jodit-toolbar-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent calc(calc(14px + calc((14px - 4px)*2) + 2px*2) - 1px),#dadada calc(14px + calc((14px - 4px)*2) + 2px*2));position:relative}.jodit-toolbar-editor-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent calc(calc(14px + calc((14px - 4px)*2) + 2px*2) - 1px),#dadada calc(14px + calc((14px - 4px)*2) + 2px*2));position:relative}.jodit-toolbar-collection_mode_horizontal:after{background-color:#fff;bottom:0;content:"";display:block;height:1px;left:0;position:absolute;width:100%}.jodit-toolbar-editor-collection_mode_horizontal:after{background-color:#fff;bottom:0;content:"";display:block;height:1px;left:0;position:absolute;width:100%}.jodit-toolbar-collection_size_tiny.jodit-toolbar-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent 19px,#dadada 20px)}.jodit-toolbar-collection_size_tiny.jodit-toolbar-editor-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent 19px,#dadada 20px)}.jodit-toolbar-editor-collection_size_tiny.jodit-toolbar-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent 19px,#dadada 20px)}.jodit-toolbar-editor-collection_size_tiny.jodit-toolbar-editor-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent 19px,#dadada 20px)}.jodit-toolbar-collection_size_xsmall.jodit-toolbar-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent 25px,#dadada 26px)}.jodit-toolbar-collection_size_xsmall.jodit-toolbar-editor-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent 25px,#dadada 26px)}.jodit-toolbar-editor-collection_size_xsmall.jodit-toolbar-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent 25px,#dadada 26px)}.jodit-toolbar-editor-collection_size_xsmall.jodit-toolbar-editor-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent 25px,#dadada 26px)}.jodit-toolbar-collection_size_small.jodit-toolbar-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent 31px,#dadada 32px)}.jodit-toolbar-collection_size_small.jodit-toolbar-editor-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent 31px,#dadada 32px)}.jodit-toolbar-editor-collection_size_small.jodit-toolbar-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent 31px,#dadada 32px)}.jodit-toolbar-editor-collection_size_small.jodit-toolbar-editor-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent 31px,#dadada 32px)}.jodit-toolbar-collection_size_middle.jodit-toolbar-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent 37px,#dadada 38px)}.jodit-toolbar-collection_size_middle.jodit-toolbar-editor-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent 37px,#dadada 38px)}.jodit-toolbar-editor-collection_size_middle.jodit-toolbar-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent 37px,#dadada 38px)}.jodit-toolbar-editor-collection_size_middle.jodit-toolbar-editor-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent 37px,#dadada 38px)}.jodit-toolbar-collection_size_large.jodit-toolbar-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent 43px,#dadada 44px)}.jodit-toolbar-collection_size_large.jodit-toolbar-editor-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent 43px,#dadada 44px)}.jodit-toolbar-editor-collection_size_large.jodit-toolbar-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent 43px,#dadada 44px)}.jodit-toolbar-editor-collection_size_large.jodit-toolbar-editor-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent 43px,#dadada 44px)}.jodit-toolbar-collection_mode_vertical .jodit-ui-group,.jodit-toolbar-editor-collection_mode_vertical .jodit-ui-group{background-color:transparent;border:0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.jodit-toolbar-collection_mode_vertical .jodit-toolbar-button{height:auto;min-height:calc(14px + calc((14px - 4px)*2) + 2px*2)}.jodit-toolbar-editor-collection_mode_vertical .jodit-toolbar-button{height:auto;min-height:calc(14px + calc((14px - 4px)*2) + 2px*2)}.jodit-toolbar-collection_mode_vertical .jodit-toolbar-button__button{cursor:pointer;height:auto;min-height:calc(14px + calc((14px - 4px)*2) + 2px*2);width:100%}.jodit-toolbar-editor-collection_mode_vertical .jodit-toolbar-button__button{cursor:pointer;height:auto;min-height:calc(14px + calc((14px - 4px)*2) + 2px*2);width:100%}.jodit-toolbar-collection_mode_vertical .jodit-toolbar-button__text:not(:empty),.jodit-toolbar-editor-collection_mode_vertical .jodit-toolbar-button__text:not(:empty){-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.jodit-toolbar-collection .jodit-toolbar-button{margin:2px 1px;padding:0}.jodit-toolbar-collection .jodit-toolbar-content{margin:2px 1px;padding:0}.jodit-toolbar-collection .jodit-toolbar-select{margin:2px 1px;padding:0}.jodit-toolbar-editor-collection .jodit-toolbar-button{margin:2px 1px;padding:0}.jodit-toolbar-editor-collection .jodit-toolbar-content{margin:2px 1px;padding:0}.jodit-toolbar-editor-collection .jodit-toolbar-select{margin:2px 1px;padding:0}.jodit-dialog .jodit-toolbar-collection_mode_horizontal,.jodit-dialog .jodit-toolbar-editor-collection_mode_horizontal{background-image:none}.jodit-toolbar-button{-webkit-box-align:center;-ms-flex-align:center;align-items:center;border:1px solid transparent;border-radius:3px;display:-webkit-box;display:-ms-flexbox;display:flex;height:34px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;min-width:34px;overflow:hidden}.jodit-toolbar-button__icon{display:none}.jodit-toolbar-button__icon:not(:empty){display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.jodit-toolbar-button__text{display:none}.jodit-toolbar-button__text:not(:empty){display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:14px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.jodit-toolbar-button_context_menu .jodit-toolbar-button__text{-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;padding-left:8px;position:relative}.jodit-toolbar-button_context_menu .jodit-toolbar-button__text:before{border-left:1px solid #dadada;content:"";height:35px;left:0;position:absolute;top:calc(8px*-1)}.jodit-toolbar-button__icon:not(:empty)+.jodit-toolbar-button__text:not(:empty){margin-left:8px}.jodit-toolbar-button__icon:empty+.jodit-toolbar-button__text:not(:empty){padding:0 8px;padding:0}.jodit-toolbar-button .jodit-icon{height:14px;width:14px}.jodit-toolbar-button button{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:34px;min-width:34px;padding:0}.jodit-toolbar-button_text-icons_true button{padding:0 8px}.jodit-toolbar-button_size_tiny{height:16px;min-width:16px}.jodit-toolbar-button_size_tiny .jodit-icon{height:8px;width:8px}.jodit-toolbar-button_size_tiny button{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:16px;min-width:16px;padding:0}.jodit-toolbar-button_size_tiny_text-icons_true button{padding:0 8px}.jodit-toolbar-button_size_xsmall{height:22px;min-width:22px}.jodit-toolbar-button_size_xsmall .jodit-icon{height:10px;width:10px}.jodit-toolbar-button_size_xsmall button{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:22px;min-width:22px;padding:0}.jodit-toolbar-button_size_xsmall_text-icons_true button{padding:0 8px}.jodit-toolbar-button_size_small{height:28px;min-width:28px}.jodit-toolbar-button_size_small .jodit-icon{height:12px;width:12px}.jodit-toolbar-button_size_small button{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:28px;min-width:28px;padding:0}.jodit-toolbar-button_size_small_text-icons_true button{padding:0 8px}.jodit-toolbar-button_size_large{height:40px;min-width:40px}.jodit-toolbar-button_size_large .jodit-icon{height:16px;width:16px}.jodit-toolbar-button_size_large button{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:40px;min-width:40px;padding:0}.jodit-toolbar-button_size_large_text-icons_true button{padding:0 8px}.jodit-toolbar-button__button{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:0;border-radius:3px;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:border-box;box-sizing:border-box;color:rgba(0,0,0,.75);cursor:pointer;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;font-style:normal;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;outline:0;padding:0;padding:0 8px;position:relative;text-align:center;text-decoration:none;text-transform:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.jodit-toolbar-button__button:focus-visible:not([disabled]){background-color:#dcdcdc;opacity:1;outline:0}.jodit-toolbar-button__button:hover:not([disabled]){background-color:#dcdcdc;opacity:1;outline:0}.jodit-toolbar-button__button:active:not([disabled]){background-color:hsla(0,0%,86%,.4);outline:0}.jodit-toolbar-button__button[aria-pressed=true]:not([disabled]){background-color:hsla(0,0%,86%,.4);outline:0}.jodit-toolbar-button__button[aria-pressed=true]:hover:not([disabled]){background-color:hsla(0,0%,86%,.6)}.jodit-toolbar-button__button[disabled]{opacity:.3;pointer-events:none}.jodit-toolbar-button__trigger{-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:0 3px 3px 0;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;opacity:.4;width:calc(14px + 2px)}.jodit-toolbar-button__trigger:focus-visible:not([disabled]){background-color:#dcdcdc;opacity:1;outline:0}.jodit-toolbar-button__trigger:hover:not([disabled]){background-color:#dcdcdc;opacity:1;outline:0}.jodit-toolbar-button__trigger:active:not([disabled]){background-color:hsla(0,0%,86%,.4);outline:0}.jodit-toolbar-button__trigger[aria-pressed=true]:not([disabled]){background-color:hsla(0,0%,86%,.4);outline:0}.jodit-toolbar-button__trigger[aria-pressed=true]:hover:not([disabled]){background-color:hsla(0,0%,86%,.6)}.jodit-toolbar-button__trigger[disabled]{opacity:.3;pointer-events:none}.jodit-toolbar-button__trigger svg{width:calc(14px - 4px)}.jodit-toolbar-button_size_tiny .jodit-toolbar-button__trigger{width:calc(8px + 2px)}.jodit-toolbar-button_size_tiny .jodit-toolbar-button__trigger svg{width:calc(8px - 4px)}.jodit-toolbar-button_size_xsmall .jodit-toolbar-button__trigger{width:calc(10px + 2px)}.jodit-toolbar-button_size_xsmall .jodit-toolbar-button__trigger svg{width:calc(10px - 4px)}.jodit-toolbar-button_size_small .jodit-toolbar-button__trigger{width:calc(12px + 2px)}.jodit-toolbar-button_size_small .jodit-toolbar-button__trigger svg{width:calc(12px - 4px)}.jodit-toolbar-button_size_large .jodit-toolbar-button__trigger{width:calc(16px + 2px)}.jodit-toolbar-button_size_large .jodit-toolbar-button__trigger svg{width:calc(16px - 4px)}.jodit-toolbar-button_with-trigger_true .jodit-toolbar-button__button{border-radius:3px 0 0 3px}.jodit-toolbar-button_with-trigger_true:hover:not([disabled]){border-color:#dadada}.jodit-toolbar-button_stroke_false svg{stroke:none}.jodit-toolbar-content{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:1px solid transparent;border-radius:3px;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:border-box;box-sizing:border-box;color:rgba(0,0,0,.75);cursor:pointer;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;font-style:normal;height:34px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;min-width:34px;outline:0;padding:0;position:relative;text-align:center;text-decoration:none;text-transform:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.jodit-toolbar-content:focus-visible:not([disabled]){background-color:#dcdcdc;opacity:1;outline:0}.jodit-toolbar-content:hover:not([disabled]){background-color:#dcdcdc;opacity:1;outline:0}.jodit-toolbar-content:active:not([disabled]){background-color:hsla(0,0%,86%,.4);outline:0}.jodit-toolbar-content[aria-pressed=true]:not([disabled]){background-color:hsla(0,0%,86%,.4);outline:0}.jodit-toolbar-content[aria-pressed=true]:hover:not([disabled]){background-color:hsla(0,0%,86%,.6)}.jodit-toolbar-content[disabled]{opacity:.3;pointer-events:none}.jodit-toolbar-content .jodit-icon{height:14px;width:14px}.jodit-toolbar-content button{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:34px;min-width:34px;padding:0}.jodit-toolbar-content_text-icons_true button{padding:0 8px}.jodit-toolbar-content_size_tiny{height:16px;min-width:16px}.jodit-toolbar-content_size_tiny .jodit-icon{height:8px;width:8px}.jodit-toolbar-content_size_tiny button{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:16px;min-width:16px;padding:0}.jodit-toolbar-content_size_tiny_text-icons_true button{padding:0 8px}.jodit-toolbar-content_size_xsmall{height:22px;min-width:22px}.jodit-toolbar-content_size_xsmall .jodit-icon{height:10px;width:10px}.jodit-toolbar-content_size_xsmall button{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:22px;min-width:22px;padding:0}.jodit-toolbar-content_size_xsmall_text-icons_true button{padding:0 8px}.jodit-toolbar-content_size_small{height:28px;min-width:28px}.jodit-toolbar-content_size_small .jodit-icon{height:12px;width:12px}.jodit-toolbar-content_size_small button{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:28px;min-width:28px;padding:0}.jodit-toolbar-content_size_small_text-icons_true button{padding:0 8px}.jodit-toolbar-content_size_large{height:40px;min-width:40px}.jodit-toolbar-content_size_large .jodit-icon{height:16px;width:16px}.jodit-toolbar-content_size_large button{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:40px;min-width:40px;padding:0}.jodit-toolbar-content_size_large_text-icons_true button{padding:0 8px}.jodit-toolbar-content__icon{display:none}.jodit-toolbar-content__icon:not(:empty){display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.jodit-toolbar-content__text{display:none}.jodit-toolbar-content__text:not(:empty){display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:14px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.jodit-toolbar-content_context_menu .jodit-toolbar-content__text{-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;padding-left:8px;position:relative}.jodit-toolbar-content_context_menu .jodit-toolbar-content__text:before{border-left:1px solid #dadada;content:"";height:35px;left:0;position:absolute;top:calc(8px*-1)}.jodit-toolbar-content__icon:not(:empty)+.jodit-toolbar-content__text:not(:empty){margin-left:8px}.jodit-toolbar-content__icon:empty+.jodit-toolbar-content__text:not(:empty){padding:0 8px}.jodit-toolbar-content:focus:not([disabled]){outline:1px dashed #b5d6fd}.jodit-toolbar-content_variant_outline{border:1px solid #dadada}.jodit-toolbar-content_variant_default{background-color:#e3e3e3;color:#212529}.jodit-toolbar-content_variant_default svg{fill:#212529;stroke:#212529}.jodit-toolbar-content_variant_default [disabled]{opacity:.7}.jodit-toolbar-content_variant_default:hover:not([disabled]){background-color:#c9cdd1;color:#212529}.jodit-toolbar-content_variant_default:hover:not([disabled]) svg{fill:#212529;stroke:#212529}.jodit-toolbar-content_variant_default:active:not([disabled]){background-color:#dae0e5;color:#212529}.jodit-toolbar-content_variant_default:active:not([disabled]) svg{fill:#212529;stroke:#212529}.jodit-toolbar-content_variant_default:focus:not([disabled]){outline:1px dashed #dae0e5}.jodit-toolbar-content_variant_primary{background-color:#007bff;color:#fff}.jodit-toolbar-content_variant_primary svg{fill:#fff;stroke:#fff}.jodit-toolbar-content_variant_primary [disabled]{opacity:.7}.jodit-toolbar-content_variant_primary:hover:not([disabled]){background-color:#0069d9;color:#fff}.jodit-toolbar-content_variant_primary:hover:not([disabled]) svg{fill:#fff;stroke:#fff}.jodit-toolbar-content_variant_primary:active:not([disabled]){background-color:#0062cc;color:#fff}.jodit-toolbar-content_variant_primary:active:not([disabled]) svg{fill:#fff;stroke:#fff}.jodit-toolbar-content_variant_primary:focus:not([disabled]){outline:1px dashed #0062cc}.jodit-toolbar-content_variant_secondary{background-color:#d8d8d8;border-radius:0;color:#212529}.jodit-toolbar-content_variant_secondary svg{fill:#212529;stroke:#212529}.jodit-toolbar-content_variant_secondary [disabled]{opacity:.7}.jodit-toolbar-content_variant_secondary:hover:not([disabled]){background-color:#c9cdd1;color:#212529}.jodit-toolbar-content_variant_secondary:hover:not([disabled]) svg{fill:#212529;stroke:#212529}.jodit-toolbar-content_variant_secondary:active:not([disabled]){background-color:#dae0e5;color:#212529}.jodit-toolbar-content_variant_secondary:active:not([disabled]) svg{fill:#212529;stroke:#212529}.jodit-toolbar-content_variant_secondary:focus:not([disabled]){outline:1px dashed #dae0e5}.jodit-toolbar-content_variant_success{background-color:#28a745;color:#fff}.jodit-toolbar-content_variant_success svg{fill:#fff;stroke:#fff}.jodit-toolbar-content_variant_success [disabled]{opacity:.7}.jodit-toolbar-content_variant_success:hover:not([disabled]){background-color:#218838;color:#fff}.jodit-toolbar-content_variant_success:hover:not([disabled]) svg{fill:#fff;stroke:#fff}.jodit-toolbar-content_variant_success:active:not([disabled]){background-color:#1e7e34;color:#fff}.jodit-toolbar-content_variant_success:active:not([disabled]) svg{fill:#fff;stroke:#fff}.jodit-toolbar-content_variant_success:focus:not([disabled]){outline:1px dashed #1e7e34}.jodit-toolbar-content_variant_danger{background-color:#dc3545;color:#fff}.jodit-toolbar-content_variant_danger svg{fill:#fff;stroke:#fff}.jodit-toolbar-content_variant_danger [disabled]{opacity:.7}.jodit-toolbar-content_variant_danger:hover:not([disabled]){background-color:#c82333;color:#fff}.jodit-toolbar-content_variant_danger:hover:not([disabled]) svg{fill:#fff;stroke:#fff}.jodit-toolbar-content_variant_danger:active:not([disabled]){background-color:#bd2130;color:#fff}.jodit-toolbar-content_variant_danger:active:not([disabled]) svg{fill:#fff;stroke:#fff}.jodit-toolbar-content_variant_danger:focus:not([disabled]){outline:1px dashed #bd2130}.jodit-toolbar-content:hover:not([disabled]){background-color:transparent;opacity:1;outline:0}.jodit-toolbar-select{-webkit-box-align:center;-ms-flex-align:center;align-items:center;border:1px solid transparent;border-radius:3px;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;height:34px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;min-width:34px;min-width:100px;overflow:hidden}.jodit-toolbar-select__icon{display:none}.jodit-toolbar-select__icon:not(:empty){display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.jodit-toolbar-select__text{display:none}.jodit-toolbar-select__text:not(:empty){display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:14px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.jodit-toolbar-select_context_menu .jodit-toolbar-select__text{-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;padding-left:8px;position:relative}.jodit-toolbar-select_context_menu .jodit-toolbar-select__text:before{border-left:1px solid #dadada;content:"";height:35px;left:0;position:absolute;top:calc(8px*-1)}.jodit-toolbar-select__icon:not(:empty)+.jodit-toolbar-select__text:not(:empty){margin-left:8px}.jodit-toolbar-select__icon:empty+.jodit-toolbar-select__text:not(:empty){padding:0 8px;padding:0}.jodit-toolbar-select .jodit-icon{height:14px;width:14px}.jodit-toolbar-select button{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:34px;min-width:34px;padding:0}.jodit-toolbar-select_text-icons_true button{padding:0 8px}.jodit-toolbar-select_size_tiny{height:16px;min-width:16px}.jodit-toolbar-select_size_tiny .jodit-icon{height:8px;width:8px}.jodit-toolbar-select_size_tiny button{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:16px;min-width:16px;padding:0}.jodit-toolbar-select_size_tiny_text-icons_true button{padding:0 8px}.jodit-toolbar-select_size_xsmall{height:22px;min-width:22px}.jodit-toolbar-select_size_xsmall .jodit-icon{height:10px;width:10px}.jodit-toolbar-select_size_xsmall button{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:22px;min-width:22px;padding:0}.jodit-toolbar-select_size_xsmall_text-icons_true button{padding:0 8px}.jodit-toolbar-select_size_small{height:28px;min-width:28px}.jodit-toolbar-select_size_small .jodit-icon{height:12px;width:12px}.jodit-toolbar-select_size_small button{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:28px;min-width:28px;padding:0}.jodit-toolbar-select_size_small_text-icons_true button{padding:0 8px}.jodit-toolbar-select_size_large{height:40px;min-width:40px}.jodit-toolbar-select_size_large .jodit-icon{height:16px;width:16px}.jodit-toolbar-select_size_large button{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:40px;min-width:40px;padding:0}.jodit-toolbar-select_size_large_text-icons_true button{padding:0 8px}.jodit-toolbar-select__button{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:0;border-radius:3px;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:border-box;box-sizing:border-box;color:rgba(0,0,0,.75);cursor:pointer;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;font-style:normal;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;outline:0;padding:0;padding:0 8px;position:relative;text-align:center;text-decoration:none;text-transform:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.jodit-toolbar-select__button:focus-visible:not([disabled]){background-color:#dcdcdc;opacity:1;outline:0}.jodit-toolbar-select__button:hover:not([disabled]){background-color:#dcdcdc;opacity:1;outline:0}.jodit-toolbar-select__button:active:not([disabled]){background-color:hsla(0,0%,86%,.4);outline:0}.jodit-toolbar-select__button[aria-pressed=true]:not([disabled]){background-color:hsla(0,0%,86%,.4);outline:0}.jodit-toolbar-select__button[aria-pressed=true]:hover:not([disabled]){background-color:hsla(0,0%,86%,.6)}.jodit-toolbar-select__button[disabled]{opacity:.3;pointer-events:none}.jodit-toolbar-select__trigger{-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:0 3px 3px 0;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;opacity:.4;width:calc(14px + 2px)}.jodit-toolbar-select__trigger:focus-visible:not([disabled]){background-color:#dcdcdc;opacity:1;outline:0}.jodit-toolbar-select__trigger:hover:not([disabled]){background-color:#dcdcdc;opacity:1;outline:0}.jodit-toolbar-select__trigger:active:not([disabled]){background-color:hsla(0,0%,86%,.4);outline:0}.jodit-toolbar-select__trigger[aria-pressed=true]:not([disabled]){background-color:hsla(0,0%,86%,.4);outline:0}.jodit-toolbar-select__trigger[aria-pressed=true]:hover:not([disabled]){background-color:hsla(0,0%,86%,.6)}.jodit-toolbar-select__trigger[disabled]{opacity:.3;pointer-events:none}.jodit-toolbar-select__trigger svg{width:calc(14px - 4px)}.jodit-toolbar-select_size_tiny .jodit-toolbar-select__trigger{width:calc(8px + 2px)}.jodit-toolbar-select_size_tiny .jodit-toolbar-select__trigger svg{width:calc(8px - 4px)}.jodit-toolbar-select_size_xsmall .jodit-toolbar-select__trigger{width:calc(10px + 2px)}.jodit-toolbar-select_size_xsmall .jodit-toolbar-select__trigger svg{width:calc(10px - 4px)}.jodit-toolbar-select_size_small .jodit-toolbar-select__trigger{width:calc(12px + 2px)}.jodit-toolbar-select_size_small .jodit-toolbar-select__trigger svg{width:calc(12px - 4px)}.jodit-toolbar-select_size_large .jodit-toolbar-select__trigger{width:calc(16px + 2px)}.jodit-toolbar-select_size_large .jodit-toolbar-select__trigger svg{width:calc(16px - 4px)}.jodit-toolbar-select_with-trigger_true .jodit-toolbar-button__button{border-radius:3px 0 0 3px}.jodit-toolbar-select_with-trigger_true:hover:not([disabled]){border-color:#dadada}.jodit-toolbar-select_stroke_false svg{stroke:none}.jodit-toolbar-select:focus-visible:not([disabled]){background-color:#dcdcdc;opacity:1;outline:0}.jodit-toolbar-select:hover:not([disabled]){background-color:#dcdcdc;opacity:1;outline:0}.jodit-toolbar-select:active:not([disabled]){background-color:hsla(0,0%,86%,.4);outline:0}.jodit-toolbar-select[aria-pressed=true]:not([disabled]){background-color:hsla(0,0%,86%,.4);outline:0}.jodit-toolbar-select[aria-pressed=true]:hover:not([disabled]){background-color:hsla(0,0%,86%,.6)}.jodit-toolbar-select[disabled]{opacity:.3;pointer-events:none}.jodit-toolbar-select__text:not(:empty){-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.jodit-toolbar-select__button{-webkit-box-flex:1;-ms-flex:1;flex:1}.jodit-toolbar__box:not(:empty){background-color:#fff;border-bottom:1px solid #dadada;border-radius:3px 3px 0 0;overflow:hidden}.jodit-toolbar__box:not(:empty):not(:empty){background-color:#fff}.jodit-toolbar__box:not(:empty) .jodit-toolbar-editor-collection:after{background-color:#f9f9f9}.jodit-dialog{border:0;-webkit-box-sizing:border-box;box-sizing:border-box;display:none;font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:14px;height:0;position:absolute;width:0;will-change:left,top,width,height}.jodit-dialog_moved_true{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.jodit-dialog *{-webkit-box-sizing:border-box;box-sizing:border-box}.jodit-dialog .jodit_elfinder,.jodit-dialog .jodit_elfinder *{-webkit-box-sizing:initial;box-sizing:initial}.jodit-dialog__overlay{background-color:rgba(0,0,0,.5);display:none;height:100%;left:0;overflow:auto;position:fixed;text-align:center;top:0;white-space:nowrap;width:100%;z-index:20000003}.jodit-dialog_static_true .jodit-dialog__overlay{display:none}.jodit-dialog_active_true,.jodit-dialog_modal_true .jodit-dialog__overlay{display:block}.jodit-dialog__panel{background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column nowrap;flex-flow:column nowrap;left:0;max-height:100%;max-width:100%;min-height:100px;min-width:200px;position:fixed;top:0;z-index:20000004;-webkit-box-shadow:undefined;box-shadow:undefined;text-align:left;white-space:normal}@media (max-width:480px){.jodit-dialog:not(.jodit-dialog_adaptive_false) .jodit-dialog__panel{height:100%!important;left:0!important;max-width:100%;top:0!important;width:100%!important}}.jodit-dialog_static_true{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;height:auto;position:relative;width:auto;z-index:inherit}.jodit-dialog_static_true .jodit-dialog__panel{border:1px solid #dadada;-webkit-box-shadow:none;box-shadow:none;left:auto!important;position:relative;top:auto!important;width:100%!important;z-index:inherit}.jodit-dialog_theme_dark{background-color:#353535;color:#d1cccc}.jodit-dialog_theme_dark .jodit-dialog__panel{background-color:#353535;color:#d1cccc}.jodit-dialog__header{border-bottom:1px solid #dadada;cursor:move;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;min-height:50px;text-align:left}.jodit-dialog__header-title{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-negative:3;flex-shrink:3;font-size:18px;font-weight:400;line-height:48px;margin:0;padding:0 8px;vertical-align:top}.jodit-dialog__header-toolbar{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-negative:3;flex-shrink:3;font-size:18px;font-weight:400;line-height:48px;margin:0;padding:0 8px;vertical-align:top}@media (max-width:480px){.jodit-dialog__header-toolbar{padding-left:0}}.jodit-dialog__header-button{color:#222;-ms-flex-preferred-size:48px;flex-basis:48px;font-size:28px;height:48px;line-height:48px;text-align:center;text-decoration:none;-webkit-transition:background-color .2s ease 0s;transition:background-color .2s ease 0s}.jodit-dialog__header-button:hover{background-color:#ecebe9}.jodit-dialog__header .jodit_toolbar{background:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.jodit-dialog__header .jodit_toolbar>li.jodit-toolbar-button .jodit-input{padding-left:8px;width:auto}@media (max-width:480px){.jodit-dialog:not(.jodit-dialog_adaptive_false) .jodit-dialog__header{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.jodit-dialog_slim_true .jodit-dialog__header{min-height:10px}.jodit-dialog_slim_true .jodit-dialog__header-title{padding:0 calc(8px/4)}.jodit-dialog_slim_true .jodit-dialog__header-toolbar{padding:0 calc(8px/4)}.jodit-dialog_theme_dark .jodit-dialog__header{border-color:#4c4c4c}.jodit-dialog_fullsize_true .jodit-dialog__header{cursor:default}.jodit-dialog__content{-webkit-box-flex:1;-ms-flex:1;flex:1;min-height:100px;overflow:auto}.jodit-dialog__content .jodit-form__group{margin-bottom:calc(8px*1.5);padding:0 8px}.jodit-dialog__content .jodit-form__group:first-child{margin-top:8px}.jodit-dialog__content .jodit-form__group .jodit-input_group{border-collapse:separate;display:table;width:100%}.jodit-dialog__content .jodit-form__group .jodit-input_group>*{display:table-cell;height:34px;vertical-align:middle}.jodit-dialog__content .jodit-form__group .jodit-input_group>input{margin:0!important}.jodit-dialog__content .jodit-form__group .jodit-input_group>input:not([class*=col-]){width:100%}.jodit-dialog__content .jodit-form__group .jodit-input_group-buttons{font-size:0;vertical-align:middle;white-space:nowrap;width:1%}.jodit-dialog__content .jodit-form__group .jodit-input_group-buttons>.jodit-button{border:1px solid #dadada;border-radius:0;height:34px;line-height:34px;margin-left:-1px}.jodit-dialog__footer{display:none;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:8px}.jodit-dialog__footer button{margin-right:calc(8px/2)}.jodit-dialog__footer button:last-child{margin-right:0}.jodit-dialog__column{display:-webkit-box;display:-ms-flexbox;display:flex}.jodit-dialog__resizer{display:none;position:relative}.jodit-dialog__resizer svg{bottom:0;cursor:nwse-resize;height:12px;overflow:hidden;position:absolute;right:0;width:12px;fill:#a5a5a5;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.jodit-dialog_resizable_true .jodit-dialog__resizer{display:block}@media (max-width:480px){.jodit-dialog__resizer{display:none}}.jodit-dialog_prompt{max-width:300px;min-width:200px;padding:8px;word-break:break-all}.jodit-dialog_prompt label{display:block;margin-bottom:calc(8px/2)}.jodit-dialog_alert{max-width:300px;min-width:200px;padding:8px;word-break:break-all}.jodit-dialog_footer_true .jodit-dialog__footer{display:-webkit-box;display:-ms-flexbox;display:flex}.jodit_fullsize .jodit-dialog__panel{height:100%!important;inset:0!important;width:100%!important}.jodit_fullsize .jodit-dialog__panel .jodit-dialog__resizer{display:none}.jodit-dialog .jodit-ui-messages{z-index:20000004}.jodit-image-editor{height:100%;overflow:hidden;padding:8px;width:100%}@media (max-width:768px){.jodit-image-editor{height:auto}}.jodit-image-editor>div,.jodit-image-editor>div>div{height:100%}@media (max-width:768px){.jodit-image-editor>div,.jodit-image-editor>div>div{height:auto;min-height:200px}}.jodit-image-editor *{-webkit-box-sizing:border-box;box-sizing:border-box}.jodit-image-editor .jodit-image-editor__slider-title{background-color:#f9f9f9;border-bottom:1px solid hsla(0,0%,62%,.31);color:#333;cursor:pointer;font-weight:700;line-height:1em;padding:.8em 1em;text-overflow:ellipsis;text-shadow:#f3f3f3 0 1px 0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.jodit-image-editor .jodit-image-editor__slider-title svg{display:inline-block;margin-right:8px;vertical-align:middle;width:16px}.jodit-image-editor .jodit-image-editor__slider-content{display:none}.jodit-image-editor .jodit-image-editor__slider.jodit-image-editor_active .jodit-image-editor__slider-title{background-color:#5d5d5d;color:#fff;text-shadow:#000 0 1px 0}.jodit-image-editor .jodit-image-editor__slider.jodit-image-editor_active .jodit-image-editor__slider-title svg{fill:#fff}.jodit-image-editor .jodit-image-editor__slider.jodit-image-editor_active .jodit-image-editor__slider-content{display:block}.jodit-image-editor__area{background-color:#eee;background-image:linear-gradient(45deg,#dadada 25%,transparent 25%,transparent 75%,#dadada 75%,#dadada),linear-gradient(45deg,#dadada 25%,transparent 25%,transparent 75%,#dadada 75%,#dadada);background-position:0 0,15px 15px;background-size:30px 30px;display:none;height:100%;overflow:hidden;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.jodit-image-editor__area.jodit-image-editor_active{display:block}.jodit-image-editor__area .jodit-image-editor__box{height:100%;overflow:hidden;pointer-events:none;position:relative;z-index:1}.jodit-image-editor__area .jodit-image-editor__box img{max-height:100%;max-width:100%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.jodit-image-editor__area .jodit-image-editor__croper{background-repeat:no-repeat;border:1px solid #fff;-webkit-box-shadow:0 0 11px #000;box-shadow:0 0 11px #000;height:100px;left:20px;pointer-events:none;position:absolute;top:8px;width:100px;z-index:2}.jodit-image-editor__area .jodit-image-editor__resizer{background-repeat:no-repeat;border:1px solid #fff;-webkit-box-shadow:0 0 11px #000;box-shadow:0 0 11px #000;height:100px;left:20px;pointer-events:none;position:absolute;top:8px;width:100px;z-index:2}.jodit-image-editor__area .jodit-image-editor__croper i.jodit_bottomright{background-color:#8c7878;border:1px solid #383838;border-radius:50%;bottom:calc(8px*-1);-webkit-box-shadow:0 0 11px #000;box-shadow:0 0 11px #000;cursor:se-resize;display:inline-block;height:20px;pointer-events:all;position:absolute;right:calc(8px*-1);width:20px;z-index:4}.jodit-image-editor__area .jodit-image-editor__resizer i.jodit_bottomright{background-color:#8c7878;border:1px solid #383838;border-radius:50%;bottom:calc(8px*-1);-webkit-box-shadow:0 0 11px #000;box-shadow:0 0 11px #000;cursor:se-resize;display:inline-block;height:20px;pointer-events:all;position:absolute;right:calc(8px*-1);width:20px;z-index:4}.jodit-image-editor__area .jodit-image-editor__croper i.jodit_bottomright:active,.jodit-image-editor__area .jodit-image-editor__resizer i.jodit_bottomright:active{border:1px solid #ff0}.jodit-image-editor__area.jodit-image-editor__area_crop{background:#eee;height:100%;line-height:100%;position:relative;text-align:center}.jodit-image-editor__area.jodit-image-editor__area_crop .jodit-image-editor__box{height:100%;line-height:100%;overflow:visible;pointer-events:all;text-align:left}.jodit-image-editor__area.jodit-image-editor__area_crop .jodit-image-editor__box img{height:100%;max-height:100%;max-width:100%;width:100%}.jodit-image-editor__area.jodit-image-editor__area_crop .jodit-image-editor__box:after{background:hsla(0,0%,100%,.3);content:"";inset:0;margin:auto;position:absolute;z-index:1}.jodit-image-editor__area.jodit-image-editor__area_crop .jodit-image-editor__box .jodit-image-editor__croper{cursor:move;pointer-events:all}.jodit-image-editor__area.jodit-image-editor__area_crop .jodit-image-editor__box .jodit-image-editor__croper i.jodit-image-editor__sizes{background:rgba(0,0,0,.2);border-radius:.4em;bottom:-30px;color:#fff;display:block;font-size:12px;left:100%;padding:9px 6px;position:absolute;text-align:center;text-shadow:none;white-space:pre}.jodit-image-editor__area.jodit-image-editor__area_crop.jodit-image-editor_active{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.jodit-file-browser-files{display:none;height:100%;overflow-anchor:auto;position:relative;vertical-align:top}.jodit-file-browser-files .jodit-button{border-radius:0}.jodit-file-browser-files_loading_true:before{content:"";height:100%;left:0;position:absolute;top:0;width:100%}.jodit-file-browser-files_loading_true:after{-webkit-animation:b 2s ease-out 0s infinite;animation:b 2s ease-out 0s infinite;background:url(${f}) no-repeat 50%;background-size:100% 100%;content:"";display:inline-block;height:48px;left:50%;margin-left:calc(48px/-2);margin-top:calc(48px/-2);opacity:.7;position:absolute;top:50%;vertical-align:middle;width:48px;will-change:transform}.jodit-file-browser-files::-webkit-scrollbar{width:calc(8px/2)}.jodit-file-browser-files::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.jodit-file-browser-files::-webkit-scrollbar-thumb{background-color:#a9a9a9;outline:1px solid #708090}.jodit-file-browser-files_active_true{-ms-flex-line-pack:start;align-content:flex-start;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;overflow-y:auto;padding:calc(8px/2);width:100%}.jodit-file-browser-files__item{-webkit-box-align:center;-ms-flex-align:center;align-items:center;border:1px solid #dadada;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:0;height:150px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:calc(8px/2);overflow:hidden;position:relative;text-align:center;-webkit-transition:border .1s linear,bottom .1s linear;transition:border .1s linear,bottom .1s linear;width:150px}@media (max-width:480px){.jodit-file-browser-files__item{width:calc(50% - 8px)}}.jodit-file-browser-files__item img{max-width:100%}.jodit-file-browser-files__item:hover{border-color:#433b5c}.jodit-file-browser-files__item_active_true{background-color:#b5b5b5;border-color:#1e88e5}.jodit-file-browser-files__item_active_true .jodit-file-browser-files__item-info{background-color:#b5b5b5;color:#fff;text-shadow:none}.jodit-file-browser-files__item-info{background-color:#e9e9e9;bottom:0;color:#333;font-size:14px;left:0;line-height:16px;opacity:.85;overflow:visible;padding:.3em .6em;position:absolute;right:0;text-align:left;text-shadow:#eee 0 1px 0;-webkit-transition:opacity .4s ease;transition:opacity .4s ease;white-space:normal}.jodit-file-browser-files__item-info>span{display:block;font-size:.75em;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.jodit-file-browser-files__item-info>span.jodit-file-browser-files__item-info-filename{font-size:.9em;font-weight:700}.jodit-file-browser-files__item:hover:not(.jodit-file-browser-files__item_active_true) .jodit-file-browser-files__item-info{bottom:-100px}.jodit-file-browser-files_view_list{scroll-behavior:smooth}.jodit-file-browser-files_view_list a{border-width:0 0 1px;display:block;height:26px;line-height:26px;margin:0;text-align:left;white-space:nowrap;width:100%}.jodit-file-browser-files_view_list a img{display:inline-block;margin-left:4px;max-width:16px;min-width:16px;vertical-align:middle}.jodit-file-browser-files_view_list a .jodit-file-browser-files__item-info{background-color:transparent;display:inline-block;font-size:0;height:100%;line-height:inherit;margin-left:4px;padding:0;position:static;vertical-align:middle;width:calc(100% - 20px)}.jodit-file-browser-files_view_list a .jodit-file-browser-files__item-info>span{display:inline-block;font-size:12px;height:100%}.jodit-file-browser-files_view_list a .jodit-file-browser-files__item-info-filename{width:50%}.jodit-file-browser-files_view_list a .jodit-file-browser-files__item-info-filechanged,.jodit-file-browser-files_view_list a .jodit-file-browser-files__item-info-filesize{width:25%}.jodit-file-browser-files_view_list a:hover{background-color:#433b5c}.jodit-file-browser-files_view_list a:hover .jodit-file-browser-files__item-info{color:#fff;text-shadow:none}.jodit-file-browser-files_view_list a:before{content:"";display:inline-block;height:100%;vertical-align:middle}.jodit-file-browser-tree{display:none;height:100%;overflow-anchor:auto;position:relative;vertical-align:top}.jodit-file-browser-tree .jodit-button{border-radius:0}.jodit-file-browser-tree_loading_true:before{content:"";height:100%;left:0;position:absolute;top:0;width:100%}.jodit-file-browser-tree_loading_true:after{-webkit-animation:b 2s ease-out 0s infinite;animation:b 2s ease-out 0s infinite;background:url(${f}) no-repeat 50%;background-size:100% 100%;content:"";display:inline-block;height:48px;left:50%;margin-left:calc(48px/-2);margin-top:calc(48px/-2);opacity:.7;position:absolute;top:50%;vertical-align:middle;width:48px;will-change:transform}.jodit-file-browser-tree::-webkit-scrollbar{width:calc(8px/2)}.jodit-file-browser-tree::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.jodit-file-browser-tree::-webkit-scrollbar-thumb{background-color:#a9a9a9;outline:1px solid #708090}.jodit-file-browser-tree_active_true{background-color:undefined;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-width:290px;min-width:200px;overflow-y:auto;width:31%;z-index:2}@media (max-width:480px){.jodit-file-browser-tree_active_true{height:100px;max-width:100%;width:auto}}.jodit-file-browser-tree_active_true::-webkit-scrollbar{width:calc(8px/2)}.jodit-file-browser-tree_active_true::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.jodit-file-browser-tree_active_true::-webkit-scrollbar-thumb{background-color:hsla(0,0%,50%,.5);outline:1px solid #708090}.jodit-file-browser-tree__item{-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-bottom:1px solid #474747;color:#b1b1b1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;min-height:38px;padding:calc(8px/2) 8px;position:relative;text-decoration:none;-webkit-transition:background-color .2s ease 0s;transition:background-color .2s ease 0s;word-break:break-all}.jodit-file-browser-tree__item-title{color:#b1b1b1;-webkit-box-flex:1;-ms-flex:1;flex:1}.jodit-file-browser-tree__item .jodit-icon_folder{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:calc(12px + 4px);-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-left:calc(8px/2);opacity:.3;width:calc(12px + 4px)}.jodit-file-browser-tree__item .jodit-icon_folder svg{height:12px;width:12px;fill:#b1b1b1!important;stroke:#b1b1b1!important}.jodit-file-browser-tree__item .jodit-icon_folder:hover{background:#696969}.jodit-file-browser-tree__item:hover{background-color:#ecebe9}.jodit-file-browser-tree__item:hover-title{color:#222}.jodit-file-browser-tree__item:hover i.jodit-icon_folder{opacity:.6}.jodit-file-browser-tree__source-title{background:#5a5a5a;border-bottom:1px solid #484848;color:#969696;display:block;font-size:12px;padding:2px 4px;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;word-break:break-all}a+.jodit-file-browser-tree__source-title{margin-top:8px}.jodit-file-browser{display:-webkit-box;display:-ms-flexbox;display:flex;font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;height:100%}.jodit-file-browser_no-files_true{padding:8px}@media (max-width:480px){.jodit-file-browser{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-flow:column-reverse;flex-flow:column-reverse}}.jodit-dialog .jodit-dialog__header-title.jodit-file-browser__title-box{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;padding-left:8px}.jodit-file-browser-preview{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:auto;max-height:100%;max-width:min(100%,1000px);min-height:min(100%,500px);min-width:400px;position:relative;text-align:center}@media (max-width:768px){.jodit-file-browser-preview{height:100%;max-height:100%;max-width:100%;min-height:auto;min-width:auto}}.jodit-file-browser-preview__box{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.jodit-file-browser-preview__navigation{cursor:pointer;height:100%;left:0;position:absolute;top:0}.jodit-file-browser-preview__navigation_arrow_next{left:auto;right:0}.jodit-file-browser-preview__navigation svg{height:45px;position:relative;top:50%;width:45px;fill:#9e9ba7;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);-webkit-transition:fill .3s linear;transition:fill .3s linear}.jodit-file-browser-preview__navigation:hover svg{fill:#000}.jodit-file-browser-preview img{max-height:100%;max-width:100%}.jodit-status-bar{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#f9f9f9;border-radius:0 0 3px 3px;color:rgba(0,0,0,.75);display:-webkit-box;display:-ms-flexbox;display:flex;font-size:11px;height:20px;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;overflow:hidden;padding:0 calc(8px/2);text-transform:uppercase}.jodit-status-bar_resize-handle_true{padding-right:14px}.jodit-status-bar:before{content:"";-webkit-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.jodit-status-bar .jodit-status-bar__item{line-height:1.5714em;margin:0 8px 0 0;-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0;padding:0}.jodit-status-bar .jodit-status-bar__item{font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-size:11px}.jodit-status-bar .jodit-status-bar__item>span{font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-size:11px}.jodit-status-bar .jodit-status-bar__item.jodit-status-bar__item-right{margin:0 0 0 8px;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.jodit-status-bar .jodit-status-bar__item a{border-radius:3px;cursor:default;text-decoration:none}.jodit-status-bar .jodit-status-bar__item a:hover{background-color:#dadada;text-decoration:none}.jodit-status-bar a.jodit-status-bar-link{cursor:pointer}.jodit-status-bar a.jodit-status-bar-link{background-color:transparent;color:rgba(0,0,0,.75)}.jodit-status-bar a.jodit-status-bar-link:hover{background-color:transparent;color:rgba(0,0,0,.75)}.jodit-status-bar a.jodit-status-bar-link:visited{background-color:transparent;color:rgba(0,0,0,.75)}.jodit-status-bar a.jodit-status-bar-link:hover{text-decoration:underline}.jodit-workplace+.jodit-status-bar:not(:empty){border-top:1px solid #dadada}.jodit_disabled .jodit-status-bar{opacity:.4}.jodit-drag-and-drop__file-box{border:1px dashed #dadada;margin:8px 0;overflow:hidden;padding:25px 0;position:relative;text-align:center;width:100%}.jodit_uploadfile_button{border:1px dashed #dadada;margin:8px 0;overflow:hidden;padding:25px 0;position:relative;text-align:center;width:100%}.jodit-drag-and-drop__file-box:hover{background-color:#ecebe9}.jodit_uploadfile_button:hover{background-color:#ecebe9}.jodit-drag-and-drop__file-box input,.jodit_uploadfile_button input{cursor:pointer;font-size:400px;inset:0;margin:0;opacity:0;padding:0;position:absolute}@media (max-width:768px){.jodit-drag-and-drop__file-box{max-width:100%;min-width:180px;width:auto}}.jodit-add-new-line{display:block;height:1px;outline:none;position:fixed;top:0;z-index:1}.jodit-add-new-line,.jodit-add-new-line *{-webkit-box-sizing:border-box;box-sizing:border-box}.jodit-add-new-line:after{background-color:#6b6b6b;content:"";display:block;height:1px;width:100%}.jodit-add-new-line span{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:hsla(40,7%,92%,.3);border:1px solid #6b6b6b;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;height:20px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;left:calc(100% - 20px);position:absolute;top:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);width:20px}.jodit-add-new-line span:hover{background:#ecebe9}.jodit-add-new-line svg{width:calc(20px/2);fill:#6b6b6b}.jodit-source__mode .jodit-add-new-line{display:none!important}.jodit-color-picker{margin:0;text-align:left;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.jodit-color-picker__group{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:calc(8px/2);max-width:calc(24px*10);white-space:normal}.jodit-color-picker__color-item{border:1px solid transparent;display:block;height:24px;text-align:center;text-decoration:none;vertical-align:middle;width:24px}.jodit-color-picker__color-item:hover{border-color:#000}.jodit-color-picker__color-item:active{border:2px solid #1e88e5}.jodit-color-picker__color-item_active_true{border:2px solid #1e88e5}.jodit-color-picker__native svg{display:inline-block;height:16px;margin-right:4px;width:16px}.jodit-color-picker__native input{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;height:18px;padding:0;width:18px}.jodit-color-picker__native input[type=color]::-webkit-color-swatch-wrapper{padding:0}.jodit-color-picker__native input input[type=color]::-webkit-color-swatch{border:none}.jodit-tabs{font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:14px}.jodit-tabs .jodit-tabs__buttons{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-bottom:8px;margin-top:calc(8px/2)}.jodit-tabs .jodit-tabs__buttons>*{cursor:pointer;margin-left:calc(8px/2)}.jodit-tabs .jodit-tabs__buttons>:only-of-type{width:100%}.jodit-tabs .jodit-tabs__buttons>:first-child{margin-left:0}@media (max-width:480px){.jodit-tabs .jodit-tabs__buttons{display:block}.jodit-tabs .jodit-tabs__buttons>*{margin-left:0;width:100%}}.jodit-tabs__button{min-width:80px}.jodit-tabs__button_columns_3{width:33.33333%}.jodit-tabs__button_columns_2{width:50%}.jodit-tabs .jodit-tabs__wrapper .jodit-tab{display:none}.jodit-tabs .jodit-tabs__wrapper .jodit-tab.jodit-tab_active{display:block}.jodit-tabs .jodit-tabs__wrapper .jodit-tab.jodit-tab_empty{min-height:100px;min-width:220px}.jodit_fullsize-box_true{overflow:visible!important;position:static!important;z-index:100000!important}body.jodit_fullsize-box_true,html.jodit_fullsize-box_true{height:0!important;overflow:hidden!important;width:0!important}html.jodit_fullsize-box_true{position:fixed!important}.jodit_fullsize{inset:0;max-width:none!important;position:absolute;z-index:100000}.jodit_fullsize .toolbar{width:100%!important}.jodit_fullsize .jodit__area,.jodit_fullsize .jodit_editor{height:100%}.jodit-ui-image-position-tab__lockMargin>svg{display:inline-block;height:14px;overflow:hidden;width:14px;fill:#4c4c4c;line-height:14px;-webkit-transform-origin:0 0!important;-ms-transform-origin:0 0!important;transform-origin:0 0!important;vertical-align:middle}.jodit-ui-image-position-tab__lockSize>svg{display:inline-block;height:14px;overflow:hidden;width:14px;fill:#4c4c4c;line-height:14px;-webkit-transform-origin:0 0!important;-ms-transform-origin:0 0!important;transform-origin:0 0!important;vertical-align:middle}.jodit-ui-image-properties-form__lockMargin>svg{display:inline-block;height:14px;overflow:hidden;width:14px;fill:#4c4c4c;line-height:14px;-webkit-transform-origin:0 0!important;-ms-transform-origin:0 0!important;transform-origin:0 0!important;vertical-align:middle}.jodit-ui-image-properties-form__lockSize>svg{display:inline-block;height:14px;overflow:hidden;width:14px;fill:#4c4c4c;line-height:14px;-webkit-transform-origin:0 0!important;-ms-transform-origin:0 0!important;transform-origin:0 0!important;vertical-align:middle}.jodit-ui-image-position-tab__view-box{padding:8px}.jodit-ui-image-properties-form__view-box{padding:8px}.jodit-ui-image-position-tab__imageView{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#f5f5f6;display:-webkit-box;display:-ms-flexbox;display:flex;height:180px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0 0 8px;padding:0}.jodit-ui-image-properties-form__imageView{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#f5f5f6;display:-webkit-box;display:-ms-flexbox;display:flex;height:180px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0 0 8px;padding:0}.jodit-ui-image-position-tab__imageView img,.jodit-ui-image-properties-form__imageView img{max-height:100%;max-width:100%}.jodit-ui-image-position-tab__imageSizes.jodit-form__group,.jodit-ui-image-properties-form__imageSizes.jodit-form__group{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;margin:0;min-width:auto;padding:0}.jodit-ui-image-position-tab__imageSizes.jodit-form__group a,.jodit-ui-image-properties-form__imageSizes.jodit-form__group a{cursor:pointer;display:inline-block}.jodit-ui-image-position-tab .jodit-form__group,.jodit-ui-image-properties-form .jodit-form__group{padding:0}.jodit-ui-image-position-tab__tabsBox{padding:0 8px}.jodit-ui-image-properties-form__tabsBox{padding:0 8px}.jodit-ui-image-properties-form_lock_true:before{background-color:hsla(0,0%,86%,.6);content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:3}.jodit-ui-image-properties-form_lock_true:after{-webkit-animation:b 2s ease-out 0s infinite;animation:b 2s ease-out 0s infinite;background:url(${f}) no-repeat 50%;background-size:100% 100%;background-size:48px;content:"";display:inline-block;height:48px;left:50%;margin-left:-10px;margin-top:-10px;position:absolute;top:50%;vertical-align:middle;width:48px;will-change:transform}.jodit-popup-inline__container{min-width:700px;z-index:1300}.jodit-paste-storage{max-width:600px;padding:8px}@media (max-width:768px){.jodit-paste-storage{max-width:100%}}.jodit-paste-storage>div{border:1px solid #dadada;max-height:300px;max-width:100%}.jodit-paste-storage>div:first-child{margin-bottom:8px}.jodit-paste-storage>div:first-child a{border:1px solid transparent;-webkit-box-sizing:border-box;box-sizing:border-box;color:#4c4c4c;display:block;margin:0;max-width:100%;outline:none;overflow:hidden;padding:calc(8px/2);text-decoration:none;text-overflow:ellipsis;white-space:pre}.jodit-paste-storage>div:first-child a.jodit_active{background-color:#575757;color:#fff}.jodit-paste-storage>div:first-child a:focus{outline:none}.jodit-paste-storage>div:last-child{overflow:auto;padding:8px}.jodit-paste-storage>div:last-child li,.jodit-paste-storage>div:last-child ul{margin:0}.jodit-placeholder{color:#a5a5a5;display:block;left:0;padding:8px;pointer-events:none;position:absolute;top:0;-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important;width:100%;z-index:1}.jodit__preview-box table{border:none;border-collapse:collapse;empty-cells:show;margin-bottom:1em;margin-top:1em;max-width:100%}.jodit__preview-box table tr{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.jodit__preview-box table tr td{border:1px solid #dadada;min-width:2em;padding:.4em;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;vertical-align:middle}.jodit__preview-box table tr th{border:1px solid #dadada;min-width:2em;padding:.4em;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;vertical-align:middle}.jodit-table-resizer{cursor:col-resize;margin-left:calc(8px/-2);padding-left:calc(8px/2);padding-right:calc(8px/2);position:absolute;z-index:3}.jodit-table-resizer:after{border:0;content:"";display:block;height:100%;width:0}.jodit-table-resizer_moved{background-color:#b5d6fd;z-index:2}.jodit-table-resizer_moved:after{border-right:1px solid moved}[data-jodit_iframe_wrapper]{display:block;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}[data-jodit_iframe_wrapper] iframe{position:relative}[data-jodit_iframe_wrapper]:after{background:transparent;content:"";cursor:pointer;display:block;inset:0;position:absolute;z-index:1}[data-jodit_iframe_wrapper][data-jodit-wrapper_active=true] iframe{z-index:2}.jodit_lock [data-jodit-wrapper_active=true] iframe{z-index:1}.jodit-resizer{font-size:0;height:100px;left:0;outline:3px solid #98c1f1;pointer-events:none;position:absolute;top:0;width:100px}.jodit-resizer,.jodit-resizer *{-webkit-box-sizing:border-box;box-sizing:border-box}.jodit-resizer>span{background-color:#a5a5a5;color:#fff;display:inline-block;font-size:12px;height:24px;left:50%;line-height:24px;margin-left:calc(70px/-2);margin-top:calc(24px/-2);opacity:0;overflow:visible;position:absolute;text-align:center;top:50%;-webkit-transition:opacity .2s linear;transition:opacity .2s linear;width:70px}.jodit-resizer>div{background-color:#5ba4f3;display:inline-block;height:10px;pointer-events:all;position:absolute;width:10px;z-index:4}.jodit-resizer>div:hover{background-color:#537ebb}.jodit-resizer>div:first-child{cursor:nwse-resize;left:calc(10px/-2);top:calc(10px/-2)}.jodit-resizer>div:nth-child(2){cursor:nesw-resize;right:calc(10px/-2);top:calc(10px/-2)}.jodit-resizer>div:nth-child(3){bottom:calc(10px/-2);cursor:nwse-resize;right:calc(10px/-2)}.jodit-resizer>div:nth-child(4){bottom:calc(10px/-2);cursor:nesw-resize;left:calc(10px/-2)}.jodit-ui-search{height:0;position:absolute;right:0;top:0;width:0}.jodit-ui-search_sticky_true{position:fixed}.jodit-ui-search__box{background-color:#f9f9f9;border:solid #dadada;border-width:0 0 1px 1px;display:-webkit-box;display:-ms-flexbox;display:flex;max-width:100vw;padding:calc(8px/2);position:absolute;right:0;width:320px}.jodit-ui-search__box input{background-color:transparent;border:0;height:100%;margin:0;outline:none;padding:0 8px;width:100%}.jodit-ui-search__box input[data-ref=replace]{display:none}.jodit-ui-search__box input:not(:focus)+input:not(:focus){border-top:1px solid #dadada}.jodit-ui-search__buttons{height:30px}.jodit-ui-search__counts{height:30px}.jodit-ui-search__inputs{height:30px}.jodit-ui-search__inputs{padding-right:calc(8px/2);width:60%}.jodit-ui-search__counts{border-left:1px solid #dadada;color:#dadada;width:15%}.jodit-ui-search__buttons,.jodit-ui-search__counts{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.jodit-ui-search__buttons{-webkit-box-flex:1;-ms-flex:1;flex:1;padding-left:0}.jodit-ui-search__buttons button{background-color:transparent;border:1px solid transparent;height:100%;margin-right:1%;width:32%}.jodit-ui-search__buttons button[data-ref=replace-btn]{border:1px solid #dadada;display:none;margin-top:2px;width:100%}.jodit-ui-search__buttons button:hover{background-color:#ecebe9}.jodit-ui-search__buttons button:focus{border:1px solid rgba(181,214,253,.995)}.jodit-ui-search__buttons button:active{border:1px solid #b5d6fd;-webkit-transform:scale(0.95);-ms-transform:scale(0.95);transform:scale(0.95)}.jodit-ui-search_empty-query_true [data-ref=next],.jodit-ui-search_empty-query_true [data-ref=prev]{opacity:.5}.jodit-ui-search_replace_true .jodit-ui-search__counts{height:calc(30px*2)}.jodit-ui-search_replace_true .jodit-ui-search__inputs{height:calc(30px*2)}.jodit-ui-search_replace_true .jodit-ui-search__counts input{height:50%;-webkit-transition:background-color 0.1s linear;transition:background-color 0.1s linear}.jodit-ui-search_replace_true .jodit-ui-search__inputs input{height:50%;-webkit-transition:background-color 0.1s linear;transition:background-color 0.1s linear}.jodit-ui-search_replace_true .jodit-ui-search__counts input:focus{-webkit-box-shadow:inset 0 0 3px 0 #dadada;box-shadow:inset 0 0 3px 0 #dadada}.jodit-ui-search_replace_true .jodit-ui-search__inputs input:focus{-webkit-box-shadow:inset 0 0 3px 0 #dadada;box-shadow:inset 0 0 3px 0 #dadada}.jodit-ui-search_replace_true .jodit-ui-search__counts input[data-ref=replace],.jodit-ui-search_replace_true .jodit-ui-search__inputs input[data-ref=replace]{display:block}.jodit-ui-search_replace_true .jodit-ui-search__buttons{-ms-flex-wrap:wrap;flex-wrap:wrap}.jodit-ui-search_replace_true .jodit-ui-search__buttons button[data-ref=replace-btn]{display:block}::highlight(jodit-search-result){background-color:#b5d6fd;color:#fff}[jd-tmp-selection]{background-color:#b5d6fd;color:#fff}.jodit-container:not(.jodit_inline){min-height:100px}.jodit-container:not(.jodit_inline) .jodit-workplace{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:auto;min-height:50px;overflow:hidden}.jodit-container:not(.jodit_inline) .jodit-editor__resize{position:relative}.jodit-container:not(.jodit_inline) .jodit-editor__resize svg{bottom:0;cursor:nwse-resize;height:12px;overflow:hidden;position:absolute;right:0;width:12px;fill:#a5a5a5;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.jodit-source{background-color:#323232;display:none;-webkit-box-flex:1;-ms-flex:auto;flex:auto;overflow:auto;position:relative}.jodit-source,.jodit-source .jodit-source__mirror-fake{min-height:100%}.jodit-source *{font:12px/normal Monaco,Menlo,Ubuntu Mono,Consolas,source-code-pro,monospace}.jodit-container.jodit-source__mode .jodit-wysiwyg,.jodit-container.jodit-source__mode .jodit-wysiwyg_iframe{display:none!important}.jodit-container.jodit-source__mode .jodit-source{display:block!important}.jodit-container.jodit_split_mode .jodit-workplace{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap}.jodit-container.jodit_split_mode .jodit-source,.jodit-container.jodit_split_mode .jodit-wysiwyg,.jodit-container.jodit_split_mode .jodit-wysiwyg_iframe{display:block!important;-webkit-box-flex:1;-ms-flex:1;flex:1;width:50%}.jodit-source__mirror{background:#323232;border:0;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:border-box;box-sizing:border-box;color:#f0f0f0;height:100%;line-height:1.5;font:12px/normal Monaco,Menlo,Ubuntu Mono,Consolas,source-code-pro,monospace;margin:0;min-height:100%;outline:none;overflow:auto;padding:8px;resize:none;-moz-tab-size:2em;-o-tab-size:2em;tab-size:2em;white-space:pre-wrap;width:100%;z-index:2}.jodit-source__mirror::-moz-selection{background:#bdbdbd}.jodit-source__mirror::selection{background:#bdbdbd}.jodit_sticky-dummy_toolbar{display:none}.jodit_sticky>.jodit-toolbar__box{border-bottom:1px solid #dadada;left:auto;position:fixed;position:sticky;top:0;z-index:3}.jodit_sticky .jodit_sticky-dummy_toolbar{display:block}.jodit-symbols{padding:8px;width:460px}.jodit-symbols__container{display:-webkit-box;display:-ms-flexbox;display:flex}.jodit-symbols__container_table{width:88%}.jodit-symbols__container_preview{width:12%}.jodit-symbols__preview{border:1px solid #dadada;font-size:34px;padding:20px 0;text-align:center}.jodit-symbols__table{border:0;border-spacing:0;table-layout:fixed}.jodit-symbols__table td{padding:0}.jodit-symbols__table td a{border:1px solid transparent;-webkit-box-sizing:border-box;box-sizing:border-box;color:#222;cursor:pointer;display:inline-block;font-size:16px;height:calc(18px*1.2);line-height:calc(18px*1.2);text-align:center;text-decoration:none;vertical-align:top;width:calc(18px*1.2)}.jodit-symbols__table td a:focus{outline:2px solid #dadada}.jodit-symbols__table td a:hover{outline:2px solid #dadada}.jodit-ui-ai-assistant{min-width:460px;padding:8px;width:100%}@media (max-width:768px){.jodit-ui-ai-assistant{min-width:100%}}.jodit-ui-ai-assistant__body{margin-bottom:10px}.jodit-ui-ai-assistant__prompt-row{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:10px}.jodit-ui-ai-assistant__prompt-row-label{margin-right:10px}.jodit-ui-ai-assistant__prompt-row-input{-webkit-box-flex:1;-ms-flex:1;flex:1;margin-right:10px}.jodit-ui-ai-assistant__prompt-row .jodit-icon_ai_assistant{cursor:pointer;height:22px;width:22px}.jodit-ui-ai-assistant__prompt-row .jodit-ui-button{margin-right:10px}.jodit-ui-ai-assistant__prompt-row .jodit-ui-button_ai_assistant{margin-right:0;margin-top:20px}.jodit-ui-ai-assistant__results{border-color:#a5a5a5;border-style:solid;border-width:1px;height:300px;line-height:1.5;max-width:460px;min-height:300px;min-width:100%;overflow:auto;padding:8px;position:relative}.jodit-ui-ai-assistant__results p{margin:0 0 10px}.jodit-ui-ai-assistant__close{cursor:pointer;padding:10px;position:absolute;right:0;top:0}.jodit-ui-ai-assistant_hide_true{display:none}.jodit-ui-ai-assistant__spinner:before{-webkit-animation:b .6s linear infinite;animation:b .6s linear infinite;border:1px solid #ccc;border-radius:50%;border-top-color:#8817c3;-webkit-box-sizing:border-box;box-sizing:border-box;content:"";height:30px;left:50%;margin-left:-15px;margin-top:-15px;position:absolute;top:50%;width:30px}.jodit-ui-ai-assistant__error{color:#ff3b3b}.jodit-context table,.jodit-wysiwyg table{border:none;border-collapse:collapse;empty-cells:show;margin-bottom:1em;margin-top:1em;max-width:100%}.jodit-context table tr,.jodit-wysiwyg table tr{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.jodit-context table tr td{border:1px solid #dadada;min-width:2em;padding:.4em;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;vertical-align:middle}.jodit-context table tr th{border:1px solid #dadada;min-width:2em;padding:.4em;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;vertical-align:middle}.jodit-wysiwyg table tr td{border:1px solid #dadada;min-width:2em;padding:.4em;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;vertical-align:middle}.jodit-wysiwyg table tr th{border:1px solid #dadada;min-width:2em;padding:.4em;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;vertical-align:middle}.jodit-form__inserter .jodit-form__table-creator-box{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:768px){.jodit-form__inserter .jodit-form__table-creator-box{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.jodit-form__inserter .jodit-form__table-creator-box .jodit-form__container{font-size:0;margin:0;min-width:180px;padding:0}.jodit-form__inserter .jodit-form__table-creator-box .jodit-form__container>div>span{border:1px solid #dadada;-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;height:18px;margin-bottom:2px;margin-left:2px;vertical-align:top;width:18px}.jodit-form__inserter .jodit-form__table-creator-box .jodit-form__container>div>span:first-child{margin-left:0}.jodit-form__inserter .jodit-form__table-creator-box .jodit-form__container>div>span.jodit_hovered{background:#dcdcdc;border-color:#dcdcdc}.jodit-form__inserter .jodit-form__table-creator-box .jodit-form__options{font-size:14px}.jodit-form__inserter .jodit-form__table-creator-box .jodit-form__options label{padding-top:0;text-align:left}.jodit-form__inserter .jodit-form__table-creator-box .jodit-form__options label input{margin-right:8px}.jodit-form__inserter label{font-size:14px;margin:0;padding:8px;text-align:center}.jodit-xpath{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:calc(8px/-2)}.jodit-xpath__item{display:-webkit-box;display:-ms-flexbox;display:flex;height:11px;line-height:calc(11px - 1px)}.jodit-xpath__item a{color:#4c4c4c;font-size:11px;margin-left:2px;outline:0;padding:0 3px}.jodit-wysiwyg{outline:0}.jodit-wysiwyg ::-moz-selection, .jodit-wysiwyg::-moz-selection{background:#b5d6fd;color:#4c4c4c}.jodit-wysiwyg ::selection,.jodit-wysiwyg::selection{background:#b5d6fd;color:#4c4c4c}.jodit-container:not(.jodit_inline) .jodit-wysiwyg{margin:0;outline:0;overflow-x:auto;padding:8px;position:relative}.jodit-container:not(.jodit_inline) .jodit-wysiwyg img{max-width:100%;position:relative}.jodit-container:not(.jodit_inline) .jodit-wysiwyg jodit-media{position:relative}.jodit-container:not(.jodit_inline) .jodit-wysiwyg jodit-media *{position:relative;z-index:0}.jodit-container:not(.jodit_inline) .jodit-wysiwyg jodit-media:before{content:"";inset:0;position:absolute;z-index:1}.jodit-form{color:#4c4c4c;font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:14px}.jodit-form.jodit_error{border-color:#ff3b3b;-webkit-box-shadow:inset 0 0 3px 0 hsla(0,0%,74%,.3);box-shadow:inset 0 0 3px 0 hsla(0,0%,74%,.3)}@media (max-width:768px){.jodit-form{min-width:150px}}.jodit-form button{background:#d6d6d6;border:none;color:#4c4c4c;cursor:pointer;font-size:16px;height:36px;line-height:1;margin-bottom:8px;margin-top:8px;outline:none;padding:8px;text-decoration:none;-webkit-transition:background .2s ease 0s;transition:background .2s ease 0s}.jodit-form button:hover{background-color:#ecebe9;color:#4c4c4c}.jodit-form button:active{background:#ecebe9;color:#4c4c4c}.jodit-form label{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:8px;text-align:left;white-space:nowrap}.jodit-form label:last-child{margin-bottom:0}.jodit-form .jodit-form__center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.jodit .jodit-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border:1px solid #dadada;border-radius:0;-webkit-box-sizing:border-box;box-sizing:border-box;font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:14px;height:32px;line-height:1.2;outline:none;padding:0 8px;width:100%}.jodit .jodit-select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border:1px solid #dadada;border-radius:0;-webkit-box-sizing:border-box;box-sizing:border-box;font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:14px;height:32px;line-height:1.2;outline:none;padding:0 8px;width:100%}.jodit .jodit-textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border:1px solid #dadada;border-radius:0;-webkit-box-sizing:border-box;box-sizing:border-box;font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;font-size:14px;height:32px;line-height:1.2;outline:none;padding:0 8px;width:100%}.jodit .jodit-input[disabled]{background-color:#f0f0f0;color:#dadada}.jodit .jodit-select[disabled]{background-color:#f0f0f0;color:#dadada}.jodit .jodit-textarea[disabled]{background-color:#f0f0f0;color:#dadada}.jodit .jodit-input_has-error_true{border-color:#ff3b3b}.jodit .jodit-select_has-error_true{border-color:#ff3b3b}.jodit .jodit-textarea_has-error_true{border-color:#ff3b3b}.jodit .jodit-input:focus{border-color:#66afe9;outline:0}.jodit-checkbox{border:0;cursor:pointer;height:16px;margin:0 calc(8px/2) 0 0;outline:none;padding:0;position:relative;width:16px;z-index:2}.jodit-select{background-image:url(${g});background-position:98% 50%;background-repeat:no-repeat;padding-right:calc(8px*2)}.jodit-textarea{height:auto}.jodit-form__group{min-width:180px}.jodit-textarea{min-width:180px}.jodit-form__group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-bottom:8px}.jodit-form__group label{margin-bottom:calc(8px/2)}.jodit-button{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#dadada;border:0;border-radius:.25rem;color:#4c4c4c;cursor:pointer;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;height:calc(8px*4);-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;line-height:1;margin:0;padding:0 8px;position:relative;text-decoration:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:auto}.jodit-button svg{display:inline-block;height:24px;width:24px}.jodit-button svg+span{margin-left:calc(8px/2)}.jodit-button:active,.jodit-button:focus{outline:0}.jodit-button.disabled{opacity:.7}.jodit-buttons{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:8px}.jodit-button .jodit_icon,.jodit-button svg,.jodit-dialog__header .jodit_icon,.jodit-dialog__header svg{display:inline-block;height:16px;vertical-align:middle;width:16px}.jodit-switcher-wrapper{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.jodit-switcher-wrapper .jodit-switcher+span{margin-left:8px}.jodit-switcher{display:inline-block;height:32px;position:relative;width:60px}.jodit-switcher input{height:0;opacity:0;width:0}.jodit-switcher .jodit-switcher__slider{background-color:#dadada;border-radius:32px;cursor:pointer;inset:0;position:absolute;-webkit-transition:.4s;transition:.4s}.jodit-switcher .jodit-switcher__slider:before{background-color:#fff;border-radius:50%;bottom:4px;content:"";height:calc(32px - 4px*2);left:4px;position:absolute;-webkit-transition:.4s;transition:.4s;width:calc(32px - 4px*2)}input:checked+.jodit-switcher__slider{background-color:#2196f3}input:checked+.jodit-switcher__slider:before{-webkit-transform:translateX(calc(60px - 4px*2 - calc(32px - 4px*2)));-ms-transform:translateX(calc(60px - 4px*2 - calc(32px - 4px*2)));transform:translateX(calc(60px - 4px*2 - calc(32px - 4px*2)))}input:focus+.jodit-switcher__slider{-webkit-box-shadow:0 0 1px #2196f3;box-shadow:0 0 1px #2196f3}.jodit-button-group{display:-webkit-box;display:-ms-flexbox;display:flex}.jodit-button-group input{display:none}.jodit-button-group button{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center}.jodit-button-group button+button{margin-left:-1px}.jodit-button-group button:first-child,.jodit-button-group input:first-child+button{border-bottom-right-radius:0;border-right:0;border-top-right-radius:0}.jodit-button-group button:last-child,.jodit-button-group input:last-child+button{border-bottom-left-radius:0;border-left:0;border-top-left-radius:0}.jodit-button-group input[type=checkbox]:checked+button,.jodit-button-group input[type=checkbox]:not(:checked)+button+button{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.3),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.3),0 1px 2px rgba(0,0,0,.05)}.jodit_text_icons .jodit_icon{font-size:14px;width:auto}.jodit_text_icons .jodit_icon:first-letter{text-transform:uppercase}.jodit_text_icons .jodit-tabs .jodit-tabs__buttons>a{font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;width:auto}.jodit_text_icons .jodit-tabs .jodit-tabs__buttons>a i{width:auto}.jodit_text_icons.jodit-dialog .jodit-button{color:rgba(0,0,0,.75);font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;padding:8px;width:auto}.jodit_text_icons.jodit-dialog .jodit-dialog__header a{color:rgba(0,0,0,.75);font-family:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;padding:8px;width:auto}.jodit_text_icons.jodit-dialog .jodit-button .jodit_icon,.jodit_text_icons.jodit-dialog .jodit-dialog__header a .jodit_icon{width:auto}.jodit-grid{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%}.jodit-grid.jodit-grid_column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}@media (max-width:480px){.jodit-grid.jodit-grid_xs-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.jodit-grid [class*=jodit_col-]{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.jodit-grid .jodit_col-lg-5-5{width:100%}.jodit-grid .jodit_col-lg-4-5{width:80%}.jodit-grid .jodit_col-lg-3-5{width:60%}.jodit-grid .jodit_col-lg-2-5{width:40%}.jodit-grid .jodit_col-lg-1-5{width:20%}.jodit-grid .jodit_col-lg-4-4{width:100%}.jodit-grid .jodit_col-lg-3-4{width:75%}.jodit-grid .jodit_col-lg-2-4{width:50%}.jodit-grid .jodit_col-lg-1-4{width:25%}@media (max-width:992px){.jodit-grid .jodit_col-md-5-5{width:100%}.jodit-grid .jodit_col-md-4-5{width:80%}.jodit-grid .jodit_col-md-3-5{width:60%}.jodit-grid .jodit_col-md-2-5{width:40%}.jodit-grid .jodit_col-md-1-5{width:20%}.jodit-grid .jodit_col-md-4-4{width:100%}.jodit-grid .jodit_col-md-3-4{width:75%}.jodit-grid .jodit_col-md-2-4{width:50%}.jodit-grid .jodit_col-md-1-4{width:25%}}@media (max-width:768px){.jodit-grid .jodit_col-sm-5-5{width:100%}.jodit-grid .jodit_col-sm-4-5{width:80%}.jodit-grid .jodit_col-sm-3-5{width:60%}.jodit-grid .jodit_col-sm-2-5{width:40%}.jodit-grid .jodit_col-sm-1-5{width:20%}.jodit-grid .jodit_col-sm-4-4{width:100%}.jodit-grid .jodit_col-sm-3-4{width:75%}.jodit-grid .jodit_col-sm-2-4{width:50%}.jodit-grid .jodit_col-sm-1-4{width:25%}}@media (max-width:480px){.jodit-grid .jodit_col-xs-5-5{width:100%}.jodit-grid .jodit_col-xs-4-5{width:80%}.jodit-grid .jodit_col-xs-3-5{width:60%}.jodit-grid .jodit_col-xs-2-5{width:40%}.jodit-grid .jodit_col-xs-1-5{width:20%}.jodit-grid .jodit_col-xs-4-4{width:100%}.jodit-grid .jodit_col-xs-3-4{width:75%}.jodit-grid .jodit_col-xs-2-4{width:50%}.jodit-grid .jodit_col-xs-1-4{width:25%}}@-webkit-keyframes b{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes b{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.jodit-icon_loader{-webkit-animation:b 2s ease-out 0s infinite;animation:b 2s ease-out 0s infinite;background:url(${f}) no-repeat 50%;background-size:100% 100%;display:inline-block;height:48px;vertical-align:middle;width:48px;will-change:transform}.jodit-icon{background:50% no-repeat;background-size:contain;height:14px;overflow:visible;width:14px;fill:#4c4c4c;-webkit-transform-origin:0 0!important;-ms-transform-origin:0 0!important;transform-origin:0 0!important}.jodit-icon{stroke:#4c4c4c}.jodit-icon_close{stroke:#4c4c4c}svg.jodit-icon{height:auto;isolation:isolate}.jodit-icon_text{font-size:14px}.jodit,.jodit *,.jodit-container,.jodit-container *{-webkit-box-sizing:border-box;box-sizing:border-box}.jodit .jodit-workplace,.jodit-container .jodit-workplace{overflow:auto;position:relative}.jodit .jodit-workplace .jodit-wysiwyg,.jodit .jodit-workplace .jodit-wysiwyg_iframe,.jodit-container .jodit-workplace .jodit-wysiwyg,.jodit-container .jodit-workplace .jodit-wysiwyg_iframe{height:100%;width:100%}.jodit-wysiwyg [contenteditable=false]{cursor:default}.jodit-container:not(.jodit_inline){background-color:#f5f5f6;border:1px solid #dadada;border-radius:3px}.jodit-container:not(.jodit_inline) .jodit-workplace{background-color:#fff;border:0 solid #dadada;max-height:100%}.jodit-container:not(.jodit_inline).jodit_disabled{background:#dadada}.jodit-container:not(.jodit_inline).jodit_disabled .jodit-workplace{opacity:.4}.jodit_disabled,.jodit_lock{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.jodit_hidden{display:none!important}.jodit_vertical_middle{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}.jodit-box{background:0 0;border:0;float:none;height:auto;margin:0;max-width:none;outline:0;padding:0;position:static;width:auto}.jodit-dialog_theme_dark .jodit-toolbar-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent calc(calc(14px + calc((14px - 4px)*2) + 2px*2) - 1px),#6b6b6b calc(14px + calc((14px - 4px)*2) + 2px*2))}.jodit-dialog_theme_dark .jodit-toolbar-editor-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent calc(calc(14px + calc((14px - 4px)*2) + 2px*2) - 1px),#6b6b6b calc(14px + calc((14px - 4px)*2) + 2px*2))}.jodit_theme_dark .jodit-toolbar-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent calc(calc(14px + calc((14px - 4px)*2) + 2px*2) - 1px),#6b6b6b calc(14px + calc((14px - 4px)*2) + 2px*2))}.jodit_theme_dark .jodit-toolbar-editor-collection_mode_horizontal{background-image:repeating-linear-gradient(transparent 0,transparent calc(calc(14px + calc((14px - 4px)*2) + 2px*2) - 1px),#6b6b6b calc(14px + calc((14px - 4px)*2) + 2px*2))}.jodit-dialog_theme_dark .jodit-toolbar-collection_mode_horizontal:after{background-color:#6b6b6b}.jodit-dialog_theme_dark .jodit-toolbar-editor-collection_mode_horizontal:after{background-color:#6b6b6b}.jodit_theme_dark .jodit-toolbar-collection_mode_horizontal:after{background-color:#6b6b6b}.jodit_theme_dark .jodit-toolbar-editor-collection_mode_horizontal:after{background-color:#6b6b6b}.jodit-dialog_theme_dark .jodit-toolbar__box:not(:empty){border-color:#6b6b6b}.jodit_theme_dark .jodit-toolbar__box:not(:empty){border-color:#6b6b6b}.jodit-dialog_theme_dark .jodit-toolbar__box:not(:empty) .jodit-toolbar-editor-collection:after{background-color:#6b6b6b}.jodit_theme_dark .jodit-toolbar__box:not(:empty) .jodit-toolbar-editor-collection:after{background-color:#6b6b6b}.jodit-dialog_theme_dark .jodit-ui-group_separated_true:not(:last-child,.jodit-ui-group_before-spacer_true):after{border-right-color:#6b6b6b}.jodit_theme_dark .jodit-ui-group_separated_true:not(:last-child,.jodit-ui-group_before-spacer_true):after{border-right-color:#6b6b6b}.jodit-dialog_theme_dark.jodit-container{background-color:#575757;border-color:#dadada}.jodit_theme_dark.jodit-container{background-color:#575757;border-color:#dadada}.jodit-dialog_theme_dark.jodit-container.jodit_disabled{background-color:#575757}.jodit_theme_dark.jodit-container.jodit_disabled{background-color:#575757}.jodit-dialog_theme_dark.jodit-container:not(.jodit_inline) .jodit-workplace{border-color:#575757}.jodit_theme_dark.jodit-container:not(.jodit_inline) .jodit-workplace{border-color:#575757}.jodit-dialog_theme_dark .jodit-popup__content{background:#575757}.jodit_theme_dark .jodit-popup__content{background:#575757}.jodit-dialog_theme_dark .jodit-toolbar-button__text{color:#d1cccc}.jodit-dialog_theme_dark .jodit-toolbar-button__text:hover:not([disabled]){color:#575757}.jodit-dialog_theme_dark .jodit-toolbar-select__text{color:#d1cccc}.jodit-dialog_theme_dark .jodit-toolbar-select__text:hover:not([disabled]){color:#575757}.jodit-dialog_theme_dark .jodit-ui-button__text{color:#d1cccc}.jodit-dialog_theme_dark .jodit-ui-button__text:hover:not([disabled]){color:#575757}.jodit_theme_dark .jodit-toolbar-button__text{color:#d1cccc}.jodit_theme_dark .jodit-toolbar-button__text:hover:not([disabled]){color:#575757}.jodit_theme_dark .jodit-toolbar-select__text{color:#d1cccc}.jodit_theme_dark .jodit-toolbar-select__text:hover:not([disabled]){color:#575757}.jodit_theme_dark .jodit-ui-button__text{color:#d1cccc}.jodit_theme_dark .jodit-ui-button__text:hover:not([disabled]){color:#575757}.jodit-dialog_theme_dark .jodit-toolbar-button .jodit-icon{fill:silver;stroke:silver}.jodit-dialog_theme_dark .jodit-toolbar-button .jodit-icon:hover:not([disabled]){stroke:#575757}.jodit-dialog_theme_dark .jodit-toolbar-button .jodit-icon:hover:not([disabled]){fill:#575757}.jodit-dialog_theme_dark .jodit-toolbar-button svg{fill:silver;stroke:silver}.jodit-dialog_theme_dark .jodit-toolbar-button svg:hover:not([disabled]){stroke:#575757}.jodit-dialog_theme_dark .jodit-toolbar-button svg:hover:not([disabled]){fill:#575757}.jodit-dialog_theme_dark .jodit-toolbar-button__trigger{fill:#4c4c4c;stroke:#4c4c4c}.jodit-dialog_theme_dark .jodit-toolbar-button__trigger:hover:not([disabled]){stroke:#575757}.jodit-dialog_theme_dark .jodit-toolbar-button__trigger:hover:not([disabled]){fill:#575757}.jodit-dialog_theme_dark .jodit-toolbar-select .jodit-icon{fill:silver;stroke:silver}.jodit-dialog_theme_dark .jodit-toolbar-select .jodit-icon:hover:not([disabled]){stroke:#575757}.jodit-dialog_theme_dark .jodit-toolbar-select .jodit-icon:hover:not([disabled]){fill:#575757}.jodit-dialog_theme_dark .jodit-toolbar-select svg{fill:silver;stroke:silver}.jodit-dialog_theme_dark .jodit-toolbar-select svg:hover:not([disabled]){stroke:#575757}.jodit-dialog_theme_dark .jodit-toolbar-select svg:hover:not([disabled]){fill:#575757}.jodit-dialog_theme_dark .jodit-toolbar-select__trigger{fill:#4c4c4c;stroke:#4c4c4c}.jodit-dialog_theme_dark .jodit-toolbar-select__trigger:hover:not([disabled]){stroke:#575757}.jodit-dialog_theme_dark .jodit-toolbar-select__trigger:hover:not([disabled]){fill:#575757}.jodit-dialog_theme_dark .jodit-ui-button .jodit-icon{fill:silver;stroke:silver}.jodit-dialog_theme_dark .jodit-ui-button .jodit-icon:hover:not([disabled]){stroke:#575757}.jodit-dialog_theme_dark .jodit-ui-button .jodit-icon:hover:not([disabled]){fill:#575757}.jodit-dialog_theme_dark .jodit-ui-button svg{fill:silver;stroke:silver}.jodit-dialog_theme_dark .jodit-ui-button svg:hover:not([disabled]){stroke:#575757}.jodit-dialog_theme_dark .jodit-ui-button svg:hover:not([disabled]){fill:#575757}.jodit-dialog_theme_dark .jodit-ui-button__trigger{fill:#4c4c4c;stroke:#4c4c4c}.jodit-dialog_theme_dark .jodit-ui-button__trigger:hover:not([disabled]){stroke:#575757}.jodit-dialog_theme_dark .jodit-ui-button__trigger:hover:not([disabled]){fill:#575757}.jodit_theme_dark .jodit-toolbar-button .jodit-icon{fill:silver;stroke:silver}.jodit_theme_dark .jodit-toolbar-button .jodit-icon:hover:not([disabled]){stroke:#575757}.jodit_theme_dark .jodit-toolbar-button .jodit-icon:hover:not([disabled]){fill:#575757}.jodit_theme_dark .jodit-toolbar-button svg{fill:silver;stroke:silver}.jodit_theme_dark .jodit-toolbar-button svg:hover:not([disabled]){stroke:#575757}.jodit_theme_dark .jodit-toolbar-button svg:hover:not([disabled]){fill:#575757}.jodit_theme_dark .jodit-toolbar-button__trigger{fill:#4c4c4c;stroke:#4c4c4c}.jodit_theme_dark .jodit-toolbar-button__trigger:hover:not([disabled]){stroke:#575757}.jodit_theme_dark .jodit-toolbar-button__trigger:hover:not([disabled]){fill:#575757}.jodit_theme_dark .jodit-toolbar-select .jodit-icon{fill:silver;stroke:silver}.jodit_theme_dark .jodit-toolbar-select .jodit-icon:hover:not([disabled]){stroke:#575757}.jodit_theme_dark .jodit-toolbar-select .jodit-icon:hover:not([disabled]){fill:#575757}.jodit_theme_dark .jodit-toolbar-select svg{fill:silver;stroke:silver}.jodit_theme_dark .jodit-toolbar-select svg:hover:not([disabled]){stroke:#575757}.jodit_theme_dark .jodit-toolbar-select svg:hover:not([disabled]){fill:#575757}.jodit_theme_dark .jodit-toolbar-select__trigger{fill:#4c4c4c;stroke:#4c4c4c}.jodit_theme_dark .jodit-toolbar-select__trigger:hover:not([disabled]){stroke:#575757}.jodit_theme_dark .jodit-toolbar-select__trigger:hover:not([disabled]){fill:#575757}.jodit_theme_dark .jodit-ui-button .jodit-icon{fill:silver;stroke:silver}.jodit_theme_dark .jodit-ui-button .jodit-icon:hover:not([disabled]){stroke:#575757}.jodit_theme_dark .jodit-ui-button .jodit-icon:hover:not([disabled]){fill:#575757}.jodit_theme_dark .jodit-ui-button svg{fill:silver;stroke:silver}.jodit_theme_dark .jodit-ui-button svg:hover:not([disabled]){stroke:#575757}.jodit_theme_dark .jodit-ui-button svg:hover:not([disabled]){fill:#575757}.jodit_theme_dark .jodit-ui-button__trigger{fill:#4c4c4c;stroke:#4c4c4c}.jodit_theme_dark .jodit-ui-button__trigger:hover:not([disabled]){stroke:#575757}.jodit_theme_dark .jodit-ui-button__trigger:hover:not([disabled]){fill:#575757}.jodit-dialog_theme_dark .jodit-toolbar-button:hover:not([disabled]){background-color:silver;color:#575757}.jodit-dialog_theme_dark .jodit-toolbar-button__button:hover:not([disabled]){background-color:silver;color:#575757}.jodit-dialog_theme_dark .jodit-toolbar-button__text:hover:not([disabled]){background-color:silver;color:#575757}.jodit-dialog_theme_dark .jodit-toolbar-button__trigger:hover:not([disabled]){background-color:silver;color:#575757}.jodit-dialog_theme_dark .jodit-toolbar-select:hover:not([disabled]){background-color:silver;color:#575757}.jodit-dialog_theme_dark .jodit-toolbar-select__button:hover:not([disabled]){background-color:silver;color:#575757}.jodit-dialog_theme_dark .jodit-toolbar-select__text:hover:not([disabled]){background-color:silver;color:#575757}.jodit-dialog_theme_dark .jodit-toolbar-select__trigger:hover:not([disabled]){background-color:silver;color:#575757}.jodit-dialog_theme_dark .jodit-ui-button:hover:not([disabled]){background-color:silver;color:#575757}.jodit-dialog_theme_dark .jodit-ui-button__button:hover:not([disabled]){background-color:silver;color:#575757}.jodit-dialog_theme_dark .jodit-ui-button__text:hover:not([disabled]){background-color:silver;color:#575757}.jodit-dialog_theme_dark .jodit-ui-button__trigger:hover:not([disabled]){background-color:silver;color:#575757}.jodit_theme_dark .jodit-toolbar-button:hover:not([disabled]){background-color:silver;color:#575757}.jodit_theme_dark .jodit-toolbar-button__button:hover:not([disabled]){background-color:silver;color:#575757}.jodit_theme_dark .jodit-toolbar-button__text:hover:not([disabled]){background-color:silver;color:#575757}.jodit_theme_dark .jodit-toolbar-button__trigger:hover:not([disabled]){background-color:silver;color:#575757}.jodit_theme_dark .jodit-toolbar-select:hover:not([disabled]){background-color:silver;color:#575757}.jodit_theme_dark .jodit-toolbar-select__button:hover:not([disabled]){background-color:silver;color:#575757}.jodit_theme_dark .jodit-toolbar-select__text:hover:not([disabled]){background-color:silver;color:#575757}.jodit_theme_dark .jodit-toolbar-select__trigger:hover:not([disabled]){background-color:silver;color:#575757}.jodit_theme_dark .jodit-ui-button:hover:not([disabled]){background-color:silver;color:#575757}.jodit_theme_dark .jodit-ui-button__button:hover:not([disabled]){background-color:silver;color:#575757}.jodit_theme_dark .jodit-ui-button__text:hover:not([disabled]){background-color:silver;color:#575757}.jodit_theme_dark .jodit-ui-button__trigger:hover:not([disabled]){background-color:silver;color:#575757}.jodit-dialog_theme_dark .jodit-status-bar{background-color:#5f5c5c;border-color:#6b6b6b;color:#d1cccc}.jodit-dialog_theme_dark .jodit-workplace+.jodit-status-bar:not(:empty){background-color:#5f5c5c;border-color:#6b6b6b;color:#d1cccc}.jodit_theme_dark .jodit-status-bar{background-color:#5f5c5c;border-color:#6b6b6b;color:#d1cccc}.jodit_theme_dark .jodit-workplace+.jodit-status-bar:not(:empty){background-color:#5f5c5c;border-color:#6b6b6b;color:#d1cccc}.jodit-dialog_theme_dark .jodit-status-bar{color:#d1cccc}.jodit-dialog_theme_dark .jodit-status-bar .jodit-status-bar__item a{color:#d1cccc}.jodit-dialog_theme_dark .jodit-status-bar .jodit-status-bar__item span{color:#d1cccc}.jodit-dialog_theme_dark .jodit-status-bar a.jodit-status-bar-link{color:#d1cccc}.jodit-dialog_theme_dark .jodit-status-bar a.jodit-status-bar-link:hover{color:#d1cccc}.jodit-dialog_theme_dark .jodit-status-bar a.jodit-status-bar-link:visited{color:#d1cccc}.jodit-dialog_theme_dark .jodit-workplace+.jodit-status-bar:not(:empty){color:#d1cccc}.jodit-dialog_theme_dark .jodit-workplace+.jodit-status-bar:not(:empty) .jodit-status-bar__item a{color:#d1cccc}.jodit-dialog_theme_dark .jodit-workplace+.jodit-status-bar:not(:empty) .jodit-status-bar__item span{color:#d1cccc}.jodit-dialog_theme_dark .jodit-workplace+.jodit-status-bar:not(:empty) a.jodit-status-bar-link{color:#d1cccc}.jodit-dialog_theme_dark .jodit-workplace+.jodit-status-bar:not(:empty) a.jodit-status-bar-link:hover{color:#d1cccc}.jodit-dialog_theme_dark .jodit-workplace+.jodit-status-bar:not(:empty) a.jodit-status-bar-link:visited{color:#d1cccc}.jodit_theme_dark .jodit-status-bar{color:#d1cccc}.jodit_theme_dark .jodit-status-bar .jodit-status-bar__item a{color:#d1cccc}.jodit_theme_dark .jodit-status-bar .jodit-status-bar__item span{color:#d1cccc}.jodit_theme_dark .jodit-status-bar a.jodit-status-bar-link{color:#d1cccc}.jodit_theme_dark .jodit-status-bar a.jodit-status-bar-link:hover{color:#d1cccc}.jodit_theme_dark .jodit-status-bar a.jodit-status-bar-link:visited{color:#d1cccc}.jodit_theme_dark .jodit-workplace+.jodit-status-bar:not(:empty){color:#d1cccc}.jodit_theme_dark .jodit-workplace+.jodit-status-bar:not(:empty) .jodit-status-bar__item a{color:#d1cccc}.jodit_theme_dark .jodit-workplace+.jodit-status-bar:not(:empty) .jodit-status-bar__item span{color:#d1cccc}.jodit_theme_dark .jodit-workplace+.jodit-status-bar:not(:empty) a.jodit-status-bar-link{color:#d1cccc}.jodit_theme_dark .jodit-workplace+.jodit-status-bar:not(:empty) a.jodit-status-bar-link:hover{color:#d1cccc}.jodit_theme_dark .jodit-workplace+.jodit-status-bar:not(:empty) a.jodit-status-bar-link:visited{color:#d1cccc}.jodit-dialog_theme_dark .jodit-toolbar__box:not(:empty){background:#5f5c5c}.jodit_theme_dark .jodit-toolbar__box:not(:empty){background:#5f5c5c}.jodit-dialog_theme_dark .jodit-icon-close{stroke:silver}.jodit_theme_dark .jodit-icon-close{stroke:silver}.jodit-dialog_theme_dark .jodit-wysiwyg{background-color:#575757;color:#d1cccc}.jodit-dialog_theme_dark .jodit-wysiwyg_iframe{background-color:#575757;color:#d1cccc}.jodit_theme_dark .jodit-wysiwyg{background-color:#575757;color:#d1cccc}.jodit_theme_dark .jodit-wysiwyg_iframe{background-color:#575757;color:#d1cccc}.jodit-dialog_theme_dark .jodit-form input[type=text]{background-color:rgba(81,81,81,.41);border-color:#686767;color:#d1cccc}.jodit-dialog_theme_dark .jodit-form input[type=url]{background-color:rgba(81,81,81,.41);border-color:#686767;color:#d1cccc}.jodit-dialog_theme_dark .jodit-form textarea{background-color:rgba(81,81,81,.41);border-color:#686767;color:#d1cccc}.jodit_theme_dark .jodit-form input[type=text]{background-color:rgba(81,81,81,.41);border-color:#686767;color:#d1cccc}.jodit_theme_dark .jodit-form input[type=url]{background-color:rgba(81,81,81,.41);border-color:#686767;color:#d1cccc}.jodit_theme_dark .jodit-form textarea{background-color:rgba(81,81,81,.41);border-color:#686767;color:#d1cccc}.jodit-dialog_theme_dark .jodit-form button{background-color:hsla(0,0%,41%,.75);color:#d1cccc}.jodit_theme_dark .jodit-form button{background-color:hsla(0,0%,41%,.75);color:#d1cccc}.jodit-dialog_theme_dark .jodit-placeholder{color:hsla(0,5%,81%,.8)}.jodit_theme_dark .jodit-placeholder{color:hsla(0,5%,81%,.8)}.jodit-dialog_theme_dark .jodit-drag-and-drop__file-box{color:#d1cccc}.jodit-dialog_theme_dark .jodit_uploadfile_button{color:#d1cccc}.jodit_theme_dark .jodit-drag-and-drop__file-box{color:#d1cccc}.jodit_theme_dark .jodit_uploadfile_button{color:#d1cccc}.jodit-dialog_theme_dark .jodit-drag-and-drop__file-box:hover{background-color:hsla(0,0%,41%,.75)}.jodit-dialog_theme_dark .jodit_uploadfile_button:hover{background-color:hsla(0,0%,41%,.75)}.jodit_theme_dark .jodit-drag-and-drop__file-box:hover{background-color:hsla(0,0%,41%,.75)}.jodit_theme_dark .jodit_uploadfile_button:hover{background-color:hsla(0,0%,41%,.75)}.jodit-dialog_theme_dark .jodit-add-new-line:before{border-top-color:#686767}.jodit_theme_dark .jodit-add-new-line:before{border-top-color:#686767}.jodit-dialog_theme_dark .jodit-add-new-line span{background:hsla(0,0%,41%,.75);border-color:#686767}.jodit_theme_dark .jodit-add-new-line span{background:hsla(0,0%,41%,.75);border-color:#686767}.jodit-dialog_theme_dark .jodit-add-new-line span svg{fill:#d1cccc}.jodit_theme_dark .jodit-add-new-line span svg{fill:#d1cccc}.jodit-dialog_theme_dark .jodit-resizer>i{background:hsla(0,0%,41%,.75);border-color:silver}.jodit_theme_dark .jodit-resizer>i{background:hsla(0,0%,41%,.75);border-color:silver}.jodit-dialog_theme_dark .jodit-input{background-color:silver;border-color:#444;color:#444}.jodit-dialog_theme_dark .jodit-select{background-color:silver;border-color:#444;color:#444}.jodit_theme_dark .jodit-input{background-color:silver;border-color:#444;color:#444}.jodit_theme_dark .jodit-select{background-color:silver;border-color:#444;color:#444}.jodit-dialog_theme_dark.jodit-dialog{background-color:#575757}.jodit_theme_dark.jodit-dialog{background-color:#575757}.jodit-dialog_theme_dark.jodit-dialog .jodit-dialog__header{border-color:#444}.jodit-dialog_theme_dark.jodit-dialog .jodit-filebrowser__files.active .jodit-filebrowser__files-item{border-color:#444}.jodit_theme_dark.jodit-dialog .jodit-dialog__header{border-color:#444}.jodit_theme_dark.jodit-dialog .jodit-filebrowser__files.active .jodit-filebrowser__files-item{border-color:#444}.jodit-dialog_theme_dark.jodit-dialog .jodit-filebrowser__files.active .jodit-filebrowser__files-item-info{background-color:#d1cccc}.jodit_theme_dark.jodit-dialog .jodit-filebrowser__files.active .jodit-filebrowser__files-item-info{background-color:#d1cccc}`,""]);const m=h;},379:t=>{var e=[];function i(t){for(var i=-1,o=0;o<e.length;o++)if(e[o].identifier===t){i=o;break}return i}function o(t,o){for(var r={},s=[],a=0;a<t.length;a++){var l=t[a],c=o.base?l[0]+o.base:l[0],d=r[c]||0,u="".concat(c," ").concat(d);r[c]=d+1;var h=i(u),p={css:l[1],media:l[2],sourceMap:l[3],supports:l[4],layer:l[5]};if(-1!==h)e[h].references++,e[h].updater(p);else {var f=n(p,o);o.byIndex=a,e.splice(a,0,{identifier:u,updater:f,references:1});}s.push(u);}return s}function n(t,e){var i=e.domAPI(e);return i.update(t),function(e){if(e){if(e.css===t.css&&e.media===t.media&&e.sourceMap===t.sourceMap&&e.supports===t.supports&&e.layer===t.layer)return;i.update(t=e);}else i.remove();}}t.exports=function(t,n){var r=o(t=t||[],n=n||{});return function(t){t=t||[];for(var s=0;s<r.length;s++){var a=i(r[s]);e[a].references--;}for(var l=o(t,n),c=0;c<r.length;c++){var d=i(r[c]);0===e[d].references&&(e[d].updater(),e.splice(d,1));}r=l;}};},569:t=>{var e={};t.exports=function(t,i){var o=function(t){if(void 0===e[t]){var i=document.querySelector(t);if(window.HTMLIFrameElement&&i instanceof window.HTMLIFrameElement)try{i=i.contentDocument.head;}catch(t){i=null;}e[t]=i;}return e[t]}(t);if(!o)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");o.appendChild(i);};},216:t=>{t.exports=function(t){var e=document.createElement("style");return t.setAttributes(e,t.attributes),t.insert(e,t.options),e};},565:(t,e,i)=>{t.exports=function(t){var e=i.nc;e&&t.setAttribute("nonce",e);};},795:t=>{t.exports=function(t){if("undefined"==typeof document)return {update:function(){},remove:function(){}};var e=t.insertStyleElement(t);return {update:function(i){!function(t,e,i){var o="";i.supports&&(o+="@supports (".concat(i.supports,") {")),i.media&&(o+="@media ".concat(i.media," {"));var n=void 0!==i.layer;n&&(o+="@layer".concat(i.layer.length>0?" ".concat(i.layer):""," {")),o+=i.css,n&&(o+="}"),i.media&&(o+="}"),i.supports&&(o+="}");var r=i.sourceMap;r&&"undefined"!=typeof btoa&&(o+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(r))))," */")),e.styleTagTransform(o,t,e.options);}(e,t,i);},remove:function(){!function(t){if(null===t.parentNode)return !1;t.parentNode.removeChild(t);}(e);}}};},589:t=>{t.exports=function(t,e){if(e.styleSheet)e.styleSheet.cssText=t;else {for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(t));}};},963:t=>{t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAYAAADDPmHLAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAABRsSURBVHja7F1/aJfVGn/33RgUg8FiNfK2WCykyS7GLoYyUbwYipZMumgLo+iPS9HlXhSHkRXdislESxMz0mapuaFo2myjkfnNlTQ2FJdTu8NvLVcrdbpcfGvxrfs823m/vXt3fjznvOedzr0PPJzzPe+7d+97Ps95nuc851fGAw884CD98ccfI1Jqmc3UpEyQz4FkMqRTgYshn8fymZ57SyGbzf5mENIOz9+ngE9Atg/SLkhPQHoWeEDn3SmpSZlJnvf7ypUrTpb7IyMjY+gGN6WWmaY84l2T3c+u58D1csjOgvwsyBdBvsDRo2zgMl/ZNM59vcAJ4Dj8nzikLa5QmBLv28YCfPd3li7gPHBMwKdcEwhCJgN6FoLOWJtUgiWovALG04FXsbI44xbgw8AplbaU/Q+ZQNgGf0gA/JWhC1aQyle1eN91rPRKKKuEsjzZvSph0m2RiutpIYRrfZC8B+l7kB6jgq0CnQIy9X39v2NYQW5FeUFQlQVN/aALyiYBPw/5M5B+Dvw02vMggqcDukEl57F3xHf9H747+4bA5oD6dzqaYEgAqIDbBl9RhvZ4H/B5yL+IDp3oXhmwNkm3lTLn80VIz+O3QFqm2/rHwgeI6QDOa006LZ3Q4lHNNwK3AVeYAD4WgmHQUivYNzWyb7xufICYaavXVbuKZ6MXfwRVJ+TnXW+Am/oMnNaO3/Y5pPitcyh/a6LqtXwAt+J01LVFEzAJ0jpIj7JunJYd1wHchnBQHUSC3Uan8WPgPVgHlBiBCcAkH4Da2i2DjwGZlcy5W0K17zLwVb9NgaY4iJpawJs+BCnWwUo3SKXT4oOAP8IHCFsIfMCguj8JaQ2kOaaA227d10ALuIR1gHVxErjctPtHBd8btSR3A4MIgSePAZxqVPeQlthq7ZRuZVABCVkLuGkJpGgKsY4ybfUEVO84qhsoAzSgrUfHZ1UQVe99B6o2oMYdwg7latAq5iROGoueQExW6UE0gCe/ANIh9SZ6jqkWsN3STZ0rHWEgpkNmEvILxqQbSAXaAPxqSBswQkbpbpo6fGPR0m3GBYjBIIwqNjCTEAr4wkBQUA0AjKNrdZCu0okAqgQhTKCDhFxV91BNgsDuYx3WQZptG3xtDUCJEDKvthGuLVEJlq4gUMyAylfQERadPrhKOHTmB3Ces4RFEXNsgW8UClbZcEhxqPQIpHOord2k1ZsAH4YvYNJXN3EgWX4Ocw4LbIEvDQSJfADJtULWxSuj+BBUP4DaC6D0DkyFg6JKTVo/5brvXqzbo2zSi3af3/9bGgrW1Ar5kH4MXEzVHEHVf5CuYZC4fti9AoI/gXX8Eda5Tp9f9I4xWWsnOoc5zNMv1okjmKp/vzay3epNJ4+YmALdoWBPWTHksc5zTU1AekqYt7LcWTruTYTZQdmQHoB0GuXv/de8L8e7xrsuA8kPNtx3AZIOxp3APc7wvD6kvi+//DLh3nvPPfegWs1jf4dBGGxpOA+hlOXzgw7VBjEBnDKcs4jzDOZDOmjqD2SJQFGBx9JaSOcQ7xVO2RIJhf86AfB+Z3huHs7Ra2pra+ugtubTp0+jMLgC0e6/ftddd6EgzMO5iGwSaq4NITCdLczy6GzXAj8KnDIxAaM0AKeViwCtgbRSNgGUJwQyDaACngO4w6S/CXgb8KEvvvgiFUaw59y5c64mWXvnnXdmsijdYxjpdP6cXh6oS0g1Bb48zpFEzValA3663pcuXaoleSzFltBIlWhRmWx+v6yMcQJ4PU7A/Oyzz/qca0R33HEHrjlAEJa73rns24JqA0keTUGTjglIJpNOxsMPP6wLfiGkx53hxRbcewwXc1BAx0u4gGMNcP2nn36acq4juv322ytZ5K7UlhBo5LER3AvcTXU60wKgYbsyWTCi3LTV6wLvKesGrvrkk0/qneucCgoKHoJkHbxvYRAhMMij/zMbVzZRTMAvv/wycj4AoRv4Mk7oII4HkLp+vC6drwxt/FrgKeMBfKTe3t69UMFTgPG9B3WcQdMeBsvjhJJqnYGqjMrKSmr/tZxNWAi87o9i+1l5O6SPNjc3dzrjlPLz83HyC/aWpqk0gWZUUHZtJvxuUZmAtAYgtHycr/a6qIXz2DQI5OH1UDRjPIOPdOHChU6o+JmQXW+68JYS4vUB/bozvN5RGAImdwPZA3AC51RKrMAfyBHFGCRBnz4oe7ypqemgc4PQxYsX0YytuOWWW3BRaa3DWd0U1A/w/Z4KvBx4jcoExAitE6dzPStr3RR/QKQ5fOUJ4PsaGxtvGPC9dOnSJfyu+7ALa9MJFPx+lkU05YNBBDVdg0uwKc4eAWCZ83cC8jM+/PDDLucGpr6+Pvy+GWz/ASs9AMFvd7ax1ATEFOBjmLdSBraN3gBwHHhmQ0NDrzMB6PLly73MUYubOs3EiB/GJebyTEB6QogCnGrV6KAFR7AVeP4HH3ww4EwgunLlCn7vfACi1UQDqMb5PWUvm5qAB3HESXNomKz2GaOHv/DAgQNJZwJSf38/fvdC3J5G1iPQnf3jK5sGvx80MQHP69hxHWZ/2wN8//vvv3/BmcD0008/XWCaoEcUJ6C0eoUWeFbXBOBCzTKKJ2/YExgEXrRv374eJyLn6tWrWA+LAJRBy+o/rQUQUx0TsFwzRKzLK/bu3dseQf8nDQwMYH2sCOL0ibx9Vr6cagIKmf0nxe8pguC7vn/Pnj2bIshH088//4z1st+m+veUI6ZFFBOwLGj/XqIh0O4/HkEtJgDmcZ4/EED9e69VKk0ACoDN1u/jqrq6uv4IZjElk0msnypbwPs0wTKVCUBnYbLuMC5REA7v3r37vQhikhBgPTWrTAEFeB9NZt3C0SbAr/6DdPM4jF7/PyNotUzBU26vgAo8x+7zri3jmgAgnOJdKYrVB9QEb+zcubMrgpVOv/76K9bXGzrACwTJfw1D+9k8EzAXOE8GviEPAK+JIDXSAlhvA7yWTWztvMfiXM65PBNQrgLfUBi2v/vuu70RnPo0ODjYC0BtN3D2VNfLR5gAz04eRn17yb0p4A0RlIEI6y+la/MV1xf4fYACSEtDiP031dbWRrY/AP32229dAGCTrs1XrHHEaesFXh+gXCfooyEM2yIIrdC2ADZ/1D1eM+CagHLJ5ExTxrl9hyLsrDiDWI99EjApgPvLRwhAmQh4HV/Axwe3bt06GMEXnFKpFK4tOBgQcH95WdoEAE01nc8Xi8VEArA3gs4q7VWpfsHaCpEg4GrnoeXhOEKUw3u4yZYqbGo4Lk2KR5hZpcOsXjO9GIm0AYFycTErmoDJVLWu0Tto3bJly0CEmT36/fffkzh/UKfVE3yLkix3Xx+v5FjYaaslgiwUZxDrdbrm38guF6EAFFKAF5kEwcFPrRFcoVCrIdAiKsSlYUWqFi/zBwTXOiKsQqGOIKe1cQRmSAPkmYIv0ADY9Yuif+GYgC5Wv9kB1L6X8lAA8k3BFwhB94YNG1IRXPYJutwpINwBpNjSI/O5AhDQGUxEUIVKCRMBEGiFIQG4yX+Daf+fPacvwihUM2Czfm/KcgMLtjZZhudEY//hks2VVJlZ7tJvi5SMMApVA9gMsOVkXYvDFiO6fggFACUqJ6qKcaMBbD5uAH2AlE0fIKJxRSnUAGizcykePtWzjOo1VA2gpa0V2CVRALBbURDwQV4qiGAKVQDyLZ571JfFum0lFqTJvScvgilUytPxAxSY9boawMbD3OtFEUahaoAinQap0gA4JSzhPswSFz733HOZEVT2KZlMYr0WesGV7KpOoQRqgG6DVi4rx5EqjFWfjSCz3vqLHd9IoGyYnoBjNwpAwhBoWXlpJAChCECpv66p5ycJBCSBcwI7daZ7E83FtAiuUGgaT/WLACaYhk4MBCVk0UDKWb2c3+URVqFogOm8OqccqMW5d+Dmm29OuGsDOyw7gmUvvfRSFBCySFevXsX6LBO1cIoG8NEQ5u7KoFbLi0Kz3fODI7JGeHbwTSJADcxCq1cAWnR39yYIQUWEmVX1X2G6SYTgnhavABwL0uoF91dUV1dnR9AFp/7+fjysq0IGvIEGODYkAOwa7t/XYXl3kDzgBRF8Vgg3eczT2SqGYP97vBoA83ELrd6/WPSJCDsr6v8Jw91BRdfS6za9ewQ1qVo9RQv47plXU1NTHEFoTpcvX8aTwueJgKdoAI4wpE8Y9e4SdtgdGLK4S1gm8L8jGAO1fqy/TNmiUE1hQIwPj9AADOQk7ugRdJ9ADj+2bt26aI6AAV26dAnr7THqnsFEYTgEnBRtFl0fwk6hOcCrIjiNaBXOAKIcuq3hG4w4fTXma+lNOEHEZFs4hcA8+eqrr0a+gAZdvHgRbf+TsrMDDMxBr2v/eT7A0L5+8HN7AKdPFhncHMGqZftfB84Wga0yBwKtsN1hk4B5PsCIrd0C2HwRz924cWNlBK2afvzxx0rX89c5Qo4gCNv85bwDI7r8XUKqynfL/KmHazZt2pQbQSymH374AffuqeEB7gWXCrzHFCCmXf5niE4NWxPkJFAJ41GmtRHMUtWP9TNJdYScgQZYo3NoFEYF21WmgAq8776KzZs3Px1BPZq+//57rJcKXhg3oClo90b/qCeHvqLjA2j6B+u2bNlSFkH+J3333XdlAMo6ntq3cJroK6K4gOzgyP2oBaj2nqIdPGXYKzjw5ptvToqgd5yenh5U+Qcgmy07UdxQA7QD7xfFClSnh68Oelag6H5n+Fj6j9566638iQz++fPn8wGMRq/dV4EviwVwrq0W9QpUJsAdINof5LRQxfNLgBu2bt06IaePffvttzjDp8EZ3r6dDL7sQEkfyAdVW82rjo9H/hdkB2y2ft89eEB149tvvz2hlqh/8803OazlTzMFX6ENcKLvU7LgEMUEuIc9vqLb+inBJE8ezyo+un379gkxaPT111/jdx4FEGbJwOd1A2VdQ9896Pj1qIJDMSJI6yHpNGnpGlHFqVgp77zzzg29tjCRSBQx8KfKWrmJBvDkO4HXU3oI7pQwFUDpc/8s9ABk14uB23bs2HFDTiU7d+7cAqj4NrbESxtojeAQYjWoOnyaqwF4AsFSnDm81lT1y2YZ+cpwLmHDzp07a3bt2nVDTCrt6urKBq5hDl8eBXCTHgGjtWxTaVK8IEYFjKWrvVPIdU8VE2kMgUCsBD6ye/fukvEM/ldffVUCFX4EsitVtl3UYjU0wDHg1dQIodQJFJShKXgE0j5dLaACn6MJkKcDH6+rq6uur68fV72EM2fO5Jw9e7YasseBp5u0cKoQsDxO9Vrqqn6R2hdGAjWEoBvSR03B9wPNA95HGDVcBXxqz549D40H8E+fPo3vecoZntGTreqzmwgBRyDw2Plu3TBxxmuvvcYFUQYwy+OQ5UoV6DITQzEJnGsdbLSyfvHixdfVptSnTp2qZMJaqtsVVtWbAiP0zap498ryt956q5OxYcMGyj/gpbhbxS5IlwSJBQQYYsZVzWtREBYtWnTN9ic+efIkOq1LmM9SZDKplioQgrJ6ZpZTVODd32kBIEoZL0UvvdFdCBoUfGo8gXM0/UHgHTireeHChaFrhePHj+N0dzxqdxnwg2xwS0vD6YIvwAOnd89nvhkZeJduu+02J2Pjxo0UKZO9GM7w+cjdFMIgCmiqAXj39bO5DPFYLNY8b948ayeXtLW1lbIT1mcxzjVZUGtqCjh44Bj/34H7ZXjJhCItAAHAd1Mc0fvcPYAqCPhBhIHDF5jP0MF2QkmwE02HTMjs2bPTpqOlpSXPVeHABSwoVcLsOebzTWZH2fADOClO7ZqB3yfDTWUSUACyiHZG9UJY0SiNH7PKIjsiqt6BooegIhTMOYxHUTweN3q26EAN/wkr3t+qvEaKczbvxzoXPcf7brL/a9oNFKXYPZzpnUpGlX6dbqHIDIRNlIWXsuibbjdQkGLdzoQ0YfJ/uJFAamsndllw19HZzDlxVGFmkcqilFnSEFotnnKNOlZPGQX0lWOdzoa01xR47nCwDtBEpwbHoedj94wy0KSKCOoIQhgaQrXZgkoYdMCXPAvrcr57WITuXEHlcLCu00cQGjza7BEcRjbRAFSNQAXXVAh0zuY1BV/Q2r3pekixnz+oGRomvVtMV9Vr3I/98RXAC73LzoM4grIWb1sIxgp8iSnAOlsIKdZhynB8QG8wiKIBDPyCQ5C9F0cRKY6gDFwZ2DaFIEzwCS3e3b/nXlzKras1dFr/KA2go/5FLVRwfzdzDtfodgupZoFqGohbqIYGPsH+Yx3NxF6V7D2omkXlmMZM1T8PDMXfoUl4BruKkHaaaANbtj2MnoEJ+L6/72RdvGe8Kt9kjqBOj4SsAUyvce7BCSV/Ba6C/EBYXcSg5oIKtqkj5ikbgLSKqfwWaheRWqZ6j1gIAFPuQW2AI3lTIN0b1CSonMSwYgCU6wqQ8NunsOHcQcozVKZIVwhiKjVuMEihY0YwevgPSDG0eUy3ezjWYOsEhRRAHWPf/A93Egc1MKTj+FGEIGZhIEgJiMzPYPlmHNxgjmLTtRSCsOw+o2YWzcNvbTYIBVsVgrQGsAW+6cCSJx9nUcS/QbrfVAjCDgQZ/P1+yOM33Q9pPMizqCaAKgSxsMCntk6B2sdVyYsh/QvwC7hriY4QhCkUGi0e3/kF/AYow29pJ8YArJkAihDEwgRfVyNw8rif7X+B74Y8qs03nOGNDq0IgQ3Afff0sXecAfm72bv3UFoxpdWbtH7V32cFcfgoLcyCEKQdJ9zVHNL/AM9ijOP808MYD/CP7UvuO8ZGP+OMB3nP4T1PNfYvey/KXAPKd2XpevA27iWYANk9g8yZamblOa5A4FQtZ/jEsjybWsBTaX1sQkbcA/iACAQd0E2EQgU8RUiyKC02qGnQjS6qwPP9LQJwiLFLuUwQcBuaIiYQuBjTPc8wk/32VtYJFq104xQnmLlJMPuNNr3fUEuQQtDUVm8DeNcc/F+AAQBKd8HaIWdjwQAAAABJRU5ErkJggg==";},683:t=>{t.exports="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJMYXllcl8xIiBkYXRhLW5hbWU9IkxheWVyIDEiIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0ye2ZpbGw6IzQ0NH08L3N0eWxlPjwvZGVmcz48cGF0aCBkPSJNMCAwaDQuOTV2MTBIMHoiIHN0eWxlPSJmaWxsOiNmZmYiLz48cGF0aCBkPSJtMS40MSA0LjY3IDEuMDctMS40OSAxLjA2IDEuNDl6TTMuNTQgNS4zMyAyLjQ4IDYuODIgMS40MSA1LjMzeiIgY2xhc3M9ImNscy0yIi8+PC9zdmc+";},98:t=>{t.exports="data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 id=%27Layer_1%27 data-name=%27Layer 1%27 viewBox=%270 0 4.95 10%27%3E%3Cdefs%3E%3Cstyle%3E.cls-2{fill:%23444}%3C/style%3E%3C/defs%3E%3Cpath d=%27M0 0h4.95v10H0z%27 style=%27fill:%23fff%27/%3E%3Cpath d=%27m1.41 4.67 1.07-1.49 1.06 1.49zM3.54 5.33 2.48 6.82 1.41 5.33z%27 class=%27cls-2%27/%3E%3C/svg%3E";},787:e=>{e.exports=t;}},i={};function o(t){var n=i[t];if(void 0!==n)return n.exports;var r=i[t]={id:t,exports:{}};return e[t](r,r.exports,o),r.exports}o.m=e,o.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return o.d(e,{a:e}),e},o.d=(t,e)=>{for(var i in e)o.o(e,i)&&!o.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:e[i]});},o.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),o.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0});},o.b=document.baseURI||self.location.href,o.nc=void 0;var n={};return (()=>{o.r(n),o.d(n,{Jodit:()=>r.Jodit,default:()=>y});var t=o(787),e=o.n(t),i=o(526),r=o(714),s=o(379),a=o.n(s),l=o(795),c=o.n(l),d=o(569),u=o.n(d),h=o(565),p=o.n(h),f=o(216),g=o.n(f),m=o(589),b=o.n(m),_=o(78),v={};v.styleTagTransform=b(),v.setAttributes=p(),v.insert=u().bind(null,"head"),v.domAPI=c(),v.insertStyleElement=g(),a()(_.Z,v),_.Z&&_.Z.locals&&_.Z.locals;var x=r.Jodit.modules.Helpers.isFunction,w=(0, t.forwardRef)((function(i,o){var n=i.className,s=i.config,a=i.id,l=i.name,c=i.onBlur,d=i.onChange,u=i.tabIndex,h=i.value,p=i.editorRef,f=(0, t.useRef)(null);(0, t.useLayoutEffect)((function(){o&&(x(o)?o(f.current):o.current=f.current);}),[f,o]),(0, t.useEffect)((function(){var t=f.current,e=r.Jodit.make(t,s);return f.current=e,x(p)&&p(e),function(){e&&e.destruct(),f.current=t;}}),[s,p]);var g=function(e){var i=(0, t.useRef)();return (0, t.useEffect)((function(){i.current=e;}),[e]),i.current}(n);return (0, t.useEffect)((function(){var t,e=null===(t=f.current)||void 0===t||null===(t=t.container)||void 0===t?void 0:t.classList;g!==n&&"string"==typeof g&&g.split(/\s+/).forEach((function(t){return null==e?void 0:e.remove(t)})),n&&"string"==typeof n&&n.split(/\s+/).forEach((function(t){return null==e?void 0:e.add(t)}));}),[n,g]),(0, t.useEffect)((function(){f.current.workplace&&(f.current.workplace.tabIndex=u||-1);}),[u]),(0, t.useEffect)((function(){if(f.current.events&&(c||d)){var t=function(t){return c&&c(f.current.value,t)},e=function(t){return d&&d(t)};return f.current.events.on("blur",t).on("change",e),function(){var i;null===(i=f.current)||void 0===i||null===(i=i.events)||void 0===i||i.off("blur",t).off("change",e);}}}),[c,d]),(0, t.useEffect)((function(){var t=function(){var t;f.current&&(null==f||null===(t=f.current)||void 0===t?void 0:t.value)!==h&&(f.current.value=h);};f.current&&(f.current.isReady?t():f.current.waitForReady().then(t));}),[h]),e().createElement("div",{className:"jodit-react-container"},e().createElement("textarea",{defaultValue:h,name:l,id:a,ref:f}))}));w.displayName="JoditEditor",w.propTypes={className:i.string,config:i.object,id:i.string,name:i.string,onBlur:i.func,onChange:i.func,editorRef:i.func,tabIndex:i.number,value:i.string};const y=w;})(),n})()));
|
|
52344
|
+
} (joditReact));
|
|
52345
|
+
|
|
52346
|
+
var joditReactExports = joditReact.exports;
|
|
52347
|
+
var JoditEditor = /*@__PURE__*/getDefaultExportFromCjs(joditReactExports);
|
|
52348
|
+
|
|
52349
|
+
const RichTextEditor = ({ props }) => {
|
|
52350
|
+
const editor = useRef(null);
|
|
52351
|
+
const config = Object.assign({ readonly: false, placeholder: "Start typing...", removeButtons: props.item.removeButtons, style: {
|
|
52352
|
+
'font-family': 'Arial', // Default font is Arial
|
|
52353
|
+
}, controls: {
|
|
52354
|
+
font: {
|
|
52355
|
+
list: {
|
|
52356
|
+
Arial: 'Arial',
|
|
52357
|
+
'Rotis Semi Sans': 'Rotis Semi Sans', // Allow Rotis Semi Sans
|
|
52358
|
+
},
|
|
52359
|
+
},
|
|
52360
|
+
}, defaultFont: 'Arial' }, props.item.sx);
|
|
52361
|
+
// [placeholder]
|
|
52362
|
+
// );
|
|
52363
|
+
const handleBlur = (newContent) => {
|
|
52364
|
+
props.setValue(props.item.name, newContent);
|
|
52365
|
+
};
|
|
52366
|
+
return (jsxRuntimeExports.jsx(JoditEditor, { ref: editor, value: props.getValues(props.item.name), config: config, tabIndex: 1, onBlur: handleBlur, onChange: (newContent) => { } }));
|
|
52869
52367
|
};
|
|
52870
52368
|
|
|
52871
52369
|
const renderLabel = (label, isRequired, alignRight) => {
|
|
@@ -52888,6 +52386,7 @@ const RenderForm = (props) => {
|
|
|
52888
52386
|
console.log(props, "propsprops", props.item.inputType);
|
|
52889
52387
|
switch ((_a = props.item) === null || _a === void 0 ? void 0 : _a.inputType) {
|
|
52890
52388
|
case "text":
|
|
52389
|
+
case "multiEmail":
|
|
52891
52390
|
case "email":
|
|
52892
52391
|
return (jsxRuntimeExports.jsx(jsxRuntimeExports.Fragment, { children: jsxRuntimeExports.jsx(Controller, { control: props.control, name: props.item.name, render: ({ field }) => {
|
|
52893
52392
|
var _a, _b;
|
|
@@ -52939,13 +52438,15 @@ const RenderForm = (props) => {
|
|
|
52939
52438
|
if (props.item.doNotAllowPaste) {
|
|
52940
52439
|
e.preventDefault();
|
|
52941
52440
|
}
|
|
52942
|
-
}
|
|
52441
|
+
},
|
|
52943
52442
|
} })), ((_a = props === null || props === void 0 ? void 0 : props.item) === null || _a === void 0 ? void 0 : _a.helperText) && (jsxRuntimeExports.jsxs("span", Object.assign({ style: {
|
|
52944
52443
|
fontFamily: "Roboto-Reg",
|
|
52945
52444
|
fontSize: "11px",
|
|
52946
52445
|
color: "#3651d3",
|
|
52947
52446
|
} }, { children: ["(", (_b = props === null || props === void 0 ? void 0 : props.item) === null || _b === void 0 ? void 0 : _b.helperText, ")"] }))), jsxRuntimeExports.jsx(ErrorMessageComponent, { children: jsxRuntimeExports.jsx(s, { errors: props.errors, name: props.item.name }) })] }));
|
|
52948
52447
|
} }, props.item.name) }));
|
|
52448
|
+
case "rich-text-editor":
|
|
52449
|
+
return (jsxRuntimeExports.jsx(jsxRuntimeExports.Fragment, { children: jsxRuntimeExports.jsx(Controller, { control: props.control, name: props.item.name, render: ({ field }) => (jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, { children: [jsxRuntimeExports.jsx(RichTextEditor, { props: props }), jsxRuntimeExports.jsx(ErrorMessageComponent, { children: jsxRuntimeExports.jsx(s, { errors: props.errors, name: props.item.name }) })] })) }, props.item.name) }));
|
|
52949
52450
|
case "register-number":
|
|
52950
52451
|
return (jsxRuntimeExports.jsx(jsxRuntimeExports.Fragment, { children: jsxRuntimeExports.jsx(Controller, { control: props.control, name: props.item.name, render: ({ field }) => {
|
|
52951
52452
|
var _a, _b;
|
|
@@ -52990,8 +52491,12 @@ const RenderForm = (props) => {
|
|
|
52990
52491
|
return (jsxRuntimeExports.jsx(jsxRuntimeExports.Fragment, { children: jsxRuntimeExports.jsx(SingleSelect, { props: props }) }));
|
|
52991
52492
|
case "select-v2":
|
|
52992
52493
|
return (jsxRuntimeExports.jsx(jsxRuntimeExports.Fragment, { children: jsxRuntimeExports.jsx(SingleSelectNonAutoComplete, { props: props }) }));
|
|
52993
|
-
case "select-search-api":
|
|
52994
|
-
|
|
52494
|
+
// case "select-search-api":
|
|
52495
|
+
// return (
|
|
52496
|
+
// <>
|
|
52497
|
+
// <SingleSelectSearchApi props={props} />
|
|
52498
|
+
// </>
|
|
52499
|
+
// );
|
|
52995
52500
|
case "number":
|
|
52996
52501
|
case "pincode":
|
|
52997
52502
|
case "phoneNumber":
|
|
@@ -55738,6 +55243,16 @@ const useFormValidatingContext = (formArray) => {
|
|
|
55738
55243
|
}
|
|
55739
55244
|
renderCustomError(field);
|
|
55740
55245
|
break;
|
|
55246
|
+
case "rich-text-editor":
|
|
55247
|
+
initialValues[field.name] = "";
|
|
55248
|
+
if (field.required && field.errorMessage) {
|
|
55249
|
+
validationShape[field.name] = create$6()
|
|
55250
|
+
.typeError(field.errorMessage)
|
|
55251
|
+
.required(field.errorMessage);
|
|
55252
|
+
renderCustomError(field);
|
|
55253
|
+
}
|
|
55254
|
+
renderCustomError(field);
|
|
55255
|
+
break;
|
|
55741
55256
|
case "password":
|
|
55742
55257
|
initialValues[field.name] = "";
|
|
55743
55258
|
if (field.required && field.errorMessage) {
|
|
@@ -55770,6 +55285,36 @@ const useFormValidatingContext = (formArray) => {
|
|
|
55770
55285
|
}
|
|
55771
55286
|
renderCustomError(field);
|
|
55772
55287
|
break;
|
|
55288
|
+
case "multiEmail":
|
|
55289
|
+
initialValues[field.name] = "";
|
|
55290
|
+
if (field.required && field.errorMessage) {
|
|
55291
|
+
validationShape[field.name] = create$6()
|
|
55292
|
+
.typeError(`Please enter ${field.label}`)
|
|
55293
|
+
.required(field.errorMessage)
|
|
55294
|
+
.test("valid-email", `Please enter valid Email`, (value) => {
|
|
55295
|
+
if (!value)
|
|
55296
|
+
return false;
|
|
55297
|
+
const emails = value.split(';');
|
|
55298
|
+
const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
|
|
55299
|
+
return emails.every(email => emailRegex.test(email.trim()));
|
|
55300
|
+
});
|
|
55301
|
+
renderCustomError(field);
|
|
55302
|
+
}
|
|
55303
|
+
else {
|
|
55304
|
+
validationShape[field.name] = create$6()
|
|
55305
|
+
.typeError(`Please enter ${field.label}`)
|
|
55306
|
+
.test("valid-email", `Please enter valid Email`, (value) => {
|
|
55307
|
+
// Custom validation to check for at least one period after '@'
|
|
55308
|
+
if (!value)
|
|
55309
|
+
return false;
|
|
55310
|
+
const emails = value.split(';');
|
|
55311
|
+
const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
|
|
55312
|
+
return emails.every(email => emailRegex.test(email.trim()));
|
|
55313
|
+
});
|
|
55314
|
+
renderCustomError(field);
|
|
55315
|
+
}
|
|
55316
|
+
renderCustomError(field);
|
|
55317
|
+
break;
|
|
55773
55318
|
case "file":
|
|
55774
55319
|
initialValues[field.name] = null;
|
|
55775
55320
|
if (field.required && field.errorMessage) {
|