devexpress-richedit 24.2.6-build-25058-0102 → 24.2.6-build-25072-0103
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.
- package/dist/dx.richedit.js +188 -160
- package/dist/dx.richedit.min.js +1 -1
- package/lib/common/auto-correct/auto-correct-providers.js +10 -4
- package/lib/common/canvas/canvas-scroll-manager.d.ts +0 -1
- package/lib/common/canvas/canvas-scroll-manager.js +1 -11
- package/lib/common/canvas/canvas-size-info.d.ts +3 -3
- package/lib/common/canvas/canvas-size-info.js +19 -13
- package/lib/common/canvas/renderes/view-manager.js +1 -5
- package/lib/common/model/section/section-properties.js +5 -0
- package/lib/common/utils/size-utils.d.ts +8 -0
- package/lib/common/utils/size-utils.js +32 -8
- package/package.json +3 -3
package/dist/dx.richedit.js
CHANGED
@@ -25528,6 +25528,7 @@ class LineNumberingProperties {
|
|
25528
25528
|
|
25529
25529
|
|
25530
25530
|
|
25531
|
+
|
25531
25532
|
class SectionProperties {
|
25532
25533
|
constructor() {
|
25533
25534
|
this.margins = new margins/* Margins */.m(1440, 1440, 1440, 1440);
|
@@ -25545,6 +25546,8 @@ class SectionProperties {
|
|
25545
25546
|
this.firstPageNumber = -1;
|
25546
25547
|
this.continueNumbering = true;
|
25547
25548
|
this.lineNumbering = new LineNumberingProperties();
|
25549
|
+
this.footNote = NoteProperties.createDefault();
|
25550
|
+
this.endNote = NoteProperties.createDefault();
|
25548
25551
|
}
|
25549
25552
|
static createSimpleSectionProperties(width, height) {
|
25550
25553
|
const simpleSectionProperties = new SectionProperties();
|
@@ -25587,6 +25590,8 @@ class SectionProperties {
|
|
25587
25590
|
else
|
25588
25591
|
this.columnsInfo = obj.columnsInfo;
|
25589
25592
|
this.lineNumbering.copyFrom(obj.lineNumbering);
|
25593
|
+
this.footNote.copyFrom(obj.footNote);
|
25594
|
+
this.endNote.copyFrom(obj.endNote);
|
25590
25595
|
this.equalWidthColumns = obj.equalWidthColumns;
|
25591
25596
|
this.marginBottom = obj.marginBottom;
|
25592
25597
|
this.marginLeft = obj.marginLeft;
|
@@ -102030,10 +102035,16 @@ class TableBasedAutoCorrectProviderBase extends AutoCorrectProviderBase {
|
|
102030
102035
|
this.control.modelManager.modelManipulator.range.removeInterval(new SubDocumentInterval(this.subDocument, interval), true, false);
|
102031
102036
|
let endOfInsertedInterval = interval.start;
|
102032
102037
|
for (let i = 0; i < replaceWithStrings.length; i++) {
|
102033
|
-
|
102034
|
-
|
102035
|
-
|
102036
|
-
const result = this.control.modelManager.modelManipulator.
|
102038
|
+
if (replaceWithStrings[i]) {
|
102039
|
+
const subDocumentPosition = new SubDocumentPosition(this.subDocument, endOfInsertedInterval);
|
102040
|
+
const insertTextManipulatorParams = new InsertTextManipulatorParams(subDocumentPosition, charPropsBundle, RunType.TextRun, replaceWithStrings[i]);
|
102041
|
+
const result = this.control.modelManager.modelManipulator.text.insertTextViaHistory(insertTextManipulatorParams);
|
102042
|
+
endOfInsertedInterval = result.insertedInterval.end;
|
102043
|
+
}
|
102044
|
+
if (i < replaceWithStrings.length - 1) {
|
102045
|
+
const subDocumentPosition = new SubDocumentPosition(this.subDocument, endOfInsertedInterval);
|
102046
|
+
const insertTextManipulatorParams = new InsertParagraphManipulatorParams(subDocumentPosition, charPropsBundle);
|
102047
|
+
const result = this.control.modelManager.modelManipulator.paragraph.insertParagraphViaHistory(insertTextManipulatorParams);
|
102037
102048
|
endOfInsertedInterval = result.end;
|
102038
102049
|
}
|
102039
102050
|
}
|
@@ -107833,19 +107844,33 @@ ResizeBoxListener.directionToSource = {
|
|
107833
107844
|
|
107834
107845
|
;// CONCATENATED MODULE: ./src/common/utils/size-utils.ts
|
107835
107846
|
class SizeUtils {
|
107836
|
-
static
|
107847
|
+
static getWidthInfo(element) {
|
107848
|
+
const offsetSize = SizeUtils.getOffsetWidth(element);
|
107837
107849
|
const style = getComputedStyle(element);
|
107838
|
-
const
|
107839
|
-
|
107850
|
+
const inset = parseCssValue(style.borderLeftWidth)
|
107851
|
+
+ parseCssValue(style.borderRightWidth)
|
107852
|
+
+ parseCssValue(style.paddingLeft)
|
107853
|
+
+ parseCssValue(style.paddingRight);
|
107854
|
+
const sizeWithScrollBar = offsetSize - inset;
|
107840
107855
|
const scrollBarSize = Math.round(sizeWithScrollBar) - element.clientWidth;
|
107841
|
-
return sizeWithScrollBar - scrollBarSize;
|
107856
|
+
return new DimensionInfo(offsetSize, sizeWithScrollBar - scrollBarSize, scrollBarSize);
|
107842
107857
|
}
|
107843
|
-
static
|
107858
|
+
static getClientWidth(element) {
|
107859
|
+
return this.getWidthInfo(element).clientSize;
|
107860
|
+
}
|
107861
|
+
static getHeightInfo(element) {
|
107862
|
+
const offsetSize = SizeUtils.getOffsetHeight(element);
|
107844
107863
|
const style = getComputedStyle(element);
|
107845
|
-
const
|
107846
|
-
|
107864
|
+
const inset = parseCssValue(style.borderTopWidth)
|
107865
|
+
+ parseCssValue(style.borderBottomWidth)
|
107866
|
+
+ parseCssValue(style.paddingTop)
|
107867
|
+
+ parseCssValue(style.paddingBottom);
|
107868
|
+
const sizeWithScrollBar = offsetSize - inset;
|
107847
107869
|
const scrollBarSize = Math.round(sizeWithScrollBar) - element.clientHeight;
|
107848
|
-
return sizeWithScrollBar - scrollBarSize;
|
107870
|
+
return new DimensionInfo(offsetSize, sizeWithScrollBar - scrollBarSize, scrollBarSize);
|
107871
|
+
}
|
107872
|
+
static getClientHeight(element) {
|
107873
|
+
return this.getHeightInfo(element).clientSize;
|
107849
107874
|
}
|
107850
107875
|
static getOffsetSize(element) {
|
107851
107876
|
return element.getBoundingClientRect();
|
@@ -107857,6 +107882,16 @@ class SizeUtils {
|
|
107857
107882
|
return SizeUtils.getOffsetSize(element).height;
|
107858
107883
|
}
|
107859
107884
|
}
|
107885
|
+
function parseCssValue(value) {
|
107886
|
+
return value ? parseFloat(value) : 0;
|
107887
|
+
}
|
107888
|
+
class DimensionInfo {
|
107889
|
+
constructor(offsetSize, clientSize, scrollbarSize) {
|
107890
|
+
this.offsetSize = offsetSize;
|
107891
|
+
this.clientSize = clientSize;
|
107892
|
+
this.scrollbarSize = scrollbarSize;
|
107893
|
+
}
|
107894
|
+
}
|
107860
107895
|
|
107861
107896
|
;// CONCATENATED MODULE: ./src/common/canvas/canvas-manager.ts
|
107862
107897
|
|
@@ -108334,18 +108369,8 @@ class CanvasScrollManager {
|
|
108334
108369
|
this.updateScrollVisibility();
|
108335
108370
|
}
|
108336
108371
|
updateScrollVisibility() {
|
108337
|
-
if (!this.scrollMeasurer) {
|
108338
|
-
this.scrollMeasurer = document.createElement("div");
|
108339
|
-
this.scrollMeasurer.style.position = "absolute";
|
108340
|
-
this.scrollMeasurer.style.top = "0";
|
108341
|
-
this.scrollMeasurer.style.bottom = "0";
|
108342
|
-
this.scrollMeasurer.style.right = "0";
|
108343
|
-
this.scrollMeasurer.style.left = "0";
|
108344
|
-
}
|
108345
|
-
this.canvas.appendChild(this.scrollMeasurer);
|
108346
108372
|
const prevScrollYVisibility = this.sizes.scrollYVisible;
|
108347
|
-
this.sizes.updateScrollVisibility(this.
|
108348
|
-
this.canvas.removeChild(this.scrollMeasurer);
|
108373
|
+
this.sizes.updateScrollVisibility(this.canvas);
|
108349
108374
|
if (prevScrollYVisibility !== this.sizes.scrollYVisible && this.horizontalRuler)
|
108350
108375
|
this.horizontalRuler.adjust();
|
108351
108376
|
}
|
@@ -108420,6 +108445,7 @@ class CanvasScrollManager {
|
|
108420
108445
|
|
108421
108446
|
|
108422
108447
|
|
108448
|
+
|
108423
108449
|
class CanvasSizeInfo {
|
108424
108450
|
constructor() {
|
108425
108451
|
this.topSpacing = -1;
|
@@ -108436,7 +108462,7 @@ class CanvasSizeInfo {
|
|
108436
108462
|
this.pageVerticalInfo.init(dom.DomUtils.getCurrentStyle(page));
|
108437
108463
|
this.topSpacing = this.pageVerticalInfo.topPageBorderWidth + this.pageVerticalInfo.topMargin;
|
108438
108464
|
this.betweenPageSpacing = this.pageVerticalInfo.betweenPageSpacing;
|
108439
|
-
this.setVisibleAreaSize(canvas
|
108465
|
+
this.setVisibleAreaSize(SizeUtils.getClientWidth(canvas), SizeUtils.getClientHeight(canvas));
|
108440
108466
|
}
|
108441
108467
|
findPageIndexByOffsetY(pages, offsetY) {
|
108442
108468
|
return Math.max(0, search.SearchUtils.normedInterpolationIndexOf(pages, (p) => this.getPageOffsetY(p), offsetY));
|
@@ -108449,22 +108475,27 @@ class CanvasSizeInfo {
|
|
108449
108475
|
this.visibleAreaSize.height = height;
|
108450
108476
|
}
|
108451
108477
|
getVisibleAreaWidth(includeScrollBars) {
|
108452
|
-
if (includeScrollBars)
|
108478
|
+
if (!includeScrollBars)
|
108453
108479
|
return this.visibleAreaSize.width;
|
108454
|
-
return this.scrollYVisible ? this.visibleAreaSize.width
|
108480
|
+
return this.scrollYVisible ? this.visibleAreaSize.width + this.scrollWidth : this.visibleAreaSize.width;
|
108455
108481
|
}
|
108456
108482
|
getVisibleAreaHeight(includeScrollBars) {
|
108457
|
-
if (includeScrollBars)
|
108483
|
+
if (!includeScrollBars)
|
108458
108484
|
return this.visibleAreaSize.height;
|
108459
|
-
return this.scrollXVisible ? this.visibleAreaSize.height
|
108485
|
+
return this.scrollXVisible ? this.visibleAreaSize.height + this.scrollWidth : this.visibleAreaSize.height;
|
108460
108486
|
}
|
108461
|
-
updateScrollVisibility(
|
108462
|
-
this.scrollXVisible =
|
108463
|
-
this.scrollYVisible =
|
108487
|
+
updateScrollVisibility(canvas) {
|
108488
|
+
this.scrollXVisible = SizeUtils.getHeightInfo(canvas).scrollbarSize > 0;
|
108489
|
+
this.scrollYVisible = SizeUtils.getWidthInfo(canvas).scrollbarSize > 0;
|
108464
108490
|
}
|
108465
|
-
|
108466
|
-
|
108467
|
-
|
108491
|
+
updateSize(canvas) {
|
108492
|
+
const width = SizeUtils.getClientWidth(canvas);
|
108493
|
+
const height = SizeUtils.getClientHeight(canvas);
|
108494
|
+
if (this.visibleAreaSize.width !== width || this.visibleAreaSize.height !== height) {
|
108495
|
+
this.setVisibleAreaSize(width, height);
|
108496
|
+
return true;
|
108497
|
+
}
|
108498
|
+
return false;
|
108468
108499
|
}
|
108469
108500
|
}
|
108470
108501
|
|
@@ -109728,7 +109759,6 @@ class SelectionRenderer extends SelectionRendererBase {
|
|
109728
109759
|
|
109729
109760
|
|
109730
109761
|
|
109731
|
-
|
109732
109762
|
|
109733
109763
|
|
109734
109764
|
class ViewManager {
|
@@ -109788,11 +109818,8 @@ class ViewManager {
|
|
109788
109818
|
this.canvasListener.onCanvasScroll();
|
109789
109819
|
}
|
109790
109820
|
}
|
109791
|
-
else if (this.sizes.
|
109792
|
-
const size = SizeUtils.getOffsetSize(this.canvas);
|
109793
|
-
this.sizes.setVisibleAreaSize(size.width, size.height);
|
109821
|
+
else if (this.sizes.updateSize(this.canvas))
|
109794
109822
|
this.scroll.onCanvasSizeChanged();
|
109795
|
-
}
|
109796
109823
|
}
|
109797
109824
|
NotifyPagesReady(pageChanges) {
|
109798
109825
|
this.canvasListener.onPagesReady(pageChanges);
|
@@ -140784,8 +140811,8 @@ class DialogManager {
|
|
140784
140811
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_type.js
|
140785
140812
|
/**
|
140786
140813
|
* DevExtreme (esm/__internal/core/utils/m_type.js)
|
140787
|
-
* Version: 24.2.6-build-
|
140788
|
-
* Build date:
|
140814
|
+
* Version: 24.2.6-build-25071-1429
|
140815
|
+
* Build date: Wed Mar 12 2025
|
140789
140816
|
*
|
140790
140817
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140791
140818
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140887,8 +140914,8 @@ const isEvent = function(object) {
|
|
140887
140914
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/type.js
|
140888
140915
|
/**
|
140889
140916
|
* DevExtreme (esm/core/utils/type.js)
|
140890
|
-
* Version: 24.2.6-build-
|
140891
|
-
* Build date:
|
140917
|
+
* Version: 24.2.6-build-25071-1429
|
140918
|
+
* Build date: Wed Mar 12 2025
|
140892
140919
|
*
|
140893
140920
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140894
140921
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140898,8 +140925,8 @@ const isEvent = function(object) {
|
|
140898
140925
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_extend.js
|
140899
140926
|
/**
|
140900
140927
|
* DevExtreme (esm/__internal/core/utils/m_extend.js)
|
140901
|
-
* Version: 24.2.6-build-
|
140902
|
-
* Build date:
|
140928
|
+
* Version: 24.2.6-build-25071-1429
|
140929
|
+
* Build date: Wed Mar 12 2025
|
140903
140930
|
*
|
140904
140931
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140905
140932
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140957,8 +140984,8 @@ const extend = function(target) {
|
|
140957
140984
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/extend.js
|
140958
140985
|
/**
|
140959
140986
|
* DevExtreme (esm/core/utils/extend.js)
|
140960
|
-
* Version: 24.2.6-build-
|
140961
|
-
* Build date:
|
140987
|
+
* Version: 24.2.6-build-25071-1429
|
140988
|
+
* Build date: Wed Mar 12 2025
|
140962
140989
|
*
|
140963
140990
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140964
140991
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140968,8 +140995,8 @@ const extend = function(target) {
|
|
140968
140995
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_string.js
|
140969
140996
|
/**
|
140970
140997
|
* DevExtreme (esm/__internal/core/utils/m_string.js)
|
140971
|
-
* Version: 24.2.6-build-
|
140972
|
-
* Build date:
|
140998
|
+
* Version: 24.2.6-build-25071-1429
|
140999
|
+
* Build date: Wed Mar 12 2025
|
140973
141000
|
*
|
140974
141001
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140975
141002
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141044,8 +141071,8 @@ const isEmpty = function() {
|
|
141044
141071
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/string.js
|
141045
141072
|
/**
|
141046
141073
|
* DevExtreme (esm/core/utils/string.js)
|
141047
|
-
* Version: 24.2.6-build-
|
141048
|
-
* Build date:
|
141074
|
+
* Version: 24.2.6-build-25071-1429
|
141075
|
+
* Build date: Wed Mar 12 2025
|
141049
141076
|
*
|
141050
141077
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141051
141078
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141055,20 +141082,20 @@ const isEmpty = function() {
|
|
141055
141082
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/version.js
|
141056
141083
|
/**
|
141057
141084
|
* DevExtreme (esm/core/version.js)
|
141058
|
-
* Version: 24.2.6-build-
|
141059
|
-
* Build date:
|
141085
|
+
* Version: 24.2.6-build-25071-1429
|
141086
|
+
* Build date: Wed Mar 12 2025
|
141060
141087
|
*
|
141061
141088
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141062
141089
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
141063
141090
|
*/
|
141064
141091
|
const version = "24.2.5";
|
141065
|
-
const fullVersion = "24.2.5.
|
141092
|
+
const fullVersion = "24.2.5.25071-1429";
|
141066
141093
|
|
141067
141094
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_console.js
|
141068
141095
|
/**
|
141069
141096
|
* DevExtreme (esm/__internal/core/utils/m_console.js)
|
141070
|
-
* Version: 24.2.6-build-
|
141071
|
-
* Build date:
|
141097
|
+
* Version: 24.2.6-build-25071-1429
|
141098
|
+
* Build date: Wed Mar 12 2025
|
141072
141099
|
*
|
141073
141100
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141074
141101
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141108,8 +141135,8 @@ const debug = function() {
|
|
141108
141135
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_error.js
|
141109
141136
|
/**
|
141110
141137
|
* DevExtreme (esm/__internal/core/utils/m_error.js)
|
141111
|
-
* Version: 24.2.6-build-
|
141112
|
-
* Build date:
|
141138
|
+
* Version: 24.2.6-build-25071-1429
|
141139
|
+
* Build date: Wed Mar 12 2025
|
141113
141140
|
*
|
141114
141141
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141115
141142
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141180,8 +141207,8 @@ function error(baseErrors, errors) {
|
|
141180
141207
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/error.js
|
141181
141208
|
/**
|
141182
141209
|
* DevExtreme (esm/core/utils/error.js)
|
141183
|
-
* Version: 24.2.6-build-
|
141184
|
-
* Build date:
|
141210
|
+
* Version: 24.2.6-build-25071-1429
|
141211
|
+
* Build date: Wed Mar 12 2025
|
141185
141212
|
*
|
141186
141213
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141187
141214
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141192,8 +141219,8 @@ function error(baseErrors, errors) {
|
|
141192
141219
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_errors.js
|
141193
141220
|
/**
|
141194
141221
|
* DevExtreme (esm/__internal/core/m_errors.js)
|
141195
|
-
* Version: 24.2.6-build-
|
141196
|
-
* Build date:
|
141222
|
+
* Version: 24.2.6-build-25071-1429
|
141223
|
+
* Build date: Wed Mar 12 2025
|
141197
141224
|
*
|
141198
141225
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141199
141226
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141259,8 +141286,8 @@ function error(baseErrors, errors) {
|
|
141259
141286
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/errors.js
|
141260
141287
|
/**
|
141261
141288
|
* DevExtreme (esm/core/errors.js)
|
141262
|
-
* Version: 24.2.6-build-
|
141263
|
-
* Build date:
|
141289
|
+
* Version: 24.2.6-build-25071-1429
|
141290
|
+
* Build date: Wed Mar 12 2025
|
141264
141291
|
*
|
141265
141292
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141266
141293
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141271,8 +141298,8 @@ function error(baseErrors, errors) {
|
|
141271
141298
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_class.js
|
141272
141299
|
/**
|
141273
141300
|
* DevExtreme (esm/__internal/core/m_class.js)
|
141274
|
-
* Version: 24.2.6-build-
|
141275
|
-
* Build date:
|
141301
|
+
* Version: 24.2.6-build-25071-1429
|
141302
|
+
* Build date: Wed Mar 12 2025
|
141276
141303
|
*
|
141277
141304
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141278
141305
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141405,8 +141432,8 @@ classImpl.abstract = m_class_abstract;
|
|
141405
141432
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/class.js
|
141406
141433
|
/**
|
141407
141434
|
* DevExtreme (esm/core/class.js)
|
141408
|
-
* Version: 24.2.6-build-
|
141409
|
-
* Build date:
|
141435
|
+
* Version: 24.2.6-build-25071-1429
|
141436
|
+
* Build date: Wed Mar 12 2025
|
141410
141437
|
*
|
141411
141438
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141412
141439
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141417,8 +141444,8 @@ classImpl.abstract = m_class_abstract;
|
|
141417
141444
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_iterator.js
|
141418
141445
|
/**
|
141419
141446
|
* DevExtreme (esm/__internal/core/utils/m_iterator.js)
|
141420
|
-
* Version: 24.2.6-build-
|
141421
|
-
* Build date:
|
141447
|
+
* Version: 24.2.6-build-25071-1429
|
141448
|
+
* Build date: Wed Mar 12 2025
|
141422
141449
|
*
|
141423
141450
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141424
141451
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141467,8 +141494,8 @@ const reverseEach = (array, callback) => {
|
|
141467
141494
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_dependency_injector.js
|
141468
141495
|
/**
|
141469
141496
|
* DevExtreme (esm/__internal/core/utils/m_dependency_injector.js)
|
141470
|
-
* Version: 24.2.6-build-
|
141471
|
-
* Build date:
|
141497
|
+
* Version: 24.2.6-build-25071-1429
|
141498
|
+
* Build date: Wed Mar 12 2025
|
141472
141499
|
*
|
141473
141500
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141474
141501
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141517,8 +141544,8 @@ function injector(object) {
|
|
141517
141544
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/dependency_injector.js
|
141518
141545
|
/**
|
141519
141546
|
* DevExtreme (esm/core/utils/dependency_injector.js)
|
141520
|
-
* Version: 24.2.6-build-
|
141521
|
-
* Build date:
|
141547
|
+
* Version: 24.2.6-build-25071-1429
|
141548
|
+
* Build date: Wed Mar 12 2025
|
141522
141549
|
*
|
141523
141550
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141524
141551
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141529,8 +141556,8 @@ function injector(object) {
|
|
141529
141556
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.formatter.js
|
141530
141557
|
/**
|
141531
141558
|
* DevExtreme (esm/common/core/localization/ldml/date.formatter.js)
|
141532
|
-
* Version: 24.2.6-build-
|
141533
|
-
* Build date:
|
141559
|
+
* Version: 24.2.6-build-25071-1429
|
141560
|
+
* Build date: Wed Mar 12 2025
|
141534
141561
|
*
|
141535
141562
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141536
141563
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141683,8 +141710,8 @@ function _extends() {
|
|
141683
141710
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_config.js
|
141684
141711
|
/**
|
141685
141712
|
* DevExtreme (esm/__internal/core/m_config.js)
|
141686
|
-
* Version: 24.2.6-build-
|
141687
|
-
* Build date:
|
141713
|
+
* Version: 24.2.6-build-25071-1429
|
141714
|
+
* Build date: Wed Mar 12 2025
|
141688
141715
|
*
|
141689
141716
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141690
141717
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141759,8 +141786,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
141759
141786
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/config.js
|
141760
141787
|
/**
|
141761
141788
|
* DevExtreme (esm/common/config.js)
|
141762
|
-
* Version: 24.2.6-build-
|
141763
|
-
* Build date:
|
141789
|
+
* Version: 24.2.6-build-25071-1429
|
141790
|
+
* Build date: Wed Mar 12 2025
|
141764
141791
|
*
|
141765
141792
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141766
141793
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141771,8 +141798,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
141771
141798
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_guid.js
|
141772
141799
|
/**
|
141773
141800
|
* DevExtreme (esm/__internal/core/m_guid.js)
|
141774
|
-
* Version: 24.2.6-build-
|
141775
|
-
* Build date:
|
141801
|
+
* Version: 24.2.6-build-25071-1429
|
141802
|
+
* Build date: Wed Mar 12 2025
|
141776
141803
|
*
|
141777
141804
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141778
141805
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141814,8 +141841,8 @@ const Guid = core_class.inherit({
|
|
141814
141841
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/guid.js
|
141815
141842
|
/**
|
141816
141843
|
* DevExtreme (esm/common/guid.js)
|
141817
|
-
* Version: 24.2.6-build-
|
141818
|
-
* Build date:
|
141844
|
+
* Version: 24.2.6-build-25071-1429
|
141845
|
+
* Build date: Wed Mar 12 2025
|
141819
141846
|
*
|
141820
141847
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141821
141848
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141826,8 +141853,8 @@ const Guid = core_class.inherit({
|
|
141826
141853
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/templates/m_template_engine_registry.js
|
141827
141854
|
/**
|
141828
141855
|
* DevExtreme (esm/__internal/core/templates/m_template_engine_registry.js)
|
141829
|
-
* Version: 24.2.6-build-
|
141830
|
-
* Build date:
|
141856
|
+
* Version: 24.2.6-build-25071-1429
|
141857
|
+
* Build date: Wed Mar 12 2025
|
141831
141858
|
*
|
141832
141859
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141833
141860
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141856,8 +141883,8 @@ function getCurrentTemplateEngine() {
|
|
141856
141883
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/templates/template_engine_registry.js
|
141857
141884
|
/**
|
141858
141885
|
* DevExtreme (esm/core/templates/template_engine_registry.js)
|
141859
|
-
* Version: 24.2.6-build-
|
141860
|
-
* Build date:
|
141886
|
+
* Version: 24.2.6-build-25071-1429
|
141887
|
+
* Build date: Wed Mar 12 2025
|
141861
141888
|
*
|
141862
141889
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141863
141890
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141867,8 +141894,8 @@ function getCurrentTemplateEngine() {
|
|
141867
141894
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_set_template_engine.js
|
141868
141895
|
/**
|
141869
141896
|
* DevExtreme (esm/__internal/core/m_set_template_engine.js)
|
141870
|
-
* Version: 24.2.6-build-
|
141871
|
-
* Build date:
|
141897
|
+
* Version: 24.2.6-build-25071-1429
|
141898
|
+
* Build date: Wed Mar 12 2025
|
141872
141899
|
*
|
141873
141900
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141874
141901
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141878,8 +141905,8 @@ function getCurrentTemplateEngine() {
|
|
141878
141905
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/set_template_engine.js
|
141879
141906
|
/**
|
141880
141907
|
* DevExtreme (esm/common/set_template_engine.js)
|
141881
|
-
* Version: 24.2.6-build-
|
141882
|
-
* Build date:
|
141908
|
+
* Version: 24.2.6-build-25071-1429
|
141909
|
+
* Build date: Wed Mar 12 2025
|
141883
141910
|
*
|
141884
141911
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141885
141912
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141890,8 +141917,8 @@ function getCurrentTemplateEngine() {
|
|
141890
141917
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common.js
|
141891
141918
|
/**
|
141892
141919
|
* DevExtreme (esm/common.js)
|
141893
|
-
* Version: 24.2.6-build-
|
141894
|
-
* Build date:
|
141920
|
+
* Version: 24.2.6-build-25071-1429
|
141921
|
+
* Build date: Wed Mar 12 2025
|
141895
141922
|
*
|
141896
141923
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141897
141924
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141904,8 +141931,8 @@ function getCurrentTemplateEngine() {
|
|
141904
141931
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/config.js
|
141905
141932
|
/**
|
141906
141933
|
* DevExtreme (esm/core/config.js)
|
141907
|
-
* Version: 24.2.6-build-
|
141908
|
-
* Build date:
|
141934
|
+
* Version: 24.2.6-build-25071-1429
|
141935
|
+
* Build date: Wed Mar 12 2025
|
141909
141936
|
*
|
141910
141937
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141911
141938
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141916,8 +141943,8 @@ function getCurrentTemplateEngine() {
|
|
141916
141943
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/guid.js
|
141917
141944
|
/**
|
141918
141945
|
* DevExtreme (esm/core/guid.js)
|
141919
|
-
* Version: 24.2.6-build-
|
141920
|
-
* Build date:
|
141946
|
+
* Version: 24.2.6-build-25071-1429
|
141947
|
+
* Build date: Wed Mar 12 2025
|
141921
141948
|
*
|
141922
141949
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141923
141950
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141928,8 +141955,8 @@ function getCurrentTemplateEngine() {
|
|
141928
141955
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/console.js
|
141929
141956
|
/**
|
141930
141957
|
* DevExtreme (esm/core/utils/console.js)
|
141931
|
-
* Version: 24.2.6-build-
|
141932
|
-
* Build date:
|
141958
|
+
* Version: 24.2.6-build-25071-1429
|
141959
|
+
* Build date: Wed Mar 12 2025
|
141933
141960
|
*
|
141934
141961
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141935
141962
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141939,8 +141966,8 @@ function getCurrentTemplateEngine() {
|
|
141939
141966
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_variable_wrapper.js
|
141940
141967
|
/**
|
141941
141968
|
* DevExtreme (esm/__internal/core/utils/m_variable_wrapper.js)
|
141942
|
-
* Version: 24.2.6-build-
|
141943
|
-
* Build date:
|
141969
|
+
* Version: 24.2.6-build-25071-1429
|
141970
|
+
* Build date: Wed Mar 12 2025
|
141944
141971
|
*
|
141945
141972
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141946
141973
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141969,8 +141996,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
141969
141996
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/variable_wrapper.js
|
141970
141997
|
/**
|
141971
141998
|
* DevExtreme (esm/core/utils/variable_wrapper.js)
|
141972
|
-
* Version: 24.2.6-build-
|
141973
|
-
* Build date:
|
141999
|
+
* Version: 24.2.6-build-25071-1429
|
142000
|
+
* Build date: Wed Mar 12 2025
|
141974
142001
|
*
|
141975
142002
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141976
142003
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141981,8 +142008,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
141981
142008
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_object.js
|
141982
142009
|
/**
|
141983
142010
|
* DevExtreme (esm/__internal/core/utils/m_object.js)
|
141984
|
-
* Version: 24.2.6-build-
|
141985
|
-
* Build date:
|
142011
|
+
* Version: 24.2.6-build-25071-1429
|
142012
|
+
* Build date: Wed Mar 12 2025
|
141986
142013
|
*
|
141987
142014
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141988
142015
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142082,8 +142109,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142082
142109
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/object.js
|
142083
142110
|
/**
|
142084
142111
|
* DevExtreme (esm/core/utils/object.js)
|
142085
|
-
* Version: 24.2.6-build-
|
142086
|
-
* Build date:
|
142112
|
+
* Version: 24.2.6-build-25071-1429
|
142113
|
+
* Build date: Wed Mar 12 2025
|
142087
142114
|
*
|
142088
142115
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142089
142116
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142093,8 +142120,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142093
142120
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_data.js
|
142094
142121
|
/**
|
142095
142122
|
* DevExtreme (esm/__internal/core/utils/m_data.js)
|
142096
|
-
* Version: 24.2.6-build-
|
142097
|
-
* Build date:
|
142123
|
+
* Version: 24.2.6-build-25071-1429
|
142124
|
+
* Build date: Wed Mar 12 2025
|
142098
142125
|
*
|
142099
142126
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142100
142127
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142290,8 +142317,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142290
142317
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/data.js
|
142291
142318
|
/**
|
142292
142319
|
* DevExtreme (esm/core/utils/data.js)
|
142293
|
-
* Version: 24.2.6-build-
|
142294
|
-
* Build date:
|
142320
|
+
* Version: 24.2.6-build-25071-1429
|
142321
|
+
* Build date: Wed Mar 12 2025
|
142295
142322
|
*
|
142296
142323
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142297
142324
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142301,8 +142328,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142301
142328
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_callbacks.js
|
142302
142329
|
/**
|
142303
142330
|
* DevExtreme (esm/__internal/core/utils/m_callbacks.js)
|
142304
|
-
* Version: 24.2.6-build-
|
142305
|
-
* Build date:
|
142331
|
+
* Version: 24.2.6-build-25071-1429
|
142332
|
+
* Build date: Wed Mar 12 2025
|
142306
142333
|
*
|
142307
142334
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142308
142335
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142397,8 +142424,8 @@ const Callbacks = function(options) {
|
|
142397
142424
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/callbacks.js
|
142398
142425
|
/**
|
142399
142426
|
* DevExtreme (esm/core/utils/callbacks.js)
|
142400
|
-
* Version: 24.2.6-build-
|
142401
|
-
* Build date:
|
142427
|
+
* Version: 24.2.6-build-25071-1429
|
142428
|
+
* Build date: Wed Mar 12 2025
|
142402
142429
|
*
|
142403
142430
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142404
142431
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142409,8 +142436,8 @@ const Callbacks = function(options) {
|
|
142409
142436
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_deferred.js
|
142410
142437
|
/**
|
142411
142438
|
* DevExtreme (esm/__internal/core/utils/m_deferred.js)
|
142412
|
-
* Version: 24.2.6-build-
|
142413
|
-
* Build date:
|
142439
|
+
* Version: 24.2.6-build-25071-1429
|
142440
|
+
* Build date: Wed Mar 12 2025
|
142414
142441
|
*
|
142415
142442
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142416
142443
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142575,8 +142602,8 @@ function when() {
|
|
142575
142602
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/deferred.js
|
142576
142603
|
/**
|
142577
142604
|
* DevExtreme (esm/core/utils/deferred.js)
|
142578
|
-
* Version: 24.2.6-build-
|
142579
|
-
* Build date:
|
142605
|
+
* Version: 24.2.6-build-25071-1429
|
142606
|
+
* Build date: Wed Mar 12 2025
|
142580
142607
|
*
|
142581
142608
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142582
142609
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142586,8 +142613,8 @@ function when() {
|
|
142586
142613
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_common.js
|
142587
142614
|
/**
|
142588
142615
|
* DevExtreme (esm/__internal/core/utils/m_common.js)
|
142589
|
-
* Version: 24.2.6-build-
|
142590
|
-
* Build date:
|
142616
|
+
* Version: 24.2.6-build-25071-1429
|
142617
|
+
* Build date: Wed Mar 12 2025
|
142591
142618
|
*
|
142592
142619
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142593
142620
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142599,6 +142626,7 @@ function when() {
|
|
142599
142626
|
|
142600
142627
|
|
142601
142628
|
|
142629
|
+
const uiLayerInitialized = new Deferred;
|
142602
142630
|
const ensureDefined = function(value, defaultValue) {
|
142603
142631
|
return m_type_isDefined(value) ? value : defaultValue
|
142604
142632
|
};
|
@@ -142881,8 +142909,8 @@ const equalByValue = function(value1, value2) {
|
|
142881
142909
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/common.js
|
142882
142910
|
/**
|
142883
142911
|
* DevExtreme (esm/core/utils/common.js)
|
142884
|
-
* Version: 24.2.6-build-
|
142885
|
-
* Build date:
|
142912
|
+
* Version: 24.2.6-build-25071-1429
|
142913
|
+
* Build date: Wed Mar 12 2025
|
142886
142914
|
*
|
142887
142915
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142888
142916
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142892,8 +142920,8 @@ const equalByValue = function(value1, value2) {
|
|
142892
142920
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_math.js
|
142893
142921
|
/**
|
142894
142922
|
* DevExtreme (esm/__internal/core/utils/m_math.js)
|
142895
|
-
* Version: 24.2.6-build-
|
142896
|
-
* Build date:
|
142923
|
+
* Version: 24.2.6-build-25071-1429
|
142924
|
+
* Build date: Wed Mar 12 2025
|
142897
142925
|
*
|
142898
142926
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142899
142927
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143062,8 +143090,8 @@ function roundFloatPart(value) {
|
|
143062
143090
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/math.js
|
143063
143091
|
/**
|
143064
143092
|
* DevExtreme (esm/core/utils/math.js)
|
143065
|
-
* Version: 24.2.6-build-
|
143066
|
-
* Build date:
|
143093
|
+
* Version: 24.2.6-build-25071-1429
|
143094
|
+
* Build date: Wed Mar 12 2025
|
143067
143095
|
*
|
143068
143096
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143069
143097
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143073,8 +143101,8 @@ function roundFloatPart(value) {
|
|
143073
143101
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/utils.js
|
143074
143102
|
/**
|
143075
143103
|
* DevExtreme (esm/common/core/localization/utils.js)
|
143076
|
-
* Version: 24.2.6-build-
|
143077
|
-
* Build date:
|
143104
|
+
* Version: 24.2.6-build-25071-1429
|
143105
|
+
* Build date: Wed Mar 12 2025
|
143078
143106
|
*
|
143079
143107
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143080
143108
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143101,8 +143129,8 @@ function toFixed(value, precision) {
|
|
143101
143129
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/number.js
|
143102
143130
|
/**
|
143103
143131
|
* DevExtreme (esm/common/core/localization/ldml/number.js)
|
143104
|
-
* Version: 24.2.6-build-
|
143105
|
-
* Build date:
|
143132
|
+
* Version: 24.2.6-build-25071-1429
|
143133
|
+
* Build date: Wed Mar 12 2025
|
143106
143134
|
*
|
143107
143135
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143108
143136
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143343,8 +143371,8 @@ function getFormat(formatter) {
|
|
143343
143371
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/currency.js
|
143344
143372
|
/**
|
143345
143373
|
* DevExtreme (esm/common/core/localization/currency.js)
|
143346
|
-
* Version: 24.2.6-build-
|
143347
|
-
* Build date:
|
143374
|
+
* Version: 24.2.6-build-25071-1429
|
143375
|
+
* Build date: Wed Mar 12 2025
|
143348
143376
|
*
|
143349
143377
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143350
143378
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143376,8 +143404,8 @@ function getFormat(formatter) {
|
|
143376
143404
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/parent_locales.js
|
143377
143405
|
/**
|
143378
143406
|
* DevExtreme (esm/common/core/localization/cldr-data/parent_locales.js)
|
143379
|
-
* Version: 24.2.6-build-
|
143380
|
-
* Build date:
|
143407
|
+
* Version: 24.2.6-build-25071-1429
|
143408
|
+
* Build date: Wed Mar 12 2025
|
143381
143409
|
*
|
143382
143410
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143383
143411
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143562,8 +143590,8 @@ function getFormat(formatter) {
|
|
143562
143590
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/parentLocale.js
|
143563
143591
|
/**
|
143564
143592
|
* DevExtreme (esm/common/core/localization/parentLocale.js)
|
143565
|
-
* Version: 24.2.6-build-
|
143566
|
-
* Build date:
|
143593
|
+
* Version: 24.2.6-build-25071-1429
|
143594
|
+
* Build date: Wed Mar 12 2025
|
143567
143595
|
*
|
143568
143596
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143569
143597
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143580,8 +143608,8 @@ const PARENT_LOCALE_SEPARATOR = "-";
|
|
143580
143608
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/core.js
|
143581
143609
|
/**
|
143582
143610
|
* DevExtreme (esm/common/core/localization/core.js)
|
143583
|
-
* Version: 24.2.6-build-
|
143584
|
-
* Build date:
|
143611
|
+
* Version: 24.2.6-build-25071-1429
|
143612
|
+
* Build date: Wed Mar 12 2025
|
143585
143613
|
*
|
143586
143614
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143587
143615
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143622,8 +143650,8 @@ const DEFAULT_LOCALE = "en";
|
|
143622
143650
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/open_xml_currency_format.js
|
143623
143651
|
/**
|
143624
143652
|
* DevExtreme (esm/common/core/localization/open_xml_currency_format.js)
|
143625
|
-
* Version: 24.2.6-build-
|
143626
|
-
* Build date:
|
143653
|
+
* Version: 24.2.6-build-25071-1429
|
143654
|
+
* Build date: Wed Mar 12 2025
|
143627
143655
|
*
|
143628
143656
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143629
143657
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143665,8 +143693,8 @@ const DEFAULT_LOCALE = "en";
|
|
143665
143693
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/accounting_formats.js
|
143666
143694
|
/**
|
143667
143695
|
* DevExtreme (esm/common/core/localization/cldr-data/accounting_formats.js)
|
143668
|
-
* Version: 24.2.6-build-
|
143669
|
-
* Build date:
|
143696
|
+
* Version: 24.2.6-build-25071-1429
|
143697
|
+
* Build date: Wed Mar 12 2025
|
143670
143698
|
*
|
143671
143699
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143672
143700
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144252,8 +144280,8 @@ const DEFAULT_LOCALE = "en";
|
|
144252
144280
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/number.js
|
144253
144281
|
/**
|
144254
144282
|
* DevExtreme (esm/common/core/localization/intl/number.js)
|
144255
|
-
* Version: 24.2.6-build-
|
144256
|
-
* Build date:
|
144283
|
+
* Version: 24.2.6-build-25071-1429
|
144284
|
+
* Build date: Wed Mar 12 2025
|
144257
144285
|
*
|
144258
144286
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144259
144287
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144373,8 +144401,8 @@ const getCurrencyFormatter = currency => new Intl.NumberFormat(core.locale(), {
|
|
144373
144401
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/number.js
|
144374
144402
|
/**
|
144375
144403
|
* DevExtreme (esm/common/core/localization/number.js)
|
144376
|
-
* Version: 24.2.6-build-
|
144377
|
-
* Build date:
|
144404
|
+
* Version: 24.2.6-build-25071-1429
|
144405
|
+
* Build date: Wed Mar 12 2025
|
144378
144406
|
*
|
144379
144407
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144380
144408
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144679,8 +144707,8 @@ if (hasIntl) {
|
|
144679
144707
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.format.js
|
144680
144708
|
/**
|
144681
144709
|
* DevExtreme (esm/common/core/localization/ldml/date.format.js)
|
144682
|
-
* Version: 24.2.6-build-
|
144683
|
-
* Build date:
|
144710
|
+
* Version: 24.2.6-build-25071-1429
|
144711
|
+
* Build date: Wed Mar 12 2025
|
144684
144712
|
*
|
144685
144713
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144686
144714
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144877,8 +144905,8 @@ const date_format_getFormat = function(formatter) {
|
|
144877
144905
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.parser.js
|
144878
144906
|
/**
|
144879
144907
|
* DevExtreme (esm/common/core/localization/ldml/date.parser.js)
|
144880
|
-
* Version: 24.2.6-build-
|
144881
|
-
* Build date:
|
144908
|
+
* Version: 24.2.6-build-25071-1429
|
144909
|
+
* Build date: Wed Mar 12 2025
|
144882
144910
|
*
|
144883
144911
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144884
144912
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145196,8 +145224,8 @@ const getParser = function(format, dateParts) {
|
|
145196
145224
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/default_date_names.js
|
145197
145225
|
/**
|
145198
145226
|
* DevExtreme (esm/common/core/localization/default_date_names.js)
|
145199
|
-
* Version: 24.2.6-build-
|
145200
|
-
* Build date:
|
145227
|
+
* Version: 24.2.6-build-25071-1429
|
145228
|
+
* Build date: Wed Mar 12 2025
|
145201
145229
|
*
|
145202
145230
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145203
145231
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145233,8 +145261,8 @@ const cutCaptions = (captions, format) => {
|
|
145233
145261
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/first_day_of_week_data.js
|
145234
145262
|
/**
|
145235
145263
|
* DevExtreme (esm/common/core/localization/cldr-data/first_day_of_week_data.js)
|
145236
|
-
* Version: 24.2.6-build-
|
145237
|
-
* Build date:
|
145264
|
+
* Version: 24.2.6-build-25071-1429
|
145265
|
+
* Build date: Wed Mar 12 2025
|
145238
145266
|
*
|
145239
145267
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145240
145268
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145433,8 +145461,8 @@ const cutCaptions = (captions, format) => {
|
|
145433
145461
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/date.js
|
145434
145462
|
/**
|
145435
145463
|
* DevExtreme (esm/common/core/localization/intl/date.js)
|
145436
|
-
* Version: 24.2.6-build-
|
145437
|
-
* Build date:
|
145464
|
+
* Version: 24.2.6-build-25071-1429
|
145465
|
+
* Build date: Wed Mar 12 2025
|
145438
145466
|
*
|
145439
145467
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145440
145468
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145751,8 +145779,8 @@ const monthNameStrategies = {
|
|
145751
145779
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/date.js
|
145752
145780
|
/**
|
145753
145781
|
* DevExtreme (esm/common/core/localization/date.js)
|
145754
|
-
* Version: 24.2.6-build-
|
145755
|
-
* Build date:
|
145782
|
+
* Version: 24.2.6-build-25071-1429
|
145783
|
+
* Build date: Wed Mar 12 2025
|
145756
145784
|
*
|
145757
145785
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145758
145786
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|