devexpress-richedit 24.2.7-build-25079-0118 → 24.2.7-build-25093-0104

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.
@@ -19657,7 +19657,7 @@ class ParagraphStyle extends StyleBase {
19657
19657
  }
19658
19658
  }
19659
19659
  ParagraphStyle.normalStyleName = "Normal";
19660
- ParagraphStyle.headingStyleName = "heading";
19660
+ ParagraphStyle.headingStyleName = "Heading";
19661
19661
  ParagraphStyle.tocStyleName = "toc";
19662
19662
  class TabProperties {
19663
19663
  constructor() {
@@ -92782,6 +92782,7 @@ class LayoutPageArea extends rectangle.Rectangle {
92782
92782
 
92783
92783
 
92784
92784
 
92785
+
92785
92786
  var LayoutRowStateFlags;
92786
92787
  (function (LayoutRowStateFlags) {
92787
92788
  LayoutRowStateFlags[LayoutRowStateFlags["NormallyEnd"] = 0] = "NormallyEnd";
@@ -92792,6 +92793,7 @@ var LayoutRowStateFlags;
92792
92793
  LayoutRowStateFlags[LayoutRowStateFlags["DocumentEnd"] = 16] = "DocumentEnd";
92793
92794
  LayoutRowStateFlags[LayoutRowStateFlags["CellTableEnd"] = 64] = "CellTableEnd";
92794
92795
  LayoutRowStateFlags[LayoutRowStateFlags["PageBreakBefore"] = 128] = "PageBreakBefore";
92796
+ LayoutRowStateFlags[LayoutRowStateFlags["InfinityWidth"] = 256] = "InfinityWidth";
92795
92797
  })(LayoutRowStateFlags || (LayoutRowStateFlags = {}));
92796
92798
  class layout_row_LayoutRow extends rectangle.Rectangle {
92797
92799
  get hasEffectToPageHeight() { return this.boxes.length != 1 || !this.boxes[0].isSectionBreakBox; }
@@ -92907,7 +92909,7 @@ class layout_row_LayoutRow extends rectangle.Rectangle {
92907
92909
  return lastBoxIndexWhatCanStrikeoutAndUnderline;
92908
92910
  }
92909
92911
  containsSpacesOnly() {
92910
- return this.boxes.length > 0 && utils_list.ListUtils.allOf(this.boxes, val => val.isWhitespace());
92912
+ return this.boxes.length > 0 && utils_list.ListUtils.allOf(this.boxes, val => val.isWhitespace() || val.getType() === LayoutBoxType.ParagraphMark);
92911
92913
  }
92912
92914
  }
92913
92915
  class LayoutRowWithIndex extends (/* unused pure expression or super */ null && (layout_row_LayoutRow)) {
@@ -94011,7 +94013,8 @@ class RowFormatterResult {
94011
94013
  return;
94012
94014
  this.rowFormatter.tabInfo.shiftBoxesAfterLastTab();
94013
94015
  const dontJustifyLinesEndingInSoftLineBreak = this.rowFormatter.manager.model.compatibilitySettings.dontJustifyLinesEndingInSoftLineBreak;
94014
- BoxAligner.align(this.row, this.rowFormatter.paragraphProps.alignment, currLogicRowEndPos, this.rowBoxIndexStart, dontJustifyLinesEndingInSoftLineBreak);
94016
+ if (!this.row.flags.get(LayoutRowStateFlags.InfinityWidth))
94017
+ BoxAligner.align(this.row, this.rowFormatter.paragraphProps.alignment, currLogicRowEndPos, this.rowBoxIndexStart, dontJustifyLinesEndingInSoftLineBreak);
94015
94018
  this.rowBoxIndexStart = this.row.boxes.length;
94016
94019
  }
94017
94020
  deleteSomeAnchorObjects(index, posToRestart) {
@@ -95711,6 +95714,7 @@ class RowEndedWithPageBreakState extends RowEndedWithParagraphMarkFormatterState
95711
95714
 
95712
95715
 
95713
95716
 
95717
+
95714
95718
  class RowTabInfo {
95715
95719
  get row() {
95716
95720
  return this.rowFormatter.row;
@@ -95781,9 +95785,10 @@ class RowTabInfo {
95781
95785
  if (tabXPosRelativePage > lastInterval.end) {
95782
95786
  if (lastInterval.end < this.rowFormatter.paragraphHorizontalBounds.end) {
95783
95787
  if (this.rowFormatter.manager.model.compatibilitySettings.compatibilityMode < CompatibilityMode.Word2013) {
95788
+ this.currInterval.avaliableWidth = Number.MAX_SAFE_INTEGER - this.currInterval.busyWidth;
95784
95789
  this.currInterval.length = Number.MAX_SAFE_INTEGER;
95785
- this.currInterval.avaliableWidth = Number.MAX_SAFE_INTEGER;
95786
95790
  this.row.width = Number.MAX_SAFE_INTEGER;
95791
+ this.row.flags.set(LayoutRowStateFlags.InfinityWidth, true);
95787
95792
  return this.addTabBox();
95788
95793
  }
95789
95794
  else if (tabBox.right < this.rowFormatter.paragraphHorizontalBounds.end) {
@@ -122503,6 +122508,44 @@ function createInnerItems(items) {
122503
122508
  }
122504
122509
  }
122505
122510
 
122511
+ ;// CONCATENATED MODULE: ./src/client/utils/focus-helper.ts
122512
+ class FocusHelper {
122513
+ static preventFocusOnClick(element) {
122514
+ return new FocusBlocker(element);
122515
+ }
122516
+ }
122517
+ class FocusBlocker {
122518
+ constructor(target) {
122519
+ this.target = target;
122520
+ this.onPointerDownBinded = this.onPointerDown.bind(this);
122521
+ this.addEventListeners(target);
122522
+ }
122523
+ addEventListeners(element) {
122524
+ element.addEventListener("pointerdown", this.onPointerDownBinded);
122525
+ }
122526
+ removeEventListeners(element) {
122527
+ element.removeEventListener("pointerdown", this.onPointerDownBinded);
122528
+ }
122529
+ onPointerDown(event) {
122530
+ for (const element of event.composedPath()) {
122531
+ if (!(element instanceof HTMLElement))
122532
+ continue;
122533
+ if (element === this.target) {
122534
+ event.preventDefault();
122535
+ break;
122536
+ }
122537
+ if (!this.target.contains(element) || element.tabIndex > -1)
122538
+ break;
122539
+ }
122540
+ }
122541
+ dispose() {
122542
+ if (this.target) {
122543
+ this.removeEventListeners(this.target);
122544
+ this.target = null;
122545
+ }
122546
+ }
122547
+ }
122548
+
122506
122549
  ;// CONCATENATED MODULE: ./src/client/bars/ribbon.ts
122507
122550
 
122508
122551
 
@@ -122512,6 +122555,7 @@ function createInnerItems(items) {
122512
122555
 
122513
122556
 
122514
122557
 
122558
+
122515
122559
  class ClientRibbonBar extends RibbonBarBase {
122516
122560
  constructor(ownerControl, ownerElement, apiRibbon, fonts) {
122517
122561
  var _a;
@@ -122520,6 +122564,7 @@ class ClientRibbonBar extends RibbonBarBase {
122520
122564
  this.ownerElement = ownerElement;
122521
122565
  this.init(apiRibbon, fonts);
122522
122566
  this.createControl((_a = apiRibbon.activeTabIndex) !== null && _a !== void 0 ? _a : 1);
122567
+ this.focusHandler = FocusHelper.preventFocusOnClick(this.ribbon.element);
122523
122568
  }
122524
122569
  updateContextItem(_commandKey) {
122525
122570
  }
@@ -122545,13 +122590,13 @@ class ClientRibbonBar extends RibbonBarBase {
122545
122590
  }
122546
122591
  dispose() {
122547
122592
  this.ribbon.dispose();
122593
+ this.focusHandler.dispose();
122548
122594
  }
122549
122595
  checkActivateHeaderFooter(_selection) {
122550
122596
  return false;
122551
122597
  }
122552
122598
  createControl(activeTabIndex) {
122553
122599
  const element = document.createElement('div');
122554
- element.tabIndex = 0;
122555
122600
  const firstChild = this.ownerElement.firstChild;
122556
122601
  if (firstChild)
122557
122602
  this.ownerElement.insertBefore(element, firstChild);
@@ -129509,7 +129554,6 @@ class LinkHeaderFooterToPreviousCommand extends HeaderFooterCommandBase {
129509
129554
 
129510
129555
 
129511
129556
 
129512
-
129513
129557
  class ApplyStyleCommand extends CommandBase {
129514
129558
  getState() {
129515
129559
  var interval = this.selection.lastSelectedInterval.clone();
@@ -129546,16 +129590,19 @@ class ApplyStyleCommand extends CommandBase {
129546
129590
  getStyleName(style) {
129547
129591
  return style.styleName;
129548
129592
  }
129593
+ DEPRECATEDConvertOptionsParameter(parameter) {
129594
+ return typeof parameter === 'string' ? { styleName: parameter } : parameter;
129595
+ }
129549
129596
  executeCore(state, options) {
129550
129597
  const parameter = options.param;
129551
- if (utils_string.StringUtils.isNullOrEmpty(parameter))
129598
+ if (utils_string.StringUtils.isNullOrEmpty(parameter.styleName))
129552
129599
  return false;
129553
- let interval = state.interval.clone();
129600
+ const subDocumentInterval = new SubDocumentInterval(options.subDocument, state.interval.clone());
129554
129601
  let executed = true;
129555
129602
  let isPresetStyle = false;
129556
129603
  this.history.beginTransaction();
129557
- if (StylesManager.isParagraphStyle(parameter) && state.paragraphStyleChangeEnabled) {
129558
- const styleName = StylesManager.getStyleNameWithoutPrefix(parameter);
129604
+ if (StylesManager.isParagraphStyle(parameter.styleName) && state.paragraphStyleChangeEnabled) {
129605
+ const styleName = StylesManager.getStyleNameWithoutPrefix(parameter.styleName);
129559
129606
  let paragraphStyle = this.control.modelManager.model.getParagraphStyleByName(styleName);
129560
129607
  if (!paragraphStyle) {
129561
129608
  const presetStyle = StylesManager.getPresetParagraphStyleByName(styleName);
@@ -129564,12 +129611,12 @@ class ApplyStyleCommand extends CommandBase {
129564
129611
  paragraphStyle = StylesManager.getPresetParagraphStyleByName(styleName).clone();
129565
129612
  isPresetStyle = true;
129566
129613
  }
129567
- this.applyParagraphStyle(interval, paragraphStyle, isPresetStyle, options.subDocument);
129614
+ this.applyParagraphStyle(subDocumentInterval, paragraphStyle, isPresetStyle, parameter.keepDirectFormatting);
129568
129615
  }
129569
- else if (!StylesManager.isParagraphStyle(parameter) && state.characterStyleChangeEnabled) {
129570
- const styleName = StylesManager.getStyleNameWithoutPrefix(parameter);
129571
- if (interval.length == 0)
129572
- interval = options.subDocument.getWholeWordInterval(interval.start);
129616
+ else if (!StylesManager.isParagraphStyle(parameter.styleName) && state.characterStyleChangeEnabled) {
129617
+ const styleName = StylesManager.getStyleNameWithoutPrefix(parameter.styleName);
129618
+ if (subDocumentInterval.interval.length == 0)
129619
+ subDocumentInterval.interval = options.subDocument.getWholeWordInterval(subDocumentInterval.interval.start);
129573
129620
  let characterStyle = this.control.modelManager.model.getCharacterStyleByName(styleName);
129574
129621
  if (!characterStyle) {
129575
129622
  const presetStyle = StylesManager.getPresetCharacterStyleByName(styleName);
@@ -129578,9 +129625,9 @@ class ApplyStyleCommand extends CommandBase {
129578
129625
  characterStyle = presetStyle.clone();
129579
129626
  isPresetStyle = true;
129580
129627
  }
129581
- if (interval.length == 0) {
129628
+ if (subDocumentInterval.interval.length == 0) {
129582
129629
  if (isPresetStyle) {
129583
- let fontInfo = characterStyle.maskedCharacterProperties.fontInfo;
129630
+ const fontInfo = characterStyle.maskedCharacterProperties.fontInfo;
129584
129631
  if (fontInfo && fontInfo.measurer === undefined)
129585
129632
  characterStyle.maskedCharacterProperties.fontInfo = this.control.modelManager.model.cache.fontInfoCache.getItemByName(fontInfo.name);
129586
129633
  }
@@ -129588,50 +129635,56 @@ class ApplyStyleCommand extends CommandBase {
129588
129635
  executed = false;
129589
129636
  }
129590
129637
  else
129591
- this.applyCharacterStyle(interval, characterStyle, isPresetStyle, options.subDocument);
129638
+ this.applyCharacterStyle(subDocumentInterval, characterStyle, isPresetStyle);
129592
129639
  }
129593
129640
  this.history.endTransaction();
129594
129641
  return executed;
129595
129642
  }
129596
- applyCharacterStyle(interval, style, isPresetStyle, subDocument) {
129643
+ applyCharacterStyle(subDocumentInterval, style, isPresetStyle) {
129597
129644
  if (ControlOptions.isEnabled(this.control.modelManager.richOptions.control.characterStyle)) {
129598
- this.modelManipulator.style.applyCharacterStyle(new SubDocumentInterval(subDocument, interval), isPresetStyle ? this.control.modelManager.model.stylesManager.addCharacterStyle(style) : style, false);
129645
+ const characterStyle = isPresetStyle ? this.control.modelManager.model.stylesManager.addCharacterStyle(style) : style;
129646
+ this.modelManipulator.style.applyCharacterStyle(subDocumentInterval, characterStyle, false);
129599
129647
  }
129600
129648
  }
129601
- applyParagraphStyle(interval, style, isPresetStyle, subDocument) {
129602
- var count = this.calculateAffectedParagraphCount(interval, subDocument);
129649
+ applyParagraphStyle(subDocumentInterval, style, isPresetStyle, keepDirectFormatting = false) {
129650
+ const count = this.calculateAffectedParagraphCount(subDocumentInterval);
129603
129651
  if (count > 0 && ControlOptions.isEnabled(this.control.modelManager.richOptions.control.paragraphStyle)) {
129604
- var paragraphIndex = search.SearchUtils.normedInterpolationIndexOf(subDocument.paragraphs, p => p.startLogPosition.value, interval.start);
129605
- for (var i = 0; i < count; i++) {
129606
- var paragraph = subDocument.paragraphs[paragraphIndex + i];
129607
- var paragraphInterval = new fixed.FixedInterval(paragraph.startLogPosition.value, paragraph.length);
129608
- var modelManipulator = this.modelManipulator;
129609
- this.history.addAndRedo(new ApplyParagraphStyleHistoryItem(modelManipulator, new SubDocumentInterval(subDocument, paragraphInterval), isPresetStyle ? modelManipulator.model.stylesManager.addParagraphStyle(style) : style));
129610
- this.history.addAndRedo(new ParagraphUseValueHistoryItem(modelManipulator, new SubDocumentInterval(subDocument, paragraphInterval), 0));
129611
- this.history.addAndRedo(new FontUseValueHistoryItem(modelManipulator, new SubDocumentInterval(subDocument, paragraphInterval), 0));
129612
- this.history.addAndRedo(new AddParagraphToListHistoryItem(this.modelManipulator, subDocument, paragraphIndex, NumberingList.NumberingListNotSettedIndex, -1));
129652
+ const { interval, subDocument } = subDocumentInterval;
129653
+ const paragraphs = subDocument.paragraphs;
129654
+ const paragraphIndex = search.SearchUtils.normedInterpolationIndexOf(paragraphs, p => p.startLogPosition.value, interval.start);
129655
+ for (let i = 0; i < count; i++) {
129656
+ const paragraph = paragraphs[paragraphIndex + i];
129657
+ const modelManipulator = this.modelManipulator;
129658
+ const paragraphSubDocumentInterval = new SubDocumentInterval(subDocument, paragraph.interval);
129659
+ style = isPresetStyle ? modelManipulator.model.stylesManager.addParagraphStyle(style) : style;
129660
+ this.history.addAndRedo(new ApplyParagraphStyleHistoryItem(modelManipulator, paragraphSubDocumentInterval, style));
129661
+ this.history.addAndRedo(new ParagraphUseValueHistoryItem(modelManipulator, paragraphSubDocumentInterval, 0));
129662
+ if (!keepDirectFormatting)
129663
+ this.history.addAndRedo(new FontUseValueHistoryItem(modelManipulator, paragraphSubDocumentInterval, 0));
129664
+ this.history.addAndRedo(new AddParagraphToListHistoryItem(modelManipulator, subDocument, paragraphIndex, NumberingList.NumberingListNotSettedIndex, -1));
129613
129665
  }
129614
129666
  }
129615
129667
  else
129616
- this.applyParagraphLinkedStyle(interval, style, isPresetStyle, subDocument);
129668
+ this.applyParagraphLinkedStyle(subDocumentInterval, style, isPresetStyle);
129617
129669
  }
129618
- applyParagraphLinkedStyle(interval, style, isPresetStyle, subDocument) {
129670
+ applyParagraphLinkedStyle(subDocumentInterval, style, isPresetStyle) {
129619
129671
  if (ControlOptions.isEnabled(this.control.modelManager.richOptions.control.characterStyle)) {
129620
129672
  if (!style.linkedStyle)
129621
- this.createCharacterStyle(style);
129622
- this.applyCharacterStyle(interval, style.linkedStyle, isPresetStyle, subDocument);
129673
+ this.addLinkedCharacterStyle(style);
129674
+ this.applyCharacterStyle(subDocumentInterval, style.linkedStyle, isPresetStyle);
129623
129675
  }
129624
129676
  }
129625
- createCharacterStyle(paragraphStyle) {
129626
- var style = new CharacterStyle(paragraphStyle.styleName + " Char", paragraphStyle.localizedName + " Char", false, false, false, false, paragraphStyle.maskedCharacterProperties);
129677
+ addLinkedCharacterStyle(paragraphStyle) {
129678
+ const style = new CharacterStyle(paragraphStyle.styleName + " Char", paragraphStyle.localizedName + " Char", false, false, false, false, paragraphStyle.maskedCharacterProperties);
129627
129679
  this.history.addAndRedo(new CreateStyleLinkHistoryItem(this.modelManipulator, style, paragraphStyle));
129628
129680
  }
129629
- calculateAffectedParagraphCount(interval, subDocument) {
129630
- var paragraphs = subDocument.getParagraphsByInterval(interval);
129681
+ calculateAffectedParagraphCount(subDocumentInterval) {
129682
+ const { interval, subDocument } = subDocumentInterval;
129683
+ const paragraphs = subDocument.getParagraphsByInterval(interval);
129631
129684
  if (paragraphs.length > 1)
129632
129685
  return paragraphs.length;
129633
- var paragraph = paragraphs[0];
129634
- var lastParagraphCharSelected = interval.length >= paragraph.length - 1;
129686
+ const paragraph = paragraphs[0];
129687
+ const lastParagraphCharSelected = interval.length >= paragraph.length - 1;
129635
129688
  if (interval.start === paragraph.startLogPosition.value && lastParagraphCharSelected || interval.length === 0)
129636
129689
  return 1;
129637
129690
  return 0;
@@ -136127,24 +136180,30 @@ class RemoveNextWordCommand extends RemoveWordCommandBase {
136127
136180
 
136128
136181
 
136129
136182
  class SetParagraphLevelCommandBase extends CommandBase {
136183
+ get commandManager() { return this.control.commandManager; }
136184
+ get modelManager() { return this.control.modelManager; }
136130
136185
  isEnabled() {
136131
- return super.isEnabled() && ControlOptions.isEnabled(this.control.modelManager.richOptions.control.paragraphFormatting);
136186
+ return super.isEnabled() && ControlOptions.isEnabled(this.modelManager.richOptions.control.paragraphFormatting);
136132
136187
  }
136133
136188
  getState() {
136134
136189
  const state = new SimpleCommandState(this.isEnabled());
136135
- state.value = this.control.commandManager.getCommand(RichEditClientCommand.ChangeHeadingLevel).getState().value == this.getLevel(null);
136190
+ state.value = this.commandManager.getCommand(RichEditClientCommand.ChangeHeadingLevel).getState().value == this.getLevel(null);
136136
136191
  return state;
136137
136192
  }
136138
136193
  executeCore(_state, options) {
136139
136194
  const level = this.getLevel(options.param);
136140
136195
  const styleName = level > 0 ? `${ParagraphStyle.headingStyleName} ${level}` : ParagraphStyle.normalStyleName;
136141
- let paragraphStyle = this.control.modelManager.model.getParagraphStyleByName(styleName);
136196
+ let paragraphStyle = this.modelManager.model.getParagraphStyleByName(styleName);
136142
136197
  if (!paragraphStyle)
136143
136198
  paragraphStyle = StylesManager.getPresetParagraphStyleByName(styleName);
136144
- if (paragraphStyle)
136145
- this.control.commandManager.getCommand(RichEditClientCommand.ChangeStyle).execute(this.control.commandManager.isPublicApiCall, new CommandSimpleOptions(this.control, StylesManager.paragraphPrefix + styleName));
136146
- else
136147
- this.control.commandManager.getCommand(RichEditClientCommand.ChangeHeadingLevel).execute(this.control.commandManager.isPublicApiCall, new CommandSimpleOptions(this.control, level));
136199
+ if (paragraphStyle) {
136200
+ const commandOptions = new CommandSimpleOptions(this.control, { styleName: StylesManager.paragraphPrefix + styleName, keepDirectFormatting: true });
136201
+ this.commandManager.getCommand(RichEditClientCommand.ChangeStyle).execute(this.commandManager.isPublicApiCall, commandOptions);
136202
+ }
136203
+ else {
136204
+ const commandOptions = new CommandSimpleOptions(this.control, level);
136205
+ this.commandManager.getCommand(RichEditClientCommand.ChangeHeadingLevel).execute(this.commandManager.isPublicApiCall, commandOptions);
136206
+ }
136148
136207
  return true;
136149
136208
  }
136150
136209
  getRelatedCommands() {
@@ -140811,8 +140870,8 @@ class DialogManager {
140811
140870
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_type.js
140812
140871
  /**
140813
140872
  * DevExtreme (esm/__internal/core/utils/m_type.js)
140814
- * Version: 24.2.7-build-25078-1935
140815
- * Build date: Wed Mar 19 2025
140873
+ * Version: 24.2.7-build-25091-1935
140874
+ * Build date: Tue Apr 01 2025
140816
140875
  *
140817
140876
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
140818
140877
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -140914,8 +140973,8 @@ const isEvent = function(object) {
140914
140973
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/type.js
140915
140974
  /**
140916
140975
  * DevExtreme (esm/core/utils/type.js)
140917
- * Version: 24.2.7-build-25078-1935
140918
- * Build date: Wed Mar 19 2025
140976
+ * Version: 24.2.7-build-25091-1935
140977
+ * Build date: Tue Apr 01 2025
140919
140978
  *
140920
140979
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
140921
140980
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -140925,8 +140984,8 @@ const isEvent = function(object) {
140925
140984
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_extend.js
140926
140985
  /**
140927
140986
  * DevExtreme (esm/__internal/core/utils/m_extend.js)
140928
- * Version: 24.2.7-build-25078-1935
140929
- * Build date: Wed Mar 19 2025
140987
+ * Version: 24.2.7-build-25091-1935
140988
+ * Build date: Tue Apr 01 2025
140930
140989
  *
140931
140990
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
140932
140991
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -140984,8 +141043,8 @@ const extend = function(target) {
140984
141043
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/extend.js
140985
141044
  /**
140986
141045
  * DevExtreme (esm/core/utils/extend.js)
140987
- * Version: 24.2.7-build-25078-1935
140988
- * Build date: Wed Mar 19 2025
141046
+ * Version: 24.2.7-build-25091-1935
141047
+ * Build date: Tue Apr 01 2025
140989
141048
  *
140990
141049
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
140991
141050
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -140995,8 +141054,8 @@ const extend = function(target) {
140995
141054
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_string.js
140996
141055
  /**
140997
141056
  * DevExtreme (esm/__internal/core/utils/m_string.js)
140998
- * Version: 24.2.7-build-25078-1935
140999
- * Build date: Wed Mar 19 2025
141057
+ * Version: 24.2.7-build-25091-1935
141058
+ * Build date: Tue Apr 01 2025
141000
141059
  *
141001
141060
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141002
141061
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141071,8 +141130,8 @@ const isEmpty = function() {
141071
141130
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/string.js
141072
141131
  /**
141073
141132
  * DevExtreme (esm/core/utils/string.js)
141074
- * Version: 24.2.7-build-25078-1935
141075
- * Build date: Wed Mar 19 2025
141133
+ * Version: 24.2.7-build-25091-1935
141134
+ * Build date: Tue Apr 01 2025
141076
141135
  *
141077
141136
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141078
141137
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141082,20 +141141,20 @@ const isEmpty = function() {
141082
141141
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/version.js
141083
141142
  /**
141084
141143
  * DevExtreme (esm/core/version.js)
141085
- * Version: 24.2.7-build-25078-1935
141086
- * Build date: Wed Mar 19 2025
141144
+ * Version: 24.2.7-build-25091-1935
141145
+ * Build date: Tue Apr 01 2025
141087
141146
  *
141088
141147
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141089
141148
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
141090
141149
  */
141091
141150
  const version = "24.2.6";
141092
- const fullVersion = "24.2.6.25078-1935";
141151
+ const fullVersion = "24.2.6.25091-1935";
141093
141152
 
141094
141153
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_console.js
141095
141154
  /**
141096
141155
  * DevExtreme (esm/__internal/core/utils/m_console.js)
141097
- * Version: 24.2.7-build-25078-1935
141098
- * Build date: Wed Mar 19 2025
141156
+ * Version: 24.2.7-build-25091-1935
141157
+ * Build date: Tue Apr 01 2025
141099
141158
  *
141100
141159
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141101
141160
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141135,8 +141194,8 @@ const debug = function() {
141135
141194
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_error.js
141136
141195
  /**
141137
141196
  * DevExtreme (esm/__internal/core/utils/m_error.js)
141138
- * Version: 24.2.7-build-25078-1935
141139
- * Build date: Wed Mar 19 2025
141197
+ * Version: 24.2.7-build-25091-1935
141198
+ * Build date: Tue Apr 01 2025
141140
141199
  *
141141
141200
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141142
141201
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141207,8 +141266,8 @@ function error(baseErrors, errors) {
141207
141266
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/error.js
141208
141267
  /**
141209
141268
  * DevExtreme (esm/core/utils/error.js)
141210
- * Version: 24.2.7-build-25078-1935
141211
- * Build date: Wed Mar 19 2025
141269
+ * Version: 24.2.7-build-25091-1935
141270
+ * Build date: Tue Apr 01 2025
141212
141271
  *
141213
141272
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141214
141273
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141219,8 +141278,8 @@ function error(baseErrors, errors) {
141219
141278
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_errors.js
141220
141279
  /**
141221
141280
  * DevExtreme (esm/__internal/core/m_errors.js)
141222
- * Version: 24.2.7-build-25078-1935
141223
- * Build date: Wed Mar 19 2025
141281
+ * Version: 24.2.7-build-25091-1935
141282
+ * Build date: Tue Apr 01 2025
141224
141283
  *
141225
141284
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141226
141285
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141286,8 +141345,8 @@ function error(baseErrors, errors) {
141286
141345
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/errors.js
141287
141346
  /**
141288
141347
  * DevExtreme (esm/core/errors.js)
141289
- * Version: 24.2.7-build-25078-1935
141290
- * Build date: Wed Mar 19 2025
141348
+ * Version: 24.2.7-build-25091-1935
141349
+ * Build date: Tue Apr 01 2025
141291
141350
  *
141292
141351
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141293
141352
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141298,8 +141357,8 @@ function error(baseErrors, errors) {
141298
141357
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_class.js
141299
141358
  /**
141300
141359
  * DevExtreme (esm/__internal/core/m_class.js)
141301
- * Version: 24.2.7-build-25078-1935
141302
- * Build date: Wed Mar 19 2025
141360
+ * Version: 24.2.7-build-25091-1935
141361
+ * Build date: Tue Apr 01 2025
141303
141362
  *
141304
141363
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141305
141364
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141432,8 +141491,8 @@ classImpl.abstract = m_class_abstract;
141432
141491
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/class.js
141433
141492
  /**
141434
141493
  * DevExtreme (esm/core/class.js)
141435
- * Version: 24.2.7-build-25078-1935
141436
- * Build date: Wed Mar 19 2025
141494
+ * Version: 24.2.7-build-25091-1935
141495
+ * Build date: Tue Apr 01 2025
141437
141496
  *
141438
141497
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141439
141498
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141444,8 +141503,8 @@ classImpl.abstract = m_class_abstract;
141444
141503
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_iterator.js
141445
141504
  /**
141446
141505
  * DevExtreme (esm/__internal/core/utils/m_iterator.js)
141447
- * Version: 24.2.7-build-25078-1935
141448
- * Build date: Wed Mar 19 2025
141506
+ * Version: 24.2.7-build-25091-1935
141507
+ * Build date: Tue Apr 01 2025
141449
141508
  *
141450
141509
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141451
141510
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141494,8 +141553,8 @@ const reverseEach = (array, callback) => {
141494
141553
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_dependency_injector.js
141495
141554
  /**
141496
141555
  * DevExtreme (esm/__internal/core/utils/m_dependency_injector.js)
141497
- * Version: 24.2.7-build-25078-1935
141498
- * Build date: Wed Mar 19 2025
141556
+ * Version: 24.2.7-build-25091-1935
141557
+ * Build date: Tue Apr 01 2025
141499
141558
  *
141500
141559
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141501
141560
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141544,8 +141603,8 @@ function injector(object) {
141544
141603
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/dependency_injector.js
141545
141604
  /**
141546
141605
  * DevExtreme (esm/core/utils/dependency_injector.js)
141547
- * Version: 24.2.7-build-25078-1935
141548
- * Build date: Wed Mar 19 2025
141606
+ * Version: 24.2.7-build-25091-1935
141607
+ * Build date: Tue Apr 01 2025
141549
141608
  *
141550
141609
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141551
141610
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141556,8 +141615,8 @@ function injector(object) {
141556
141615
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.formatter.js
141557
141616
  /**
141558
141617
  * DevExtreme (esm/common/core/localization/ldml/date.formatter.js)
141559
- * Version: 24.2.7-build-25078-1935
141560
- * Build date: Wed Mar 19 2025
141618
+ * Version: 24.2.7-build-25091-1935
141619
+ * Build date: Tue Apr 01 2025
141561
141620
  *
141562
141621
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141563
141622
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141710,8 +141769,8 @@ function _extends() {
141710
141769
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_config.js
141711
141770
  /**
141712
141771
  * DevExtreme (esm/__internal/core/m_config.js)
141713
- * Version: 24.2.7-build-25078-1935
141714
- * Build date: Wed Mar 19 2025
141772
+ * Version: 24.2.7-build-25091-1935
141773
+ * Build date: Tue Apr 01 2025
141715
141774
  *
141716
141775
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141717
141776
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141786,8 +141845,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
141786
141845
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/config.js
141787
141846
  /**
141788
141847
  * DevExtreme (esm/common/config.js)
141789
- * Version: 24.2.7-build-25078-1935
141790
- * Build date: Wed Mar 19 2025
141848
+ * Version: 24.2.7-build-25091-1935
141849
+ * Build date: Tue Apr 01 2025
141791
141850
  *
141792
141851
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141793
141852
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141798,8 +141857,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
141798
141857
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_guid.js
141799
141858
  /**
141800
141859
  * DevExtreme (esm/__internal/core/m_guid.js)
141801
- * Version: 24.2.7-build-25078-1935
141802
- * Build date: Wed Mar 19 2025
141860
+ * Version: 24.2.7-build-25091-1935
141861
+ * Build date: Tue Apr 01 2025
141803
141862
  *
141804
141863
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141805
141864
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141841,8 +141900,8 @@ const Guid = core_class.inherit({
141841
141900
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/guid.js
141842
141901
  /**
141843
141902
  * DevExtreme (esm/common/guid.js)
141844
- * Version: 24.2.7-build-25078-1935
141845
- * Build date: Wed Mar 19 2025
141903
+ * Version: 24.2.7-build-25091-1935
141904
+ * Build date: Tue Apr 01 2025
141846
141905
  *
141847
141906
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141848
141907
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141853,8 +141912,8 @@ const Guid = core_class.inherit({
141853
141912
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/templates/m_template_engine_registry.js
141854
141913
  /**
141855
141914
  * DevExtreme (esm/__internal/core/templates/m_template_engine_registry.js)
141856
- * Version: 24.2.7-build-25078-1935
141857
- * Build date: Wed Mar 19 2025
141915
+ * Version: 24.2.7-build-25091-1935
141916
+ * Build date: Tue Apr 01 2025
141858
141917
  *
141859
141918
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141860
141919
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141883,8 +141942,8 @@ function getCurrentTemplateEngine() {
141883
141942
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/templates/template_engine_registry.js
141884
141943
  /**
141885
141944
  * DevExtreme (esm/core/templates/template_engine_registry.js)
141886
- * Version: 24.2.7-build-25078-1935
141887
- * Build date: Wed Mar 19 2025
141945
+ * Version: 24.2.7-build-25091-1935
141946
+ * Build date: Tue Apr 01 2025
141888
141947
  *
141889
141948
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141890
141949
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141894,8 +141953,8 @@ function getCurrentTemplateEngine() {
141894
141953
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_set_template_engine.js
141895
141954
  /**
141896
141955
  * DevExtreme (esm/__internal/core/m_set_template_engine.js)
141897
- * Version: 24.2.7-build-25078-1935
141898
- * Build date: Wed Mar 19 2025
141956
+ * Version: 24.2.7-build-25091-1935
141957
+ * Build date: Tue Apr 01 2025
141899
141958
  *
141900
141959
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141901
141960
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141905,8 +141964,8 @@ function getCurrentTemplateEngine() {
141905
141964
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/set_template_engine.js
141906
141965
  /**
141907
141966
  * DevExtreme (esm/common/set_template_engine.js)
141908
- * Version: 24.2.7-build-25078-1935
141909
- * Build date: Wed Mar 19 2025
141967
+ * Version: 24.2.7-build-25091-1935
141968
+ * Build date: Tue Apr 01 2025
141910
141969
  *
141911
141970
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141912
141971
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141917,8 +141976,8 @@ function getCurrentTemplateEngine() {
141917
141976
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common.js
141918
141977
  /**
141919
141978
  * DevExtreme (esm/common.js)
141920
- * Version: 24.2.7-build-25078-1935
141921
- * Build date: Wed Mar 19 2025
141979
+ * Version: 24.2.7-build-25091-1935
141980
+ * Build date: Tue Apr 01 2025
141922
141981
  *
141923
141982
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141924
141983
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141931,8 +141990,8 @@ function getCurrentTemplateEngine() {
141931
141990
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/config.js
141932
141991
  /**
141933
141992
  * DevExtreme (esm/core/config.js)
141934
- * Version: 24.2.7-build-25078-1935
141935
- * Build date: Wed Mar 19 2025
141993
+ * Version: 24.2.7-build-25091-1935
141994
+ * Build date: Tue Apr 01 2025
141936
141995
  *
141937
141996
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141938
141997
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141943,8 +142002,8 @@ function getCurrentTemplateEngine() {
141943
142002
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/guid.js
141944
142003
  /**
141945
142004
  * DevExtreme (esm/core/guid.js)
141946
- * Version: 24.2.7-build-25078-1935
141947
- * Build date: Wed Mar 19 2025
142005
+ * Version: 24.2.7-build-25091-1935
142006
+ * Build date: Tue Apr 01 2025
141948
142007
  *
141949
142008
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141950
142009
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141955,8 +142014,8 @@ function getCurrentTemplateEngine() {
141955
142014
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/console.js
141956
142015
  /**
141957
142016
  * DevExtreme (esm/core/utils/console.js)
141958
- * Version: 24.2.7-build-25078-1935
141959
- * Build date: Wed Mar 19 2025
142017
+ * Version: 24.2.7-build-25091-1935
142018
+ * Build date: Tue Apr 01 2025
141960
142019
  *
141961
142020
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141962
142021
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141966,8 +142025,8 @@ function getCurrentTemplateEngine() {
141966
142025
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_variable_wrapper.js
141967
142026
  /**
141968
142027
  * DevExtreme (esm/__internal/core/utils/m_variable_wrapper.js)
141969
- * Version: 24.2.7-build-25078-1935
141970
- * Build date: Wed Mar 19 2025
142028
+ * Version: 24.2.7-build-25091-1935
142029
+ * Build date: Tue Apr 01 2025
141971
142030
  *
141972
142031
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141973
142032
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141996,8 +142055,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
141996
142055
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/variable_wrapper.js
141997
142056
  /**
141998
142057
  * DevExtreme (esm/core/utils/variable_wrapper.js)
141999
- * Version: 24.2.7-build-25078-1935
142000
- * Build date: Wed Mar 19 2025
142058
+ * Version: 24.2.7-build-25091-1935
142059
+ * Build date: Tue Apr 01 2025
142001
142060
  *
142002
142061
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142003
142062
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142008,8 +142067,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
142008
142067
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_object.js
142009
142068
  /**
142010
142069
  * DevExtreme (esm/__internal/core/utils/m_object.js)
142011
- * Version: 24.2.7-build-25078-1935
142012
- * Build date: Wed Mar 19 2025
142070
+ * Version: 24.2.7-build-25091-1935
142071
+ * Build date: Tue Apr 01 2025
142013
142072
  *
142014
142073
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142015
142074
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142109,8 +142168,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
142109
142168
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/object.js
142110
142169
  /**
142111
142170
  * DevExtreme (esm/core/utils/object.js)
142112
- * Version: 24.2.7-build-25078-1935
142113
- * Build date: Wed Mar 19 2025
142171
+ * Version: 24.2.7-build-25091-1935
142172
+ * Build date: Tue Apr 01 2025
142114
142173
  *
142115
142174
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142116
142175
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142120,8 +142179,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
142120
142179
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_data.js
142121
142180
  /**
142122
142181
  * DevExtreme (esm/__internal/core/utils/m_data.js)
142123
- * Version: 24.2.7-build-25078-1935
142124
- * Build date: Wed Mar 19 2025
142182
+ * Version: 24.2.7-build-25091-1935
142183
+ * Build date: Tue Apr 01 2025
142125
142184
  *
142126
142185
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142127
142186
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142317,8 +142376,8 @@ const toComparable = function(value, caseSensitive) {
142317
142376
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/data.js
142318
142377
  /**
142319
142378
  * DevExtreme (esm/core/utils/data.js)
142320
- * Version: 24.2.7-build-25078-1935
142321
- * Build date: Wed Mar 19 2025
142379
+ * Version: 24.2.7-build-25091-1935
142380
+ * Build date: Tue Apr 01 2025
142322
142381
  *
142323
142382
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142324
142383
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142328,8 +142387,8 @@ const toComparable = function(value, caseSensitive) {
142328
142387
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_callbacks.js
142329
142388
  /**
142330
142389
  * DevExtreme (esm/__internal/core/utils/m_callbacks.js)
142331
- * Version: 24.2.7-build-25078-1935
142332
- * Build date: Wed Mar 19 2025
142390
+ * Version: 24.2.7-build-25091-1935
142391
+ * Build date: Tue Apr 01 2025
142333
142392
  *
142334
142393
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142335
142394
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142424,8 +142483,8 @@ const Callbacks = function(options) {
142424
142483
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/callbacks.js
142425
142484
  /**
142426
142485
  * DevExtreme (esm/core/utils/callbacks.js)
142427
- * Version: 24.2.7-build-25078-1935
142428
- * Build date: Wed Mar 19 2025
142486
+ * Version: 24.2.7-build-25091-1935
142487
+ * Build date: Tue Apr 01 2025
142429
142488
  *
142430
142489
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142431
142490
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142436,8 +142495,8 @@ const Callbacks = function(options) {
142436
142495
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_deferred.js
142437
142496
  /**
142438
142497
  * DevExtreme (esm/__internal/core/utils/m_deferred.js)
142439
- * Version: 24.2.7-build-25078-1935
142440
- * Build date: Wed Mar 19 2025
142498
+ * Version: 24.2.7-build-25091-1935
142499
+ * Build date: Tue Apr 01 2025
142441
142500
  *
142442
142501
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142443
142502
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142602,8 +142661,8 @@ function when() {
142602
142661
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/deferred.js
142603
142662
  /**
142604
142663
  * DevExtreme (esm/core/utils/deferred.js)
142605
- * Version: 24.2.7-build-25078-1935
142606
- * Build date: Wed Mar 19 2025
142664
+ * Version: 24.2.7-build-25091-1935
142665
+ * Build date: Tue Apr 01 2025
142607
142666
  *
142608
142667
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142609
142668
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142613,8 +142672,8 @@ function when() {
142613
142672
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_common.js
142614
142673
  /**
142615
142674
  * DevExtreme (esm/__internal/core/utils/m_common.js)
142616
- * Version: 24.2.7-build-25078-1935
142617
- * Build date: Wed Mar 19 2025
142675
+ * Version: 24.2.7-build-25091-1935
142676
+ * Build date: Tue Apr 01 2025
142618
142677
  *
142619
142678
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142620
142679
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142909,8 +142968,8 @@ const equalByValue = function(value1, value2) {
142909
142968
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/common.js
142910
142969
  /**
142911
142970
  * DevExtreme (esm/core/utils/common.js)
142912
- * Version: 24.2.7-build-25078-1935
142913
- * Build date: Wed Mar 19 2025
142971
+ * Version: 24.2.7-build-25091-1935
142972
+ * Build date: Tue Apr 01 2025
142914
142973
  *
142915
142974
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142916
142975
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142920,8 +142979,8 @@ const equalByValue = function(value1, value2) {
142920
142979
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_math.js
142921
142980
  /**
142922
142981
  * DevExtreme (esm/__internal/core/utils/m_math.js)
142923
- * Version: 24.2.7-build-25078-1935
142924
- * Build date: Wed Mar 19 2025
142982
+ * Version: 24.2.7-build-25091-1935
142983
+ * Build date: Tue Apr 01 2025
142925
142984
  *
142926
142985
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142927
142986
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143090,8 +143149,8 @@ function roundFloatPart(value) {
143090
143149
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/math.js
143091
143150
  /**
143092
143151
  * DevExtreme (esm/core/utils/math.js)
143093
- * Version: 24.2.7-build-25078-1935
143094
- * Build date: Wed Mar 19 2025
143152
+ * Version: 24.2.7-build-25091-1935
143153
+ * Build date: Tue Apr 01 2025
143095
143154
  *
143096
143155
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143097
143156
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143101,8 +143160,8 @@ function roundFloatPart(value) {
143101
143160
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/utils.js
143102
143161
  /**
143103
143162
  * DevExtreme (esm/common/core/localization/utils.js)
143104
- * Version: 24.2.7-build-25078-1935
143105
- * Build date: Wed Mar 19 2025
143163
+ * Version: 24.2.7-build-25091-1935
143164
+ * Build date: Tue Apr 01 2025
143106
143165
  *
143107
143166
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143108
143167
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143129,8 +143188,8 @@ function toFixed(value, precision) {
143129
143188
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/number.js
143130
143189
  /**
143131
143190
  * DevExtreme (esm/common/core/localization/ldml/number.js)
143132
- * Version: 24.2.7-build-25078-1935
143133
- * Build date: Wed Mar 19 2025
143191
+ * Version: 24.2.7-build-25091-1935
143192
+ * Build date: Tue Apr 01 2025
143134
143193
  *
143135
143194
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143136
143195
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143371,8 +143430,8 @@ function getFormat(formatter) {
143371
143430
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/currency.js
143372
143431
  /**
143373
143432
  * DevExtreme (esm/common/core/localization/currency.js)
143374
- * Version: 24.2.7-build-25078-1935
143375
- * Build date: Wed Mar 19 2025
143433
+ * Version: 24.2.7-build-25091-1935
143434
+ * Build date: Tue Apr 01 2025
143376
143435
  *
143377
143436
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143378
143437
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143404,8 +143463,8 @@ function getFormat(formatter) {
143404
143463
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/parent_locales.js
143405
143464
  /**
143406
143465
  * DevExtreme (esm/common/core/localization/cldr-data/parent_locales.js)
143407
- * Version: 24.2.7-build-25078-1935
143408
- * Build date: Wed Mar 19 2025
143466
+ * Version: 24.2.7-build-25091-1935
143467
+ * Build date: Tue Apr 01 2025
143409
143468
  *
143410
143469
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143411
143470
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143590,8 +143649,8 @@ function getFormat(formatter) {
143590
143649
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/parentLocale.js
143591
143650
  /**
143592
143651
  * DevExtreme (esm/common/core/localization/parentLocale.js)
143593
- * Version: 24.2.7-build-25078-1935
143594
- * Build date: Wed Mar 19 2025
143652
+ * Version: 24.2.7-build-25091-1935
143653
+ * Build date: Tue Apr 01 2025
143595
143654
  *
143596
143655
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143597
143656
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143608,8 +143667,8 @@ const PARENT_LOCALE_SEPARATOR = "-";
143608
143667
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/core.js
143609
143668
  /**
143610
143669
  * DevExtreme (esm/common/core/localization/core.js)
143611
- * Version: 24.2.7-build-25078-1935
143612
- * Build date: Wed Mar 19 2025
143670
+ * Version: 24.2.7-build-25091-1935
143671
+ * Build date: Tue Apr 01 2025
143613
143672
  *
143614
143673
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143615
143674
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143650,8 +143709,8 @@ const DEFAULT_LOCALE = "en";
143650
143709
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/open_xml_currency_format.js
143651
143710
  /**
143652
143711
  * DevExtreme (esm/common/core/localization/open_xml_currency_format.js)
143653
- * Version: 24.2.7-build-25078-1935
143654
- * Build date: Wed Mar 19 2025
143712
+ * Version: 24.2.7-build-25091-1935
143713
+ * Build date: Tue Apr 01 2025
143655
143714
  *
143656
143715
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143657
143716
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143693,8 +143752,8 @@ const DEFAULT_LOCALE = "en";
143693
143752
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/accounting_formats.js
143694
143753
  /**
143695
143754
  * DevExtreme (esm/common/core/localization/cldr-data/accounting_formats.js)
143696
- * Version: 24.2.7-build-25078-1935
143697
- * Build date: Wed Mar 19 2025
143755
+ * Version: 24.2.7-build-25091-1935
143756
+ * Build date: Tue Apr 01 2025
143698
143757
  *
143699
143758
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143700
143759
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -144280,8 +144339,8 @@ const DEFAULT_LOCALE = "en";
144280
144339
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/number.js
144281
144340
  /**
144282
144341
  * DevExtreme (esm/common/core/localization/intl/number.js)
144283
- * Version: 24.2.7-build-25078-1935
144284
- * Build date: Wed Mar 19 2025
144342
+ * Version: 24.2.7-build-25091-1935
144343
+ * Build date: Tue Apr 01 2025
144285
144344
  *
144286
144345
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
144287
144346
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -144401,8 +144460,8 @@ const getCurrencyFormatter = currency => new Intl.NumberFormat(core.locale(), {
144401
144460
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/number.js
144402
144461
  /**
144403
144462
  * DevExtreme (esm/common/core/localization/number.js)
144404
- * Version: 24.2.7-build-25078-1935
144405
- * Build date: Wed Mar 19 2025
144463
+ * Version: 24.2.7-build-25091-1935
144464
+ * Build date: Tue Apr 01 2025
144406
144465
  *
144407
144466
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
144408
144467
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -144707,8 +144766,8 @@ if (hasIntl) {
144707
144766
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.format.js
144708
144767
  /**
144709
144768
  * DevExtreme (esm/common/core/localization/ldml/date.format.js)
144710
- * Version: 24.2.7-build-25078-1935
144711
- * Build date: Wed Mar 19 2025
144769
+ * Version: 24.2.7-build-25091-1935
144770
+ * Build date: Tue Apr 01 2025
144712
144771
  *
144713
144772
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
144714
144773
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -144905,8 +144964,8 @@ const date_format_getFormat = function(formatter) {
144905
144964
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.parser.js
144906
144965
  /**
144907
144966
  * DevExtreme (esm/common/core/localization/ldml/date.parser.js)
144908
- * Version: 24.2.7-build-25078-1935
144909
- * Build date: Wed Mar 19 2025
144967
+ * Version: 24.2.7-build-25091-1935
144968
+ * Build date: Tue Apr 01 2025
144910
144969
  *
144911
144970
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
144912
144971
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -145224,8 +145283,8 @@ const getParser = function(format, dateParts) {
145224
145283
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/default_date_names.js
145225
145284
  /**
145226
145285
  * DevExtreme (esm/common/core/localization/default_date_names.js)
145227
- * Version: 24.2.7-build-25078-1935
145228
- * Build date: Wed Mar 19 2025
145286
+ * Version: 24.2.7-build-25091-1935
145287
+ * Build date: Tue Apr 01 2025
145229
145288
  *
145230
145289
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
145231
145290
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -145261,8 +145320,8 @@ const cutCaptions = (captions, format) => {
145261
145320
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/first_day_of_week_data.js
145262
145321
  /**
145263
145322
  * DevExtreme (esm/common/core/localization/cldr-data/first_day_of_week_data.js)
145264
- * Version: 24.2.7-build-25078-1935
145265
- * Build date: Wed Mar 19 2025
145323
+ * Version: 24.2.7-build-25091-1935
145324
+ * Build date: Tue Apr 01 2025
145266
145325
  *
145267
145326
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
145268
145327
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -145461,8 +145520,8 @@ const cutCaptions = (captions, format) => {
145461
145520
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/date.js
145462
145521
  /**
145463
145522
  * DevExtreme (esm/common/core/localization/intl/date.js)
145464
- * Version: 24.2.7-build-25078-1935
145465
- * Build date: Wed Mar 19 2025
145523
+ * Version: 24.2.7-build-25091-1935
145524
+ * Build date: Tue Apr 01 2025
145466
145525
  *
145467
145526
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
145468
145527
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -145779,8 +145838,8 @@ const monthNameStrategies = {
145779
145838
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/date.js
145780
145839
  /**
145781
145840
  * DevExtreme (esm/common/core/localization/date.js)
145782
- * Version: 24.2.7-build-25078-1935
145783
- * Build date: Wed Mar 19 2025
145841
+ * Version: 24.2.7-build-25091-1935
145842
+ * Build date: Tue Apr 01 2025
145784
145843
  *
145785
145844
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
145786
145845
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/