devexpress-richedit 24.2.7-build-25093-0104 → 24.2.7-build-25100-0108

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.
@@ -107850,29 +107850,27 @@ ResizeBoxListener.directionToSource = {
107850
107850
  ;// CONCATENATED MODULE: ./src/common/utils/size-utils.ts
107851
107851
  class SizeUtils {
107852
107852
  static getWidthInfo(element) {
107853
- const offsetSize = SizeUtils.getOffsetWidth(element);
107854
- const style = getComputedStyle(element);
107855
- const inset = parseCssValue(style.borderLeftWidth)
107856
- + parseCssValue(style.borderRightWidth)
107857
- + parseCssValue(style.paddingLeft)
107858
- + parseCssValue(style.paddingRight);
107859
- const sizeWithScrollBar = offsetSize - inset;
107860
- const scrollBarSize = Math.round(sizeWithScrollBar) - element.clientWidth;
107861
- return new DimensionInfo(offsetSize, sizeWithScrollBar - scrollBarSize, scrollBarSize);
107853
+ const computedStyle = getComputedStyle(element);
107854
+ const offsetWidth = this.getOffsetWidth(element);
107855
+ const offsetWidthWithoutBorder = offsetWidth
107856
+ - parseCssValue(computedStyle.borderLeftWidth)
107857
+ - parseCssValue(computedStyle.borderRightWidth);
107858
+ const scrollbarWidth = offsetWidthWithoutBorder - element.clientWidth;
107859
+ const clientWidth = offsetWidthWithoutBorder - scrollbarWidth;
107860
+ return new DimensionInfo(offsetWidth, clientWidth, scrollbarWidth);
107862
107861
  }
107863
107862
  static getClientWidth(element) {
107864
107863
  return this.getWidthInfo(element).clientSize;
107865
107864
  }
107866
107865
  static getHeightInfo(element) {
107867
- const offsetSize = SizeUtils.getOffsetHeight(element);
107868
- const style = getComputedStyle(element);
107869
- const inset = parseCssValue(style.borderTopWidth)
107870
- + parseCssValue(style.borderBottomWidth)
107871
- + parseCssValue(style.paddingTop)
107872
- + parseCssValue(style.paddingBottom);
107873
- const sizeWithScrollBar = offsetSize - inset;
107874
- const scrollBarSize = Math.round(sizeWithScrollBar) - element.clientHeight;
107875
- return new DimensionInfo(offsetSize, sizeWithScrollBar - scrollBarSize, scrollBarSize);
107866
+ const computedStyle = getComputedStyle(element);
107867
+ const offsetHeight = this.getOffsetHeight(element);
107868
+ const offsetHeightWithoutBorder = offsetHeight
107869
+ - parseCssValue(computedStyle.borderTopWidth)
107870
+ - parseCssValue(computedStyle.borderBottomWidth);
107871
+ const scrollbarHeight = offsetHeightWithoutBorder - element.clientHeight;
107872
+ const clientHeight = offsetHeightWithoutBorder - scrollbarHeight;
107873
+ return new DimensionInfo(offsetHeight, clientHeight, scrollbarHeight);
107876
107874
  }
107877
107875
  static getClientHeight(element) {
107878
107876
  return this.getHeightInfo(element).clientSize;
@@ -108219,17 +108217,23 @@ class CanvasManager extends batch_updatable/* BatchUpdatableObject */.IS {
108219
108217
  onScrollIntervalTick() {
108220
108218
  const evtX = this.lastMousePosition.x;
108221
108219
  const evtY = this.lastMousePosition.y;
108222
- const inHorizontalArea = evtX >= this.canvasPosition.x && evtX <= this.canvasPosition.x + this.sizes.getVisibleAreaWidth(true);
108223
- const inVerticalArea = evtY >= this.canvasPosition.y && evtY <= this.canvasPosition.y + this.sizes.getVisibleAreaHeight(true);
108220
+ const inHorizontalArea = evtX >= this.canvasPosition.x && evtX <= this.canvasPosition.x + this.sizes.getVisibleAreaWidth(false);
108221
+ const inVerticalArea = evtY >= this.canvasPosition.y && evtY <= this.canvasPosition.y + this.sizes.getVisibleAreaHeight(false);
108224
108222
  if (!inHorizontalArea && !inVerticalArea)
108225
108223
  return;
108224
+ const yOffsetWithoutScrollbar = this.canvasPosition.y + this.sizes.getVisibleAreaHeight(false) - evtY;
108225
+ const yOffsetWithScrollbar = this.canvasPosition.y + this.sizes.getVisibleAreaHeight(true) - evtY;
108226
+ const outsideHorizontalScrollbar = yOffsetWithoutScrollbar > 0 || yOffsetWithScrollbar < 0;
108226
108227
  if (inHorizontalArea && evtY - this.canvasPosition.y <= AUTOSCROLL_AREA_SIZE)
108227
108228
  this.viewManager.canvas.scrollTop -= AUTOSCROLL_STEP;
108228
- else if (inHorizontalArea && this.canvasPosition.y + this.sizes.getVisibleAreaHeight(true) - evtY <= AUTOSCROLL_AREA_SIZE)
108229
+ else if (inHorizontalArea && yOffsetWithoutScrollbar <= AUTOSCROLL_AREA_SIZE && outsideHorizontalScrollbar)
108229
108230
  this.viewManager.canvas.scrollTop += AUTOSCROLL_STEP;
108231
+ const xOffsetWithoutScrollbar = this.canvasPosition.x + this.sizes.getVisibleAreaWidth(false) - evtX;
108232
+ const xOffsetWithScrollbar = this.canvasPosition.x + this.sizes.getVisibleAreaWidth(true) - evtX;
108233
+ const outsideVerticalScrollbar = xOffsetWithoutScrollbar > 0 || xOffsetWithScrollbar < 0;
108230
108234
  if (inVerticalArea && evtX - this.canvasPosition.x <= AUTOSCROLL_AREA_SIZE)
108231
108235
  this.viewManager.canvas.scrollLeft -= AUTOSCROLL_STEP;
108232
- else if (inVerticalArea && this.canvasPosition.x + this.sizes.getVisibleAreaWidth(true) - evtX <= AUTOSCROLL_AREA_SIZE)
108236
+ else if (inVerticalArea && xOffsetWithoutScrollbar <= AUTOSCROLL_AREA_SIZE && outsideVerticalScrollbar)
108233
108237
  this.viewManager.canvas.scrollLeft += AUTOSCROLL_STEP;
108234
108238
  }
108235
108239
  static getCursorClassName(pointer) {
@@ -140870,8 +140874,8 @@ class DialogManager {
140870
140874
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_type.js
140871
140875
  /**
140872
140876
  * DevExtreme (esm/__internal/core/utils/m_type.js)
140873
- * Version: 24.2.7-build-25091-1935
140874
- * Build date: Tue Apr 01 2025
140877
+ * Version: 24.2.7-build-25098-1935
140878
+ * Build date: Tue Apr 08 2025
140875
140879
  *
140876
140880
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
140877
140881
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -140973,8 +140977,8 @@ const isEvent = function(object) {
140973
140977
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/type.js
140974
140978
  /**
140975
140979
  * DevExtreme (esm/core/utils/type.js)
140976
- * Version: 24.2.7-build-25091-1935
140977
- * Build date: Tue Apr 01 2025
140980
+ * Version: 24.2.7-build-25098-1935
140981
+ * Build date: Tue Apr 08 2025
140978
140982
  *
140979
140983
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
140980
140984
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -140984,8 +140988,8 @@ const isEvent = function(object) {
140984
140988
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_extend.js
140985
140989
  /**
140986
140990
  * DevExtreme (esm/__internal/core/utils/m_extend.js)
140987
- * Version: 24.2.7-build-25091-1935
140988
- * Build date: Tue Apr 01 2025
140991
+ * Version: 24.2.7-build-25098-1935
140992
+ * Build date: Tue Apr 08 2025
140989
140993
  *
140990
140994
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
140991
140995
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141043,8 +141047,8 @@ const extend = function(target) {
141043
141047
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/extend.js
141044
141048
  /**
141045
141049
  * DevExtreme (esm/core/utils/extend.js)
141046
- * Version: 24.2.7-build-25091-1935
141047
- * Build date: Tue Apr 01 2025
141050
+ * Version: 24.2.7-build-25098-1935
141051
+ * Build date: Tue Apr 08 2025
141048
141052
  *
141049
141053
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141050
141054
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141054,8 +141058,8 @@ const extend = function(target) {
141054
141058
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_string.js
141055
141059
  /**
141056
141060
  * DevExtreme (esm/__internal/core/utils/m_string.js)
141057
- * Version: 24.2.7-build-25091-1935
141058
- * Build date: Tue Apr 01 2025
141061
+ * Version: 24.2.7-build-25098-1935
141062
+ * Build date: Tue Apr 08 2025
141059
141063
  *
141060
141064
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141061
141065
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141130,8 +141134,8 @@ const isEmpty = function() {
141130
141134
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/string.js
141131
141135
  /**
141132
141136
  * DevExtreme (esm/core/utils/string.js)
141133
- * Version: 24.2.7-build-25091-1935
141134
- * Build date: Tue Apr 01 2025
141137
+ * Version: 24.2.7-build-25098-1935
141138
+ * Build date: Tue Apr 08 2025
141135
141139
  *
141136
141140
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141137
141141
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141141,20 +141145,20 @@ const isEmpty = function() {
141141
141145
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/version.js
141142
141146
  /**
141143
141147
  * DevExtreme (esm/core/version.js)
141144
- * Version: 24.2.7-build-25091-1935
141145
- * Build date: Tue Apr 01 2025
141148
+ * Version: 24.2.7-build-25098-1935
141149
+ * Build date: Tue Apr 08 2025
141146
141150
  *
141147
141151
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141148
141152
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
141149
141153
  */
141150
141154
  const version = "24.2.6";
141151
- const fullVersion = "24.2.6.25091-1935";
141155
+ const fullVersion = "24.2.6.25098-1935";
141152
141156
 
141153
141157
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_console.js
141154
141158
  /**
141155
141159
  * DevExtreme (esm/__internal/core/utils/m_console.js)
141156
- * Version: 24.2.7-build-25091-1935
141157
- * Build date: Tue Apr 01 2025
141160
+ * Version: 24.2.7-build-25098-1935
141161
+ * Build date: Tue Apr 08 2025
141158
141162
  *
141159
141163
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141160
141164
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141194,8 +141198,8 @@ const debug = function() {
141194
141198
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_error.js
141195
141199
  /**
141196
141200
  * DevExtreme (esm/__internal/core/utils/m_error.js)
141197
- * Version: 24.2.7-build-25091-1935
141198
- * Build date: Tue Apr 01 2025
141201
+ * Version: 24.2.7-build-25098-1935
141202
+ * Build date: Tue Apr 08 2025
141199
141203
  *
141200
141204
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141201
141205
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141266,8 +141270,8 @@ function error(baseErrors, errors) {
141266
141270
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/error.js
141267
141271
  /**
141268
141272
  * DevExtreme (esm/core/utils/error.js)
141269
- * Version: 24.2.7-build-25091-1935
141270
- * Build date: Tue Apr 01 2025
141273
+ * Version: 24.2.7-build-25098-1935
141274
+ * Build date: Tue Apr 08 2025
141271
141275
  *
141272
141276
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141273
141277
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141278,8 +141282,8 @@ function error(baseErrors, errors) {
141278
141282
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_errors.js
141279
141283
  /**
141280
141284
  * DevExtreme (esm/__internal/core/m_errors.js)
141281
- * Version: 24.2.7-build-25091-1935
141282
- * Build date: Tue Apr 01 2025
141285
+ * Version: 24.2.7-build-25098-1935
141286
+ * Build date: Tue Apr 08 2025
141283
141287
  *
141284
141288
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141285
141289
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141345,8 +141349,8 @@ function error(baseErrors, errors) {
141345
141349
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/errors.js
141346
141350
  /**
141347
141351
  * DevExtreme (esm/core/errors.js)
141348
- * Version: 24.2.7-build-25091-1935
141349
- * Build date: Tue Apr 01 2025
141352
+ * Version: 24.2.7-build-25098-1935
141353
+ * Build date: Tue Apr 08 2025
141350
141354
  *
141351
141355
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141352
141356
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141357,8 +141361,8 @@ function error(baseErrors, errors) {
141357
141361
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_class.js
141358
141362
  /**
141359
141363
  * DevExtreme (esm/__internal/core/m_class.js)
141360
- * Version: 24.2.7-build-25091-1935
141361
- * Build date: Tue Apr 01 2025
141364
+ * Version: 24.2.7-build-25098-1935
141365
+ * Build date: Tue Apr 08 2025
141362
141366
  *
141363
141367
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141364
141368
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141491,8 +141495,8 @@ classImpl.abstract = m_class_abstract;
141491
141495
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/class.js
141492
141496
  /**
141493
141497
  * DevExtreme (esm/core/class.js)
141494
- * Version: 24.2.7-build-25091-1935
141495
- * Build date: Tue Apr 01 2025
141498
+ * Version: 24.2.7-build-25098-1935
141499
+ * Build date: Tue Apr 08 2025
141496
141500
  *
141497
141501
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141498
141502
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141503,8 +141507,8 @@ classImpl.abstract = m_class_abstract;
141503
141507
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_iterator.js
141504
141508
  /**
141505
141509
  * DevExtreme (esm/__internal/core/utils/m_iterator.js)
141506
- * Version: 24.2.7-build-25091-1935
141507
- * Build date: Tue Apr 01 2025
141510
+ * Version: 24.2.7-build-25098-1935
141511
+ * Build date: Tue Apr 08 2025
141508
141512
  *
141509
141513
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141510
141514
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141553,8 +141557,8 @@ const reverseEach = (array, callback) => {
141553
141557
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_dependency_injector.js
141554
141558
  /**
141555
141559
  * DevExtreme (esm/__internal/core/utils/m_dependency_injector.js)
141556
- * Version: 24.2.7-build-25091-1935
141557
- * Build date: Tue Apr 01 2025
141560
+ * Version: 24.2.7-build-25098-1935
141561
+ * Build date: Tue Apr 08 2025
141558
141562
  *
141559
141563
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141560
141564
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141603,8 +141607,8 @@ function injector(object) {
141603
141607
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/dependency_injector.js
141604
141608
  /**
141605
141609
  * DevExtreme (esm/core/utils/dependency_injector.js)
141606
- * Version: 24.2.7-build-25091-1935
141607
- * Build date: Tue Apr 01 2025
141610
+ * Version: 24.2.7-build-25098-1935
141611
+ * Build date: Tue Apr 08 2025
141608
141612
  *
141609
141613
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141610
141614
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141615,8 +141619,8 @@ function injector(object) {
141615
141619
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.formatter.js
141616
141620
  /**
141617
141621
  * DevExtreme (esm/common/core/localization/ldml/date.formatter.js)
141618
- * Version: 24.2.7-build-25091-1935
141619
- * Build date: Tue Apr 01 2025
141622
+ * Version: 24.2.7-build-25098-1935
141623
+ * Build date: Tue Apr 08 2025
141620
141624
  *
141621
141625
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141622
141626
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141769,8 +141773,8 @@ function _extends() {
141769
141773
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_config.js
141770
141774
  /**
141771
141775
  * DevExtreme (esm/__internal/core/m_config.js)
141772
- * Version: 24.2.7-build-25091-1935
141773
- * Build date: Tue Apr 01 2025
141776
+ * Version: 24.2.7-build-25098-1935
141777
+ * Build date: Tue Apr 08 2025
141774
141778
  *
141775
141779
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141776
141780
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141845,8 +141849,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
141845
141849
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/config.js
141846
141850
  /**
141847
141851
  * DevExtreme (esm/common/config.js)
141848
- * Version: 24.2.7-build-25091-1935
141849
- * Build date: Tue Apr 01 2025
141852
+ * Version: 24.2.7-build-25098-1935
141853
+ * Build date: Tue Apr 08 2025
141850
141854
  *
141851
141855
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141852
141856
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141857,8 +141861,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
141857
141861
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_guid.js
141858
141862
  /**
141859
141863
  * DevExtreme (esm/__internal/core/m_guid.js)
141860
- * Version: 24.2.7-build-25091-1935
141861
- * Build date: Tue Apr 01 2025
141864
+ * Version: 24.2.7-build-25098-1935
141865
+ * Build date: Tue Apr 08 2025
141862
141866
  *
141863
141867
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141864
141868
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141900,8 +141904,8 @@ const Guid = core_class.inherit({
141900
141904
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/guid.js
141901
141905
  /**
141902
141906
  * DevExtreme (esm/common/guid.js)
141903
- * Version: 24.2.7-build-25091-1935
141904
- * Build date: Tue Apr 01 2025
141907
+ * Version: 24.2.7-build-25098-1935
141908
+ * Build date: Tue Apr 08 2025
141905
141909
  *
141906
141910
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141907
141911
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141912,8 +141916,8 @@ const Guid = core_class.inherit({
141912
141916
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/templates/m_template_engine_registry.js
141913
141917
  /**
141914
141918
  * DevExtreme (esm/__internal/core/templates/m_template_engine_registry.js)
141915
- * Version: 24.2.7-build-25091-1935
141916
- * Build date: Tue Apr 01 2025
141919
+ * Version: 24.2.7-build-25098-1935
141920
+ * Build date: Tue Apr 08 2025
141917
141921
  *
141918
141922
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141919
141923
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141942,8 +141946,8 @@ function getCurrentTemplateEngine() {
141942
141946
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/templates/template_engine_registry.js
141943
141947
  /**
141944
141948
  * DevExtreme (esm/core/templates/template_engine_registry.js)
141945
- * Version: 24.2.7-build-25091-1935
141946
- * Build date: Tue Apr 01 2025
141949
+ * Version: 24.2.7-build-25098-1935
141950
+ * Build date: Tue Apr 08 2025
141947
141951
  *
141948
141952
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141949
141953
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141953,8 +141957,8 @@ function getCurrentTemplateEngine() {
141953
141957
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_set_template_engine.js
141954
141958
  /**
141955
141959
  * DevExtreme (esm/__internal/core/m_set_template_engine.js)
141956
- * Version: 24.2.7-build-25091-1935
141957
- * Build date: Tue Apr 01 2025
141960
+ * Version: 24.2.7-build-25098-1935
141961
+ * Build date: Tue Apr 08 2025
141958
141962
  *
141959
141963
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141960
141964
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141964,8 +141968,8 @@ function getCurrentTemplateEngine() {
141964
141968
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/set_template_engine.js
141965
141969
  /**
141966
141970
  * DevExtreme (esm/common/set_template_engine.js)
141967
- * Version: 24.2.7-build-25091-1935
141968
- * Build date: Tue Apr 01 2025
141971
+ * Version: 24.2.7-build-25098-1935
141972
+ * Build date: Tue Apr 08 2025
141969
141973
  *
141970
141974
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141971
141975
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141976,8 +141980,8 @@ function getCurrentTemplateEngine() {
141976
141980
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common.js
141977
141981
  /**
141978
141982
  * DevExtreme (esm/common.js)
141979
- * Version: 24.2.7-build-25091-1935
141980
- * Build date: Tue Apr 01 2025
141983
+ * Version: 24.2.7-build-25098-1935
141984
+ * Build date: Tue Apr 08 2025
141981
141985
  *
141982
141986
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141983
141987
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -141990,8 +141994,8 @@ function getCurrentTemplateEngine() {
141990
141994
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/config.js
141991
141995
  /**
141992
141996
  * DevExtreme (esm/core/config.js)
141993
- * Version: 24.2.7-build-25091-1935
141994
- * Build date: Tue Apr 01 2025
141997
+ * Version: 24.2.7-build-25098-1935
141998
+ * Build date: Tue Apr 08 2025
141995
141999
  *
141996
142000
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
141997
142001
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142002,8 +142006,8 @@ function getCurrentTemplateEngine() {
142002
142006
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/guid.js
142003
142007
  /**
142004
142008
  * DevExtreme (esm/core/guid.js)
142005
- * Version: 24.2.7-build-25091-1935
142006
- * Build date: Tue Apr 01 2025
142009
+ * Version: 24.2.7-build-25098-1935
142010
+ * Build date: Tue Apr 08 2025
142007
142011
  *
142008
142012
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142009
142013
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142014,8 +142018,8 @@ function getCurrentTemplateEngine() {
142014
142018
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/console.js
142015
142019
  /**
142016
142020
  * DevExtreme (esm/core/utils/console.js)
142017
- * Version: 24.2.7-build-25091-1935
142018
- * Build date: Tue Apr 01 2025
142021
+ * Version: 24.2.7-build-25098-1935
142022
+ * Build date: Tue Apr 08 2025
142019
142023
  *
142020
142024
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142021
142025
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142025,8 +142029,8 @@ function getCurrentTemplateEngine() {
142025
142029
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_variable_wrapper.js
142026
142030
  /**
142027
142031
  * DevExtreme (esm/__internal/core/utils/m_variable_wrapper.js)
142028
- * Version: 24.2.7-build-25091-1935
142029
- * Build date: Tue Apr 01 2025
142032
+ * Version: 24.2.7-build-25098-1935
142033
+ * Build date: Tue Apr 08 2025
142030
142034
  *
142031
142035
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142032
142036
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142055,8 +142059,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
142055
142059
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/variable_wrapper.js
142056
142060
  /**
142057
142061
  * DevExtreme (esm/core/utils/variable_wrapper.js)
142058
- * Version: 24.2.7-build-25091-1935
142059
- * Build date: Tue Apr 01 2025
142062
+ * Version: 24.2.7-build-25098-1935
142063
+ * Build date: Tue Apr 08 2025
142060
142064
  *
142061
142065
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142062
142066
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142067,8 +142071,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
142067
142071
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_object.js
142068
142072
  /**
142069
142073
  * DevExtreme (esm/__internal/core/utils/m_object.js)
142070
- * Version: 24.2.7-build-25091-1935
142071
- * Build date: Tue Apr 01 2025
142074
+ * Version: 24.2.7-build-25098-1935
142075
+ * Build date: Tue Apr 08 2025
142072
142076
  *
142073
142077
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142074
142078
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142168,8 +142172,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
142168
142172
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/object.js
142169
142173
  /**
142170
142174
  * DevExtreme (esm/core/utils/object.js)
142171
- * Version: 24.2.7-build-25091-1935
142172
- * Build date: Tue Apr 01 2025
142175
+ * Version: 24.2.7-build-25098-1935
142176
+ * Build date: Tue Apr 08 2025
142173
142177
  *
142174
142178
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142175
142179
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142179,8 +142183,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
142179
142183
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_data.js
142180
142184
  /**
142181
142185
  * DevExtreme (esm/__internal/core/utils/m_data.js)
142182
- * Version: 24.2.7-build-25091-1935
142183
- * Build date: Tue Apr 01 2025
142186
+ * Version: 24.2.7-build-25098-1935
142187
+ * Build date: Tue Apr 08 2025
142184
142188
  *
142185
142189
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142186
142190
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142376,8 +142380,8 @@ const toComparable = function(value, caseSensitive) {
142376
142380
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/data.js
142377
142381
  /**
142378
142382
  * DevExtreme (esm/core/utils/data.js)
142379
- * Version: 24.2.7-build-25091-1935
142380
- * Build date: Tue Apr 01 2025
142383
+ * Version: 24.2.7-build-25098-1935
142384
+ * Build date: Tue Apr 08 2025
142381
142385
  *
142382
142386
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142383
142387
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142387,8 +142391,8 @@ const toComparable = function(value, caseSensitive) {
142387
142391
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_callbacks.js
142388
142392
  /**
142389
142393
  * DevExtreme (esm/__internal/core/utils/m_callbacks.js)
142390
- * Version: 24.2.7-build-25091-1935
142391
- * Build date: Tue Apr 01 2025
142394
+ * Version: 24.2.7-build-25098-1935
142395
+ * Build date: Tue Apr 08 2025
142392
142396
  *
142393
142397
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142394
142398
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142483,8 +142487,8 @@ const Callbacks = function(options) {
142483
142487
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/callbacks.js
142484
142488
  /**
142485
142489
  * DevExtreme (esm/core/utils/callbacks.js)
142486
- * Version: 24.2.7-build-25091-1935
142487
- * Build date: Tue Apr 01 2025
142490
+ * Version: 24.2.7-build-25098-1935
142491
+ * Build date: Tue Apr 08 2025
142488
142492
  *
142489
142493
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142490
142494
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142495,8 +142499,8 @@ const Callbacks = function(options) {
142495
142499
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_deferred.js
142496
142500
  /**
142497
142501
  * DevExtreme (esm/__internal/core/utils/m_deferred.js)
142498
- * Version: 24.2.7-build-25091-1935
142499
- * Build date: Tue Apr 01 2025
142502
+ * Version: 24.2.7-build-25098-1935
142503
+ * Build date: Tue Apr 08 2025
142500
142504
  *
142501
142505
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142502
142506
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142661,8 +142665,8 @@ function when() {
142661
142665
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/deferred.js
142662
142666
  /**
142663
142667
  * DevExtreme (esm/core/utils/deferred.js)
142664
- * Version: 24.2.7-build-25091-1935
142665
- * Build date: Tue Apr 01 2025
142668
+ * Version: 24.2.7-build-25098-1935
142669
+ * Build date: Tue Apr 08 2025
142666
142670
  *
142667
142671
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142668
142672
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142672,8 +142676,8 @@ function when() {
142672
142676
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_common.js
142673
142677
  /**
142674
142678
  * DevExtreme (esm/__internal/core/utils/m_common.js)
142675
- * Version: 24.2.7-build-25091-1935
142676
- * Build date: Tue Apr 01 2025
142679
+ * Version: 24.2.7-build-25098-1935
142680
+ * Build date: Tue Apr 08 2025
142677
142681
  *
142678
142682
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142679
142683
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142968,8 +142972,8 @@ const equalByValue = function(value1, value2) {
142968
142972
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/common.js
142969
142973
  /**
142970
142974
  * DevExtreme (esm/core/utils/common.js)
142971
- * Version: 24.2.7-build-25091-1935
142972
- * Build date: Tue Apr 01 2025
142975
+ * Version: 24.2.7-build-25098-1935
142976
+ * Build date: Tue Apr 08 2025
142973
142977
  *
142974
142978
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142975
142979
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -142979,8 +142983,8 @@ const equalByValue = function(value1, value2) {
142979
142983
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_math.js
142980
142984
  /**
142981
142985
  * DevExtreme (esm/__internal/core/utils/m_math.js)
142982
- * Version: 24.2.7-build-25091-1935
142983
- * Build date: Tue Apr 01 2025
142986
+ * Version: 24.2.7-build-25098-1935
142987
+ * Build date: Tue Apr 08 2025
142984
142988
  *
142985
142989
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
142986
142990
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143149,8 +143153,8 @@ function roundFloatPart(value) {
143149
143153
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/math.js
143150
143154
  /**
143151
143155
  * DevExtreme (esm/core/utils/math.js)
143152
- * Version: 24.2.7-build-25091-1935
143153
- * Build date: Tue Apr 01 2025
143156
+ * Version: 24.2.7-build-25098-1935
143157
+ * Build date: Tue Apr 08 2025
143154
143158
  *
143155
143159
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143156
143160
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143160,8 +143164,8 @@ function roundFloatPart(value) {
143160
143164
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/utils.js
143161
143165
  /**
143162
143166
  * DevExtreme (esm/common/core/localization/utils.js)
143163
- * Version: 24.2.7-build-25091-1935
143164
- * Build date: Tue Apr 01 2025
143167
+ * Version: 24.2.7-build-25098-1935
143168
+ * Build date: Tue Apr 08 2025
143165
143169
  *
143166
143170
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143167
143171
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143188,8 +143192,8 @@ function toFixed(value, precision) {
143188
143192
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/number.js
143189
143193
  /**
143190
143194
  * DevExtreme (esm/common/core/localization/ldml/number.js)
143191
- * Version: 24.2.7-build-25091-1935
143192
- * Build date: Tue Apr 01 2025
143195
+ * Version: 24.2.7-build-25098-1935
143196
+ * Build date: Tue Apr 08 2025
143193
143197
  *
143194
143198
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143195
143199
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143430,8 +143434,8 @@ function getFormat(formatter) {
143430
143434
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/currency.js
143431
143435
  /**
143432
143436
  * DevExtreme (esm/common/core/localization/currency.js)
143433
- * Version: 24.2.7-build-25091-1935
143434
- * Build date: Tue Apr 01 2025
143437
+ * Version: 24.2.7-build-25098-1935
143438
+ * Build date: Tue Apr 08 2025
143435
143439
  *
143436
143440
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143437
143441
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143463,8 +143467,8 @@ function getFormat(formatter) {
143463
143467
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/parent_locales.js
143464
143468
  /**
143465
143469
  * DevExtreme (esm/common/core/localization/cldr-data/parent_locales.js)
143466
- * Version: 24.2.7-build-25091-1935
143467
- * Build date: Tue Apr 01 2025
143470
+ * Version: 24.2.7-build-25098-1935
143471
+ * Build date: Tue Apr 08 2025
143468
143472
  *
143469
143473
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143470
143474
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143649,8 +143653,8 @@ function getFormat(formatter) {
143649
143653
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/parentLocale.js
143650
143654
  /**
143651
143655
  * DevExtreme (esm/common/core/localization/parentLocale.js)
143652
- * Version: 24.2.7-build-25091-1935
143653
- * Build date: Tue Apr 01 2025
143656
+ * Version: 24.2.7-build-25098-1935
143657
+ * Build date: Tue Apr 08 2025
143654
143658
  *
143655
143659
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143656
143660
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143667,8 +143671,8 @@ const PARENT_LOCALE_SEPARATOR = "-";
143667
143671
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/core.js
143668
143672
  /**
143669
143673
  * DevExtreme (esm/common/core/localization/core.js)
143670
- * Version: 24.2.7-build-25091-1935
143671
- * Build date: Tue Apr 01 2025
143674
+ * Version: 24.2.7-build-25098-1935
143675
+ * Build date: Tue Apr 08 2025
143672
143676
  *
143673
143677
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143674
143678
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143709,8 +143713,8 @@ const DEFAULT_LOCALE = "en";
143709
143713
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/open_xml_currency_format.js
143710
143714
  /**
143711
143715
  * DevExtreme (esm/common/core/localization/open_xml_currency_format.js)
143712
- * Version: 24.2.7-build-25091-1935
143713
- * Build date: Tue Apr 01 2025
143716
+ * Version: 24.2.7-build-25098-1935
143717
+ * Build date: Tue Apr 08 2025
143714
143718
  *
143715
143719
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143716
143720
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -143752,8 +143756,8 @@ const DEFAULT_LOCALE = "en";
143752
143756
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/accounting_formats.js
143753
143757
  /**
143754
143758
  * DevExtreme (esm/common/core/localization/cldr-data/accounting_formats.js)
143755
- * Version: 24.2.7-build-25091-1935
143756
- * Build date: Tue Apr 01 2025
143759
+ * Version: 24.2.7-build-25098-1935
143760
+ * Build date: Tue Apr 08 2025
143757
143761
  *
143758
143762
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
143759
143763
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -144339,8 +144343,8 @@ const DEFAULT_LOCALE = "en";
144339
144343
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/number.js
144340
144344
  /**
144341
144345
  * DevExtreme (esm/common/core/localization/intl/number.js)
144342
- * Version: 24.2.7-build-25091-1935
144343
- * Build date: Tue Apr 01 2025
144346
+ * Version: 24.2.7-build-25098-1935
144347
+ * Build date: Tue Apr 08 2025
144344
144348
  *
144345
144349
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
144346
144350
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -144460,8 +144464,8 @@ const getCurrencyFormatter = currency => new Intl.NumberFormat(core.locale(), {
144460
144464
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/number.js
144461
144465
  /**
144462
144466
  * DevExtreme (esm/common/core/localization/number.js)
144463
- * Version: 24.2.7-build-25091-1935
144464
- * Build date: Tue Apr 01 2025
144467
+ * Version: 24.2.7-build-25098-1935
144468
+ * Build date: Tue Apr 08 2025
144465
144469
  *
144466
144470
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
144467
144471
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -144766,8 +144770,8 @@ if (hasIntl) {
144766
144770
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.format.js
144767
144771
  /**
144768
144772
  * DevExtreme (esm/common/core/localization/ldml/date.format.js)
144769
- * Version: 24.2.7-build-25091-1935
144770
- * Build date: Tue Apr 01 2025
144773
+ * Version: 24.2.7-build-25098-1935
144774
+ * Build date: Tue Apr 08 2025
144771
144775
  *
144772
144776
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
144773
144777
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -144964,8 +144968,8 @@ const date_format_getFormat = function(formatter) {
144964
144968
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.parser.js
144965
144969
  /**
144966
144970
  * DevExtreme (esm/common/core/localization/ldml/date.parser.js)
144967
- * Version: 24.2.7-build-25091-1935
144968
- * Build date: Tue Apr 01 2025
144971
+ * Version: 24.2.7-build-25098-1935
144972
+ * Build date: Tue Apr 08 2025
144969
144973
  *
144970
144974
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
144971
144975
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -145283,8 +145287,8 @@ const getParser = function(format, dateParts) {
145283
145287
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/default_date_names.js
145284
145288
  /**
145285
145289
  * DevExtreme (esm/common/core/localization/default_date_names.js)
145286
- * Version: 24.2.7-build-25091-1935
145287
- * Build date: Tue Apr 01 2025
145290
+ * Version: 24.2.7-build-25098-1935
145291
+ * Build date: Tue Apr 08 2025
145288
145292
  *
145289
145293
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
145290
145294
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -145320,8 +145324,8 @@ const cutCaptions = (captions, format) => {
145320
145324
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/first_day_of_week_data.js
145321
145325
  /**
145322
145326
  * DevExtreme (esm/common/core/localization/cldr-data/first_day_of_week_data.js)
145323
- * Version: 24.2.7-build-25091-1935
145324
- * Build date: Tue Apr 01 2025
145327
+ * Version: 24.2.7-build-25098-1935
145328
+ * Build date: Tue Apr 08 2025
145325
145329
  *
145326
145330
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
145327
145331
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -145520,8 +145524,8 @@ const cutCaptions = (captions, format) => {
145520
145524
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/date.js
145521
145525
  /**
145522
145526
  * DevExtreme (esm/common/core/localization/intl/date.js)
145523
- * Version: 24.2.7-build-25091-1935
145524
- * Build date: Tue Apr 01 2025
145527
+ * Version: 24.2.7-build-25098-1935
145528
+ * Build date: Tue Apr 08 2025
145525
145529
  *
145526
145530
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
145527
145531
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
@@ -145838,8 +145842,8 @@ const monthNameStrategies = {
145838
145842
  ;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/date.js
145839
145843
  /**
145840
145844
  * DevExtreme (esm/common/core/localization/date.js)
145841
- * Version: 24.2.7-build-25091-1935
145842
- * Build date: Tue Apr 01 2025
145845
+ * Version: 24.2.7-build-25098-1935
145846
+ * Build date: Tue Apr 08 2025
145843
145847
  *
145844
145848
  * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
145845
145849
  * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/