devexpress-richedit 24.2.8-build-25156-0116 → 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.
@@ -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))
@@ -34178,7 +34182,7 @@ class FieldsWaitingForUpdate {
34178
34182
  }
34179
34183
  if (!fieldParser.update(response)) {
34180
34184
  someFieldInCurrentInfoNotUpdated = true;
34181
- info.parsers.push(fieldParser);
34185
+ info.parsers.unshift(fieldParser);
34182
34186
  }
34183
34187
  else
34184
34188
  fieldParser.destructor();
@@ -43205,7 +43209,7 @@ class PictureManipulator extends RunsBaseManipulator {
43205
43209
  this.history.addTransaction(() => {
43206
43210
  this.modelManipulator.range.removeInterval(new SubDocumentInterval(subDocument, interval), true, false);
43207
43211
  const newInfo = new InlinePictureInfo(pictureRun.size.clone(), new Shape(), -1, pictureRun.info.containerProperties, pictureRun.info.nonVisualDrawingProperties);
43208
- 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));
43209
43213
  });
43210
43214
  }
43211
43215
  }
@@ -43220,7 +43224,7 @@ class PictureManipulator extends RunsBaseManipulator {
43220
43224
  anchorInfo.zOrder = this.modelManipulator.floatingObject.zOrder.getNewZOrder(subDocument);
43221
43225
  this.modelManipulator.range.removeInterval(new SubDocumentInterval(subDocument, interval), true, false);
43222
43226
  const newInfo = new AnchorPictureInfo(pictureRun.size.clone(), new Shape(), anchorInfo, pictureRun.info.containerProperties, pictureRun.info.nonVisualDrawingProperties);
43223
- this.modelManipulator.picture.insertAnchoredPictureViaHistory(new SubDocumentPosition(subDocument, interval.start), charPropsBundle, newInfo, new ImageLoadingOptions(false));
43227
+ this.modelManipulator.picture.insertAnchoredPictureViaHistory(new SubDocumentPosition(subDocument, interval.start), charPropsBundle, newInfo, new ImageLoadingOptions(!pictureRun.cacheInfo.isSizeDefined));
43224
43228
  run = subDocument.getRunByPosition(interval.start);
43225
43229
  }
43226
43230
  let anchoredRun = run.getType() == RunType.AnchoredPictureRun ? run : run;
@@ -84740,7 +84744,7 @@ class ImagesApi {
84740
84744
  applyVerticalPosition(verticalPosition, anchorInfo);
84741
84745
  const anchorPictureInfo = new AnchorPictureInfo(new PictureSize(true, 0, cacheInfo, new geometry_size.Size(100, 100)), shape, anchorInfo, new NonVisualDrawingObjectInfo(), new NonVisualDrawingObjectInfo());
84742
84746
  anchorPictureInfo.containerProperties.description = options.description;
84743
- this._processor.modelManager.modelManipulator.picture.insertAnchoredPictureViaHistory(new SubDocumentPosition(this._subDocument, position), inputPos.charPropsBundle, anchorPictureInfo, new ImageLoadingOptions(false, size ? new geometry_size.Size(size.width, size.height) : undefined, (_picInterval, _cacheInfo) => setTimeout(() => {
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(() => {
84744
84748
  callback(getFloatingImageApiFromRun(this._processor, this._subDocument, this._subDocument.getRunAndIndexesByPosition(position)));
84745
84749
  }, 0)));
84746
84750
  this._processor.endUpdate();
@@ -95980,7 +95984,7 @@ class WordHolderInfo {
95980
95984
  }
95981
95985
  if (res == null)
95982
95986
  return false;
95983
- if (this.rowFormatter.row.isEmpty()) {
95987
+ if (this.rowFormatter.row.isEmpty() || this.rowFormatter.row.containsSpacesOnly()) {
95984
95988
  if (this.rowFormatter.rowSizesManager.rowFormattingInfo.isFloatingIntersectRow) {
95985
95989
  this.rowFormatter.rowSizesManager.rowFormattingInfo.findNextYPosWhatHasNeededSpace(res.requiredWidth);
95986
95990
  return this.pushBoxes();
@@ -128173,8 +128177,18 @@ class PrintDocumentOnClient extends CommandBase {
128173
128177
  return true;
128174
128178
  }
128175
128179
  printCore(htmlPrinting, printWindow, closePrintDialogWithHtmlPreview, needSwitchViewType, needToggleHiddenSymbols) {
128176
- if (htmlPrinting)
128177
- this.generatePrintDocument(printWindow, closePrintDialogWithHtmlPreview);
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
+ }
128178
128192
  else {
128179
128193
  pdfExport(this.control, (blob, _stream) => {
128180
128194
  if (window.navigator.msSaveOrOpenBlob && !browser.Browser.Edge)
@@ -128189,12 +128203,27 @@ class PrintDocumentOnClient extends CommandBase {
128189
128203
  this.control.commandManager.getCommand(RichEditClientCommand.ToggleShowWhitespace).execute(this.control.commandManager.isPublicApiCall);
128190
128204
  this.control.commandManager.isPrintingProcessing = false;
128191
128205
  }
128192
- generatePrintDocument(printWindow, closePrintDialogWithHtmlPreview) {
128206
+ generatePrintDocument(document) {
128193
128207
  const height = this.control.layout.pages[0].height;
128194
128208
  const width = this.control.layout.pages[0].width;
128195
- let printWindowContent = `<!DOCTYPE html>
128196
- <html moznomarginboxes mozdisallowselectionprint>
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>
128197
128225
  <head>
128226
+ ${fontLink}
128198
128227
  <style ${this._nonce ? `nonce="${this._nonce}"` : ''}>
128199
128228
  html, body {
128200
128229
  margin: 0;
@@ -128213,22 +128242,25 @@ class PrintDocumentOnClient extends CommandBase {
128213
128242
  </style>
128214
128243
  </head>
128215
128244
  <body>
128245
+ ${divsToLoadFonts}
128216
128246
  </body>
128217
- </html>`;
128218
- printWindow.document.write(printWindowContent);
128219
- printWindow.document.close();
128247
+ </html>`;
128220
128248
  this.generatePrintContent().forEach((child) => {
128221
- printWindow.document.body.appendChild(child);
128249
+ document.body.appendChild(child);
128222
128250
  });
128223
- printWindow.focus();
128224
- const interval = setInterval(() => {
128225
- if (printWindow.document.readyState == 'complete') {
128226
- printWindow.print();
128227
- if (closePrintDialogWithHtmlPreview && !browser.Browser.AndroidMobilePlatform)
128228
- printWindow.close();
128229
- clearInterval(interval);
128230
- }
128231
- }, 100);
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" />`;
128232
128264
  }
128233
128265
  generatePrintContent() {
128234
128266
  const layout = this.control.layout;
@@ -140980,8 +141012,8 @@ class DialogManager {
140980
141012
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_type.js
140981
141013
  /**
140982
141014
  * DevExtreme (esm/__internal/core/utils/m_type.js)
140983
- * Version: 24.2.8-build-25155-1935
140984
- * Build date: Wed Jun 04 2025
141015
+ * Version: 24.2.8
141016
+ * Build date: Fri Jun 13 2025
140985
141017
  *
140986
141018
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
140987
141019
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141083,8 +141115,8 @@ const isEvent = function(object) {
141083
141115
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/type.js
141084
141116
  /**
141085
141117
  * DevExtreme (esm/core/utils/type.js)
141086
- * Version: 24.2.8-build-25155-1935
141087
- * Build date: Wed Jun 04 2025
141118
+ * Version: 24.2.8
141119
+ * Build date: Fri Jun 13 2025
141088
141120
  *
141089
141121
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141090
141122
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141094,8 +141126,8 @@ const isEvent = function(object) {
141094
141126
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_extend.js
141095
141127
  /**
141096
141128
  * DevExtreme (esm/__internal/core/utils/m_extend.js)
141097
- * Version: 24.2.8-build-25155-1935
141098
- * Build date: Wed Jun 04 2025
141129
+ * Version: 24.2.8
141130
+ * Build date: Fri Jun 13 2025
141099
141131
  *
141100
141132
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141101
141133
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141153,8 +141185,8 @@ const extend = function(target) {
141153
141185
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/extend.js
141154
141186
  /**
141155
141187
  * DevExtreme (esm/core/utils/extend.js)
141156
- * Version: 24.2.8-build-25155-1935
141157
- * Build date: Wed Jun 04 2025
141188
+ * Version: 24.2.8
141189
+ * Build date: Fri Jun 13 2025
141158
141190
  *
141159
141191
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141160
141192
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141164,8 +141196,8 @@ const extend = function(target) {
141164
141196
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_string.js
141165
141197
  /**
141166
141198
  * DevExtreme (esm/__internal/core/utils/m_string.js)
141167
- * Version: 24.2.8-build-25155-1935
141168
- * Build date: Wed Jun 04 2025
141199
+ * Version: 24.2.8
141200
+ * Build date: Fri Jun 13 2025
141169
141201
  *
141170
141202
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141171
141203
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141240,8 +141272,8 @@ const isEmpty = function() {
141240
141272
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/string.js
141241
141273
  /**
141242
141274
  * DevExtreme (esm/core/utils/string.js)
141243
- * Version: 24.2.8-build-25155-1935
141244
- * Build date: Wed Jun 04 2025
141275
+ * Version: 24.2.8
141276
+ * Build date: Fri Jun 13 2025
141245
141277
  *
141246
141278
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141247
141279
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141251,20 +141283,20 @@ const isEmpty = function() {
141251
141283
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/version.js
141252
141284
  /**
141253
141285
  * DevExtreme (esm/core/version.js)
141254
- * Version: 24.2.8-build-25155-1935
141255
- * Build date: Wed Jun 04 2025
141286
+ * Version: 24.2.8
141287
+ * Build date: Fri Jun 13 2025
141256
141288
  *
141257
141289
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141258
141290
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
141259
141291
  */
141260
- const version = "24.2.7";
141261
- const fullVersion = "24.2.7.25155-1935";
141292
+ const version = "24.2.8";
141293
+ const fullVersion = "24.2.8";
141262
141294
 
141263
141295
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_console.js
141264
141296
  /**
141265
141297
  * DevExtreme (esm/__internal/core/utils/m_console.js)
141266
- * Version: 24.2.8-build-25155-1935
141267
- * Build date: Wed Jun 04 2025
141298
+ * Version: 24.2.8
141299
+ * Build date: Fri Jun 13 2025
141268
141300
  *
141269
141301
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141270
141302
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141304,8 +141336,8 @@ const debug = function() {
141304
141336
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_error.js
141305
141337
  /**
141306
141338
  * DevExtreme (esm/__internal/core/utils/m_error.js)
141307
- * Version: 24.2.8-build-25155-1935
141308
- * Build date: Wed Jun 04 2025
141339
+ * Version: 24.2.8
141340
+ * Build date: Fri Jun 13 2025
141309
141341
  *
141310
141342
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141311
141343
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141376,8 +141408,8 @@ function error(baseErrors, errors) {
141376
141408
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/error.js
141377
141409
  /**
141378
141410
  * DevExtreme (esm/core/utils/error.js)
141379
- * Version: 24.2.8-build-25155-1935
141380
- * Build date: Wed Jun 04 2025
141411
+ * Version: 24.2.8
141412
+ * Build date: Fri Jun 13 2025
141381
141413
  *
141382
141414
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141383
141415
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141388,8 +141420,8 @@ function error(baseErrors, errors) {
141388
141420
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_errors.js
141389
141421
  /**
141390
141422
  * DevExtreme (esm/__internal/core/m_errors.js)
141391
- * Version: 24.2.8-build-25155-1935
141392
- * Build date: Wed Jun 04 2025
141423
+ * Version: 24.2.8
141424
+ * Build date: Fri Jun 13 2025
141393
141425
  *
141394
141426
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141395
141427
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141455,8 +141487,8 @@ function error(baseErrors, errors) {
141455
141487
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/errors.js
141456
141488
  /**
141457
141489
  * DevExtreme (esm/core/errors.js)
141458
- * Version: 24.2.8-build-25155-1935
141459
- * Build date: Wed Jun 04 2025
141490
+ * Version: 24.2.8
141491
+ * Build date: Fri Jun 13 2025
141460
141492
  *
141461
141493
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141462
141494
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141467,8 +141499,8 @@ function error(baseErrors, errors) {
141467
141499
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_class.js
141468
141500
  /**
141469
141501
  * DevExtreme (esm/__internal/core/m_class.js)
141470
- * Version: 24.2.8-build-25155-1935
141471
- * Build date: Wed Jun 04 2025
141502
+ * Version: 24.2.8
141503
+ * Build date: Fri Jun 13 2025
141472
141504
  *
141473
141505
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141474
141506
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141601,8 +141633,8 @@ classImpl.abstract = m_class_abstract;
141601
141633
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/class.js
141602
141634
  /**
141603
141635
  * DevExtreme (esm/core/class.js)
141604
- * Version: 24.2.8-build-25155-1935
141605
- * Build date: Wed Jun 04 2025
141636
+ * Version: 24.2.8
141637
+ * Build date: Fri Jun 13 2025
141606
141638
  *
141607
141639
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141608
141640
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141613,8 +141645,8 @@ classImpl.abstract = m_class_abstract;
141613
141645
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_iterator.js
141614
141646
  /**
141615
141647
  * DevExtreme (esm/__internal/core/utils/m_iterator.js)
141616
- * Version: 24.2.8-build-25155-1935
141617
- * Build date: Wed Jun 04 2025
141648
+ * Version: 24.2.8
141649
+ * Build date: Fri Jun 13 2025
141618
141650
  *
141619
141651
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141620
141652
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141663,8 +141695,8 @@ const reverseEach = (array, callback) => {
141663
141695
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_dependency_injector.js
141664
141696
  /**
141665
141697
  * DevExtreme (esm/__internal/core/utils/m_dependency_injector.js)
141666
- * Version: 24.2.8-build-25155-1935
141667
- * Build date: Wed Jun 04 2025
141698
+ * Version: 24.2.8
141699
+ * Build date: Fri Jun 13 2025
141668
141700
  *
141669
141701
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141670
141702
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141713,8 +141745,8 @@ function injector(object) {
141713
141745
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/dependency_injector.js
141714
141746
  /**
141715
141747
  * DevExtreme (esm/core/utils/dependency_injector.js)
141716
- * Version: 24.2.8-build-25155-1935
141717
- * Build date: Wed Jun 04 2025
141748
+ * Version: 24.2.8
141749
+ * Build date: Fri Jun 13 2025
141718
141750
  *
141719
141751
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141720
141752
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141725,8 +141757,8 @@ function injector(object) {
141725
141757
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.formatter.js
141726
141758
  /**
141727
141759
  * DevExtreme (esm/common/core/localization/ldml/date.formatter.js)
141728
- * Version: 24.2.8-build-25155-1935
141729
- * Build date: Wed Jun 04 2025
141760
+ * Version: 24.2.8
141761
+ * Build date: Fri Jun 13 2025
141730
141762
  *
141731
141763
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141732
141764
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141879,8 +141911,8 @@ function _extends() {
141879
141911
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_config.js
141880
141912
  /**
141881
141913
  * DevExtreme (esm/__internal/core/m_config.js)
141882
- * Version: 24.2.8-build-25155-1935
141883
- * Build date: Wed Jun 04 2025
141914
+ * Version: 24.2.8
141915
+ * Build date: Fri Jun 13 2025
141884
141916
  *
141885
141917
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141886
141918
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141955,8 +141987,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
141955
141987
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/config.js
141956
141988
  /**
141957
141989
  * DevExtreme (esm/common/config.js)
141958
- * Version: 24.2.8-build-25155-1935
141959
- * Build date: Wed Jun 04 2025
141990
+ * Version: 24.2.8
141991
+ * Build date: Fri Jun 13 2025
141960
141992
  *
141961
141993
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141962
141994
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141967,8 +141999,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
141967
141999
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_guid.js
141968
142000
  /**
141969
142001
  * DevExtreme (esm/__internal/core/m_guid.js)
141970
- * Version: 24.2.8-build-25155-1935
141971
- * Build date: Wed Jun 04 2025
142002
+ * Version: 24.2.8
142003
+ * Build date: Fri Jun 13 2025
141972
142004
  *
141973
142005
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141974
142006
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142010,8 +142042,8 @@ const Guid = core_class.inherit({
142010
142042
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/guid.js
142011
142043
  /**
142012
142044
  * DevExtreme (esm/common/guid.js)
142013
- * Version: 24.2.8-build-25155-1935
142014
- * Build date: Wed Jun 04 2025
142045
+ * Version: 24.2.8
142046
+ * Build date: Fri Jun 13 2025
142015
142047
  *
142016
142048
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142017
142049
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142022,8 +142054,8 @@ const Guid = core_class.inherit({
142022
142054
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/templates/m_template_engine_registry.js
142023
142055
  /**
142024
142056
  * DevExtreme (esm/__internal/core/templates/m_template_engine_registry.js)
142025
- * Version: 24.2.8-build-25155-1935
142026
- * Build date: Wed Jun 04 2025
142057
+ * Version: 24.2.8
142058
+ * Build date: Fri Jun 13 2025
142027
142059
  *
142028
142060
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142029
142061
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142052,8 +142084,8 @@ function getCurrentTemplateEngine() {
142052
142084
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/templates/template_engine_registry.js
142053
142085
  /**
142054
142086
  * DevExtreme (esm/core/templates/template_engine_registry.js)
142055
- * Version: 24.2.8-build-25155-1935
142056
- * Build date: Wed Jun 04 2025
142087
+ * Version: 24.2.8
142088
+ * Build date: Fri Jun 13 2025
142057
142089
  *
142058
142090
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142059
142091
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142063,8 +142095,8 @@ function getCurrentTemplateEngine() {
142063
142095
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_set_template_engine.js
142064
142096
  /**
142065
142097
  * DevExtreme (esm/__internal/core/m_set_template_engine.js)
142066
- * Version: 24.2.8-build-25155-1935
142067
- * Build date: Wed Jun 04 2025
142098
+ * Version: 24.2.8
142099
+ * Build date: Fri Jun 13 2025
142068
142100
  *
142069
142101
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142070
142102
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142074,8 +142106,8 @@ function getCurrentTemplateEngine() {
142074
142106
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/set_template_engine.js
142075
142107
  /**
142076
142108
  * DevExtreme (esm/common/set_template_engine.js)
142077
- * Version: 24.2.8-build-25155-1935
142078
- * Build date: Wed Jun 04 2025
142109
+ * Version: 24.2.8
142110
+ * Build date: Fri Jun 13 2025
142079
142111
  *
142080
142112
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142081
142113
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142086,8 +142118,8 @@ function getCurrentTemplateEngine() {
142086
142118
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common.js
142087
142119
  /**
142088
142120
  * DevExtreme (esm/common.js)
142089
- * Version: 24.2.8-build-25155-1935
142090
- * Build date: Wed Jun 04 2025
142121
+ * Version: 24.2.8
142122
+ * Build date: Fri Jun 13 2025
142091
142123
  *
142092
142124
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142093
142125
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142100,8 +142132,8 @@ function getCurrentTemplateEngine() {
142100
142132
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/config.js
142101
142133
  /**
142102
142134
  * DevExtreme (esm/core/config.js)
142103
- * Version: 24.2.8-build-25155-1935
142104
- * Build date: Wed Jun 04 2025
142135
+ * Version: 24.2.8
142136
+ * Build date: Fri Jun 13 2025
142105
142137
  *
142106
142138
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142107
142139
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142112,8 +142144,8 @@ function getCurrentTemplateEngine() {
142112
142144
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/guid.js
142113
142145
  /**
142114
142146
  * DevExtreme (esm/core/guid.js)
142115
- * Version: 24.2.8-build-25155-1935
142116
- * Build date: Wed Jun 04 2025
142147
+ * Version: 24.2.8
142148
+ * Build date: Fri Jun 13 2025
142117
142149
  *
142118
142150
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142119
142151
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142124,8 +142156,8 @@ function getCurrentTemplateEngine() {
142124
142156
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/console.js
142125
142157
  /**
142126
142158
  * DevExtreme (esm/core/utils/console.js)
142127
- * Version: 24.2.8-build-25155-1935
142128
- * Build date: Wed Jun 04 2025
142159
+ * Version: 24.2.8
142160
+ * Build date: Fri Jun 13 2025
142129
142161
  *
142130
142162
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142131
142163
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142135,8 +142167,8 @@ function getCurrentTemplateEngine() {
142135
142167
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_variable_wrapper.js
142136
142168
  /**
142137
142169
  * DevExtreme (esm/__internal/core/utils/m_variable_wrapper.js)
142138
- * Version: 24.2.8-build-25155-1935
142139
- * Build date: Wed Jun 04 2025
142170
+ * Version: 24.2.8
142171
+ * Build date: Fri Jun 13 2025
142140
142172
  *
142141
142173
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142142
142174
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142165,8 +142197,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
142165
142197
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/variable_wrapper.js
142166
142198
  /**
142167
142199
  * DevExtreme (esm/core/utils/variable_wrapper.js)
142168
- * Version: 24.2.8-build-25155-1935
142169
- * Build date: Wed Jun 04 2025
142200
+ * Version: 24.2.8
142201
+ * Build date: Fri Jun 13 2025
142170
142202
  *
142171
142203
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142172
142204
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142177,8 +142209,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
142177
142209
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_object.js
142178
142210
  /**
142179
142211
  * DevExtreme (esm/__internal/core/utils/m_object.js)
142180
- * Version: 24.2.8-build-25155-1935
142181
- * Build date: Wed Jun 04 2025
142212
+ * Version: 24.2.8
142213
+ * Build date: Fri Jun 13 2025
142182
142214
  *
142183
142215
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142184
142216
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142278,8 +142310,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
142278
142310
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/object.js
142279
142311
  /**
142280
142312
  * DevExtreme (esm/core/utils/object.js)
142281
- * Version: 24.2.8-build-25155-1935
142282
- * Build date: Wed Jun 04 2025
142313
+ * Version: 24.2.8
142314
+ * Build date: Fri Jun 13 2025
142283
142315
  *
142284
142316
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142285
142317
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142289,8 +142321,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
142289
142321
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_data.js
142290
142322
  /**
142291
142323
  * DevExtreme (esm/__internal/core/utils/m_data.js)
142292
- * Version: 24.2.8-build-25155-1935
142293
- * Build date: Wed Jun 04 2025
142324
+ * Version: 24.2.8
142325
+ * Build date: Fri Jun 13 2025
142294
142326
  *
142295
142327
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142296
142328
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142486,8 +142518,8 @@ const toComparable = function(value, caseSensitive) {
142486
142518
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/data.js
142487
142519
  /**
142488
142520
  * DevExtreme (esm/core/utils/data.js)
142489
- * Version: 24.2.8-build-25155-1935
142490
- * Build date: Wed Jun 04 2025
142521
+ * Version: 24.2.8
142522
+ * Build date: Fri Jun 13 2025
142491
142523
  *
142492
142524
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142493
142525
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142497,8 +142529,8 @@ const toComparable = function(value, caseSensitive) {
142497
142529
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_callbacks.js
142498
142530
  /**
142499
142531
  * DevExtreme (esm/__internal/core/utils/m_callbacks.js)
142500
- * Version: 24.2.8-build-25155-1935
142501
- * Build date: Wed Jun 04 2025
142532
+ * Version: 24.2.8
142533
+ * Build date: Fri Jun 13 2025
142502
142534
  *
142503
142535
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142504
142536
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142593,8 +142625,8 @@ const Callbacks = function(options) {
142593
142625
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/callbacks.js
142594
142626
  /**
142595
142627
  * DevExtreme (esm/core/utils/callbacks.js)
142596
- * Version: 24.2.8-build-25155-1935
142597
- * Build date: Wed Jun 04 2025
142628
+ * Version: 24.2.8
142629
+ * Build date: Fri Jun 13 2025
142598
142630
  *
142599
142631
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142600
142632
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142605,8 +142637,8 @@ const Callbacks = function(options) {
142605
142637
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_deferred.js
142606
142638
  /**
142607
142639
  * DevExtreme (esm/__internal/core/utils/m_deferred.js)
142608
- * Version: 24.2.8-build-25155-1935
142609
- * Build date: Wed Jun 04 2025
142640
+ * Version: 24.2.8
142641
+ * Build date: Fri Jun 13 2025
142610
142642
  *
142611
142643
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142612
142644
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142771,8 +142803,8 @@ function when() {
142771
142803
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/deferred.js
142772
142804
  /**
142773
142805
  * DevExtreme (esm/core/utils/deferred.js)
142774
- * Version: 24.2.8-build-25155-1935
142775
- * Build date: Wed Jun 04 2025
142806
+ * Version: 24.2.8
142807
+ * Build date: Fri Jun 13 2025
142776
142808
  *
142777
142809
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142778
142810
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142782,8 +142814,8 @@ function when() {
142782
142814
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_common.js
142783
142815
  /**
142784
142816
  * DevExtreme (esm/__internal/core/utils/m_common.js)
142785
- * Version: 24.2.8-build-25155-1935
142786
- * Build date: Wed Jun 04 2025
142817
+ * Version: 24.2.8
142818
+ * Build date: Fri Jun 13 2025
142787
142819
  *
142788
142820
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142789
142821
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143078,8 +143110,8 @@ const equalByValue = function(value1, value2) {
143078
143110
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/common.js
143079
143111
  /**
143080
143112
  * DevExtreme (esm/core/utils/common.js)
143081
- * Version: 24.2.8-build-25155-1935
143082
- * Build date: Wed Jun 04 2025
143113
+ * Version: 24.2.8
143114
+ * Build date: Fri Jun 13 2025
143083
143115
  *
143084
143116
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143085
143117
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143089,8 +143121,8 @@ const equalByValue = function(value1, value2) {
143089
143121
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_math.js
143090
143122
  /**
143091
143123
  * DevExtreme (esm/__internal/core/utils/m_math.js)
143092
- * Version: 24.2.8-build-25155-1935
143093
- * Build date: Wed Jun 04 2025
143124
+ * Version: 24.2.8
143125
+ * Build date: Fri Jun 13 2025
143094
143126
  *
143095
143127
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143096
143128
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143259,8 +143291,8 @@ function roundFloatPart(value) {
143259
143291
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/math.js
143260
143292
  /**
143261
143293
  * DevExtreme (esm/core/utils/math.js)
143262
- * Version: 24.2.8-build-25155-1935
143263
- * Build date: Wed Jun 04 2025
143294
+ * Version: 24.2.8
143295
+ * Build date: Fri Jun 13 2025
143264
143296
  *
143265
143297
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143266
143298
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143270,8 +143302,8 @@ function roundFloatPart(value) {
143270
143302
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/utils.js
143271
143303
  /**
143272
143304
  * DevExtreme (esm/common/core/localization/utils.js)
143273
- * Version: 24.2.8-build-25155-1935
143274
- * Build date: Wed Jun 04 2025
143305
+ * Version: 24.2.8
143306
+ * Build date: Fri Jun 13 2025
143275
143307
  *
143276
143308
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143277
143309
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143298,8 +143330,8 @@ function toFixed(value, precision) {
143298
143330
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/number.js
143299
143331
  /**
143300
143332
  * DevExtreme (esm/common/core/localization/ldml/number.js)
143301
- * Version: 24.2.8-build-25155-1935
143302
- * Build date: Wed Jun 04 2025
143333
+ * Version: 24.2.8
143334
+ * Build date: Fri Jun 13 2025
143303
143335
  *
143304
143336
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143305
143337
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143540,8 +143572,8 @@ function getFormat(formatter) {
143540
143572
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/currency.js
143541
143573
  /**
143542
143574
  * DevExtreme (esm/common/core/localization/currency.js)
143543
- * Version: 24.2.8-build-25155-1935
143544
- * Build date: Wed Jun 04 2025
143575
+ * Version: 24.2.8
143576
+ * Build date: Fri Jun 13 2025
143545
143577
  *
143546
143578
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143547
143579
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143573,8 +143605,8 @@ function getFormat(formatter) {
143573
143605
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/parent_locales.js
143574
143606
  /**
143575
143607
  * DevExtreme (esm/common/core/localization/cldr-data/parent_locales.js)
143576
- * Version: 24.2.8-build-25155-1935
143577
- * Build date: Wed Jun 04 2025
143608
+ * Version: 24.2.8
143609
+ * Build date: Fri Jun 13 2025
143578
143610
  *
143579
143611
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143580
143612
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143759,8 +143791,8 @@ function getFormat(formatter) {
143759
143791
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/parentLocale.js
143760
143792
  /**
143761
143793
  * DevExtreme (esm/common/core/localization/parentLocale.js)
143762
- * Version: 24.2.8-build-25155-1935
143763
- * Build date: Wed Jun 04 2025
143794
+ * Version: 24.2.8
143795
+ * Build date: Fri Jun 13 2025
143764
143796
  *
143765
143797
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143766
143798
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143777,8 +143809,8 @@ const PARENT_LOCALE_SEPARATOR = "-";
143777
143809
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/core.js
143778
143810
  /**
143779
143811
  * DevExtreme (esm/common/core/localization/core.js)
143780
- * Version: 24.2.8-build-25155-1935
143781
- * Build date: Wed Jun 04 2025
143812
+ * Version: 24.2.8
143813
+ * Build date: Fri Jun 13 2025
143782
143814
  *
143783
143815
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143784
143816
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143819,8 +143851,8 @@ const DEFAULT_LOCALE = "en";
143819
143851
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/open_xml_currency_format.js
143820
143852
  /**
143821
143853
  * DevExtreme (esm/common/core/localization/open_xml_currency_format.js)
143822
- * Version: 24.2.8-build-25155-1935
143823
- * Build date: Wed Jun 04 2025
143854
+ * Version: 24.2.8
143855
+ * Build date: Fri Jun 13 2025
143824
143856
  *
143825
143857
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143826
143858
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143862,8 +143894,8 @@ const DEFAULT_LOCALE = "en";
143862
143894
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/accounting_formats.js
143863
143895
  /**
143864
143896
  * DevExtreme (esm/common/core/localization/cldr-data/accounting_formats.js)
143865
- * Version: 24.2.8-build-25155-1935
143866
- * Build date: Wed Jun 04 2025
143897
+ * Version: 24.2.8
143898
+ * Build date: Fri Jun 13 2025
143867
143899
  *
143868
143900
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143869
143901
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -144449,8 +144481,8 @@ const DEFAULT_LOCALE = "en";
144449
144481
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/number.js
144450
144482
  /**
144451
144483
  * DevExtreme (esm/common/core/localization/intl/number.js)
144452
- * Version: 24.2.8-build-25155-1935
144453
- * Build date: Wed Jun 04 2025
144484
+ * Version: 24.2.8
144485
+ * Build date: Fri Jun 13 2025
144454
144486
  *
144455
144487
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
144456
144488
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -144570,8 +144602,8 @@ const getCurrencyFormatter = currency => new Intl.NumberFormat(core.locale(), {
144570
144602
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/number.js
144571
144603
  /**
144572
144604
  * DevExtreme (esm/common/core/localization/number.js)
144573
- * Version: 24.2.8-build-25155-1935
144574
- * Build date: Wed Jun 04 2025
144605
+ * Version: 24.2.8
144606
+ * Build date: Fri Jun 13 2025
144575
144607
  *
144576
144608
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
144577
144609
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -144876,8 +144908,8 @@ if (hasIntl) {
144876
144908
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.format.js
144877
144909
  /**
144878
144910
  * DevExtreme (esm/common/core/localization/ldml/date.format.js)
144879
- * Version: 24.2.8-build-25155-1935
144880
- * Build date: Wed Jun 04 2025
144911
+ * Version: 24.2.8
144912
+ * Build date: Fri Jun 13 2025
144881
144913
  *
144882
144914
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
144883
144915
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -145074,8 +145106,8 @@ const date_format_getFormat = function(formatter) {
145074
145106
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.parser.js
145075
145107
  /**
145076
145108
  * DevExtreme (esm/common/core/localization/ldml/date.parser.js)
145077
- * Version: 24.2.8-build-25155-1935
145078
- * Build date: Wed Jun 04 2025
145109
+ * Version: 24.2.8
145110
+ * Build date: Fri Jun 13 2025
145079
145111
  *
145080
145112
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
145081
145113
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -145393,8 +145425,8 @@ const getParser = function(format, dateParts) {
145393
145425
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/default_date_names.js
145394
145426
  /**
145395
145427
  * DevExtreme (esm/common/core/localization/default_date_names.js)
145396
- * Version: 24.2.8-build-25155-1935
145397
- * Build date: Wed Jun 04 2025
145428
+ * Version: 24.2.8
145429
+ * Build date: Fri Jun 13 2025
145398
145430
  *
145399
145431
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
145400
145432
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -145430,8 +145462,8 @@ const cutCaptions = (captions, format) => {
145430
145462
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/first_day_of_week_data.js
145431
145463
  /**
145432
145464
  * DevExtreme (esm/common/core/localization/cldr-data/first_day_of_week_data.js)
145433
- * Version: 24.2.8-build-25155-1935
145434
- * Build date: Wed Jun 04 2025
145465
+ * Version: 24.2.8
145466
+ * Build date: Fri Jun 13 2025
145435
145467
  *
145436
145468
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
145437
145469
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -145630,8 +145662,8 @@ const cutCaptions = (captions, format) => {
145630
145662
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/date.js
145631
145663
  /**
145632
145664
  * DevExtreme (esm/common/core/localization/intl/date.js)
145633
- * Version: 24.2.8-build-25155-1935
145634
- * Build date: Wed Jun 04 2025
145665
+ * Version: 24.2.8
145666
+ * Build date: Fri Jun 13 2025
145635
145667
  *
145636
145668
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
145637
145669
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -145948,8 +145980,8 @@ const monthNameStrategies = {
145948
145980
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/date.js
145949
145981
  /**
145950
145982
  * DevExtreme (esm/common/core/localization/date.js)
145951
- * Version: 24.2.8-build-25155-1935
145952
- * Build date: Wed Jun 04 2025
145983
+ * Version: 24.2.8
145984
+ * Build date: Fri Jun 13 2025
145953
145985
  *
145954
145986
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
145955
145987
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -147186,7 +147218,7 @@ class ClientRichEdit {
147186
147218
  this.contextMenuSettings = settings.contextMenuSettings;
147187
147219
  this.fullScreenHelper = new FullScreenHelper(element);
147188
147220
  if (true)
147189
- external_DevExpress_config_default()(JSON.parse(atob('eyJsaWNlbnNlS2V5IjoiZXdvZ0lDSm1iM0p0WVhRaU9pQXhMQW9nSUNKcGJuUmxjbTVoYkZWellXZGxTV1FpT2lBaVVUTmhiM0ZJYzFKRU0zWllaVlZOVUdSWVNEZHhOU0lLZlE9PS5rMTA4KzRjbVFYSU96S1F1bUlqUE5oQkw0ejc5N0VSNlByVkkxcTB3V1QwbnkwUTVNZnkzRkJONlV5Zk9PV2p1eUJwaDR1ZllMM0llb0g4UHhNUU5wQUhUb3VUTTFFOHZaM01CM0lac2c1L1ZoOXhUNkg4TFJQSGZoQk00Rk5HUE5zNkY0dz09In0=')));
147221
+ external_DevExpress_config_default()(JSON.parse(atob('eyJsaWNlbnNlS2V5IjoiZXdvZ0lDSm1iM0p0WVhRaU9pQXhMQW9nSUNKcGJuUmxjbTVoYkZWellXZGxTV1FpT2lBaVVVTm9aVWN5TW5KYWVUZG1ZMUoyZVZWR2NVTXpWU0lLZlE9PS54V3o4QXpzaDFXcDNlL1Qva29jbVZFUm9mV3lCc213Y2pla1A4NFpibm8wRUozVmZvcEZnY1FnZXNBOEJqTjE1YWFRRWdzSGZzU1BIaS85NnF1aUkyZE9CRCtaYmFSd0FhM1FXeVdnQkVrUmRnZWVTd2R4SXR6MFdvaGd5RENMaHlOeU9Fdz09In0=')));
147190
147222
  this.prepareElement(element, settings);
147191
147223
  this.initDefaultFontsAndStyles();
147192
147224
  this.initBars(settings.ribbon, settings.fonts);