devexpress-richedit 24.2.8-build-25149-0115 → 24.2.8
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/dx.richedit.js +184 -151
- package/dist/dx.richedit.min.js +1 -1
- package/lib/client/client-rich-edit.js +2 -2
- package/lib/client/model-api/images/images.js +1 -1
- package/lib/client/public/options.d.ts +1 -0
- package/lib/common/commands/document/print-document-on-client-command.d.ts +2 -0
- package/lib/common/commands/document/print-document-on-client-command.js +46 -18
- package/lib/common/layout-formatter/row/word-holder.js +1 -1
- package/lib/common/model/caches/images.d.ts +4 -1
- package/lib/common/model/caches/images.js +6 -2
- package/lib/common/model/fields/field.d.ts +1 -1
- package/lib/common/model/fields/field.js +4 -3
- package/lib/common/model/fields/tree-creator.js +1 -1
- package/lib/common/model/manipulators/picture-manipulator/picture-manipulator.js +2 -2
- package/lib/common/model/options/fonts.d.ts +1 -1
- package/package.json +3 -3
package/dist/dx.richedit.js
CHANGED
@@ -16442,6 +16442,8 @@ class CacheImageInfo {
|
|
16442
16442
|
static get emptyPictureSize() { return new geometry_size.Size(CacheImageInfo.emptyPicDimension, CacheImageInfo.emptyPicDimension); }
|
16443
16443
|
get isLoaded() { return this._referenceInfo ? this._referenceInfo._isLoaded : this._isLoaded; }
|
16444
16444
|
set isLoaded(val) { this._isLoaded = val; }
|
16445
|
+
get isSizeDefined() { return this._referenceInfo ? this._referenceInfo._isSizeDefined : this._isSizeDefined; }
|
16446
|
+
set isSizeDefined(val) { this._isSizeDefined = val; }
|
16445
16447
|
get size() { return this._referenceInfo ? this._referenceInfo._size : this._size; }
|
16446
16448
|
set size(val) { this._size = val; }
|
16447
16449
|
get currId() { return this.actualId !== undefined ? this.actualId : this.tmpId; }
|
@@ -16454,15 +16456,17 @@ class CacheImageInfo {
|
|
16454
16456
|
this._base64 = undefined;
|
16455
16457
|
this._size = undefined;
|
16456
16458
|
this._isLoaded = undefined;
|
16459
|
+
this._isSizeDefined = undefined;
|
16457
16460
|
this.file = undefined;
|
16458
16461
|
}
|
16459
|
-
constructor(base64, actualId, tmpId, imageUrl, file, referenceInfo, size, isLoaded) {
|
16462
|
+
constructor(base64, actualId, tmpId, imageUrl, file, referenceInfo, size, isLoaded, isActualSize) {
|
16460
16463
|
this._base64 = base64 !== undefined ? utils_base64.Base64Utils.normalizeToDataUrl(base64, "image/png") : undefined;
|
16461
16464
|
this.actualId = actualId;
|
16462
16465
|
this.tmpId = tmpId;
|
16463
16466
|
this._referenceInfo = referenceInfo;
|
16464
16467
|
this._size = size ? size : CacheImageInfo.emptyPictureSize;
|
16465
16468
|
this._isLoaded = isLoaded !== undefined ? isLoaded : false;
|
16469
|
+
this._isSizeDefined = isActualSize ? isActualSize : !!size;
|
16466
16470
|
this.imageUrl = imageUrl;
|
16467
16471
|
this.file = file;
|
16468
16472
|
}
|
@@ -16476,7 +16480,7 @@ class CacheImageInfo {
|
|
16476
16480
|
this.size.equals(obj.size);
|
16477
16481
|
}
|
16478
16482
|
clone() {
|
16479
|
-
return new CacheImageInfo(this._base64, this.actualId, this.tmpId, this.imageUrl, this.file, this._referenceInfo, this._size, this._isLoaded);
|
16483
|
+
return new CacheImageInfo(this._base64, this.actualId, this.tmpId, this.imageUrl, this.file, this._referenceInfo, this._size, this._isLoaded, this._isSizeDefined);
|
16480
16484
|
}
|
16481
16485
|
shouldMakeImagePdfCompatible() {
|
16482
16486
|
if ((0,common.isDefined)(this._convertedBase64))
|
@@ -22970,15 +22974,16 @@ class Field {
|
|
22970
22974
|
return newInterval.start = Field.correctIntervalDueToFieldsCaseSelectionCollapsed(subDocument.fields, newInterval.start);
|
22971
22975
|
const indexesInterval = Field.correctIntervalDueToFieldsWithoutUiChecks(subDocument, newInterval);
|
22972
22976
|
utils_list.ListUtils.forEach(fields, (field) => {
|
22973
|
-
if (field.getResultInterval().equals(newInterval) && !this.
|
22977
|
+
if (field.getResultInterval().equals(newInterval) && !this.isResizableObjectSelected(subDocument, newInterval))
|
22974
22978
|
newInterval.expand(field.getAllFieldInterval());
|
22975
22979
|
}, indexesInterval.start, indexesInterval.end);
|
22976
22980
|
}
|
22977
|
-
static
|
22981
|
+
static isResizableObjectSelected(subDocument, interval) {
|
22978
22982
|
if (interval.length !== 1)
|
22979
22983
|
return false;
|
22980
22984
|
const run = subDocument.getRunByPosition(interval.start);
|
22981
|
-
|
22985
|
+
const runType = run && run.getType();
|
22986
|
+
return runType == RunType.AnchoredPictureRun || runType == RunType.AnchoredTextBoxRun || runType == RunType.InlinePictureRun;
|
22982
22987
|
}
|
22983
22988
|
static correctWhenPositionInStartCode(fields, position) {
|
22984
22989
|
if (fields.length < 1)
|
@@ -34177,7 +34182,7 @@ class FieldsWaitingForUpdate {
|
|
34177
34182
|
}
|
34178
34183
|
if (!fieldParser.update(response)) {
|
34179
34184
|
someFieldInCurrentInfoNotUpdated = true;
|
34180
|
-
info.parsers.
|
34185
|
+
info.parsers.unshift(fieldParser);
|
34181
34186
|
}
|
34182
34187
|
else
|
34183
34188
|
fieldParser.destructor();
|
@@ -43204,7 +43209,7 @@ class PictureManipulator extends RunsBaseManipulator {
|
|
43204
43209
|
this.history.addTransaction(() => {
|
43205
43210
|
this.modelManipulator.range.removeInterval(new SubDocumentInterval(subDocument, interval), true, false);
|
43206
43211
|
const newInfo = new InlinePictureInfo(pictureRun.size.clone(), new Shape(), -1, pictureRun.info.containerProperties, pictureRun.info.nonVisualDrawingProperties);
|
43207
|
-
this.modelManipulator.picture.insertInlinePictureViaHistory(new SubDocumentPosition(subDocument, interval.start), charPropsBundle, newInfo);
|
43212
|
+
this.modelManipulator.picture.insertInlinePictureViaHistory(new SubDocumentPosition(subDocument, interval.start), charPropsBundle, newInfo, new ImageLoadingOptions(!pictureRun.cacheInfo.isSizeDefined));
|
43208
43213
|
});
|
43209
43214
|
}
|
43210
43215
|
}
|
@@ -43219,7 +43224,7 @@ class PictureManipulator extends RunsBaseManipulator {
|
|
43219
43224
|
anchorInfo.zOrder = this.modelManipulator.floatingObject.zOrder.getNewZOrder(subDocument);
|
43220
43225
|
this.modelManipulator.range.removeInterval(new SubDocumentInterval(subDocument, interval), true, false);
|
43221
43226
|
const newInfo = new AnchorPictureInfo(pictureRun.size.clone(), new Shape(), anchorInfo, pictureRun.info.containerProperties, pictureRun.info.nonVisualDrawingProperties);
|
43222
|
-
this.modelManipulator.picture.insertAnchoredPictureViaHistory(new SubDocumentPosition(subDocument, interval.start), charPropsBundle, newInfo, new ImageLoadingOptions(
|
43227
|
+
this.modelManipulator.picture.insertAnchoredPictureViaHistory(new SubDocumentPosition(subDocument, interval.start), charPropsBundle, newInfo, new ImageLoadingOptions(!pictureRun.cacheInfo.isSizeDefined));
|
43223
43228
|
run = subDocument.getRunByPosition(interval.start);
|
43224
43229
|
}
|
43225
43230
|
let anchoredRun = run.getType() == RunType.AnchoredPictureRun ? run : run;
|
@@ -84739,7 +84744,7 @@ class ImagesApi {
|
|
84739
84744
|
applyVerticalPosition(verticalPosition, anchorInfo);
|
84740
84745
|
const anchorPictureInfo = new AnchorPictureInfo(new PictureSize(true, 0, cacheInfo, new geometry_size.Size(100, 100)), shape, anchorInfo, new NonVisualDrawingObjectInfo(), new NonVisualDrawingObjectInfo());
|
84741
84746
|
anchorPictureInfo.containerProperties.description = options.description;
|
84742
|
-
this._processor.modelManager.modelManipulator.picture.insertAnchoredPictureViaHistory(new SubDocumentPosition(this._subDocument, position), inputPos.charPropsBundle, anchorPictureInfo,
|
84747
|
+
this._processor.modelManager.modelManipulator.picture.insertAnchoredPictureViaHistory(new SubDocumentPosition(this._subDocument, position), inputPos.charPropsBundle, anchorPictureInfo, ImageLoadingOptions.initByActualSize(size ? new geometry_size.Size(size.width, size.height) : undefined, (_picInterval, _cacheInfo) => setTimeout(() => {
|
84743
84748
|
callback(getFloatingImageApiFromRun(this._processor, this._subDocument, this._subDocument.getRunAndIndexesByPosition(position)));
|
84744
84749
|
}, 0)));
|
84745
84750
|
this._processor.endUpdate();
|
@@ -95979,7 +95984,7 @@ class WordHolderInfo {
|
|
95979
95984
|
}
|
95980
95985
|
if (res == null)
|
95981
95986
|
return false;
|
95982
|
-
if (this.rowFormatter.row.isEmpty()) {
|
95987
|
+
if (this.rowFormatter.row.isEmpty() || this.rowFormatter.row.containsSpacesOnly()) {
|
95983
95988
|
if (this.rowFormatter.rowSizesManager.rowFormattingInfo.isFloatingIntersectRow) {
|
95984
95989
|
this.rowFormatter.rowSizesManager.rowFormattingInfo.findNextYPosWhatHasNeededSpace(res.requiredWidth);
|
95985
95990
|
return this.pushBoxes();
|
@@ -128172,8 +128177,18 @@ class PrintDocumentOnClient extends CommandBase {
|
|
128172
128177
|
return true;
|
128173
128178
|
}
|
128174
128179
|
printCore(htmlPrinting, printWindow, closePrintDialogWithHtmlPreview, needSwitchViewType, needToggleHiddenSymbols) {
|
128175
|
-
if (htmlPrinting)
|
128176
|
-
this.generatePrintDocument(printWindow
|
128180
|
+
if (htmlPrinting) {
|
128181
|
+
this.generatePrintDocument(printWindow.document);
|
128182
|
+
printWindow.focus();
|
128183
|
+
const interval = setInterval(() => {
|
128184
|
+
if (printWindow.document.readyState == 'complete') {
|
128185
|
+
printWindow.print();
|
128186
|
+
if (closePrintDialogWithHtmlPreview && !browser.Browser.AndroidMobilePlatform)
|
128187
|
+
printWindow.close();
|
128188
|
+
clearInterval(interval);
|
128189
|
+
}
|
128190
|
+
}, 100);
|
128191
|
+
}
|
128177
128192
|
else {
|
128178
128193
|
pdfExport(this.control, (blob, _stream) => {
|
128179
128194
|
if (window.navigator.msSaveOrOpenBlob && !browser.Browser.Edge)
|
@@ -128188,12 +128203,27 @@ class PrintDocumentOnClient extends CommandBase {
|
|
128188
128203
|
this.control.commandManager.getCommand(RichEditClientCommand.ToggleShowWhitespace).execute(this.control.commandManager.isPublicApiCall);
|
128189
128204
|
this.control.commandManager.isPrintingProcessing = false;
|
128190
128205
|
}
|
128191
|
-
generatePrintDocument(
|
128206
|
+
generatePrintDocument(document) {
|
128192
128207
|
const height = this.control.layout.pages[0].height;
|
128193
128208
|
const width = this.control.layout.pages[0].width;
|
128194
|
-
let
|
128195
|
-
|
128209
|
+
let fontLink = "";
|
128210
|
+
let divsToLoadFonts = "";
|
128211
|
+
const googleFonts = this.getGoogleFonts();
|
128212
|
+
if (googleFonts.length > 0) {
|
128213
|
+
fontLink = this.createGoogleFontStyleLink(googleFonts);
|
128214
|
+
divsToLoadFonts = googleFonts.reduce((prev, curr) => {
|
128215
|
+
const fontStyles = [`font-family:${curr}`, 'font-weight:bold', 'font-style:italic'];
|
128216
|
+
const result = [];
|
128217
|
+
for (let i = 1; i <= fontStyles.length; i++)
|
128218
|
+
result.push(`<div style="font-size:1pt;position:absolute;top:-1000px;${fontStyles.slice(0, i).join(';')}">${curr}</div>`);
|
128219
|
+
return prev ? [prev, ...result].join('\n') : result.join('\n');
|
128220
|
+
}, null);
|
128221
|
+
}
|
128222
|
+
document.documentElement.innerHTML =
|
128223
|
+
`<!DOCTYPE html>
|
128224
|
+
<html moznomarginboxes mozdisallowselectionprint>
|
128196
128225
|
<head>
|
128226
|
+
${fontLink}
|
128197
128227
|
<style ${this._nonce ? `nonce="${this._nonce}"` : ''}>
|
128198
128228
|
html, body {
|
128199
128229
|
margin: 0;
|
@@ -128212,22 +128242,25 @@ class PrintDocumentOnClient extends CommandBase {
|
|
128212
128242
|
</style>
|
128213
128243
|
</head>
|
128214
128244
|
<body>
|
128245
|
+
${divsToLoadFonts}
|
128215
128246
|
</body>
|
128216
|
-
|
128217
|
-
printWindow.document.write(printWindowContent);
|
128218
|
-
printWindow.document.close();
|
128247
|
+
</html>`;
|
128219
128248
|
this.generatePrintContent().forEach((child) => {
|
128220
|
-
|
128249
|
+
document.body.appendChild(child);
|
128221
128250
|
});
|
128222
|
-
|
128223
|
-
|
128224
|
-
|
128225
|
-
|
128226
|
-
|
128227
|
-
|
128228
|
-
|
128229
|
-
|
128230
|
-
|
128251
|
+
}
|
128252
|
+
getGoogleFonts() {
|
128253
|
+
return this.control.modelManager.richOptions.fonts.fonts.reduce((res, f) => {
|
128254
|
+
if (f.useGoogleFonts)
|
128255
|
+
res.push(f.fontFamily);
|
128256
|
+
return res;
|
128257
|
+
}, []);
|
128258
|
+
}
|
128259
|
+
createGoogleFontStyleLink(fontFamilies) {
|
128260
|
+
const url = new URL('https://fonts.googleapis.com/css');
|
128261
|
+
url.searchParams.append('family', fontFamilies.join('|'));
|
128262
|
+
url.searchParams.append('display', 'auto');
|
128263
|
+
return `<link href="${url.toString()}" rel="stylesheet" />`;
|
128231
128264
|
}
|
128232
128265
|
generatePrintContent() {
|
128233
128266
|
const layout = this.control.layout;
|
@@ -140979,8 +141012,8 @@ class DialogManager {
|
|
140979
141012
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_type.js
|
140980
141013
|
/**
|
140981
141014
|
* DevExtreme (esm/__internal/core/utils/m_type.js)
|
140982
|
-
* Version: 24.2.8
|
140983
|
-
* Build date:
|
141015
|
+
* Version: 24.2.8
|
141016
|
+
* Build date: Fri Jun 13 2025
|
140984
141017
|
*
|
140985
141018
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140986
141019
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141082,8 +141115,8 @@ const isEvent = function(object) {
|
|
141082
141115
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/type.js
|
141083
141116
|
/**
|
141084
141117
|
* DevExtreme (esm/core/utils/type.js)
|
141085
|
-
* Version: 24.2.8
|
141086
|
-
* Build date:
|
141118
|
+
* Version: 24.2.8
|
141119
|
+
* Build date: Fri Jun 13 2025
|
141087
141120
|
*
|
141088
141121
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141089
141122
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141093,8 +141126,8 @@ const isEvent = function(object) {
|
|
141093
141126
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_extend.js
|
141094
141127
|
/**
|
141095
141128
|
* DevExtreme (esm/__internal/core/utils/m_extend.js)
|
141096
|
-
* Version: 24.2.8
|
141097
|
-
* Build date:
|
141129
|
+
* Version: 24.2.8
|
141130
|
+
* Build date: Fri Jun 13 2025
|
141098
141131
|
*
|
141099
141132
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141100
141133
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141152,8 +141185,8 @@ const extend = function(target) {
|
|
141152
141185
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/extend.js
|
141153
141186
|
/**
|
141154
141187
|
* DevExtreme (esm/core/utils/extend.js)
|
141155
|
-
* Version: 24.2.8
|
141156
|
-
* Build date:
|
141188
|
+
* Version: 24.2.8
|
141189
|
+
* Build date: Fri Jun 13 2025
|
141157
141190
|
*
|
141158
141191
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141159
141192
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141163,8 +141196,8 @@ const extend = function(target) {
|
|
141163
141196
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_string.js
|
141164
141197
|
/**
|
141165
141198
|
* DevExtreme (esm/__internal/core/utils/m_string.js)
|
141166
|
-
* Version: 24.2.8
|
141167
|
-
* Build date:
|
141199
|
+
* Version: 24.2.8
|
141200
|
+
* Build date: Fri Jun 13 2025
|
141168
141201
|
*
|
141169
141202
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141170
141203
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141239,8 +141272,8 @@ const isEmpty = function() {
|
|
141239
141272
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/string.js
|
141240
141273
|
/**
|
141241
141274
|
* DevExtreme (esm/core/utils/string.js)
|
141242
|
-
* Version: 24.2.8
|
141243
|
-
* Build date:
|
141275
|
+
* Version: 24.2.8
|
141276
|
+
* Build date: Fri Jun 13 2025
|
141244
141277
|
*
|
141245
141278
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141246
141279
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141250,20 +141283,20 @@ const isEmpty = function() {
|
|
141250
141283
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/version.js
|
141251
141284
|
/**
|
141252
141285
|
* DevExtreme (esm/core/version.js)
|
141253
|
-
* Version: 24.2.8
|
141254
|
-
* Build date:
|
141286
|
+
* Version: 24.2.8
|
141287
|
+
* Build date: Fri Jun 13 2025
|
141255
141288
|
*
|
141256
141289
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141257
141290
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
141258
141291
|
*/
|
141259
|
-
const version = "24.2.
|
141260
|
-
const fullVersion = "24.2.
|
141292
|
+
const version = "24.2.8";
|
141293
|
+
const fullVersion = "24.2.8";
|
141261
141294
|
|
141262
141295
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_console.js
|
141263
141296
|
/**
|
141264
141297
|
* DevExtreme (esm/__internal/core/utils/m_console.js)
|
141265
|
-
* Version: 24.2.8
|
141266
|
-
* Build date:
|
141298
|
+
* Version: 24.2.8
|
141299
|
+
* Build date: Fri Jun 13 2025
|
141267
141300
|
*
|
141268
141301
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141269
141302
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141303,8 +141336,8 @@ const debug = function() {
|
|
141303
141336
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_error.js
|
141304
141337
|
/**
|
141305
141338
|
* DevExtreme (esm/__internal/core/utils/m_error.js)
|
141306
|
-
* Version: 24.2.8
|
141307
|
-
* Build date:
|
141339
|
+
* Version: 24.2.8
|
141340
|
+
* Build date: Fri Jun 13 2025
|
141308
141341
|
*
|
141309
141342
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141310
141343
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141375,8 +141408,8 @@ function error(baseErrors, errors) {
|
|
141375
141408
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/error.js
|
141376
141409
|
/**
|
141377
141410
|
* DevExtreme (esm/core/utils/error.js)
|
141378
|
-
* Version: 24.2.8
|
141379
|
-
* Build date:
|
141411
|
+
* Version: 24.2.8
|
141412
|
+
* Build date: Fri Jun 13 2025
|
141380
141413
|
*
|
141381
141414
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141382
141415
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141387,8 +141420,8 @@ function error(baseErrors, errors) {
|
|
141387
141420
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_errors.js
|
141388
141421
|
/**
|
141389
141422
|
* DevExtreme (esm/__internal/core/m_errors.js)
|
141390
|
-
* Version: 24.2.8
|
141391
|
-
* Build date:
|
141423
|
+
* Version: 24.2.8
|
141424
|
+
* Build date: Fri Jun 13 2025
|
141392
141425
|
*
|
141393
141426
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141394
141427
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141454,8 +141487,8 @@ function error(baseErrors, errors) {
|
|
141454
141487
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/errors.js
|
141455
141488
|
/**
|
141456
141489
|
* DevExtreme (esm/core/errors.js)
|
141457
|
-
* Version: 24.2.8
|
141458
|
-
* Build date:
|
141490
|
+
* Version: 24.2.8
|
141491
|
+
* Build date: Fri Jun 13 2025
|
141459
141492
|
*
|
141460
141493
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141461
141494
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141466,8 +141499,8 @@ function error(baseErrors, errors) {
|
|
141466
141499
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_class.js
|
141467
141500
|
/**
|
141468
141501
|
* DevExtreme (esm/__internal/core/m_class.js)
|
141469
|
-
* Version: 24.2.8
|
141470
|
-
* Build date:
|
141502
|
+
* Version: 24.2.8
|
141503
|
+
* Build date: Fri Jun 13 2025
|
141471
141504
|
*
|
141472
141505
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141473
141506
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141600,8 +141633,8 @@ classImpl.abstract = m_class_abstract;
|
|
141600
141633
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/class.js
|
141601
141634
|
/**
|
141602
141635
|
* DevExtreme (esm/core/class.js)
|
141603
|
-
* Version: 24.2.8
|
141604
|
-
* Build date:
|
141636
|
+
* Version: 24.2.8
|
141637
|
+
* Build date: Fri Jun 13 2025
|
141605
141638
|
*
|
141606
141639
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141607
141640
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141612,8 +141645,8 @@ classImpl.abstract = m_class_abstract;
|
|
141612
141645
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_iterator.js
|
141613
141646
|
/**
|
141614
141647
|
* DevExtreme (esm/__internal/core/utils/m_iterator.js)
|
141615
|
-
* Version: 24.2.8
|
141616
|
-
* Build date:
|
141648
|
+
* Version: 24.2.8
|
141649
|
+
* Build date: Fri Jun 13 2025
|
141617
141650
|
*
|
141618
141651
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141619
141652
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141662,8 +141695,8 @@ const reverseEach = (array, callback) => {
|
|
141662
141695
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_dependency_injector.js
|
141663
141696
|
/**
|
141664
141697
|
* DevExtreme (esm/__internal/core/utils/m_dependency_injector.js)
|
141665
|
-
* Version: 24.2.8
|
141666
|
-
* Build date:
|
141698
|
+
* Version: 24.2.8
|
141699
|
+
* Build date: Fri Jun 13 2025
|
141667
141700
|
*
|
141668
141701
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141669
141702
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141712,8 +141745,8 @@ function injector(object) {
|
|
141712
141745
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/dependency_injector.js
|
141713
141746
|
/**
|
141714
141747
|
* DevExtreme (esm/core/utils/dependency_injector.js)
|
141715
|
-
* Version: 24.2.8
|
141716
|
-
* Build date:
|
141748
|
+
* Version: 24.2.8
|
141749
|
+
* Build date: Fri Jun 13 2025
|
141717
141750
|
*
|
141718
141751
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141719
141752
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141724,8 +141757,8 @@ function injector(object) {
|
|
141724
141757
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.formatter.js
|
141725
141758
|
/**
|
141726
141759
|
* DevExtreme (esm/common/core/localization/ldml/date.formatter.js)
|
141727
|
-
* Version: 24.2.8
|
141728
|
-
* Build date:
|
141760
|
+
* Version: 24.2.8
|
141761
|
+
* Build date: Fri Jun 13 2025
|
141729
141762
|
*
|
141730
141763
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141731
141764
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141878,8 +141911,8 @@ function _extends() {
|
|
141878
141911
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_config.js
|
141879
141912
|
/**
|
141880
141913
|
* DevExtreme (esm/__internal/core/m_config.js)
|
141881
|
-
* Version: 24.2.8
|
141882
|
-
* Build date:
|
141914
|
+
* Version: 24.2.8
|
141915
|
+
* Build date: Fri Jun 13 2025
|
141883
141916
|
*
|
141884
141917
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141885
141918
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141954,8 +141987,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
141954
141987
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/config.js
|
141955
141988
|
/**
|
141956
141989
|
* DevExtreme (esm/common/config.js)
|
141957
|
-
* Version: 24.2.8
|
141958
|
-
* Build date:
|
141990
|
+
* Version: 24.2.8
|
141991
|
+
* Build date: Fri Jun 13 2025
|
141959
141992
|
*
|
141960
141993
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141961
141994
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141966,8 +141999,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
141966
141999
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_guid.js
|
141967
142000
|
/**
|
141968
142001
|
* DevExtreme (esm/__internal/core/m_guid.js)
|
141969
|
-
* Version: 24.2.8
|
141970
|
-
* Build date:
|
142002
|
+
* Version: 24.2.8
|
142003
|
+
* Build date: Fri Jun 13 2025
|
141971
142004
|
*
|
141972
142005
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141973
142006
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142009,8 +142042,8 @@ const Guid = core_class.inherit({
|
|
142009
142042
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/guid.js
|
142010
142043
|
/**
|
142011
142044
|
* DevExtreme (esm/common/guid.js)
|
142012
|
-
* Version: 24.2.8
|
142013
|
-
* Build date:
|
142045
|
+
* Version: 24.2.8
|
142046
|
+
* Build date: Fri Jun 13 2025
|
142014
142047
|
*
|
142015
142048
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142016
142049
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142021,8 +142054,8 @@ const Guid = core_class.inherit({
|
|
142021
142054
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/templates/m_template_engine_registry.js
|
142022
142055
|
/**
|
142023
142056
|
* DevExtreme (esm/__internal/core/templates/m_template_engine_registry.js)
|
142024
|
-
* Version: 24.2.8
|
142025
|
-
* Build date:
|
142057
|
+
* Version: 24.2.8
|
142058
|
+
* Build date: Fri Jun 13 2025
|
142026
142059
|
*
|
142027
142060
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142028
142061
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142051,8 +142084,8 @@ function getCurrentTemplateEngine() {
|
|
142051
142084
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/templates/template_engine_registry.js
|
142052
142085
|
/**
|
142053
142086
|
* DevExtreme (esm/core/templates/template_engine_registry.js)
|
142054
|
-
* Version: 24.2.8
|
142055
|
-
* Build date:
|
142087
|
+
* Version: 24.2.8
|
142088
|
+
* Build date: Fri Jun 13 2025
|
142056
142089
|
*
|
142057
142090
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142058
142091
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142062,8 +142095,8 @@ function getCurrentTemplateEngine() {
|
|
142062
142095
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_set_template_engine.js
|
142063
142096
|
/**
|
142064
142097
|
* DevExtreme (esm/__internal/core/m_set_template_engine.js)
|
142065
|
-
* Version: 24.2.8
|
142066
|
-
* Build date:
|
142098
|
+
* Version: 24.2.8
|
142099
|
+
* Build date: Fri Jun 13 2025
|
142067
142100
|
*
|
142068
142101
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142069
142102
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142073,8 +142106,8 @@ function getCurrentTemplateEngine() {
|
|
142073
142106
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/set_template_engine.js
|
142074
142107
|
/**
|
142075
142108
|
* DevExtreme (esm/common/set_template_engine.js)
|
142076
|
-
* Version: 24.2.8
|
142077
|
-
* Build date:
|
142109
|
+
* Version: 24.2.8
|
142110
|
+
* Build date: Fri Jun 13 2025
|
142078
142111
|
*
|
142079
142112
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142080
142113
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142085,8 +142118,8 @@ function getCurrentTemplateEngine() {
|
|
142085
142118
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common.js
|
142086
142119
|
/**
|
142087
142120
|
* DevExtreme (esm/common.js)
|
142088
|
-
* Version: 24.2.8
|
142089
|
-
* Build date:
|
142121
|
+
* Version: 24.2.8
|
142122
|
+
* Build date: Fri Jun 13 2025
|
142090
142123
|
*
|
142091
142124
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142092
142125
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142099,8 +142132,8 @@ function getCurrentTemplateEngine() {
|
|
142099
142132
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/config.js
|
142100
142133
|
/**
|
142101
142134
|
* DevExtreme (esm/core/config.js)
|
142102
|
-
* Version: 24.2.8
|
142103
|
-
* Build date:
|
142135
|
+
* Version: 24.2.8
|
142136
|
+
* Build date: Fri Jun 13 2025
|
142104
142137
|
*
|
142105
142138
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142106
142139
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142111,8 +142144,8 @@ function getCurrentTemplateEngine() {
|
|
142111
142144
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/guid.js
|
142112
142145
|
/**
|
142113
142146
|
* DevExtreme (esm/core/guid.js)
|
142114
|
-
* Version: 24.2.8
|
142115
|
-
* Build date:
|
142147
|
+
* Version: 24.2.8
|
142148
|
+
* Build date: Fri Jun 13 2025
|
142116
142149
|
*
|
142117
142150
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142118
142151
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142123,8 +142156,8 @@ function getCurrentTemplateEngine() {
|
|
142123
142156
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/console.js
|
142124
142157
|
/**
|
142125
142158
|
* DevExtreme (esm/core/utils/console.js)
|
142126
|
-
* Version: 24.2.8
|
142127
|
-
* Build date:
|
142159
|
+
* Version: 24.2.8
|
142160
|
+
* Build date: Fri Jun 13 2025
|
142128
142161
|
*
|
142129
142162
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142130
142163
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142134,8 +142167,8 @@ function getCurrentTemplateEngine() {
|
|
142134
142167
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_variable_wrapper.js
|
142135
142168
|
/**
|
142136
142169
|
* DevExtreme (esm/__internal/core/utils/m_variable_wrapper.js)
|
142137
|
-
* Version: 24.2.8
|
142138
|
-
* Build date:
|
142170
|
+
* Version: 24.2.8
|
142171
|
+
* Build date: Fri Jun 13 2025
|
142139
142172
|
*
|
142140
142173
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142141
142174
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142164,8 +142197,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
142164
142197
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/variable_wrapper.js
|
142165
142198
|
/**
|
142166
142199
|
* DevExtreme (esm/core/utils/variable_wrapper.js)
|
142167
|
-
* Version: 24.2.8
|
142168
|
-
* Build date:
|
142200
|
+
* Version: 24.2.8
|
142201
|
+
* Build date: Fri Jun 13 2025
|
142169
142202
|
*
|
142170
142203
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142171
142204
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142176,8 +142209,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
142176
142209
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_object.js
|
142177
142210
|
/**
|
142178
142211
|
* DevExtreme (esm/__internal/core/utils/m_object.js)
|
142179
|
-
* Version: 24.2.8
|
142180
|
-
* Build date:
|
142212
|
+
* Version: 24.2.8
|
142213
|
+
* Build date: Fri Jun 13 2025
|
142181
142214
|
*
|
142182
142215
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142183
142216
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142277,8 +142310,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142277
142310
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/object.js
|
142278
142311
|
/**
|
142279
142312
|
* DevExtreme (esm/core/utils/object.js)
|
142280
|
-
* Version: 24.2.8
|
142281
|
-
* Build date:
|
142313
|
+
* Version: 24.2.8
|
142314
|
+
* Build date: Fri Jun 13 2025
|
142282
142315
|
*
|
142283
142316
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142284
142317
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142288,8 +142321,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142288
142321
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_data.js
|
142289
142322
|
/**
|
142290
142323
|
* DevExtreme (esm/__internal/core/utils/m_data.js)
|
142291
|
-
* Version: 24.2.8
|
142292
|
-
* Build date:
|
142324
|
+
* Version: 24.2.8
|
142325
|
+
* Build date: Fri Jun 13 2025
|
142293
142326
|
*
|
142294
142327
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142295
142328
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142485,8 +142518,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142485
142518
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/data.js
|
142486
142519
|
/**
|
142487
142520
|
* DevExtreme (esm/core/utils/data.js)
|
142488
|
-
* Version: 24.2.8
|
142489
|
-
* Build date:
|
142521
|
+
* Version: 24.2.8
|
142522
|
+
* Build date: Fri Jun 13 2025
|
142490
142523
|
*
|
142491
142524
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142492
142525
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142496,8 +142529,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142496
142529
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_callbacks.js
|
142497
142530
|
/**
|
142498
142531
|
* DevExtreme (esm/__internal/core/utils/m_callbacks.js)
|
142499
|
-
* Version: 24.2.8
|
142500
|
-
* Build date:
|
142532
|
+
* Version: 24.2.8
|
142533
|
+
* Build date: Fri Jun 13 2025
|
142501
142534
|
*
|
142502
142535
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142503
142536
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142592,8 +142625,8 @@ const Callbacks = function(options) {
|
|
142592
142625
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/callbacks.js
|
142593
142626
|
/**
|
142594
142627
|
* DevExtreme (esm/core/utils/callbacks.js)
|
142595
|
-
* Version: 24.2.8
|
142596
|
-
* Build date:
|
142628
|
+
* Version: 24.2.8
|
142629
|
+
* Build date: Fri Jun 13 2025
|
142597
142630
|
*
|
142598
142631
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142599
142632
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142604,8 +142637,8 @@ const Callbacks = function(options) {
|
|
142604
142637
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_deferred.js
|
142605
142638
|
/**
|
142606
142639
|
* DevExtreme (esm/__internal/core/utils/m_deferred.js)
|
142607
|
-
* Version: 24.2.8
|
142608
|
-
* Build date:
|
142640
|
+
* Version: 24.2.8
|
142641
|
+
* Build date: Fri Jun 13 2025
|
142609
142642
|
*
|
142610
142643
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142611
142644
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142770,8 +142803,8 @@ function when() {
|
|
142770
142803
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/deferred.js
|
142771
142804
|
/**
|
142772
142805
|
* DevExtreme (esm/core/utils/deferred.js)
|
142773
|
-
* Version: 24.2.8
|
142774
|
-
* Build date:
|
142806
|
+
* Version: 24.2.8
|
142807
|
+
* Build date: Fri Jun 13 2025
|
142775
142808
|
*
|
142776
142809
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142777
142810
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142781,8 +142814,8 @@ function when() {
|
|
142781
142814
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_common.js
|
142782
142815
|
/**
|
142783
142816
|
* DevExtreme (esm/__internal/core/utils/m_common.js)
|
142784
|
-
* Version: 24.2.8
|
142785
|
-
* Build date:
|
142817
|
+
* Version: 24.2.8
|
142818
|
+
* Build date: Fri Jun 13 2025
|
142786
142819
|
*
|
142787
142820
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142788
142821
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143077,8 +143110,8 @@ const equalByValue = function(value1, value2) {
|
|
143077
143110
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/common.js
|
143078
143111
|
/**
|
143079
143112
|
* DevExtreme (esm/core/utils/common.js)
|
143080
|
-
* Version: 24.2.8
|
143081
|
-
* Build date:
|
143113
|
+
* Version: 24.2.8
|
143114
|
+
* Build date: Fri Jun 13 2025
|
143082
143115
|
*
|
143083
143116
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143084
143117
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143088,8 +143121,8 @@ const equalByValue = function(value1, value2) {
|
|
143088
143121
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_math.js
|
143089
143122
|
/**
|
143090
143123
|
* DevExtreme (esm/__internal/core/utils/m_math.js)
|
143091
|
-
* Version: 24.2.8
|
143092
|
-
* Build date:
|
143124
|
+
* Version: 24.2.8
|
143125
|
+
* Build date: Fri Jun 13 2025
|
143093
143126
|
*
|
143094
143127
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143095
143128
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143258,8 +143291,8 @@ function roundFloatPart(value) {
|
|
143258
143291
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/math.js
|
143259
143292
|
/**
|
143260
143293
|
* DevExtreme (esm/core/utils/math.js)
|
143261
|
-
* Version: 24.2.8
|
143262
|
-
* Build date:
|
143294
|
+
* Version: 24.2.8
|
143295
|
+
* Build date: Fri Jun 13 2025
|
143263
143296
|
*
|
143264
143297
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143265
143298
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143269,8 +143302,8 @@ function roundFloatPart(value) {
|
|
143269
143302
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/utils.js
|
143270
143303
|
/**
|
143271
143304
|
* DevExtreme (esm/common/core/localization/utils.js)
|
143272
|
-
* Version: 24.2.8
|
143273
|
-
* Build date:
|
143305
|
+
* Version: 24.2.8
|
143306
|
+
* Build date: Fri Jun 13 2025
|
143274
143307
|
*
|
143275
143308
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143276
143309
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143297,8 +143330,8 @@ function toFixed(value, precision) {
|
|
143297
143330
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/number.js
|
143298
143331
|
/**
|
143299
143332
|
* DevExtreme (esm/common/core/localization/ldml/number.js)
|
143300
|
-
* Version: 24.2.8
|
143301
|
-
* Build date:
|
143333
|
+
* Version: 24.2.8
|
143334
|
+
* Build date: Fri Jun 13 2025
|
143302
143335
|
*
|
143303
143336
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143304
143337
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143539,8 +143572,8 @@ function getFormat(formatter) {
|
|
143539
143572
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/currency.js
|
143540
143573
|
/**
|
143541
143574
|
* DevExtreme (esm/common/core/localization/currency.js)
|
143542
|
-
* Version: 24.2.8
|
143543
|
-
* Build date:
|
143575
|
+
* Version: 24.2.8
|
143576
|
+
* Build date: Fri Jun 13 2025
|
143544
143577
|
*
|
143545
143578
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143546
143579
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143572,8 +143605,8 @@ function getFormat(formatter) {
|
|
143572
143605
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/parent_locales.js
|
143573
143606
|
/**
|
143574
143607
|
* DevExtreme (esm/common/core/localization/cldr-data/parent_locales.js)
|
143575
|
-
* Version: 24.2.8
|
143576
|
-
* Build date:
|
143608
|
+
* Version: 24.2.8
|
143609
|
+
* Build date: Fri Jun 13 2025
|
143577
143610
|
*
|
143578
143611
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143579
143612
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143758,8 +143791,8 @@ function getFormat(formatter) {
|
|
143758
143791
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/parentLocale.js
|
143759
143792
|
/**
|
143760
143793
|
* DevExtreme (esm/common/core/localization/parentLocale.js)
|
143761
|
-
* Version: 24.2.8
|
143762
|
-
* Build date:
|
143794
|
+
* Version: 24.2.8
|
143795
|
+
* Build date: Fri Jun 13 2025
|
143763
143796
|
*
|
143764
143797
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143765
143798
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143776,8 +143809,8 @@ const PARENT_LOCALE_SEPARATOR = "-";
|
|
143776
143809
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/core.js
|
143777
143810
|
/**
|
143778
143811
|
* DevExtreme (esm/common/core/localization/core.js)
|
143779
|
-
* Version: 24.2.8
|
143780
|
-
* Build date:
|
143812
|
+
* Version: 24.2.8
|
143813
|
+
* Build date: Fri Jun 13 2025
|
143781
143814
|
*
|
143782
143815
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143783
143816
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143818,8 +143851,8 @@ const DEFAULT_LOCALE = "en";
|
|
143818
143851
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/open_xml_currency_format.js
|
143819
143852
|
/**
|
143820
143853
|
* DevExtreme (esm/common/core/localization/open_xml_currency_format.js)
|
143821
|
-
* Version: 24.2.8
|
143822
|
-
* Build date:
|
143854
|
+
* Version: 24.2.8
|
143855
|
+
* Build date: Fri Jun 13 2025
|
143823
143856
|
*
|
143824
143857
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143825
143858
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143861,8 +143894,8 @@ const DEFAULT_LOCALE = "en";
|
|
143861
143894
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/accounting_formats.js
|
143862
143895
|
/**
|
143863
143896
|
* DevExtreme (esm/common/core/localization/cldr-data/accounting_formats.js)
|
143864
|
-
* Version: 24.2.8
|
143865
|
-
* Build date:
|
143897
|
+
* Version: 24.2.8
|
143898
|
+
* Build date: Fri Jun 13 2025
|
143866
143899
|
*
|
143867
143900
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143868
143901
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144448,8 +144481,8 @@ const DEFAULT_LOCALE = "en";
|
|
144448
144481
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/number.js
|
144449
144482
|
/**
|
144450
144483
|
* DevExtreme (esm/common/core/localization/intl/number.js)
|
144451
|
-
* Version: 24.2.8
|
144452
|
-
* Build date:
|
144484
|
+
* Version: 24.2.8
|
144485
|
+
* Build date: Fri Jun 13 2025
|
144453
144486
|
*
|
144454
144487
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144455
144488
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144569,8 +144602,8 @@ const getCurrencyFormatter = currency => new Intl.NumberFormat(core.locale(), {
|
|
144569
144602
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/number.js
|
144570
144603
|
/**
|
144571
144604
|
* DevExtreme (esm/common/core/localization/number.js)
|
144572
|
-
* Version: 24.2.8
|
144573
|
-
* Build date:
|
144605
|
+
* Version: 24.2.8
|
144606
|
+
* Build date: Fri Jun 13 2025
|
144574
144607
|
*
|
144575
144608
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144576
144609
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144875,8 +144908,8 @@ if (hasIntl) {
|
|
144875
144908
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.format.js
|
144876
144909
|
/**
|
144877
144910
|
* DevExtreme (esm/common/core/localization/ldml/date.format.js)
|
144878
|
-
* Version: 24.2.8
|
144879
|
-
* Build date:
|
144911
|
+
* Version: 24.2.8
|
144912
|
+
* Build date: Fri Jun 13 2025
|
144880
144913
|
*
|
144881
144914
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144882
144915
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145073,8 +145106,8 @@ const date_format_getFormat = function(formatter) {
|
|
145073
145106
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.parser.js
|
145074
145107
|
/**
|
145075
145108
|
* DevExtreme (esm/common/core/localization/ldml/date.parser.js)
|
145076
|
-
* Version: 24.2.8
|
145077
|
-
* Build date:
|
145109
|
+
* Version: 24.2.8
|
145110
|
+
* Build date: Fri Jun 13 2025
|
145078
145111
|
*
|
145079
145112
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145080
145113
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145392,8 +145425,8 @@ const getParser = function(format, dateParts) {
|
|
145392
145425
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/default_date_names.js
|
145393
145426
|
/**
|
145394
145427
|
* DevExtreme (esm/common/core/localization/default_date_names.js)
|
145395
|
-
* Version: 24.2.8
|
145396
|
-
* Build date:
|
145428
|
+
* Version: 24.2.8
|
145429
|
+
* Build date: Fri Jun 13 2025
|
145397
145430
|
*
|
145398
145431
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145399
145432
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145429,8 +145462,8 @@ const cutCaptions = (captions, format) => {
|
|
145429
145462
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/first_day_of_week_data.js
|
145430
145463
|
/**
|
145431
145464
|
* DevExtreme (esm/common/core/localization/cldr-data/first_day_of_week_data.js)
|
145432
|
-
* Version: 24.2.8
|
145433
|
-
* Build date:
|
145465
|
+
* Version: 24.2.8
|
145466
|
+
* Build date: Fri Jun 13 2025
|
145434
145467
|
*
|
145435
145468
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145436
145469
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145629,8 +145662,8 @@ const cutCaptions = (captions, format) => {
|
|
145629
145662
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/date.js
|
145630
145663
|
/**
|
145631
145664
|
* DevExtreme (esm/common/core/localization/intl/date.js)
|
145632
|
-
* Version: 24.2.8
|
145633
|
-
* Build date:
|
145665
|
+
* Version: 24.2.8
|
145666
|
+
* Build date: Fri Jun 13 2025
|
145634
145667
|
*
|
145635
145668
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145636
145669
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145947,8 +145980,8 @@ const monthNameStrategies = {
|
|
145947
145980
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/date.js
|
145948
145981
|
/**
|
145949
145982
|
* DevExtreme (esm/common/core/localization/date.js)
|
145950
|
-
* Version: 24.2.8
|
145951
|
-
* Build date:
|
145983
|
+
* Version: 24.2.8
|
145984
|
+
* Build date: Fri Jun 13 2025
|
145952
145985
|
*
|
145953
145986
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145954
145987
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -147185,7 +147218,7 @@ class ClientRichEdit {
|
|
147185
147218
|
this.contextMenuSettings = settings.contextMenuSettings;
|
147186
147219
|
this.fullScreenHelper = new FullScreenHelper(element);
|
147187
147220
|
if (true)
|
147188
|
-
external_DevExpress_config_default()(JSON.parse(atob('
|
147221
|
+
external_DevExpress_config_default()(JSON.parse(atob('eyJsaWNlbnNlS2V5IjoiZXdvZ0lDSm1iM0p0WVhRaU9pQXhMQW9nSUNKcGJuUmxjbTVoYkZWellXZGxTV1FpT2lBaVVVTm9aVWN5TW5KYWVUZG1ZMUoyZVZWR2NVTXpWU0lLZlE9PS54V3o4QXpzaDFXcDNlL1Qva29jbVZFUm9mV3lCc213Y2pla1A4NFpibm8wRUozVmZvcEZnY1FnZXNBOEJqTjE1YWFRRWdzSGZzU1BIaS85NnF1aUkyZE9CRCtaYmFSd0FhM1FXeVdnQkVrUmRnZWVTd2R4SXR6MFdvaGd5RENMaHlOeU9Fdz09In0=')));
|
147189
147222
|
this.prepareElement(element, settings);
|
147190
147223
|
this.initDefaultFontsAndStyles();
|
147191
147224
|
this.initBars(settings.ribbon, settings.fonts);
|