devexpress-richedit 24.2.15 → 24.2.16

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.
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * DevExpress WebRichEdit (dx.richedit.js)
3
- * Version: 24.2.15
3
+ * Version: 24.2.16
4
4
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
5
5
  * License: https://www.devexpress.com/Support/EULAs",
6
6
  */
@@ -94363,8 +94363,6 @@ class BoxAligner {
94363
94363
 
94364
94364
 
94365
94365
 
94366
-
94367
-
94368
94366
  var RowFormatterResultFlag;
94369
94367
  (function (RowFormatterResultFlag) {
94370
94368
  RowFormatterResultFlag[RowFormatterResultFlag["None"] = 0] = "None";
@@ -94408,7 +94406,8 @@ class RowFormatterResult {
94408
94406
  }
94409
94407
  finishRow() {
94410
94408
  this.finishLogicalRow(this.rowFormatter.rowSizesManager.rowFormattingInfo.lastNonEmptyInterval.end);
94411
- const lastBoxOffset = utils_list.ListUtils.last(this.row.boxes).rowOffset;
94409
+ const lastBox = utils_list.ListUtils.last(this.row.boxes);
94410
+ const lastBoxOffset = lastBox.rowOffset;
94412
94411
  for (let ind = 0, anc; anc = this.newAnchoredObjects[ind]; ind++) {
94413
94412
  if (anc.rowOffset > lastBoxOffset) {
94414
94413
  this.deleteSomeAnchorObjects(ind, anc.rowOffset);
@@ -94437,24 +94436,20 @@ class RowFormatterResult {
94437
94436
  }
94438
94437
  this.row.columnOffset = rowStartPos -
94439
94438
  this.rowFormatter.manager.activeFormatter.layoutPosition.getLogPosition(DocumentLayoutDetailsLevel.Column);
94440
- const pictBox = this.onlyInlinePictureBox();
94441
- if (pictBox && pictBox.width > this.row.width)
94442
- this.row.width = pictBox.width;
94439
+ const firstBox = this.row.boxes[0];
94440
+ const lastVisibleBox = this.getLastVisibleBox();
94441
+ if (lastVisibleBox)
94442
+ this.row.width = Math.max(this.row.width, lastVisibleBox.right - firstBox.x);
94443
94443
  const currState = this.rowFormatter.rowSizesManager.heightCalculator.currState;
94444
94444
  this.row.increaseRowHeightFromSpacingBeforeAndAfter(currState.maxAscent, currState.maxDescent);
94445
94445
  }
94446
- onlyInlinePictureBox() {
94447
- let pictBox;
94448
- for (let ind = this.row.boxes.length - 1; ind >= 0; ind--) {
94449
- const box = this.row.boxes[ind];
94450
- if (box.getType() == LayoutBoxType.Picture) {
94451
- pictBox = box;
94452
- }
94453
- else if (!utils_enum/* EnumUtils */.Y.isAnyOf(box.getType(), LayoutBoxType.ParagraphMark, LayoutBoxType.SectionMark, LayoutBoxType.LineBreak, LayoutBoxType.PageBreak)) {
94454
- return null;
94455
- }
94446
+ getLastVisibleBox() {
94447
+ for (let i = this.row.boxes.length - 1; i >= 0; i--) {
94448
+ const box = this.row.boxes[i];
94449
+ if (box.isVisible() && !box.isWhitespace())
94450
+ return box;
94456
94451
  }
94457
- return pictBox;
94452
+ return null;
94458
94453
  }
94459
94454
  addBracketBox(boxType, color, x, layoutBox) {
94460
94455
  const box = new BookmarkBox(boxType);
@@ -95355,11 +95350,14 @@ class RowIntervalInfo extends fixed.FixedInterval {
95355
95350
  super(start, length);
95356
95351
  this.avaliableWidth = avaliableWidth;
95357
95352
  }
95358
- get busyWidth() {
95353
+ get rawUsedWidth() {
95359
95354
  return this.length - this.avaliableWidth;
95360
95355
  }
95356
+ get usedWidth() {
95357
+ return Math.min(this.rawUsedWidth, this.length);
95358
+ }
95361
95359
  get startOfFreeSpace() {
95362
- return this.start + this.busyWidth;
95360
+ return this.start + this.rawUsedWidth;
95363
95361
  }
95364
95362
  isConsiderBoxes() {
95365
95363
  return this.avaliableWidth != this.length;
@@ -95415,7 +95413,7 @@ class RowFormattingInfo {
95415
95413
  recalculate(outerHorizontalRowContentBounds) {
95416
95414
  const currInterval = this.currInterval;
95417
95415
  this.calculate(outerHorizontalRowContentBounds);
95418
- const pos = currInterval.start + currInterval.busyWidth;
95416
+ const pos = currInterval.start + currInterval.rawUsedWidth;
95419
95417
  const index = this.findIntervalIndexByPosition(pos);
95420
95418
  const interval = this.intervals[index];
95421
95419
  if (interval && interval.start < pos) {
@@ -95435,7 +95433,7 @@ class RowFormattingInfo {
95435
95433
  return index;
95436
95434
  }
95437
95435
  canIncrementHeightTo(newHeight) {
95438
- const contentBounds = utils_list.ListUtils.map(this.intervals, (c) => new rectangle.Rectangle(c.start, this.minY, c.busyWidth, newHeight));
95436
+ const contentBounds = utils_list.ListUtils.map(this.intervals, (c) => new rectangle.Rectangle(c.start, this.minY, c.usedWidth, newHeight));
95439
95437
  const intersectedObjects = this.calcIntersectObjects(newHeight);
95440
95438
  return !utils_list.ListUtils.unsafeAnyOf(intersectedObjects, (ancBound) => utils_list.ListUtils.unsafeAnyOf(contentBounds, (contentBound) => RectangleUtils.getNonCollapsedIntersection(contentBound, ancBound)));
95441
95439
  }
@@ -95859,7 +95857,7 @@ class RowSizesManager {
95859
95857
  }
95860
95858
  else {
95861
95859
  box.x = this.rowFormattingInfo.intervals[0].startOfFreeSpace;
95862
- this.rowFormattingInfo.intervals[0].avaliableWidth -= Math.min(box.width, this.rowFormattingInfo.intervals[0].avaliableWidth);
95860
+ this.rowFormattingInfo.intervals[0].avaliableWidth -= box.width;
95863
95861
  this.addBoxIgnoreWidth();
95864
95862
  }
95865
95863
  }
@@ -95896,8 +95894,6 @@ class RowSizesManager {
95896
95894
  const box = this.rowFormatter.currBox;
95897
95895
  box.x = this.rowFormattingInfo.currInterval.startOfFreeSpace;
95898
95896
  this.rowFormattingInfo.currInterval.avaliableWidth -= box.width;
95899
- if (this.rowFormattingInfo.currInterval.avaliableWidth < 0)
95900
- this.rowFormattingInfo.currInterval.avaliableWidth = 0;
95901
95897
  this.row.boxes.push(box);
95902
95898
  this.rowFormattingInfo.lastNonEmptyIntervalIndex = this.rowFormattingInfo.currIndex;
95903
95899
  this.rowFormatter.setBoxInfo(true);
@@ -96409,9 +96405,12 @@ class RowFormatter {
96409
96405
  const prevRow = this.manager.activeFormatter.lastRowInfo.row;
96410
96406
  const isFirstRowInParagraph = !prevRow || prevRow.flags.get(LayoutRowStateFlags.ParagraphEnd) ||
96411
96407
  this.manager.activeFormatter.lastRowInfo.paragraphIndex != this.currWrapInfo.paragraphIndex;
96412
- const rowParagraphLeftIndent = isFirstRowInParagraph ?
96408
+ let rowParagraphLeftIndent = isFirstRowInParagraph ?
96413
96409
  unit_converter/* UnitConverter */.u.twipsToPixelsF(this.paragraphProps.getLeftIndentForFirstRow()) :
96414
96410
  unit_converter/* UnitConverter */.u.twipsToPixelsF(this.paragraphProps.getLeftIndentForOtherRow());
96411
+ if (this.manager.innerClientProperties.viewsSettings.isSimpleView) {
96412
+ rowParagraphLeftIndent = Math.max(0, rowParagraphLeftIndent);
96413
+ }
96415
96414
  const rowContentHorizontalBounds = fixed.FixedInterval.fromPositions(paragraphHorizontalBounds.start + rowParagraphLeftIndent, paragraphHorizontalBounds.end - unit_converter/* UnitConverter */.u.twipsToPixelsF(this.paragraphProps.rightIndent));
96416
96415
  this.rowSizesManager = new RowSizesManager(this, rowContentHorizontalBounds, minY, rowSpacingBeforeApplier, this.manager.activeFormatter.layoutRowBoundsCalculator.getRectangleBounds(this.manager), isFirstRowInParagraph);
96417
96416
  this.tabInfo = new RowTabInfo(this, paragraphHorizontalBounds.start);
@@ -99767,6 +99766,7 @@ class BaseFormatter {
99767
99766
  this.layoutPosition.column.height = columnHeight;
99768
99767
  this.layoutPosition.pageArea.height = columnHeight;
99769
99768
  this.layoutPosition.page.height = finalPageHeight;
99769
+ this.layoutPosition.page.width = this.calculateContentWidth(this.layoutPosition.column) + margins.horizontal;
99770
99770
  this.layoutPosition.page.minContentHeight = minVisibleAreaHeight;
99771
99771
  }
99772
99772
  createdColumn.paragraphFrames = ParagraphFrameCollector.collect(this.manager.model.colorProvider, createdColumn, this.subDocument.isMain() ?
@@ -99786,6 +99786,16 @@ class BaseFormatter {
99786
99786
  }
99787
99787
  return true;
99788
99788
  }
99789
+ calculateContentWidth(column) {
99790
+ let maxRight = 0;
99791
+ column.tablesInfo.forEach(tableInfo => {
99792
+ maxRight = Math.max(maxRight, tableInfo.right);
99793
+ });
99794
+ column.rows.forEach(row => {
99795
+ maxRight = Math.max(maxRight, row.right);
99796
+ });
99797
+ return maxRight;
99798
+ }
99789
99799
  createNextPageArea() {
99790
99800
  const newPageArea = new LayoutPageArea(this.subDocument);
99791
99801
  newPageArea.setGeomerty(this.pageAreaBounds);
@@ -102972,8 +102982,14 @@ class DocumentRenderer {
102972
102982
  }
102973
102983
  }
102974
102984
  updatePageSize(page, pageElement) {
102975
- if (pageElement.offsetHeight != Math.round(page.height) || pageElement.offsetWidth != Math.round(page.width))
102985
+ if (pageElement.offsetHeight != Math.round(page.height) || pageElement.offsetWidth != Math.round(page.width)) {
102976
102986
  dom.DomUtils.setStyleSize(pageElement.style, page);
102987
+ if (this.viewManager.innerClientProperties.viewsSettings.isSimpleView) {
102988
+ const paddings = this.viewManager.innerClientProperties.viewsSettings.paddings;
102989
+ if (page.width - paddings.right <= this.viewManager.sizes.getVisibleAreaWidth(false))
102990
+ pageElement.style.width = "100%";
102991
+ }
102992
+ }
102977
102993
  }
102978
102994
  updatePageClasses(pageElement) {
102979
102995
  pageElement.className = RendererClassNames.PAGE;
@@ -106974,12 +106990,9 @@ class MouseHandlerDefaultState extends MouseHandlerStateBase {
106974
106990
  }
106975
106991
  isLeftAreaOffset(htr, evt) {
106976
106992
  if (htr) {
106977
- const columnX = htr.pageArea.x + htr.column.x;
106978
- const rowX = columnX + htr.row.x;
106979
- const leftAreaX = Math.min(columnX - MouseHandler.LEFT_AREA_COMMANDS_OFFSET, rowX);
106980
106993
  if (htr.exactlyDetailLevel >= DocumentLayoutDetailsLevel.Page &&
106981
106994
  htr.deviations[DocumentLayoutDetailsLevel.Column] & rectangle.HitTestDeviation.Left &&
106982
- evt.layoutPoint.x <= leftAreaX)
106995
+ evt.layoutPoint.x <= this.getLeftAreaOffset(htr))
106983
106996
  return true;
106984
106997
  if (htr.detailsLevel >= DocumentLayoutDetailsLevel.Box &&
106985
106998
  htr.exactlyDetailLevel >= DocumentLayoutDetailsLevel.Row &&
@@ -106993,6 +107006,11 @@ class MouseHandlerDefaultState extends MouseHandlerStateBase {
106993
107006
  }
106994
107007
  return false;
106995
107008
  }
107009
+ getLeftAreaOffset(htr) {
107010
+ const columnX = htr.pageArea.x + htr.column.x;
107011
+ const rowX = columnX + htr.row.x;
107012
+ return Math.min(columnX - MouseHandler.LEFT_AREA_COMMANDS_OFFSET, rowX);
107013
+ }
106996
107014
  shouldProcessResizeBoxVisualizer(evt) {
106997
107015
  return this.handler.boxVisualizerManager.resizeBoxVisualizer.shouldCapture(evt) &&
106998
107016
  this.handler.control.selection.activeSubDocument.isEditable([new fixed.FixedInterval(this.handler.control.selection.specialRunInfo.getPosition(), 1)]);
@@ -108079,7 +108097,6 @@ class EventManager {
108079
108097
  onMouseDblClick(evt) {
108080
108098
  Log.print(LogSource.EventManager, "onMouseDoubleClick", LogObjToStrCanvas.richMouseEvent(evt));
108081
108099
  this.mouseHandler.onMouseDoubleClick(evt);
108082
- this.control.inputController.setPosition(evt.absolutePoint.x, evt.absolutePoint.y);
108083
108100
  }
108084
108101
  onMouseWheel(evt) {
108085
108102
  Log.print(LogSource.EventManager, "onMouseWheel", LogObjToStrCanvas.richMouseEvent(evt));
@@ -141335,8 +141352,8 @@ class DialogManager {
141335
141352
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_type.js
141336
141353
  /**
141337
141354
  * DevExtreme (esm/__internal/core/utils/m_type.js)
141338
- * Version: 24.2.15
141339
- * Build date: Fri Apr 24 2026
141355
+ * Version: 24.2.16
141356
+ * Build date: Fri Sep 11 2026
141340
141357
  *
141341
141358
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
141342
141359
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141438,8 +141455,8 @@ const isEvent = function(object) {
141438
141455
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/type.js
141439
141456
  /**
141440
141457
  * DevExtreme (esm/core/utils/type.js)
141441
- * Version: 24.2.15
141442
- * Build date: Fri Apr 24 2026
141458
+ * Version: 24.2.16
141459
+ * Build date: Fri Sep 11 2026
141443
141460
  *
141444
141461
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
141445
141462
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141449,8 +141466,8 @@ const isEvent = function(object) {
141449
141466
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_extend.js
141450
141467
  /**
141451
141468
  * DevExtreme (esm/__internal/core/utils/m_extend.js)
141452
- * Version: 24.2.15
141453
- * Build date: Fri Apr 24 2026
141469
+ * Version: 24.2.16
141470
+ * Build date: Fri Sep 11 2026
141454
141471
  *
141455
141472
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
141456
141473
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141508,8 +141525,8 @@ const extend = function(target) {
141508
141525
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/extend.js
141509
141526
  /**
141510
141527
  * DevExtreme (esm/core/utils/extend.js)
141511
- * Version: 24.2.15
141512
- * Build date: Fri Apr 24 2026
141528
+ * Version: 24.2.16
141529
+ * Build date: Fri Sep 11 2026
141513
141530
  *
141514
141531
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
141515
141532
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141519,8 +141536,8 @@ const extend = function(target) {
141519
141536
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_string.js
141520
141537
  /**
141521
141538
  * DevExtreme (esm/__internal/core/utils/m_string.js)
141522
- * Version: 24.2.15
141523
- * Build date: Fri Apr 24 2026
141539
+ * Version: 24.2.16
141540
+ * Build date: Fri Sep 11 2026
141524
141541
  *
141525
141542
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
141526
141543
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141595,8 +141612,8 @@ const isEmpty = function() {
141595
141612
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/string.js
141596
141613
  /**
141597
141614
  * DevExtreme (esm/core/utils/string.js)
141598
- * Version: 24.2.15
141599
- * Build date: Fri Apr 24 2026
141615
+ * Version: 24.2.16
141616
+ * Build date: Fri Sep 11 2026
141600
141617
  *
141601
141618
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
141602
141619
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141606,20 +141623,20 @@ const isEmpty = function() {
141606
141623
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/version.js
141607
141624
  /**
141608
141625
  * DevExtreme (esm/core/version.js)
141609
- * Version: 24.2.15
141610
- * Build date: Fri Apr 24 2026
141626
+ * Version: 24.2.16
141627
+ * Build date: Fri Sep 11 2026
141611
141628
  *
141612
141629
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
141613
141630
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
141614
141631
  */
141615
- const version = "24.2.15";
141616
- const fullVersion = "24.2.15";
141632
+ const version = "24.2.16";
141633
+ const fullVersion = "24.2.16";
141617
141634
 
141618
141635
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_console.js
141619
141636
  /**
141620
141637
  * DevExtreme (esm/__internal/core/utils/m_console.js)
141621
- * Version: 24.2.15
141622
- * Build date: Fri Apr 24 2026
141638
+ * Version: 24.2.16
141639
+ * Build date: Fri Sep 11 2026
141623
141640
  *
141624
141641
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
141625
141642
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141659,8 +141676,8 @@ const debug = function() {
141659
141676
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_error.js
141660
141677
  /**
141661
141678
  * DevExtreme (esm/__internal/core/utils/m_error.js)
141662
- * Version: 24.2.15
141663
- * Build date: Fri Apr 24 2026
141679
+ * Version: 24.2.16
141680
+ * Build date: Fri Sep 11 2026
141664
141681
  *
141665
141682
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
141666
141683
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141731,8 +141748,8 @@ function error(baseErrors, errors) {
141731
141748
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/error.js
141732
141749
  /**
141733
141750
  * DevExtreme (esm/core/utils/error.js)
141734
- * Version: 24.2.15
141735
- * Build date: Fri Apr 24 2026
141751
+ * Version: 24.2.16
141752
+ * Build date: Fri Sep 11 2026
141736
141753
  *
141737
141754
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
141738
141755
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141743,8 +141760,8 @@ function error(baseErrors, errors) {
141743
141760
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_errors.js
141744
141761
  /**
141745
141762
  * DevExtreme (esm/__internal/core/m_errors.js)
141746
- * Version: 24.2.15
141747
- * Build date: Fri Apr 24 2026
141763
+ * Version: 24.2.16
141764
+ * Build date: Fri Sep 11 2026
141748
141765
  *
141749
141766
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
141750
141767
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141781,6 +141798,7 @@ function error(baseErrors, errors) {
141781
141798
  E0110: "Unknown validation group is detected",
141782
141799
  E0120: "Adapter for a DevExpressValidator component cannot be configured",
141783
141800
  E0121: "The 'customItem' parameter of the 'onCustomItemCreating' function is empty or contains invalid data. Assign a custom object or a Promise that is resolved after the item is created.",
141801
+ E0123: "Disallowed property name in expression: '{0}'",
141784
141802
  W0000: "'{0}' is deprecated in {1}. {2}",
141785
141803
  W0001: "{0} - '{1}' option is deprecated in {2}. {3}",
141786
141804
  W0002: "{0} - '{1}' method is deprecated in {2}. {3}",
@@ -141810,8 +141828,8 @@ function error(baseErrors, errors) {
141810
141828
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/errors.js
141811
141829
  /**
141812
141830
  * DevExtreme (esm/core/errors.js)
141813
- * Version: 24.2.15
141814
- * Build date: Fri Apr 24 2026
141831
+ * Version: 24.2.16
141832
+ * Build date: Fri Sep 11 2026
141815
141833
  *
141816
141834
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
141817
141835
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141822,8 +141840,8 @@ function error(baseErrors, errors) {
141822
141840
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_class.js
141823
141841
  /**
141824
141842
  * DevExtreme (esm/__internal/core/m_class.js)
141825
- * Version: 24.2.15
141826
- * Build date: Fri Apr 24 2026
141843
+ * Version: 24.2.16
141844
+ * Build date: Fri Sep 11 2026
141827
141845
  *
141828
141846
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
141829
141847
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141956,8 +141974,8 @@ classImpl.abstract = m_class_abstract;
141956
141974
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/class.js
141957
141975
  /**
141958
141976
  * DevExtreme (esm/core/class.js)
141959
- * Version: 24.2.15
141960
- * Build date: Fri Apr 24 2026
141977
+ * Version: 24.2.16
141978
+ * Build date: Fri Sep 11 2026
141961
141979
  *
141962
141980
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
141963
141981
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141968,8 +141986,8 @@ classImpl.abstract = m_class_abstract;
141968
141986
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_iterator.js
141969
141987
  /**
141970
141988
  * DevExtreme (esm/__internal/core/utils/m_iterator.js)
141971
- * Version: 24.2.15
141972
- * Build date: Fri Apr 24 2026
141989
+ * Version: 24.2.16
141990
+ * Build date: Fri Sep 11 2026
141973
141991
  *
141974
141992
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
141975
141993
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142018,8 +142036,8 @@ const reverseEach = (array, callback) => {
142018
142036
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_dependency_injector.js
142019
142037
  /**
142020
142038
  * DevExtreme (esm/__internal/core/utils/m_dependency_injector.js)
142021
- * Version: 24.2.15
142022
- * Build date: Fri Apr 24 2026
142039
+ * Version: 24.2.16
142040
+ * Build date: Fri Sep 11 2026
142023
142041
  *
142024
142042
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
142025
142043
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142068,8 +142086,8 @@ function injector(object) {
142068
142086
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/dependency_injector.js
142069
142087
  /**
142070
142088
  * DevExtreme (esm/core/utils/dependency_injector.js)
142071
- * Version: 24.2.15
142072
- * Build date: Fri Apr 24 2026
142089
+ * Version: 24.2.16
142090
+ * Build date: Fri Sep 11 2026
142073
142091
  *
142074
142092
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
142075
142093
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142080,8 +142098,8 @@ function injector(object) {
142080
142098
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.formatter.js
142081
142099
  /**
142082
142100
  * DevExtreme (esm/common/core/localization/ldml/date.formatter.js)
142083
- * Version: 24.2.15
142084
- * Build date: Fri Apr 24 2026
142101
+ * Version: 24.2.16
142102
+ * Build date: Fri Sep 11 2026
142085
142103
  *
142086
142104
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
142087
142105
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142234,8 +142252,8 @@ function _extends() {
142234
142252
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_config.js
142235
142253
  /**
142236
142254
  * DevExtreme (esm/__internal/core/m_config.js)
142237
- * Version: 24.2.15
142238
- * Build date: Fri Apr 24 2026
142255
+ * Version: 24.2.16
142256
+ * Build date: Fri Sep 11 2026
142239
142257
  *
142240
142258
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
142241
142259
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142311,8 +142329,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
142311
142329
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/config.js
142312
142330
  /**
142313
142331
  * DevExtreme (esm/common/config.js)
142314
- * Version: 24.2.15
142315
- * Build date: Fri Apr 24 2026
142332
+ * Version: 24.2.16
142333
+ * Build date: Fri Sep 11 2026
142316
142334
  *
142317
142335
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
142318
142336
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142323,8 +142341,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
142323
142341
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_guid.js
142324
142342
  /**
142325
142343
  * DevExtreme (esm/__internal/core/m_guid.js)
142326
- * Version: 24.2.15
142327
- * Build date: Fri Apr 24 2026
142344
+ * Version: 24.2.16
142345
+ * Build date: Fri Sep 11 2026
142328
142346
  *
142329
142347
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
142330
142348
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142366,8 +142384,8 @@ const Guid = core_class.inherit({
142366
142384
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/guid.js
142367
142385
  /**
142368
142386
  * DevExtreme (esm/common/guid.js)
142369
- * Version: 24.2.15
142370
- * Build date: Fri Apr 24 2026
142387
+ * Version: 24.2.16
142388
+ * Build date: Fri Sep 11 2026
142371
142389
  *
142372
142390
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
142373
142391
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142378,8 +142396,8 @@ const Guid = core_class.inherit({
142378
142396
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/templates/m_template_engine_registry.js
142379
142397
  /**
142380
142398
  * DevExtreme (esm/__internal/core/templates/m_template_engine_registry.js)
142381
- * Version: 24.2.15
142382
- * Build date: Fri Apr 24 2026
142399
+ * Version: 24.2.16
142400
+ * Build date: Fri Sep 11 2026
142383
142401
  *
142384
142402
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
142385
142403
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142408,8 +142426,8 @@ function getCurrentTemplateEngine() {
142408
142426
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/templates/template_engine_registry.js
142409
142427
  /**
142410
142428
  * DevExtreme (esm/core/templates/template_engine_registry.js)
142411
- * Version: 24.2.15
142412
- * Build date: Fri Apr 24 2026
142429
+ * Version: 24.2.16
142430
+ * Build date: Fri Sep 11 2026
142413
142431
  *
142414
142432
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
142415
142433
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142419,8 +142437,8 @@ function getCurrentTemplateEngine() {
142419
142437
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_set_template_engine.js
142420
142438
  /**
142421
142439
  * DevExtreme (esm/__internal/core/m_set_template_engine.js)
142422
- * Version: 24.2.15
142423
- * Build date: Fri Apr 24 2026
142440
+ * Version: 24.2.16
142441
+ * Build date: Fri Sep 11 2026
142424
142442
  *
142425
142443
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
142426
142444
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142430,8 +142448,8 @@ function getCurrentTemplateEngine() {
142430
142448
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/set_template_engine.js
142431
142449
  /**
142432
142450
  * DevExtreme (esm/common/set_template_engine.js)
142433
- * Version: 24.2.15
142434
- * Build date: Fri Apr 24 2026
142451
+ * Version: 24.2.16
142452
+ * Build date: Fri Sep 11 2026
142435
142453
  *
142436
142454
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
142437
142455
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142442,8 +142460,8 @@ function getCurrentTemplateEngine() {
142442
142460
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common.js
142443
142461
  /**
142444
142462
  * DevExtreme (esm/common.js)
142445
- * Version: 24.2.15
142446
- * Build date: Fri Apr 24 2026
142463
+ * Version: 24.2.16
142464
+ * Build date: Fri Sep 11 2026
142447
142465
  *
142448
142466
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
142449
142467
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142456,8 +142474,8 @@ function getCurrentTemplateEngine() {
142456
142474
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/config.js
142457
142475
  /**
142458
142476
  * DevExtreme (esm/core/config.js)
142459
- * Version: 24.2.15
142460
- * Build date: Fri Apr 24 2026
142477
+ * Version: 24.2.16
142478
+ * Build date: Fri Sep 11 2026
142461
142479
  *
142462
142480
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
142463
142481
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142468,8 +142486,8 @@ function getCurrentTemplateEngine() {
142468
142486
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/guid.js
142469
142487
  /**
142470
142488
  * DevExtreme (esm/core/guid.js)
142471
- * Version: 24.2.15
142472
- * Build date: Fri Apr 24 2026
142489
+ * Version: 24.2.16
142490
+ * Build date: Fri Sep 11 2026
142473
142491
  *
142474
142492
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
142475
142493
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142480,8 +142498,8 @@ function getCurrentTemplateEngine() {
142480
142498
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/console.js
142481
142499
  /**
142482
142500
  * DevExtreme (esm/core/utils/console.js)
142483
- * Version: 24.2.15
142484
- * Build date: Fri Apr 24 2026
142501
+ * Version: 24.2.16
142502
+ * Build date: Fri Sep 11 2026
142485
142503
  *
142486
142504
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
142487
142505
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142491,8 +142509,8 @@ function getCurrentTemplateEngine() {
142491
142509
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_variable_wrapper.js
142492
142510
  /**
142493
142511
  * DevExtreme (esm/__internal/core/utils/m_variable_wrapper.js)
142494
- * Version: 24.2.15
142495
- * Build date: Fri Apr 24 2026
142512
+ * Version: 24.2.16
142513
+ * Build date: Fri Sep 11 2026
142496
142514
  *
142497
142515
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
142498
142516
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142521,8 +142539,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
142521
142539
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/variable_wrapper.js
142522
142540
  /**
142523
142541
  * DevExtreme (esm/core/utils/variable_wrapper.js)
142524
- * Version: 24.2.15
142525
- * Build date: Fri Apr 24 2026
142542
+ * Version: 24.2.16
142543
+ * Build date: Fri Sep 11 2026
142526
142544
  *
142527
142545
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
142528
142546
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142533,8 +142551,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
142533
142551
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_object.js
142534
142552
  /**
142535
142553
  * DevExtreme (esm/__internal/core/utils/m_object.js)
142536
- * Version: 24.2.15
142537
- * Build date: Fri Apr 24 2026
142554
+ * Version: 24.2.16
142555
+ * Build date: Fri Sep 11 2026
142538
142556
  *
142539
142557
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
142540
142558
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142640,8 +142658,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
142640
142658
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/object.js
142641
142659
  /**
142642
142660
  * DevExtreme (esm/core/utils/object.js)
142643
- * Version: 24.2.15
142644
- * Build date: Fri Apr 24 2026
142661
+ * Version: 24.2.16
142662
+ * Build date: Fri Sep 11 2026
142645
142663
  *
142646
142664
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
142647
142665
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142651,8 +142669,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
142651
142669
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_data.js
142652
142670
  /**
142653
142671
  * DevExtreme (esm/__internal/core/utils/m_data.js)
142654
- * Version: 24.2.15
142655
- * Build date: Fri Apr 24 2026
142672
+ * Version: 24.2.16
142673
+ * Build date: Fri Sep 11 2026
142656
142674
  *
142657
142675
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
142658
142676
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142673,6 +142691,9 @@ const {
142673
142691
  const bracketsToDots = function(expr) {
142674
142692
  return expr.replace(/\[/g, ".").replace(/\]/g, "")
142675
142693
  };
142694
+ const UNSAFE_PATH_FRAGMENTS = new Set(["__proto__", "constructor"]);
142695
+ const isUnsafePathFragment = name => UNSAFE_PATH_FRAGMENTS.has(name);
142696
+ const isUnsafePrototypeAccess = (obj, name) => "prototype" === name && "function" === typeof obj;
142676
142697
  const getPathParts = function(name) {
142677
142698
  return bracketsToDots(name).split(".")
142678
142699
  };
@@ -142714,12 +142735,23 @@ const compileGetter = function(expr) {
142714
142735
  }
142715
142736
  if ("string" === typeof expr) {
142716
142737
  const path = getPathParts(expr);
142738
+ const unsafeFragment = path.find(isUnsafePathFragment);
142739
+ if (void 0 !== unsafeFragment) {
142740
+ errors.log("E0123", unsafeFragment);
142741
+ return function() {
142742
+ return
142743
+ }
142744
+ }
142717
142745
  return function(obj, options) {
142718
142746
  options = prepareOptions(options);
142719
142747
  const functionAsIs = options.functionsAsIs;
142720
142748
  const hasDefaultValue = "defaultValue" in options;
142721
142749
  let current = unwrap(obj, options);
142722
142750
  for (let i = 0; i < path.length; i++) {
142751
+ if (isUnsafePrototypeAccess(current, path[i])) {
142752
+ errors.log("E0123", path[i]);
142753
+ return
142754
+ }
142723
142755
  if (!current) {
142724
142756
  if (null == current && hasDefaultValue) {
142725
142757
  return options.defaultValue
@@ -142794,10 +142826,26 @@ const ensurePropValueDefined = function(obj, propName, value, options) {
142794
142826
  const compileSetter = function(expr) {
142795
142827
  expr = getPathParts(expr || "this");
142796
142828
  const lastLevelIndex = expr.length - 1;
142829
+ const unsafeFragment = expr.find(isUnsafePathFragment);
142830
+ if (void 0 !== unsafeFragment) {
142831
+ errors.log("E0123", unsafeFragment);
142832
+ return function() {
142833
+ return
142834
+ }
142835
+ }
142797
142836
  return function(obj, value, options) {
142798
142837
  options = prepareOptions(options);
142799
142838
  let currentValue = unwrap(obj, options);
142839
+ let hasUnsafePrototypeAccess = false;
142800
142840
  expr.forEach((function(propertyName, levelIndex) {
142841
+ if (hasUnsafePrototypeAccess) {
142842
+ return
142843
+ }
142844
+ if (isUnsafePrototypeAccess(currentValue, propertyName)) {
142845
+ errors.log("E0123", propertyName);
142846
+ hasUnsafePrototypeAccess = true;
142847
+ return
142848
+ }
142801
142849
  let propertyValue = readPropValue(currentValue, propertyName, options);
142802
142850
  const isPropertyFunc = !options.functionsAsIs && isFunction(propertyValue) && !isWrapped(propertyValue);
142803
142851
  if (levelIndex === lastLevelIndex) {
@@ -142848,8 +142896,8 @@ const toComparable = function(value, caseSensitive) {
142848
142896
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/data.js
142849
142897
  /**
142850
142898
  * DevExtreme (esm/core/utils/data.js)
142851
- * Version: 24.2.15
142852
- * Build date: Fri Apr 24 2026
142899
+ * Version: 24.2.16
142900
+ * Build date: Fri Sep 11 2026
142853
142901
  *
142854
142902
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
142855
142903
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142859,8 +142907,8 @@ const toComparable = function(value, caseSensitive) {
142859
142907
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_callbacks.js
142860
142908
  /**
142861
142909
  * DevExtreme (esm/__internal/core/utils/m_callbacks.js)
142862
- * Version: 24.2.15
142863
- * Build date: Fri Apr 24 2026
142910
+ * Version: 24.2.16
142911
+ * Build date: Fri Sep 11 2026
142864
142912
  *
142865
142913
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
142866
142914
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142955,8 +143003,8 @@ const Callbacks = function(options) {
142955
143003
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/callbacks.js
142956
143004
  /**
142957
143005
  * DevExtreme (esm/core/utils/callbacks.js)
142958
- * Version: 24.2.15
142959
- * Build date: Fri Apr 24 2026
143006
+ * Version: 24.2.16
143007
+ * Build date: Fri Sep 11 2026
142960
143008
  *
142961
143009
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
142962
143010
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142967,8 +143015,8 @@ const Callbacks = function(options) {
142967
143015
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_deferred.js
142968
143016
  /**
142969
143017
  * DevExtreme (esm/__internal/core/utils/m_deferred.js)
142970
- * Version: 24.2.15
142971
- * Build date: Fri Apr 24 2026
143018
+ * Version: 24.2.16
143019
+ * Build date: Fri Sep 11 2026
142972
143020
  *
142973
143021
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
142974
143022
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143133,8 +143181,8 @@ function when() {
143133
143181
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/deferred.js
143134
143182
  /**
143135
143183
  * DevExtreme (esm/core/utils/deferred.js)
143136
- * Version: 24.2.15
143137
- * Build date: Fri Apr 24 2026
143184
+ * Version: 24.2.16
143185
+ * Build date: Fri Sep 11 2026
143138
143186
  *
143139
143187
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
143140
143188
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143144,8 +143192,8 @@ function when() {
143144
143192
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_common.js
143145
143193
  /**
143146
143194
  * DevExtreme (esm/__internal/core/utils/m_common.js)
143147
- * Version: 24.2.15
143148
- * Build date: Fri Apr 24 2026
143195
+ * Version: 24.2.16
143196
+ * Build date: Fri Sep 11 2026
143149
143197
  *
143150
143198
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
143151
143199
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143440,8 +143488,8 @@ const equalByValue = function(value1, value2) {
143440
143488
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/common.js
143441
143489
  /**
143442
143490
  * DevExtreme (esm/core/utils/common.js)
143443
- * Version: 24.2.15
143444
- * Build date: Fri Apr 24 2026
143491
+ * Version: 24.2.16
143492
+ * Build date: Fri Sep 11 2026
143445
143493
  *
143446
143494
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
143447
143495
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143451,8 +143499,8 @@ const equalByValue = function(value1, value2) {
143451
143499
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_math.js
143452
143500
  /**
143453
143501
  * DevExtreme (esm/__internal/core/utils/m_math.js)
143454
- * Version: 24.2.15
143455
- * Build date: Fri Apr 24 2026
143502
+ * Version: 24.2.16
143503
+ * Build date: Fri Sep 11 2026
143456
143504
  *
143457
143505
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
143458
143506
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143630,8 +143678,8 @@ function roundFloatPart(value) {
143630
143678
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/math.js
143631
143679
  /**
143632
143680
  * DevExtreme (esm/core/utils/math.js)
143633
- * Version: 24.2.15
143634
- * Build date: Fri Apr 24 2026
143681
+ * Version: 24.2.16
143682
+ * Build date: Fri Sep 11 2026
143635
143683
  *
143636
143684
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
143637
143685
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143641,8 +143689,8 @@ function roundFloatPart(value) {
143641
143689
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/utils.js
143642
143690
  /**
143643
143691
  * DevExtreme (esm/common/core/localization/utils.js)
143644
- * Version: 24.2.15
143645
- * Build date: Fri Apr 24 2026
143692
+ * Version: 24.2.16
143693
+ * Build date: Fri Sep 11 2026
143646
143694
  *
143647
143695
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
143648
143696
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143669,8 +143717,8 @@ function toFixed(value, precision) {
143669
143717
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/number.js
143670
143718
  /**
143671
143719
  * DevExtreme (esm/common/core/localization/ldml/number.js)
143672
- * Version: 24.2.15
143673
- * Build date: Fri Apr 24 2026
143720
+ * Version: 24.2.16
143721
+ * Build date: Fri Sep 11 2026
143674
143722
  *
143675
143723
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
143676
143724
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143911,8 +143959,8 @@ function getFormat(formatter) {
143911
143959
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/currency.js
143912
143960
  /**
143913
143961
  * DevExtreme (esm/common/core/localization/currency.js)
143914
- * Version: 24.2.15
143915
- * Build date: Fri Apr 24 2026
143962
+ * Version: 24.2.16
143963
+ * Build date: Fri Sep 11 2026
143916
143964
  *
143917
143965
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
143918
143966
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143944,8 +143992,8 @@ function getFormat(formatter) {
143944
143992
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/parent_locales.js
143945
143993
  /**
143946
143994
  * DevExtreme (esm/common/core/localization/cldr-data/parent_locales.js)
143947
- * Version: 24.2.15
143948
- * Build date: Fri Apr 24 2026
143995
+ * Version: 24.2.16
143996
+ * Build date: Fri Sep 11 2026
143949
143997
  *
143950
143998
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
143951
143999
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -144130,8 +144178,8 @@ function getFormat(formatter) {
144130
144178
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/parentLocale.js
144131
144179
  /**
144132
144180
  * DevExtreme (esm/common/core/localization/parentLocale.js)
144133
- * Version: 24.2.15
144134
- * Build date: Fri Apr 24 2026
144181
+ * Version: 24.2.16
144182
+ * Build date: Fri Sep 11 2026
144135
144183
  *
144136
144184
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
144137
144185
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -144148,8 +144196,8 @@ const PARENT_LOCALE_SEPARATOR = "-";
144148
144196
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/core.js
144149
144197
  /**
144150
144198
  * DevExtreme (esm/common/core/localization/core.js)
144151
- * Version: 24.2.15
144152
- * Build date: Fri Apr 24 2026
144199
+ * Version: 24.2.16
144200
+ * Build date: Fri Sep 11 2026
144153
144201
  *
144154
144202
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
144155
144203
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -144190,8 +144238,8 @@ const DEFAULT_LOCALE = "en";
144190
144238
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/open_xml_currency_format.js
144191
144239
  /**
144192
144240
  * DevExtreme (esm/common/core/localization/open_xml_currency_format.js)
144193
- * Version: 24.2.15
144194
- * Build date: Fri Apr 24 2026
144241
+ * Version: 24.2.16
144242
+ * Build date: Fri Sep 11 2026
144195
144243
  *
144196
144244
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
144197
144245
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -144233,8 +144281,8 @@ const DEFAULT_LOCALE = "en";
144233
144281
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/accounting_formats.js
144234
144282
  /**
144235
144283
  * DevExtreme (esm/common/core/localization/cldr-data/accounting_formats.js)
144236
- * Version: 24.2.15
144237
- * Build date: Fri Apr 24 2026
144284
+ * Version: 24.2.16
144285
+ * Build date: Fri Sep 11 2026
144238
144286
  *
144239
144287
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
144240
144288
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -144820,8 +144868,8 @@ const DEFAULT_LOCALE = "en";
144820
144868
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/number.js
144821
144869
  /**
144822
144870
  * DevExtreme (esm/common/core/localization/intl/number.js)
144823
- * Version: 24.2.15
144824
- * Build date: Fri Apr 24 2026
144871
+ * Version: 24.2.16
144872
+ * Build date: Fri Sep 11 2026
144825
144873
  *
144826
144874
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
144827
144875
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -144941,8 +144989,8 @@ const getCurrencyFormatter = currency => new Intl.NumberFormat(core.locale(), {
144941
144989
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/number.js
144942
144990
  /**
144943
144991
  * DevExtreme (esm/common/core/localization/number.js)
144944
- * Version: 24.2.15
144945
- * Build date: Fri Apr 24 2026
144992
+ * Version: 24.2.16
144993
+ * Build date: Fri Sep 11 2026
144946
144994
  *
144947
144995
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
144948
144996
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -145247,8 +145295,8 @@ if (hasIntl) {
145247
145295
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.format.js
145248
145296
  /**
145249
145297
  * DevExtreme (esm/common/core/localization/ldml/date.format.js)
145250
- * Version: 24.2.15
145251
- * Build date: Fri Apr 24 2026
145298
+ * Version: 24.2.16
145299
+ * Build date: Fri Sep 11 2026
145252
145300
  *
145253
145301
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
145254
145302
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -145445,8 +145493,8 @@ const date_format_getFormat = function(formatter) {
145445
145493
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.parser.js
145446
145494
  /**
145447
145495
  * DevExtreme (esm/common/core/localization/ldml/date.parser.js)
145448
- * Version: 24.2.15
145449
- * Build date: Fri Apr 24 2026
145496
+ * Version: 24.2.16
145497
+ * Build date: Fri Sep 11 2026
145450
145498
  *
145451
145499
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
145452
145500
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -145764,8 +145812,8 @@ const getParser = function(format, dateParts) {
145764
145812
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/default_date_names.js
145765
145813
  /**
145766
145814
  * DevExtreme (esm/common/core/localization/default_date_names.js)
145767
- * Version: 24.2.15
145768
- * Build date: Fri Apr 24 2026
145815
+ * Version: 24.2.16
145816
+ * Build date: Fri Sep 11 2026
145769
145817
  *
145770
145818
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
145771
145819
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -145801,8 +145849,8 @@ const cutCaptions = (captions, format) => {
145801
145849
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/first_day_of_week_data.js
145802
145850
  /**
145803
145851
  * DevExtreme (esm/common/core/localization/cldr-data/first_day_of_week_data.js)
145804
- * Version: 24.2.15
145805
- * Build date: Fri Apr 24 2026
145852
+ * Version: 24.2.16
145853
+ * Build date: Fri Sep 11 2026
145806
145854
  *
145807
145855
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
145808
145856
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -146001,8 +146049,8 @@ const cutCaptions = (captions, format) => {
146001
146049
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/date.js
146002
146050
  /**
146003
146051
  * DevExtreme (esm/common/core/localization/intl/date.js)
146004
- * Version: 24.2.15
146005
- * Build date: Fri Apr 24 2026
146052
+ * Version: 24.2.16
146053
+ * Build date: Fri Sep 11 2026
146006
146054
  *
146007
146055
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
146008
146056
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -146319,8 +146367,8 @@ const monthNameStrategies = {
146319
146367
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/date.js
146320
146368
  /**
146321
146369
  * DevExtreme (esm/common/core/localization/date.js)
146322
- * Version: 24.2.15
146323
- * Build date: Fri Apr 24 2026
146370
+ * Version: 24.2.16
146371
+ * Build date: Fri Sep 11 2026
146324
146372
  *
146325
146373
  * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
146326
146374
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -147561,7 +147609,7 @@ class ClientRichEdit {
147561
147609
  this.contextMenuSettings = settings.contextMenuSettings;
147562
147610
  this.fullScreenHelper = new FullScreenHelper(element);
147563
147611
  if (true)
147564
- external_DevExpress_config_default()(JSON.parse(atob('eyJsaWNlbnNlS2V5IjoiZXdvZ0lDSm1iM0p0WVhRaU9pQXhMQW9nSUNKcGJuUmxjbTVoYkZWellXZGxTV1FpT2lBaVR6bGtVR1V5UlhsRFF6TnVTVGhhYTA1UFZUSklRU0lLZlE9PS5meXZCUFNITFZEd0I2ZU5ZK3dyNDVjK3p6V1Y4Ymw1U3E2RmxkamU0a2p0RlVwU3ZTMkl5M3MyWmxad3A3bVN2b3N5bkxJYkUreXRyeWV2ZnQzNjdQUTBpOG9CS2VsbDFaTzkwcjU0aVVCTXNMa1hjV2VGa0xqdTkrTUlva1MzVmhyUENOdz09In0=')));
147612
+ external_DevExpress_config_default()(JSON.parse(atob('eyJsaWNlbnNlS2V5IjoiZXdvZ0lDSm1iM0p0WVhRaU9pQXhMQW9nSUNKcGJuUmxjbTVoYkZWellXZGxTV1FpT2lBaWIxWnJZVFZoY2psb1V6TldVbk55VGtZemRXSnRTU0lLZlE9PS5OSEkvTkFqYmFPbi9nUFNNdzZqb3pTdk1nSFZFWG5mQ1pvSDNEK3VUY01zdHhoVGdCZTJEZ2xlUUxzaFppdVh2c29ZV3RWbWdxY3RzUWowbDZFMXBYT2hpUnlzNzVrdDU3Y3hEZ1VvanA2eUY3VWt6Nm16enVEYzZ0Lzk4bjlsWVlIeHpiUT09In0=')));
147565
147613
  this.prepareElement(element, settings);
147566
147614
  this.initDefaultFontsAndStyles();
147567
147615
  this.initBars(settings.ribbon, settings.fonts);