devexpress-richedit 24.2.7-build-25107-0104 → 24.2.7

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.
@@ -32150,6 +32150,14 @@ class LayoutOtherPageAreasInfo {
32150
32150
  }
32151
32151
  }
32152
32152
  class LayoutPage extends rectangle.Rectangle {
32153
+ get grids() {
32154
+ const result = new Map();
32155
+ for (let pageArea of this.mainSubDocumentPageAreas)
32156
+ pageArea.grids.forEach((grid, table) => result.set(table, grid));
32157
+ for (let pageArea of Object.values(this.otherPageAreas))
32158
+ pageArea.grids.forEach((grid, table) => result.set(table, grid));
32159
+ return result;
32160
+ }
32153
32161
  constructor() {
32154
32162
  super(0, 0, 0, 0);
32155
32163
  this.mainSubDocumentPageAreas = [];
@@ -70660,6 +70668,12 @@ class AnchorObjectsPositionInfo {
70660
70668
  }
70661
70669
  }
70662
70670
  class DocumentLayout {
70671
+ get grids() {
70672
+ return this.pages.reduce((res, page) => {
70673
+ page.grids.forEach((grid, table) => res.set(table, grid));
70674
+ return res;
70675
+ }, new Map());
70676
+ }
70663
70677
  constructor(anchorObjectsPositionInfo) {
70664
70678
  this.anchorObjectsPositionInfo = anchorObjectsPositionInfo;
70665
70679
  this.setEmptyLayout(ColorHelper.NO_COLOR);
@@ -81660,10 +81674,12 @@ class ParagraphSpacingDestination extends ParagraphFormattingLeafElementDestinat
81660
81674
  const spacingBefore = this.data.readerHelper.getWpSTIntegerValue(reader, 'before', constants.Constants.MIN_SAFE_INTEGER);
81661
81675
  if (spacingBefore >= 0)
81662
81676
  this.paragraphProperties.setValue(ParagraphPropertyDescriptor.spacingBefore, spacingBefore);
81663
- this.paragraphProperties.setValue(ParagraphPropertyDescriptor.beforeAutoSpacing, spacingBefore == -1 ||
81664
- this.data.readerHelper.getWpSTOnOffValue(reader, new WordProcessingMLValue('beforeAutospacing', 'before-autospacing').openXmlValue, false));
81665
- this.paragraphProperties.setValue(ParagraphPropertyDescriptor.afterAutoSpacing, spacingAfter == -1 ||
81666
- this.data.readerHelper.getWpSTOnOffValue(reader, new WordProcessingMLValue('afterAutospacing', 'after-autospacing').openXmlValue, false));
81677
+ const beforeAutoSpacing = this.data.readerHelper.getWpSTOnOffValue(reader, 'beforeAutospacing', null);
81678
+ if (spacingBefore == -1 || beforeAutoSpacing != null)
81679
+ this.paragraphProperties.setValue(ParagraphPropertyDescriptor.beforeAutoSpacing, spacingBefore == -1 || beforeAutoSpacing);
81680
+ const afterAutoSpacing = this.data.readerHelper.getWpSTOnOffValue(reader, 'afterAutospacing', null);
81681
+ if (spacingAfter == -1 || afterAutoSpacing != null)
81682
+ this.paragraphProperties.setValue(ParagraphPropertyDescriptor.afterAutoSpacing, spacingAfter == -1 || afterAutoSpacing);
81667
81683
  const lineSpacing = this.data.readerHelper.getWpSTIntegerValue(reader, 'line', constants.Constants.MIN_SAFE_INTEGER);
81668
81684
  if (lineSpacing != constants.Constants.MIN_SAFE_INTEGER && lineSpacing > 0) {
81669
81685
  const attribute = new WordProcessingMLValue('lineRule', 'line-rule');
@@ -90504,6 +90520,7 @@ class EffectExtent {
90504
90520
 
90505
90521
 
90506
90522
 
90523
+
90507
90524
  class TableExporter extends BaseExporter {
90508
90525
  constructor() {
90509
90526
  super(...arguments);
@@ -90533,10 +90550,9 @@ class TableExporter extends BaseExporter {
90533
90550
  }
90534
90551
  }
90535
90552
  getTableGrid(table) {
90536
- if (table.rows[0].logicColumnCount < 64)
90537
- return [];
90538
- const colGrid = [];
90539
- return colGrid;
90553
+ var _a, _b;
90554
+ const grid = this.data.grids.get(table);
90555
+ return ((_b = (_a = grid === null || grid === void 0 ? void 0 : grid.columns) === null || _a === void 0 ? void 0 : _a.width) === null || _b === void 0 ? void 0 : _b.map(unit_converter/* UnitConverter */.u.pixelsToTwips)) || [];
90540
90556
  }
90541
90557
  initNewTables(newIndexes, allowInitNextTable) {
90542
90558
  for (let levelIndex = this.tableIndexes.length; levelIndex < newIndexes.length; levelIndex++) {
@@ -91046,11 +91062,12 @@ class data_Data {
91046
91062
  get subDocumentExporter() { return this.subDocumentExporterStack.last; }
91047
91063
  get relationExporter() { return utils_list.ListUtils.last(this.relationExporters); }
91048
91064
  get mainSubDocumentRelations() { return this.relationExporters[0]; }
91049
- constructor(model, options) {
91065
+ constructor(exportModelOptions, options) {
91050
91066
  this.drawingElementId = 1;
91051
91067
  this.exportSubDocumentsList = [];
91052
91068
  this.relationExporters = [];
91053
- this.model = model;
91069
+ this.model = exportModelOptions.modelManager.model;
91070
+ this.grids = exportModelOptions.grids;
91054
91071
  this.options = options;
91055
91072
  this.constants = new DocxConstants();
91056
91073
  this.writerStack = new stack/* Stack */.K();
@@ -91834,10 +91851,10 @@ class EndNoteExporter extends NoteExporter {
91834
91851
 
91835
91852
 
91836
91853
  class DocxExporter {
91837
- constructor(modelManipulator, options) {
91838
- this.modelManipulator = modelManipulator;
91854
+ constructor(exportModelOptions, options) {
91855
+ this.modelManipulator = exportModelOptions.modelManager.modelManipulator;
91839
91856
  this.options = options;
91840
- this.data = new data_Data(modelManipulator.model, options);
91857
+ this.data = new data_Data(exportModelOptions, options);
91841
91858
  }
91842
91859
  exportToBlob(callback) {
91843
91860
  this.modelManipulator.picture.loader.ensureAllPicturesLoaded(this.options.ensurePictureLoadedTimeout, (_loaded) => {
@@ -91944,7 +91961,7 @@ function exportModelToBlob(exportModelOptions, callback) {
91944
91961
  function getExporter(exportModelOptions) {
91945
91962
  const { modelManipulator } = exportModelOptions.modelManager;
91946
91963
  switch (exportModelOptions.documentFormat) {
91947
- case DocumentFormat.OpenXml: return new DocxExporter(modelManipulator, new DocxExportOptions());
91964
+ case DocumentFormat.OpenXml: return new DocxExporter(exportModelOptions, new DocxExportOptions());
91948
91965
  case DocumentFormat.Rtf: return new RtfExporter(modelManipulator, new RtfDocumentExporterOptions());
91949
91966
  case DocumentFormat.PlainText: return new TxtExporter(modelManipulator, new DocumentExporterOptions());
91950
91967
  case DocumentFormat.Html: return new HtmlDocumentExporter(exportModelOptions, new DocumentExporterOptions());
@@ -92456,7 +92473,7 @@ class AnchorObjectHorizontalPositionCalculator extends AnchorObjectPositionCalcu
92456
92473
  alignment(type, alignment) {
92457
92474
  switch (type) {
92458
92475
  case AnchorObjectHorizontalPositionType.Character:
92459
- return this.getAlignPosition(alignment, 0);
92476
+ return this.getAnchorXPosition() + this.getAlignPosition(alignment, 0);
92460
92477
  case AnchorObjectHorizontalPositionType.Column:
92461
92478
  return this.isRelativeCell ?
92462
92479
  this.relativeColumnPos() + this.lp.row.tableCellInfo.x +
@@ -92505,17 +92522,8 @@ class AnchorObjectHorizontalPositionCalculator extends AnchorObjectPositionCalcu
92505
92522
  return this.isRelativeCell ? this.relativeColumnPos() + this.lp.row.tableCellInfo.x : 0;
92506
92523
  case AnchorObjectHorizontalPositionType.Column:
92507
92524
  return this.isRelativeCell ? this.relativeColumnPos() + this.lp.row.tableCellInfo.x + this.leftCellMargin : this.relativeColumnPos();
92508
- case AnchorObjectHorizontalPositionType.Character: {
92509
- const rowAbsPos = this.lp.getLogPosition(DocumentLayoutDetailsLevel.Row);
92510
- const ancBoxAbsPos = this.obj.rowOffset;
92511
- const boxIndex = search.SearchUtils.normedInterpolationIndexOf(this.lp.row.boxes, (box) => rowAbsPos + box.rowOffset, ancBoxAbsPos);
92512
- const box = this.lp.row.boxes[boxIndex];
92513
- if (!box)
92514
- return this.lp.getLayoutX(null, DocumentLayoutDetailsLevel.Row);
92515
- const symbolCount = Math.max(0, ancBoxAbsPos - rowAbsPos - box.rowOffset);
92516
- return this.lp.getLayoutX(null, DocumentLayoutDetailsLevel.Row) + box.x +
92517
- box.getCharOffsetXInPixels(this.manager.measurer, symbolCount);
92518
- }
92525
+ case AnchorObjectHorizontalPositionType.Character:
92526
+ return this.getAnchorXPosition();
92519
92527
  case AnchorObjectHorizontalPositionType.Margin:
92520
92528
  return this.isRelativeCell ? this.relativeColumnPos() + this.lp.row.tableCellInfo.x + this.leftCellMargin :
92521
92529
  this.manager.boundsCalculator.marginLeft;
@@ -92532,6 +92540,19 @@ class AnchorObjectHorizontalPositionCalculator extends AnchorObjectPositionCalcu
92532
92540
  throw new Error(lib_errors/* Errors */.D.InternalException);
92533
92541
  }
92534
92542
  }
92543
+ getAnchorXPosition() {
92544
+ const rowAbsPos = this.lp.getLogPosition(DocumentLayoutDetailsLevel.Row);
92545
+ const ancBoxAbsPos = this.obj.rowOffset;
92546
+ let boxIndex = search.SearchUtils.normedInterpolationIndexOf(this.lp.row.boxes, (box) => rowAbsPos + box.rowOffset, ancBoxAbsPos);
92547
+ if (boxIndex < 0)
92548
+ boxIndex = 0;
92549
+ const box = this.lp.row.boxes[boxIndex];
92550
+ if (!box)
92551
+ return this.lp.getLayoutX(null, DocumentLayoutDetailsLevel.Row);
92552
+ const symbolCount = Math.max(0, ancBoxAbsPos - rowAbsPos - box.rowOffset);
92553
+ return this.lp.getLayoutX(null, DocumentLayoutDetailsLevel.Row) + box.x +
92554
+ box.getCharOffsetXInPixels(this.manager.measurer, symbolCount);
92555
+ }
92535
92556
  bookLayout() {
92536
92557
  return this.alignment(this.anchorInfo.horizontalPositionType, AnchorObjectHorizontalPositionCalculator.mapBookLayoutALignmentType[this.anchorInfo.horizontalPositionAlignment]);
92537
92558
  }
@@ -92757,6 +92778,12 @@ class AnchoredTextBoxContextSizeCalculator {
92757
92778
 
92758
92779
 
92759
92780
  class LayoutPageArea extends rectangle.Rectangle {
92781
+ get grids() {
92782
+ return this.columns.reduce((res, column) => {
92783
+ column.tablesInfo.forEach(tableInfo => res.set(tableInfo.logicInfo.grid.table, tableInfo.logicInfo.grid));
92784
+ return res;
92785
+ }, new Map());
92786
+ }
92760
92787
  constructor(subDocument) {
92761
92788
  super(0, 0, 0, 0);
92762
92789
  this.columns = [];
@@ -95605,8 +95632,6 @@ class RowBaseFormatterState {
95605
95632
  this.rowFormatter.finishRow();
95606
95633
  }
95607
95634
  addAnchorObject() {
95608
- if (!this.rowFormatter.wordHolder.pushBoxes())
95609
- return;
95610
95635
  this.rowFormatter.addAnchorObject();
95611
95636
  }
95612
95637
  addTextBox() {
@@ -115777,6 +115802,7 @@ class RichEditCore {
115777
115802
  pictureRenderer: this.viewManager.renderer,
115778
115803
  uiUnitConverter: this.uiUnitConverter,
115779
115804
  lastMaxNumPages: this.layout.lastMaxNumPages,
115805
+ grids: this.layout.grids,
115780
115806
  pageIndex: this.selection.pageIndex,
115781
115807
  sessionGuid: this.sessionGuid,
115782
115808
  clientGuid: this.clientGuid,
@@ -137151,7 +137177,8 @@ class MailMergeCommand extends CommandBase {
137151
137177
  return true;
137152
137178
  }
137153
137179
  executeCore(_state, options) {
137154
- const docxExporter = new DocxExporter(this.control.modelManager.modelManipulator, new DocxExportOptions());
137180
+ const exportModelOptions = this.control.getExportModelOptions();
137181
+ const docxExporter = new DocxExporter(exportModelOptions, new DocxExportOptions());
137155
137182
  docxExporter.exportToBlob((blob) => {
137156
137183
  const docxImporter = new Importer(new ImporterOptions());
137157
137184
  docxImporter.importFromFile(blob, this.control.modelManager.richOptions, (documentModel, formatImagesImporter) => {
@@ -140896,8 +140923,8 @@ class DialogManager {
140896
140923
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_type.js
140897
140924
  /**
140898
140925
  * DevExtreme (esm/__internal/core/utils/m_type.js)
140899
- * Version: 24.2.7-build-25105-1935
140900
- * Build date: Tue Apr 15 2025
140926
+ * Version: 24.2.7
140927
+ * Build date: Mon Apr 28 2025
140901
140928
  *
140902
140929
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
140903
140930
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -140999,8 +141026,8 @@ const isEvent = function(object) {
140999
141026
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/type.js
141000
141027
  /**
141001
141028
  * DevExtreme (esm/core/utils/type.js)
141002
- * Version: 24.2.7-build-25105-1935
141003
- * Build date: Tue Apr 15 2025
141029
+ * Version: 24.2.7
141030
+ * Build date: Mon Apr 28 2025
141004
141031
  *
141005
141032
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141006
141033
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141010,8 +141037,8 @@ const isEvent = function(object) {
141010
141037
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_extend.js
141011
141038
  /**
141012
141039
  * DevExtreme (esm/__internal/core/utils/m_extend.js)
141013
- * Version: 24.2.7-build-25105-1935
141014
- * Build date: Tue Apr 15 2025
141040
+ * Version: 24.2.7
141041
+ * Build date: Mon Apr 28 2025
141015
141042
  *
141016
141043
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141017
141044
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141069,8 +141096,8 @@ const extend = function(target) {
141069
141096
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/extend.js
141070
141097
  /**
141071
141098
  * DevExtreme (esm/core/utils/extend.js)
141072
- * Version: 24.2.7-build-25105-1935
141073
- * Build date: Tue Apr 15 2025
141099
+ * Version: 24.2.7
141100
+ * Build date: Mon Apr 28 2025
141074
141101
  *
141075
141102
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141076
141103
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141080,8 +141107,8 @@ const extend = function(target) {
141080
141107
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_string.js
141081
141108
  /**
141082
141109
  * DevExtreme (esm/__internal/core/utils/m_string.js)
141083
- * Version: 24.2.7-build-25105-1935
141084
- * Build date: Tue Apr 15 2025
141110
+ * Version: 24.2.7
141111
+ * Build date: Mon Apr 28 2025
141085
141112
  *
141086
141113
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141087
141114
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141156,8 +141183,8 @@ const isEmpty = function() {
141156
141183
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/string.js
141157
141184
  /**
141158
141185
  * DevExtreme (esm/core/utils/string.js)
141159
- * Version: 24.2.7-build-25105-1935
141160
- * Build date: Tue Apr 15 2025
141186
+ * Version: 24.2.7
141187
+ * Build date: Mon Apr 28 2025
141161
141188
  *
141162
141189
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141163
141190
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141167,20 +141194,20 @@ const isEmpty = function() {
141167
141194
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/version.js
141168
141195
  /**
141169
141196
  * DevExtreme (esm/core/version.js)
141170
- * Version: 24.2.7-build-25105-1935
141171
- * Build date: Tue Apr 15 2025
141197
+ * Version: 24.2.7
141198
+ * Build date: Mon Apr 28 2025
141172
141199
  *
141173
141200
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141174
141201
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
141175
141202
  */
141176
- const version = "24.2.6";
141177
- const fullVersion = "24.2.6.25105-1935";
141203
+ const version = "24.2.7";
141204
+ const fullVersion = "24.2.7";
141178
141205
 
141179
141206
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_console.js
141180
141207
  /**
141181
141208
  * DevExtreme (esm/__internal/core/utils/m_console.js)
141182
- * Version: 24.2.7-build-25105-1935
141183
- * Build date: Tue Apr 15 2025
141209
+ * Version: 24.2.7
141210
+ * Build date: Mon Apr 28 2025
141184
141211
  *
141185
141212
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141186
141213
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141220,8 +141247,8 @@ const debug = function() {
141220
141247
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_error.js
141221
141248
  /**
141222
141249
  * DevExtreme (esm/__internal/core/utils/m_error.js)
141223
- * Version: 24.2.7-build-25105-1935
141224
- * Build date: Tue Apr 15 2025
141250
+ * Version: 24.2.7
141251
+ * Build date: Mon Apr 28 2025
141225
141252
  *
141226
141253
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141227
141254
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141292,8 +141319,8 @@ function error(baseErrors, errors) {
141292
141319
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/error.js
141293
141320
  /**
141294
141321
  * DevExtreme (esm/core/utils/error.js)
141295
- * Version: 24.2.7-build-25105-1935
141296
- * Build date: Tue Apr 15 2025
141322
+ * Version: 24.2.7
141323
+ * Build date: Mon Apr 28 2025
141297
141324
  *
141298
141325
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141299
141326
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141304,8 +141331,8 @@ function error(baseErrors, errors) {
141304
141331
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_errors.js
141305
141332
  /**
141306
141333
  * DevExtreme (esm/__internal/core/m_errors.js)
141307
- * Version: 24.2.7-build-25105-1935
141308
- * Build date: Tue Apr 15 2025
141334
+ * Version: 24.2.7
141335
+ * Build date: Mon Apr 28 2025
141309
141336
  *
141310
141337
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141311
141338
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141371,8 +141398,8 @@ function error(baseErrors, errors) {
141371
141398
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/errors.js
141372
141399
  /**
141373
141400
  * DevExtreme (esm/core/errors.js)
141374
- * Version: 24.2.7-build-25105-1935
141375
- * Build date: Tue Apr 15 2025
141401
+ * Version: 24.2.7
141402
+ * Build date: Mon Apr 28 2025
141376
141403
  *
141377
141404
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141378
141405
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141383,8 +141410,8 @@ function error(baseErrors, errors) {
141383
141410
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_class.js
141384
141411
  /**
141385
141412
  * DevExtreme (esm/__internal/core/m_class.js)
141386
- * Version: 24.2.7-build-25105-1935
141387
- * Build date: Tue Apr 15 2025
141413
+ * Version: 24.2.7
141414
+ * Build date: Mon Apr 28 2025
141388
141415
  *
141389
141416
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141390
141417
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141517,8 +141544,8 @@ classImpl.abstract = m_class_abstract;
141517
141544
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/class.js
141518
141545
  /**
141519
141546
  * DevExtreme (esm/core/class.js)
141520
- * Version: 24.2.7-build-25105-1935
141521
- * Build date: Tue Apr 15 2025
141547
+ * Version: 24.2.7
141548
+ * Build date: Mon Apr 28 2025
141522
141549
  *
141523
141550
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141524
141551
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141529,8 +141556,8 @@ classImpl.abstract = m_class_abstract;
141529
141556
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_iterator.js
141530
141557
  /**
141531
141558
  * DevExtreme (esm/__internal/core/utils/m_iterator.js)
141532
- * Version: 24.2.7-build-25105-1935
141533
- * Build date: Tue Apr 15 2025
141559
+ * Version: 24.2.7
141560
+ * Build date: Mon Apr 28 2025
141534
141561
  *
141535
141562
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141536
141563
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141579,8 +141606,8 @@ const reverseEach = (array, callback) => {
141579
141606
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_dependency_injector.js
141580
141607
  /**
141581
141608
  * DevExtreme (esm/__internal/core/utils/m_dependency_injector.js)
141582
- * Version: 24.2.7-build-25105-1935
141583
- * Build date: Tue Apr 15 2025
141609
+ * Version: 24.2.7
141610
+ * Build date: Mon Apr 28 2025
141584
141611
  *
141585
141612
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141586
141613
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141629,8 +141656,8 @@ function injector(object) {
141629
141656
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/dependency_injector.js
141630
141657
  /**
141631
141658
  * DevExtreme (esm/core/utils/dependency_injector.js)
141632
- * Version: 24.2.7-build-25105-1935
141633
- * Build date: Tue Apr 15 2025
141659
+ * Version: 24.2.7
141660
+ * Build date: Mon Apr 28 2025
141634
141661
  *
141635
141662
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141636
141663
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141641,8 +141668,8 @@ function injector(object) {
141641
141668
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.formatter.js
141642
141669
  /**
141643
141670
  * DevExtreme (esm/common/core/localization/ldml/date.formatter.js)
141644
- * Version: 24.2.7-build-25105-1935
141645
- * Build date: Tue Apr 15 2025
141671
+ * Version: 24.2.7
141672
+ * Build date: Mon Apr 28 2025
141646
141673
  *
141647
141674
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141648
141675
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141795,8 +141822,8 @@ function _extends() {
141795
141822
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_config.js
141796
141823
  /**
141797
141824
  * DevExtreme (esm/__internal/core/m_config.js)
141798
- * Version: 24.2.7-build-25105-1935
141799
- * Build date: Tue Apr 15 2025
141825
+ * Version: 24.2.7
141826
+ * Build date: Mon Apr 28 2025
141800
141827
  *
141801
141828
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141802
141829
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141871,8 +141898,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
141871
141898
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/config.js
141872
141899
  /**
141873
141900
  * DevExtreme (esm/common/config.js)
141874
- * Version: 24.2.7-build-25105-1935
141875
- * Build date: Tue Apr 15 2025
141901
+ * Version: 24.2.7
141902
+ * Build date: Mon Apr 28 2025
141876
141903
  *
141877
141904
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141878
141905
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141883,8 +141910,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
141883
141910
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_guid.js
141884
141911
  /**
141885
141912
  * DevExtreme (esm/__internal/core/m_guid.js)
141886
- * Version: 24.2.7-build-25105-1935
141887
- * Build date: Tue Apr 15 2025
141913
+ * Version: 24.2.7
141914
+ * Build date: Mon Apr 28 2025
141888
141915
  *
141889
141916
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141890
141917
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141926,8 +141953,8 @@ const Guid = core_class.inherit({
141926
141953
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/guid.js
141927
141954
  /**
141928
141955
  * DevExtreme (esm/common/guid.js)
141929
- * Version: 24.2.7-build-25105-1935
141930
- * Build date: Tue Apr 15 2025
141956
+ * Version: 24.2.7
141957
+ * Build date: Mon Apr 28 2025
141931
141958
  *
141932
141959
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141933
141960
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141938,8 +141965,8 @@ const Guid = core_class.inherit({
141938
141965
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/templates/m_template_engine_registry.js
141939
141966
  /**
141940
141967
  * DevExtreme (esm/__internal/core/templates/m_template_engine_registry.js)
141941
- * Version: 24.2.7-build-25105-1935
141942
- * Build date: Tue Apr 15 2025
141968
+ * Version: 24.2.7
141969
+ * Build date: Mon Apr 28 2025
141943
141970
  *
141944
141971
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141945
141972
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141968,8 +141995,8 @@ function getCurrentTemplateEngine() {
141968
141995
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/templates/template_engine_registry.js
141969
141996
  /**
141970
141997
  * DevExtreme (esm/core/templates/template_engine_registry.js)
141971
- * Version: 24.2.7-build-25105-1935
141972
- * Build date: Tue Apr 15 2025
141998
+ * Version: 24.2.7
141999
+ * Build date: Mon Apr 28 2025
141973
142000
  *
141974
142001
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141975
142002
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141979,8 +142006,8 @@ function getCurrentTemplateEngine() {
141979
142006
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_set_template_engine.js
141980
142007
  /**
141981
142008
  * DevExtreme (esm/__internal/core/m_set_template_engine.js)
141982
- * Version: 24.2.7-build-25105-1935
141983
- * Build date: Tue Apr 15 2025
142009
+ * Version: 24.2.7
142010
+ * Build date: Mon Apr 28 2025
141984
142011
  *
141985
142012
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141986
142013
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141990,8 +142017,8 @@ function getCurrentTemplateEngine() {
141990
142017
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/set_template_engine.js
141991
142018
  /**
141992
142019
  * DevExtreme (esm/common/set_template_engine.js)
141993
- * Version: 24.2.7-build-25105-1935
141994
- * Build date: Tue Apr 15 2025
142020
+ * Version: 24.2.7
142021
+ * Build date: Mon Apr 28 2025
141995
142022
  *
141996
142023
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141997
142024
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142002,8 +142029,8 @@ function getCurrentTemplateEngine() {
142002
142029
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common.js
142003
142030
  /**
142004
142031
  * DevExtreme (esm/common.js)
142005
- * Version: 24.2.7-build-25105-1935
142006
- * Build date: Tue Apr 15 2025
142032
+ * Version: 24.2.7
142033
+ * Build date: Mon Apr 28 2025
142007
142034
  *
142008
142035
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142009
142036
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142016,8 +142043,8 @@ function getCurrentTemplateEngine() {
142016
142043
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/config.js
142017
142044
  /**
142018
142045
  * DevExtreme (esm/core/config.js)
142019
- * Version: 24.2.7-build-25105-1935
142020
- * Build date: Tue Apr 15 2025
142046
+ * Version: 24.2.7
142047
+ * Build date: Mon Apr 28 2025
142021
142048
  *
142022
142049
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142023
142050
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142028,8 +142055,8 @@ function getCurrentTemplateEngine() {
142028
142055
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/guid.js
142029
142056
  /**
142030
142057
  * DevExtreme (esm/core/guid.js)
142031
- * Version: 24.2.7-build-25105-1935
142032
- * Build date: Tue Apr 15 2025
142058
+ * Version: 24.2.7
142059
+ * Build date: Mon Apr 28 2025
142033
142060
  *
142034
142061
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142035
142062
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142040,8 +142067,8 @@ function getCurrentTemplateEngine() {
142040
142067
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/console.js
142041
142068
  /**
142042
142069
  * DevExtreme (esm/core/utils/console.js)
142043
- * Version: 24.2.7-build-25105-1935
142044
- * Build date: Tue Apr 15 2025
142070
+ * Version: 24.2.7
142071
+ * Build date: Mon Apr 28 2025
142045
142072
  *
142046
142073
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142047
142074
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142051,8 +142078,8 @@ function getCurrentTemplateEngine() {
142051
142078
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_variable_wrapper.js
142052
142079
  /**
142053
142080
  * DevExtreme (esm/__internal/core/utils/m_variable_wrapper.js)
142054
- * Version: 24.2.7-build-25105-1935
142055
- * Build date: Tue Apr 15 2025
142081
+ * Version: 24.2.7
142082
+ * Build date: Mon Apr 28 2025
142056
142083
  *
142057
142084
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142058
142085
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142081,8 +142108,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
142081
142108
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/variable_wrapper.js
142082
142109
  /**
142083
142110
  * DevExtreme (esm/core/utils/variable_wrapper.js)
142084
- * Version: 24.2.7-build-25105-1935
142085
- * Build date: Tue Apr 15 2025
142111
+ * Version: 24.2.7
142112
+ * Build date: Mon Apr 28 2025
142086
142113
  *
142087
142114
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142088
142115
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142093,8 +142120,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
142093
142120
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_object.js
142094
142121
  /**
142095
142122
  * DevExtreme (esm/__internal/core/utils/m_object.js)
142096
- * Version: 24.2.7-build-25105-1935
142097
- * Build date: Tue Apr 15 2025
142123
+ * Version: 24.2.7
142124
+ * Build date: Mon Apr 28 2025
142098
142125
  *
142099
142126
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142100
142127
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142194,8 +142221,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
142194
142221
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/object.js
142195
142222
  /**
142196
142223
  * DevExtreme (esm/core/utils/object.js)
142197
- * Version: 24.2.7-build-25105-1935
142198
- * Build date: Tue Apr 15 2025
142224
+ * Version: 24.2.7
142225
+ * Build date: Mon Apr 28 2025
142199
142226
  *
142200
142227
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142201
142228
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142205,8 +142232,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
142205
142232
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_data.js
142206
142233
  /**
142207
142234
  * DevExtreme (esm/__internal/core/utils/m_data.js)
142208
- * Version: 24.2.7-build-25105-1935
142209
- * Build date: Tue Apr 15 2025
142235
+ * Version: 24.2.7
142236
+ * Build date: Mon Apr 28 2025
142210
142237
  *
142211
142238
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142212
142239
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142402,8 +142429,8 @@ const toComparable = function(value, caseSensitive) {
142402
142429
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/data.js
142403
142430
  /**
142404
142431
  * DevExtreme (esm/core/utils/data.js)
142405
- * Version: 24.2.7-build-25105-1935
142406
- * Build date: Tue Apr 15 2025
142432
+ * Version: 24.2.7
142433
+ * Build date: Mon Apr 28 2025
142407
142434
  *
142408
142435
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142409
142436
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142413,8 +142440,8 @@ const toComparable = function(value, caseSensitive) {
142413
142440
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_callbacks.js
142414
142441
  /**
142415
142442
  * DevExtreme (esm/__internal/core/utils/m_callbacks.js)
142416
- * Version: 24.2.7-build-25105-1935
142417
- * Build date: Tue Apr 15 2025
142443
+ * Version: 24.2.7
142444
+ * Build date: Mon Apr 28 2025
142418
142445
  *
142419
142446
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142420
142447
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142509,8 +142536,8 @@ const Callbacks = function(options) {
142509
142536
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/callbacks.js
142510
142537
  /**
142511
142538
  * DevExtreme (esm/core/utils/callbacks.js)
142512
- * Version: 24.2.7-build-25105-1935
142513
- * Build date: Tue Apr 15 2025
142539
+ * Version: 24.2.7
142540
+ * Build date: Mon Apr 28 2025
142514
142541
  *
142515
142542
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142516
142543
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142521,8 +142548,8 @@ const Callbacks = function(options) {
142521
142548
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_deferred.js
142522
142549
  /**
142523
142550
  * DevExtreme (esm/__internal/core/utils/m_deferred.js)
142524
- * Version: 24.2.7-build-25105-1935
142525
- * Build date: Tue Apr 15 2025
142551
+ * Version: 24.2.7
142552
+ * Build date: Mon Apr 28 2025
142526
142553
  *
142527
142554
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142528
142555
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142687,8 +142714,8 @@ function when() {
142687
142714
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/deferred.js
142688
142715
  /**
142689
142716
  * DevExtreme (esm/core/utils/deferred.js)
142690
- * Version: 24.2.7-build-25105-1935
142691
- * Build date: Tue Apr 15 2025
142717
+ * Version: 24.2.7
142718
+ * Build date: Mon Apr 28 2025
142692
142719
  *
142693
142720
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142694
142721
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142698,8 +142725,8 @@ function when() {
142698
142725
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_common.js
142699
142726
  /**
142700
142727
  * DevExtreme (esm/__internal/core/utils/m_common.js)
142701
- * Version: 24.2.7-build-25105-1935
142702
- * Build date: Tue Apr 15 2025
142728
+ * Version: 24.2.7
142729
+ * Build date: Mon Apr 28 2025
142703
142730
  *
142704
142731
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142705
142732
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142994,8 +143021,8 @@ const equalByValue = function(value1, value2) {
142994
143021
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/common.js
142995
143022
  /**
142996
143023
  * DevExtreme (esm/core/utils/common.js)
142997
- * Version: 24.2.7-build-25105-1935
142998
- * Build date: Tue Apr 15 2025
143024
+ * Version: 24.2.7
143025
+ * Build date: Mon Apr 28 2025
142999
143026
  *
143000
143027
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143001
143028
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143005,8 +143032,8 @@ const equalByValue = function(value1, value2) {
143005
143032
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_math.js
143006
143033
  /**
143007
143034
  * DevExtreme (esm/__internal/core/utils/m_math.js)
143008
- * Version: 24.2.7-build-25105-1935
143009
- * Build date: Tue Apr 15 2025
143035
+ * Version: 24.2.7
143036
+ * Build date: Mon Apr 28 2025
143010
143037
  *
143011
143038
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143012
143039
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143175,8 +143202,8 @@ function roundFloatPart(value) {
143175
143202
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/math.js
143176
143203
  /**
143177
143204
  * DevExtreme (esm/core/utils/math.js)
143178
- * Version: 24.2.7-build-25105-1935
143179
- * Build date: Tue Apr 15 2025
143205
+ * Version: 24.2.7
143206
+ * Build date: Mon Apr 28 2025
143180
143207
  *
143181
143208
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143182
143209
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143186,8 +143213,8 @@ function roundFloatPart(value) {
143186
143213
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/utils.js
143187
143214
  /**
143188
143215
  * DevExtreme (esm/common/core/localization/utils.js)
143189
- * Version: 24.2.7-build-25105-1935
143190
- * Build date: Tue Apr 15 2025
143216
+ * Version: 24.2.7
143217
+ * Build date: Mon Apr 28 2025
143191
143218
  *
143192
143219
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143193
143220
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143214,8 +143241,8 @@ function toFixed(value, precision) {
143214
143241
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/number.js
143215
143242
  /**
143216
143243
  * DevExtreme (esm/common/core/localization/ldml/number.js)
143217
- * Version: 24.2.7-build-25105-1935
143218
- * Build date: Tue Apr 15 2025
143244
+ * Version: 24.2.7
143245
+ * Build date: Mon Apr 28 2025
143219
143246
  *
143220
143247
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143221
143248
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143456,8 +143483,8 @@ function getFormat(formatter) {
143456
143483
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/currency.js
143457
143484
  /**
143458
143485
  * DevExtreme (esm/common/core/localization/currency.js)
143459
- * Version: 24.2.7-build-25105-1935
143460
- * Build date: Tue Apr 15 2025
143486
+ * Version: 24.2.7
143487
+ * Build date: Mon Apr 28 2025
143461
143488
  *
143462
143489
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143463
143490
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143489,8 +143516,8 @@ function getFormat(formatter) {
143489
143516
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/parent_locales.js
143490
143517
  /**
143491
143518
  * DevExtreme (esm/common/core/localization/cldr-data/parent_locales.js)
143492
- * Version: 24.2.7-build-25105-1935
143493
- * Build date: Tue Apr 15 2025
143519
+ * Version: 24.2.7
143520
+ * Build date: Mon Apr 28 2025
143494
143521
  *
143495
143522
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143496
143523
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143675,8 +143702,8 @@ function getFormat(formatter) {
143675
143702
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/parentLocale.js
143676
143703
  /**
143677
143704
  * DevExtreme (esm/common/core/localization/parentLocale.js)
143678
- * Version: 24.2.7-build-25105-1935
143679
- * Build date: Tue Apr 15 2025
143705
+ * Version: 24.2.7
143706
+ * Build date: Mon Apr 28 2025
143680
143707
  *
143681
143708
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143682
143709
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143693,8 +143720,8 @@ const PARENT_LOCALE_SEPARATOR = "-";
143693
143720
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/core.js
143694
143721
  /**
143695
143722
  * DevExtreme (esm/common/core/localization/core.js)
143696
- * Version: 24.2.7-build-25105-1935
143697
- * Build date: Tue Apr 15 2025
143723
+ * Version: 24.2.7
143724
+ * Build date: Mon Apr 28 2025
143698
143725
  *
143699
143726
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143700
143727
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143735,8 +143762,8 @@ const DEFAULT_LOCALE = "en";
143735
143762
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/open_xml_currency_format.js
143736
143763
  /**
143737
143764
  * DevExtreme (esm/common/core/localization/open_xml_currency_format.js)
143738
- * Version: 24.2.7-build-25105-1935
143739
- * Build date: Tue Apr 15 2025
143765
+ * Version: 24.2.7
143766
+ * Build date: Mon Apr 28 2025
143740
143767
  *
143741
143768
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143742
143769
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143778,8 +143805,8 @@ const DEFAULT_LOCALE = "en";
143778
143805
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/accounting_formats.js
143779
143806
  /**
143780
143807
  * DevExtreme (esm/common/core/localization/cldr-data/accounting_formats.js)
143781
- * Version: 24.2.7-build-25105-1935
143782
- * Build date: Tue Apr 15 2025
143808
+ * Version: 24.2.7
143809
+ * Build date: Mon Apr 28 2025
143783
143810
  *
143784
143811
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143785
143812
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -144365,8 +144392,8 @@ const DEFAULT_LOCALE = "en";
144365
144392
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/number.js
144366
144393
  /**
144367
144394
  * DevExtreme (esm/common/core/localization/intl/number.js)
144368
- * Version: 24.2.7-build-25105-1935
144369
- * Build date: Tue Apr 15 2025
144395
+ * Version: 24.2.7
144396
+ * Build date: Mon Apr 28 2025
144370
144397
  *
144371
144398
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
144372
144399
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -144486,8 +144513,8 @@ const getCurrencyFormatter = currency => new Intl.NumberFormat(core.locale(), {
144486
144513
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/number.js
144487
144514
  /**
144488
144515
  * DevExtreme (esm/common/core/localization/number.js)
144489
- * Version: 24.2.7-build-25105-1935
144490
- * Build date: Tue Apr 15 2025
144516
+ * Version: 24.2.7
144517
+ * Build date: Mon Apr 28 2025
144491
144518
  *
144492
144519
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
144493
144520
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -144792,8 +144819,8 @@ if (hasIntl) {
144792
144819
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.format.js
144793
144820
  /**
144794
144821
  * DevExtreme (esm/common/core/localization/ldml/date.format.js)
144795
- * Version: 24.2.7-build-25105-1935
144796
- * Build date: Tue Apr 15 2025
144822
+ * Version: 24.2.7
144823
+ * Build date: Mon Apr 28 2025
144797
144824
  *
144798
144825
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
144799
144826
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -144990,8 +145017,8 @@ const date_format_getFormat = function(formatter) {
144990
145017
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.parser.js
144991
145018
  /**
144992
145019
  * DevExtreme (esm/common/core/localization/ldml/date.parser.js)
144993
- * Version: 24.2.7-build-25105-1935
144994
- * Build date: Tue Apr 15 2025
145020
+ * Version: 24.2.7
145021
+ * Build date: Mon Apr 28 2025
144995
145022
  *
144996
145023
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
144997
145024
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -145309,8 +145336,8 @@ const getParser = function(format, dateParts) {
145309
145336
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/default_date_names.js
145310
145337
  /**
145311
145338
  * DevExtreme (esm/common/core/localization/default_date_names.js)
145312
- * Version: 24.2.7-build-25105-1935
145313
- * Build date: Tue Apr 15 2025
145339
+ * Version: 24.2.7
145340
+ * Build date: Mon Apr 28 2025
145314
145341
  *
145315
145342
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
145316
145343
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -145346,8 +145373,8 @@ const cutCaptions = (captions, format) => {
145346
145373
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/first_day_of_week_data.js
145347
145374
  /**
145348
145375
  * DevExtreme (esm/common/core/localization/cldr-data/first_day_of_week_data.js)
145349
- * Version: 24.2.7-build-25105-1935
145350
- * Build date: Tue Apr 15 2025
145376
+ * Version: 24.2.7
145377
+ * Build date: Mon Apr 28 2025
145351
145378
  *
145352
145379
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
145353
145380
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -145546,8 +145573,8 @@ const cutCaptions = (captions, format) => {
145546
145573
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/date.js
145547
145574
  /**
145548
145575
  * DevExtreme (esm/common/core/localization/intl/date.js)
145549
- * Version: 24.2.7-build-25105-1935
145550
- * Build date: Tue Apr 15 2025
145576
+ * Version: 24.2.7
145577
+ * Build date: Mon Apr 28 2025
145551
145578
  *
145552
145579
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
145553
145580
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -145864,8 +145891,8 @@ const monthNameStrategies = {
145864
145891
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/date.js
145865
145892
  /**
145866
145893
  * DevExtreme (esm/common/core/localization/date.js)
145867
- * Version: 24.2.7-build-25105-1935
145868
- * Build date: Tue Apr 15 2025
145894
+ * Version: 24.2.7
145895
+ * Build date: Mon Apr 28 2025
145869
145896
  *
145870
145897
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
145871
145898
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -147102,7 +147129,7 @@ class ClientRichEdit {
147102
147129
  this.contextMenuSettings = settings.contextMenuSettings;
147103
147130
  this.fullScreenHelper = new FullScreenHelper(element);
147104
147131
  if (true)
147105
- external_DevExpress_config_default()(JSON.parse(atob('eyJsaWNlbnNlS2V5IjoiZXdvZ0lDSm1iM0p0WVhRaU9pQXhMQW9nSUNKcGJuUmxjbTVoYkZWellXZGxTV1FpT2lBaVZqWlNVWEpJWkdZelVXRmlNbGQ1YldsWlpIZFlUU0lLZlE9PS53aEFZRnYvUVRDWlVKalVITm14M25DLzVnWE9aV09wQmFYbm9JMlg1MHJadTdrbm9Mc2lIRUs0REoyZWlQZi9tSEExRk9ySlltanFtSWdKWTZpQ2prSTVtYlVnN1N6ZEI0SUIvektuMTdlQlRUQit0YThVZDNzSThNK3NES2ZRd3NMNU5tdz09In0=')));
147132
+ external_DevExpress_config_default()(JSON.parse(atob('eyJsaWNlbnNlS2V5IjoiZXdvZ0lDSm1iM0p0WVhRaU9pQXhMQW9nSUNKcGJuUmxjbTVoYkZWellXZGxTV1FpT2lBaVVUTmhiM0ZJYzFKRU0zWllaVlZOVUdSWVNEZHhOU0lLZlE9PS5rMTA4KzRjbVFYSU96S1F1bUlqUE5oQkw0ejc5N0VSNlByVkkxcTB3V1QwbnkwUTVNZnkzRkJONlV5Zk9PV2p1eUJwaDR1ZllMM0llb0g4UHhNUU5wQUhUb3VUTTFFOHZaM01CM0lac2c1L1ZoOXhUNkg4TFJQSGZoQk00Rk5HUE5zNkY0dz09In0=')));
147106
147133
  this.prepareElement(element, settings);
147107
147134
  this.initDefaultFontsAndStyles();
147108
147135
  this.initBars(settings.ribbon, settings.fonts);