devexpress-richedit 24.2.6-build-25065-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 +177 -156
- package/dist/dx.richedit.min.js +1 -1
- 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;
|
@@ -107839,19 +107844,33 @@ ResizeBoxListener.directionToSource = {
|
|
107839
107844
|
|
107840
107845
|
;// CONCATENATED MODULE: ./src/common/utils/size-utils.ts
|
107841
107846
|
class SizeUtils {
|
107842
|
-
static
|
107847
|
+
static getWidthInfo(element) {
|
107848
|
+
const offsetSize = SizeUtils.getOffsetWidth(element);
|
107843
107849
|
const style = getComputedStyle(element);
|
107844
|
-
const
|
107845
|
-
|
107850
|
+
const inset = parseCssValue(style.borderLeftWidth)
|
107851
|
+
+ parseCssValue(style.borderRightWidth)
|
107852
|
+
+ parseCssValue(style.paddingLeft)
|
107853
|
+
+ parseCssValue(style.paddingRight);
|
107854
|
+
const sizeWithScrollBar = offsetSize - inset;
|
107846
107855
|
const scrollBarSize = Math.round(sizeWithScrollBar) - element.clientWidth;
|
107847
|
-
return sizeWithScrollBar - scrollBarSize;
|
107856
|
+
return new DimensionInfo(offsetSize, sizeWithScrollBar - scrollBarSize, scrollBarSize);
|
107848
107857
|
}
|
107849
|
-
static
|
107858
|
+
static getClientWidth(element) {
|
107859
|
+
return this.getWidthInfo(element).clientSize;
|
107860
|
+
}
|
107861
|
+
static getHeightInfo(element) {
|
107862
|
+
const offsetSize = SizeUtils.getOffsetHeight(element);
|
107850
107863
|
const style = getComputedStyle(element);
|
107851
|
-
const
|
107852
|
-
|
107864
|
+
const inset = parseCssValue(style.borderTopWidth)
|
107865
|
+
+ parseCssValue(style.borderBottomWidth)
|
107866
|
+
+ parseCssValue(style.paddingTop)
|
107867
|
+
+ parseCssValue(style.paddingBottom);
|
107868
|
+
const sizeWithScrollBar = offsetSize - inset;
|
107853
107869
|
const scrollBarSize = Math.round(sizeWithScrollBar) - element.clientHeight;
|
107854
|
-
return sizeWithScrollBar - scrollBarSize;
|
107870
|
+
return new DimensionInfo(offsetSize, sizeWithScrollBar - scrollBarSize, scrollBarSize);
|
107871
|
+
}
|
107872
|
+
static getClientHeight(element) {
|
107873
|
+
return this.getHeightInfo(element).clientSize;
|
107855
107874
|
}
|
107856
107875
|
static getOffsetSize(element) {
|
107857
107876
|
return element.getBoundingClientRect();
|
@@ -107863,6 +107882,16 @@ class SizeUtils {
|
|
107863
107882
|
return SizeUtils.getOffsetSize(element).height;
|
107864
107883
|
}
|
107865
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
|
+
}
|
107866
107895
|
|
107867
107896
|
;// CONCATENATED MODULE: ./src/common/canvas/canvas-manager.ts
|
107868
107897
|
|
@@ -108340,18 +108369,8 @@ class CanvasScrollManager {
|
|
108340
108369
|
this.updateScrollVisibility();
|
108341
108370
|
}
|
108342
108371
|
updateScrollVisibility() {
|
108343
|
-
if (!this.scrollMeasurer) {
|
108344
|
-
this.scrollMeasurer = document.createElement("div");
|
108345
|
-
this.scrollMeasurer.style.position = "absolute";
|
108346
|
-
this.scrollMeasurer.style.top = "0";
|
108347
|
-
this.scrollMeasurer.style.bottom = "0";
|
108348
|
-
this.scrollMeasurer.style.right = "0";
|
108349
|
-
this.scrollMeasurer.style.left = "0";
|
108350
|
-
}
|
108351
|
-
this.canvas.appendChild(this.scrollMeasurer);
|
108352
108372
|
const prevScrollYVisibility = this.sizes.scrollYVisible;
|
108353
|
-
this.sizes.updateScrollVisibility(this.
|
108354
|
-
this.canvas.removeChild(this.scrollMeasurer);
|
108373
|
+
this.sizes.updateScrollVisibility(this.canvas);
|
108355
108374
|
if (prevScrollYVisibility !== this.sizes.scrollYVisible && this.horizontalRuler)
|
108356
108375
|
this.horizontalRuler.adjust();
|
108357
108376
|
}
|
@@ -108426,6 +108445,7 @@ class CanvasScrollManager {
|
|
108426
108445
|
|
108427
108446
|
|
108428
108447
|
|
108448
|
+
|
108429
108449
|
class CanvasSizeInfo {
|
108430
108450
|
constructor() {
|
108431
108451
|
this.topSpacing = -1;
|
@@ -108442,7 +108462,7 @@ class CanvasSizeInfo {
|
|
108442
108462
|
this.pageVerticalInfo.init(dom.DomUtils.getCurrentStyle(page));
|
108443
108463
|
this.topSpacing = this.pageVerticalInfo.topPageBorderWidth + this.pageVerticalInfo.topMargin;
|
108444
108464
|
this.betweenPageSpacing = this.pageVerticalInfo.betweenPageSpacing;
|
108445
|
-
this.setVisibleAreaSize(canvas
|
108465
|
+
this.setVisibleAreaSize(SizeUtils.getClientWidth(canvas), SizeUtils.getClientHeight(canvas));
|
108446
108466
|
}
|
108447
108467
|
findPageIndexByOffsetY(pages, offsetY) {
|
108448
108468
|
return Math.max(0, search.SearchUtils.normedInterpolationIndexOf(pages, (p) => this.getPageOffsetY(p), offsetY));
|
@@ -108455,22 +108475,27 @@ class CanvasSizeInfo {
|
|
108455
108475
|
this.visibleAreaSize.height = height;
|
108456
108476
|
}
|
108457
108477
|
getVisibleAreaWidth(includeScrollBars) {
|
108458
|
-
if (includeScrollBars)
|
108478
|
+
if (!includeScrollBars)
|
108459
108479
|
return this.visibleAreaSize.width;
|
108460
|
-
return this.scrollYVisible ? this.visibleAreaSize.width
|
108480
|
+
return this.scrollYVisible ? this.visibleAreaSize.width + this.scrollWidth : this.visibleAreaSize.width;
|
108461
108481
|
}
|
108462
108482
|
getVisibleAreaHeight(includeScrollBars) {
|
108463
|
-
if (includeScrollBars)
|
108483
|
+
if (!includeScrollBars)
|
108464
108484
|
return this.visibleAreaSize.height;
|
108465
|
-
return this.scrollXVisible ? this.visibleAreaSize.height
|
108485
|
+
return this.scrollXVisible ? this.visibleAreaSize.height + this.scrollWidth : this.visibleAreaSize.height;
|
108466
108486
|
}
|
108467
|
-
updateScrollVisibility(
|
108468
|
-
this.scrollXVisible =
|
108469
|
-
this.scrollYVisible =
|
108487
|
+
updateScrollVisibility(canvas) {
|
108488
|
+
this.scrollXVisible = SizeUtils.getHeightInfo(canvas).scrollbarSize > 0;
|
108489
|
+
this.scrollYVisible = SizeUtils.getWidthInfo(canvas).scrollbarSize > 0;
|
108470
108490
|
}
|
108471
|
-
|
108472
|
-
|
108473
|
-
|
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;
|
108474
108499
|
}
|
108475
108500
|
}
|
108476
108501
|
|
@@ -109734,7 +109759,6 @@ class SelectionRenderer extends SelectionRendererBase {
|
|
109734
109759
|
|
109735
109760
|
|
109736
109761
|
|
109737
|
-
|
109738
109762
|
|
109739
109763
|
|
109740
109764
|
class ViewManager {
|
@@ -109794,11 +109818,8 @@ class ViewManager {
|
|
109794
109818
|
this.canvasListener.onCanvasScroll();
|
109795
109819
|
}
|
109796
109820
|
}
|
109797
|
-
else if (this.sizes.
|
109798
|
-
const size = SizeUtils.getOffsetSize(this.canvas);
|
109799
|
-
this.sizes.setVisibleAreaSize(size.width, size.height);
|
109821
|
+
else if (this.sizes.updateSize(this.canvas))
|
109800
109822
|
this.scroll.onCanvasSizeChanged();
|
109801
|
-
}
|
109802
109823
|
}
|
109803
109824
|
NotifyPagesReady(pageChanges) {
|
109804
109825
|
this.canvasListener.onPagesReady(pageChanges);
|
@@ -140790,8 +140811,8 @@ class DialogManager {
|
|
140790
140811
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_type.js
|
140791
140812
|
/**
|
140792
140813
|
* DevExtreme (esm/__internal/core/utils/m_type.js)
|
140793
|
-
* Version: 24.2.6-build-
|
140794
|
-
* Build date:
|
140814
|
+
* Version: 24.2.6-build-25071-1429
|
140815
|
+
* Build date: Wed Mar 12 2025
|
140795
140816
|
*
|
140796
140817
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140797
140818
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140893,8 +140914,8 @@ const isEvent = function(object) {
|
|
140893
140914
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/type.js
|
140894
140915
|
/**
|
140895
140916
|
* DevExtreme (esm/core/utils/type.js)
|
140896
|
-
* Version: 24.2.6-build-
|
140897
|
-
* Build date:
|
140917
|
+
* Version: 24.2.6-build-25071-1429
|
140918
|
+
* Build date: Wed Mar 12 2025
|
140898
140919
|
*
|
140899
140920
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140900
140921
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140904,8 +140925,8 @@ const isEvent = function(object) {
|
|
140904
140925
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_extend.js
|
140905
140926
|
/**
|
140906
140927
|
* DevExtreme (esm/__internal/core/utils/m_extend.js)
|
140907
|
-
* Version: 24.2.6-build-
|
140908
|
-
* Build date:
|
140928
|
+
* Version: 24.2.6-build-25071-1429
|
140929
|
+
* Build date: Wed Mar 12 2025
|
140909
140930
|
*
|
140910
140931
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140911
140932
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140963,8 +140984,8 @@ const extend = function(target) {
|
|
140963
140984
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/extend.js
|
140964
140985
|
/**
|
140965
140986
|
* DevExtreme (esm/core/utils/extend.js)
|
140966
|
-
* Version: 24.2.6-build-
|
140967
|
-
* Build date:
|
140987
|
+
* Version: 24.2.6-build-25071-1429
|
140988
|
+
* Build date: Wed Mar 12 2025
|
140968
140989
|
*
|
140969
140990
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140970
140991
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140974,8 +140995,8 @@ const extend = function(target) {
|
|
140974
140995
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_string.js
|
140975
140996
|
/**
|
140976
140997
|
* DevExtreme (esm/__internal/core/utils/m_string.js)
|
140977
|
-
* Version: 24.2.6-build-
|
140978
|
-
* Build date:
|
140998
|
+
* Version: 24.2.6-build-25071-1429
|
140999
|
+
* Build date: Wed Mar 12 2025
|
140979
141000
|
*
|
140980
141001
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140981
141002
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141050,8 +141071,8 @@ const isEmpty = function() {
|
|
141050
141071
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/string.js
|
141051
141072
|
/**
|
141052
141073
|
* DevExtreme (esm/core/utils/string.js)
|
141053
|
-
* Version: 24.2.6-build-
|
141054
|
-
* Build date:
|
141074
|
+
* Version: 24.2.6-build-25071-1429
|
141075
|
+
* Build date: Wed Mar 12 2025
|
141055
141076
|
*
|
141056
141077
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141057
141078
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141061,20 +141082,20 @@ const isEmpty = function() {
|
|
141061
141082
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/version.js
|
141062
141083
|
/**
|
141063
141084
|
* DevExtreme (esm/core/version.js)
|
141064
|
-
* Version: 24.2.6-build-
|
141065
|
-
* Build date:
|
141085
|
+
* Version: 24.2.6-build-25071-1429
|
141086
|
+
* Build date: Wed Mar 12 2025
|
141066
141087
|
*
|
141067
141088
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141068
141089
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
141069
141090
|
*/
|
141070
141091
|
const version = "24.2.5";
|
141071
|
-
const fullVersion = "24.2.5.
|
141092
|
+
const fullVersion = "24.2.5.25071-1429";
|
141072
141093
|
|
141073
141094
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_console.js
|
141074
141095
|
/**
|
141075
141096
|
* DevExtreme (esm/__internal/core/utils/m_console.js)
|
141076
|
-
* Version: 24.2.6-build-
|
141077
|
-
* Build date:
|
141097
|
+
* Version: 24.2.6-build-25071-1429
|
141098
|
+
* Build date: Wed Mar 12 2025
|
141078
141099
|
*
|
141079
141100
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141080
141101
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141114,8 +141135,8 @@ const debug = function() {
|
|
141114
141135
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_error.js
|
141115
141136
|
/**
|
141116
141137
|
* DevExtreme (esm/__internal/core/utils/m_error.js)
|
141117
|
-
* Version: 24.2.6-build-
|
141118
|
-
* Build date:
|
141138
|
+
* Version: 24.2.6-build-25071-1429
|
141139
|
+
* Build date: Wed Mar 12 2025
|
141119
141140
|
*
|
141120
141141
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141121
141142
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141186,8 +141207,8 @@ function error(baseErrors, errors) {
|
|
141186
141207
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/error.js
|
141187
141208
|
/**
|
141188
141209
|
* DevExtreme (esm/core/utils/error.js)
|
141189
|
-
* Version: 24.2.6-build-
|
141190
|
-
* Build date:
|
141210
|
+
* Version: 24.2.6-build-25071-1429
|
141211
|
+
* Build date: Wed Mar 12 2025
|
141191
141212
|
*
|
141192
141213
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141193
141214
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141198,8 +141219,8 @@ function error(baseErrors, errors) {
|
|
141198
141219
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_errors.js
|
141199
141220
|
/**
|
141200
141221
|
* DevExtreme (esm/__internal/core/m_errors.js)
|
141201
|
-
* Version: 24.2.6-build-
|
141202
|
-
* Build date:
|
141222
|
+
* Version: 24.2.6-build-25071-1429
|
141223
|
+
* Build date: Wed Mar 12 2025
|
141203
141224
|
*
|
141204
141225
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141205
141226
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141265,8 +141286,8 @@ function error(baseErrors, errors) {
|
|
141265
141286
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/errors.js
|
141266
141287
|
/**
|
141267
141288
|
* DevExtreme (esm/core/errors.js)
|
141268
|
-
* Version: 24.2.6-build-
|
141269
|
-
* Build date:
|
141289
|
+
* Version: 24.2.6-build-25071-1429
|
141290
|
+
* Build date: Wed Mar 12 2025
|
141270
141291
|
*
|
141271
141292
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141272
141293
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141277,8 +141298,8 @@ function error(baseErrors, errors) {
|
|
141277
141298
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_class.js
|
141278
141299
|
/**
|
141279
141300
|
* DevExtreme (esm/__internal/core/m_class.js)
|
141280
|
-
* Version: 24.2.6-build-
|
141281
|
-
* Build date:
|
141301
|
+
* Version: 24.2.6-build-25071-1429
|
141302
|
+
* Build date: Wed Mar 12 2025
|
141282
141303
|
*
|
141283
141304
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141284
141305
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141411,8 +141432,8 @@ classImpl.abstract = m_class_abstract;
|
|
141411
141432
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/class.js
|
141412
141433
|
/**
|
141413
141434
|
* DevExtreme (esm/core/class.js)
|
141414
|
-
* Version: 24.2.6-build-
|
141415
|
-
* Build date:
|
141435
|
+
* Version: 24.2.6-build-25071-1429
|
141436
|
+
* Build date: Wed Mar 12 2025
|
141416
141437
|
*
|
141417
141438
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141418
141439
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141423,8 +141444,8 @@ classImpl.abstract = m_class_abstract;
|
|
141423
141444
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_iterator.js
|
141424
141445
|
/**
|
141425
141446
|
* DevExtreme (esm/__internal/core/utils/m_iterator.js)
|
141426
|
-
* Version: 24.2.6-build-
|
141427
|
-
* Build date:
|
141447
|
+
* Version: 24.2.6-build-25071-1429
|
141448
|
+
* Build date: Wed Mar 12 2025
|
141428
141449
|
*
|
141429
141450
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141430
141451
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141473,8 +141494,8 @@ const reverseEach = (array, callback) => {
|
|
141473
141494
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_dependency_injector.js
|
141474
141495
|
/**
|
141475
141496
|
* DevExtreme (esm/__internal/core/utils/m_dependency_injector.js)
|
141476
|
-
* Version: 24.2.6-build-
|
141477
|
-
* Build date:
|
141497
|
+
* Version: 24.2.6-build-25071-1429
|
141498
|
+
* Build date: Wed Mar 12 2025
|
141478
141499
|
*
|
141479
141500
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141480
141501
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141523,8 +141544,8 @@ function injector(object) {
|
|
141523
141544
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/dependency_injector.js
|
141524
141545
|
/**
|
141525
141546
|
* DevExtreme (esm/core/utils/dependency_injector.js)
|
141526
|
-
* Version: 24.2.6-build-
|
141527
|
-
* Build date:
|
141547
|
+
* Version: 24.2.6-build-25071-1429
|
141548
|
+
* Build date: Wed Mar 12 2025
|
141528
141549
|
*
|
141529
141550
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141530
141551
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141535,8 +141556,8 @@ function injector(object) {
|
|
141535
141556
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.formatter.js
|
141536
141557
|
/**
|
141537
141558
|
* DevExtreme (esm/common/core/localization/ldml/date.formatter.js)
|
141538
|
-
* Version: 24.2.6-build-
|
141539
|
-
* Build date:
|
141559
|
+
* Version: 24.2.6-build-25071-1429
|
141560
|
+
* Build date: Wed Mar 12 2025
|
141540
141561
|
*
|
141541
141562
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141542
141563
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141689,8 +141710,8 @@ function _extends() {
|
|
141689
141710
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_config.js
|
141690
141711
|
/**
|
141691
141712
|
* DevExtreme (esm/__internal/core/m_config.js)
|
141692
|
-
* Version: 24.2.6-build-
|
141693
|
-
* Build date:
|
141713
|
+
* Version: 24.2.6-build-25071-1429
|
141714
|
+
* Build date: Wed Mar 12 2025
|
141694
141715
|
*
|
141695
141716
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141696
141717
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141765,8 +141786,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
141765
141786
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/config.js
|
141766
141787
|
/**
|
141767
141788
|
* DevExtreme (esm/common/config.js)
|
141768
|
-
* Version: 24.2.6-build-
|
141769
|
-
* Build date:
|
141789
|
+
* Version: 24.2.6-build-25071-1429
|
141790
|
+
* Build date: Wed Mar 12 2025
|
141770
141791
|
*
|
141771
141792
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141772
141793
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141777,8 +141798,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
141777
141798
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_guid.js
|
141778
141799
|
/**
|
141779
141800
|
* DevExtreme (esm/__internal/core/m_guid.js)
|
141780
|
-
* Version: 24.2.6-build-
|
141781
|
-
* Build date:
|
141801
|
+
* Version: 24.2.6-build-25071-1429
|
141802
|
+
* Build date: Wed Mar 12 2025
|
141782
141803
|
*
|
141783
141804
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141784
141805
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141820,8 +141841,8 @@ const Guid = core_class.inherit({
|
|
141820
141841
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/guid.js
|
141821
141842
|
/**
|
141822
141843
|
* DevExtreme (esm/common/guid.js)
|
141823
|
-
* Version: 24.2.6-build-
|
141824
|
-
* Build date:
|
141844
|
+
* Version: 24.2.6-build-25071-1429
|
141845
|
+
* Build date: Wed Mar 12 2025
|
141825
141846
|
*
|
141826
141847
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141827
141848
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141832,8 +141853,8 @@ const Guid = core_class.inherit({
|
|
141832
141853
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/templates/m_template_engine_registry.js
|
141833
141854
|
/**
|
141834
141855
|
* DevExtreme (esm/__internal/core/templates/m_template_engine_registry.js)
|
141835
|
-
* Version: 24.2.6-build-
|
141836
|
-
* Build date:
|
141856
|
+
* Version: 24.2.6-build-25071-1429
|
141857
|
+
* Build date: Wed Mar 12 2025
|
141837
141858
|
*
|
141838
141859
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141839
141860
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141862,8 +141883,8 @@ function getCurrentTemplateEngine() {
|
|
141862
141883
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/templates/template_engine_registry.js
|
141863
141884
|
/**
|
141864
141885
|
* DevExtreme (esm/core/templates/template_engine_registry.js)
|
141865
|
-
* Version: 24.2.6-build-
|
141866
|
-
* Build date:
|
141886
|
+
* Version: 24.2.6-build-25071-1429
|
141887
|
+
* Build date: Wed Mar 12 2025
|
141867
141888
|
*
|
141868
141889
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141869
141890
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141873,8 +141894,8 @@ function getCurrentTemplateEngine() {
|
|
141873
141894
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_set_template_engine.js
|
141874
141895
|
/**
|
141875
141896
|
* DevExtreme (esm/__internal/core/m_set_template_engine.js)
|
141876
|
-
* Version: 24.2.6-build-
|
141877
|
-
* Build date:
|
141897
|
+
* Version: 24.2.6-build-25071-1429
|
141898
|
+
* Build date: Wed Mar 12 2025
|
141878
141899
|
*
|
141879
141900
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141880
141901
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141884,8 +141905,8 @@ function getCurrentTemplateEngine() {
|
|
141884
141905
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/set_template_engine.js
|
141885
141906
|
/**
|
141886
141907
|
* DevExtreme (esm/common/set_template_engine.js)
|
141887
|
-
* Version: 24.2.6-build-
|
141888
|
-
* Build date:
|
141908
|
+
* Version: 24.2.6-build-25071-1429
|
141909
|
+
* Build date: Wed Mar 12 2025
|
141889
141910
|
*
|
141890
141911
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141891
141912
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141896,8 +141917,8 @@ function getCurrentTemplateEngine() {
|
|
141896
141917
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common.js
|
141897
141918
|
/**
|
141898
141919
|
* DevExtreme (esm/common.js)
|
141899
|
-
* Version: 24.2.6-build-
|
141900
|
-
* Build date:
|
141920
|
+
* Version: 24.2.6-build-25071-1429
|
141921
|
+
* Build date: Wed Mar 12 2025
|
141901
141922
|
*
|
141902
141923
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141903
141924
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141910,8 +141931,8 @@ function getCurrentTemplateEngine() {
|
|
141910
141931
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/config.js
|
141911
141932
|
/**
|
141912
141933
|
* DevExtreme (esm/core/config.js)
|
141913
|
-
* Version: 24.2.6-build-
|
141914
|
-
* Build date:
|
141934
|
+
* Version: 24.2.6-build-25071-1429
|
141935
|
+
* Build date: Wed Mar 12 2025
|
141915
141936
|
*
|
141916
141937
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141917
141938
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141922,8 +141943,8 @@ function getCurrentTemplateEngine() {
|
|
141922
141943
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/guid.js
|
141923
141944
|
/**
|
141924
141945
|
* DevExtreme (esm/core/guid.js)
|
141925
|
-
* Version: 24.2.6-build-
|
141926
|
-
* Build date:
|
141946
|
+
* Version: 24.2.6-build-25071-1429
|
141947
|
+
* Build date: Wed Mar 12 2025
|
141927
141948
|
*
|
141928
141949
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141929
141950
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141934,8 +141955,8 @@ function getCurrentTemplateEngine() {
|
|
141934
141955
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/console.js
|
141935
141956
|
/**
|
141936
141957
|
* DevExtreme (esm/core/utils/console.js)
|
141937
|
-
* Version: 24.2.6-build-
|
141938
|
-
* Build date:
|
141958
|
+
* Version: 24.2.6-build-25071-1429
|
141959
|
+
* Build date: Wed Mar 12 2025
|
141939
141960
|
*
|
141940
141961
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141941
141962
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141945,8 +141966,8 @@ function getCurrentTemplateEngine() {
|
|
141945
141966
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_variable_wrapper.js
|
141946
141967
|
/**
|
141947
141968
|
* DevExtreme (esm/__internal/core/utils/m_variable_wrapper.js)
|
141948
|
-
* Version: 24.2.6-build-
|
141949
|
-
* Build date:
|
141969
|
+
* Version: 24.2.6-build-25071-1429
|
141970
|
+
* Build date: Wed Mar 12 2025
|
141950
141971
|
*
|
141951
141972
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141952
141973
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141975,8 +141996,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
141975
141996
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/variable_wrapper.js
|
141976
141997
|
/**
|
141977
141998
|
* DevExtreme (esm/core/utils/variable_wrapper.js)
|
141978
|
-
* Version: 24.2.6-build-
|
141979
|
-
* Build date:
|
141999
|
+
* Version: 24.2.6-build-25071-1429
|
142000
|
+
* Build date: Wed Mar 12 2025
|
141980
142001
|
*
|
141981
142002
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141982
142003
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141987,8 +142008,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
141987
142008
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_object.js
|
141988
142009
|
/**
|
141989
142010
|
* DevExtreme (esm/__internal/core/utils/m_object.js)
|
141990
|
-
* Version: 24.2.6-build-
|
141991
|
-
* Build date:
|
142011
|
+
* Version: 24.2.6-build-25071-1429
|
142012
|
+
* Build date: Wed Mar 12 2025
|
141992
142013
|
*
|
141993
142014
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141994
142015
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142088,8 +142109,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142088
142109
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/object.js
|
142089
142110
|
/**
|
142090
142111
|
* DevExtreme (esm/core/utils/object.js)
|
142091
|
-
* Version: 24.2.6-build-
|
142092
|
-
* Build date:
|
142112
|
+
* Version: 24.2.6-build-25071-1429
|
142113
|
+
* Build date: Wed Mar 12 2025
|
142093
142114
|
*
|
142094
142115
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142095
142116
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142099,8 +142120,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142099
142120
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_data.js
|
142100
142121
|
/**
|
142101
142122
|
* DevExtreme (esm/__internal/core/utils/m_data.js)
|
142102
|
-
* Version: 24.2.6-build-
|
142103
|
-
* Build date:
|
142123
|
+
* Version: 24.2.6-build-25071-1429
|
142124
|
+
* Build date: Wed Mar 12 2025
|
142104
142125
|
*
|
142105
142126
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142106
142127
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142296,8 +142317,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142296
142317
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/data.js
|
142297
142318
|
/**
|
142298
142319
|
* DevExtreme (esm/core/utils/data.js)
|
142299
|
-
* Version: 24.2.6-build-
|
142300
|
-
* Build date:
|
142320
|
+
* Version: 24.2.6-build-25071-1429
|
142321
|
+
* Build date: Wed Mar 12 2025
|
142301
142322
|
*
|
142302
142323
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142303
142324
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142307,8 +142328,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142307
142328
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_callbacks.js
|
142308
142329
|
/**
|
142309
142330
|
* DevExtreme (esm/__internal/core/utils/m_callbacks.js)
|
142310
|
-
* Version: 24.2.6-build-
|
142311
|
-
* Build date:
|
142331
|
+
* Version: 24.2.6-build-25071-1429
|
142332
|
+
* Build date: Wed Mar 12 2025
|
142312
142333
|
*
|
142313
142334
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142314
142335
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142403,8 +142424,8 @@ const Callbacks = function(options) {
|
|
142403
142424
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/callbacks.js
|
142404
142425
|
/**
|
142405
142426
|
* DevExtreme (esm/core/utils/callbacks.js)
|
142406
|
-
* Version: 24.2.6-build-
|
142407
|
-
* Build date:
|
142427
|
+
* Version: 24.2.6-build-25071-1429
|
142428
|
+
* Build date: Wed Mar 12 2025
|
142408
142429
|
*
|
142409
142430
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142410
142431
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142415,8 +142436,8 @@ const Callbacks = function(options) {
|
|
142415
142436
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_deferred.js
|
142416
142437
|
/**
|
142417
142438
|
* DevExtreme (esm/__internal/core/utils/m_deferred.js)
|
142418
|
-
* Version: 24.2.6-build-
|
142419
|
-
* Build date:
|
142439
|
+
* Version: 24.2.6-build-25071-1429
|
142440
|
+
* Build date: Wed Mar 12 2025
|
142420
142441
|
*
|
142421
142442
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142422
142443
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142581,8 +142602,8 @@ function when() {
|
|
142581
142602
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/deferred.js
|
142582
142603
|
/**
|
142583
142604
|
* DevExtreme (esm/core/utils/deferred.js)
|
142584
|
-
* Version: 24.2.6-build-
|
142585
|
-
* Build date:
|
142605
|
+
* Version: 24.2.6-build-25071-1429
|
142606
|
+
* Build date: Wed Mar 12 2025
|
142586
142607
|
*
|
142587
142608
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142588
142609
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142592,8 +142613,8 @@ function when() {
|
|
142592
142613
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_common.js
|
142593
142614
|
/**
|
142594
142615
|
* DevExtreme (esm/__internal/core/utils/m_common.js)
|
142595
|
-
* Version: 24.2.6-build-
|
142596
|
-
* Build date:
|
142616
|
+
* Version: 24.2.6-build-25071-1429
|
142617
|
+
* Build date: Wed Mar 12 2025
|
142597
142618
|
*
|
142598
142619
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142599
142620
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142888,8 +142909,8 @@ const equalByValue = function(value1, value2) {
|
|
142888
142909
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/common.js
|
142889
142910
|
/**
|
142890
142911
|
* DevExtreme (esm/core/utils/common.js)
|
142891
|
-
* Version: 24.2.6-build-
|
142892
|
-
* Build date:
|
142912
|
+
* Version: 24.2.6-build-25071-1429
|
142913
|
+
* Build date: Wed Mar 12 2025
|
142893
142914
|
*
|
142894
142915
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142895
142916
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142899,8 +142920,8 @@ const equalByValue = function(value1, value2) {
|
|
142899
142920
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_math.js
|
142900
142921
|
/**
|
142901
142922
|
* DevExtreme (esm/__internal/core/utils/m_math.js)
|
142902
|
-
* Version: 24.2.6-build-
|
142903
|
-
* Build date:
|
142923
|
+
* Version: 24.2.6-build-25071-1429
|
142924
|
+
* Build date: Wed Mar 12 2025
|
142904
142925
|
*
|
142905
142926
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142906
142927
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143069,8 +143090,8 @@ function roundFloatPart(value) {
|
|
143069
143090
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/math.js
|
143070
143091
|
/**
|
143071
143092
|
* DevExtreme (esm/core/utils/math.js)
|
143072
|
-
* Version: 24.2.6-build-
|
143073
|
-
* Build date:
|
143093
|
+
* Version: 24.2.6-build-25071-1429
|
143094
|
+
* Build date: Wed Mar 12 2025
|
143074
143095
|
*
|
143075
143096
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143076
143097
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143080,8 +143101,8 @@ function roundFloatPart(value) {
|
|
143080
143101
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/utils.js
|
143081
143102
|
/**
|
143082
143103
|
* DevExtreme (esm/common/core/localization/utils.js)
|
143083
|
-
* Version: 24.2.6-build-
|
143084
|
-
* Build date:
|
143104
|
+
* Version: 24.2.6-build-25071-1429
|
143105
|
+
* Build date: Wed Mar 12 2025
|
143085
143106
|
*
|
143086
143107
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143087
143108
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143108,8 +143129,8 @@ function toFixed(value, precision) {
|
|
143108
143129
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/number.js
|
143109
143130
|
/**
|
143110
143131
|
* DevExtreme (esm/common/core/localization/ldml/number.js)
|
143111
|
-
* Version: 24.2.6-build-
|
143112
|
-
* Build date:
|
143132
|
+
* Version: 24.2.6-build-25071-1429
|
143133
|
+
* Build date: Wed Mar 12 2025
|
143113
143134
|
*
|
143114
143135
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143115
143136
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143350,8 +143371,8 @@ function getFormat(formatter) {
|
|
143350
143371
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/currency.js
|
143351
143372
|
/**
|
143352
143373
|
* DevExtreme (esm/common/core/localization/currency.js)
|
143353
|
-
* Version: 24.2.6-build-
|
143354
|
-
* Build date:
|
143374
|
+
* Version: 24.2.6-build-25071-1429
|
143375
|
+
* Build date: Wed Mar 12 2025
|
143355
143376
|
*
|
143356
143377
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143357
143378
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143383,8 +143404,8 @@ function getFormat(formatter) {
|
|
143383
143404
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/parent_locales.js
|
143384
143405
|
/**
|
143385
143406
|
* DevExtreme (esm/common/core/localization/cldr-data/parent_locales.js)
|
143386
|
-
* Version: 24.2.6-build-
|
143387
|
-
* Build date:
|
143407
|
+
* Version: 24.2.6-build-25071-1429
|
143408
|
+
* Build date: Wed Mar 12 2025
|
143388
143409
|
*
|
143389
143410
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143390
143411
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143569,8 +143590,8 @@ function getFormat(formatter) {
|
|
143569
143590
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/parentLocale.js
|
143570
143591
|
/**
|
143571
143592
|
* DevExtreme (esm/common/core/localization/parentLocale.js)
|
143572
|
-
* Version: 24.2.6-build-
|
143573
|
-
* Build date:
|
143593
|
+
* Version: 24.2.6-build-25071-1429
|
143594
|
+
* Build date: Wed Mar 12 2025
|
143574
143595
|
*
|
143575
143596
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143576
143597
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143587,8 +143608,8 @@ const PARENT_LOCALE_SEPARATOR = "-";
|
|
143587
143608
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/core.js
|
143588
143609
|
/**
|
143589
143610
|
* DevExtreme (esm/common/core/localization/core.js)
|
143590
|
-
* Version: 24.2.6-build-
|
143591
|
-
* Build date:
|
143611
|
+
* Version: 24.2.6-build-25071-1429
|
143612
|
+
* Build date: Wed Mar 12 2025
|
143592
143613
|
*
|
143593
143614
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143594
143615
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143629,8 +143650,8 @@ const DEFAULT_LOCALE = "en";
|
|
143629
143650
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/open_xml_currency_format.js
|
143630
143651
|
/**
|
143631
143652
|
* DevExtreme (esm/common/core/localization/open_xml_currency_format.js)
|
143632
|
-
* Version: 24.2.6-build-
|
143633
|
-
* Build date:
|
143653
|
+
* Version: 24.2.6-build-25071-1429
|
143654
|
+
* Build date: Wed Mar 12 2025
|
143634
143655
|
*
|
143635
143656
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143636
143657
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143672,8 +143693,8 @@ const DEFAULT_LOCALE = "en";
|
|
143672
143693
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/accounting_formats.js
|
143673
143694
|
/**
|
143674
143695
|
* DevExtreme (esm/common/core/localization/cldr-data/accounting_formats.js)
|
143675
|
-
* Version: 24.2.6-build-
|
143676
|
-
* Build date:
|
143696
|
+
* Version: 24.2.6-build-25071-1429
|
143697
|
+
* Build date: Wed Mar 12 2025
|
143677
143698
|
*
|
143678
143699
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143679
143700
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144259,8 +144280,8 @@ const DEFAULT_LOCALE = "en";
|
|
144259
144280
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/number.js
|
144260
144281
|
/**
|
144261
144282
|
* DevExtreme (esm/common/core/localization/intl/number.js)
|
144262
|
-
* Version: 24.2.6-build-
|
144263
|
-
* Build date:
|
144283
|
+
* Version: 24.2.6-build-25071-1429
|
144284
|
+
* Build date: Wed Mar 12 2025
|
144264
144285
|
*
|
144265
144286
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144266
144287
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144380,8 +144401,8 @@ const getCurrencyFormatter = currency => new Intl.NumberFormat(core.locale(), {
|
|
144380
144401
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/number.js
|
144381
144402
|
/**
|
144382
144403
|
* DevExtreme (esm/common/core/localization/number.js)
|
144383
|
-
* Version: 24.2.6-build-
|
144384
|
-
* Build date:
|
144404
|
+
* Version: 24.2.6-build-25071-1429
|
144405
|
+
* Build date: Wed Mar 12 2025
|
144385
144406
|
*
|
144386
144407
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144387
144408
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144686,8 +144707,8 @@ if (hasIntl) {
|
|
144686
144707
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.format.js
|
144687
144708
|
/**
|
144688
144709
|
* DevExtreme (esm/common/core/localization/ldml/date.format.js)
|
144689
|
-
* Version: 24.2.6-build-
|
144690
|
-
* Build date:
|
144710
|
+
* Version: 24.2.6-build-25071-1429
|
144711
|
+
* Build date: Wed Mar 12 2025
|
144691
144712
|
*
|
144692
144713
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144693
144714
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144884,8 +144905,8 @@ const date_format_getFormat = function(formatter) {
|
|
144884
144905
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.parser.js
|
144885
144906
|
/**
|
144886
144907
|
* DevExtreme (esm/common/core/localization/ldml/date.parser.js)
|
144887
|
-
* Version: 24.2.6-build-
|
144888
|
-
* Build date:
|
144908
|
+
* Version: 24.2.6-build-25071-1429
|
144909
|
+
* Build date: Wed Mar 12 2025
|
144889
144910
|
*
|
144890
144911
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144891
144912
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145203,8 +145224,8 @@ const getParser = function(format, dateParts) {
|
|
145203
145224
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/default_date_names.js
|
145204
145225
|
/**
|
145205
145226
|
* DevExtreme (esm/common/core/localization/default_date_names.js)
|
145206
|
-
* Version: 24.2.6-build-
|
145207
|
-
* Build date:
|
145227
|
+
* Version: 24.2.6-build-25071-1429
|
145228
|
+
* Build date: Wed Mar 12 2025
|
145208
145229
|
*
|
145209
145230
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145210
145231
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145240,8 +145261,8 @@ const cutCaptions = (captions, format) => {
|
|
145240
145261
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/first_day_of_week_data.js
|
145241
145262
|
/**
|
145242
145263
|
* DevExtreme (esm/common/core/localization/cldr-data/first_day_of_week_data.js)
|
145243
|
-
* Version: 24.2.6-build-
|
145244
|
-
* Build date:
|
145264
|
+
* Version: 24.2.6-build-25071-1429
|
145265
|
+
* Build date: Wed Mar 12 2025
|
145245
145266
|
*
|
145246
145267
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145247
145268
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145440,8 +145461,8 @@ const cutCaptions = (captions, format) => {
|
|
145440
145461
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/date.js
|
145441
145462
|
/**
|
145442
145463
|
* DevExtreme (esm/common/core/localization/intl/date.js)
|
145443
|
-
* Version: 24.2.6-build-
|
145444
|
-
* Build date:
|
145464
|
+
* Version: 24.2.6-build-25071-1429
|
145465
|
+
* Build date: Wed Mar 12 2025
|
145445
145466
|
*
|
145446
145467
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145447
145468
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145758,8 +145779,8 @@ const monthNameStrategies = {
|
|
145758
145779
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/date.js
|
145759
145780
|
/**
|
145760
145781
|
* DevExtreme (esm/common/core/localization/date.js)
|
145761
|
-
* Version: 24.2.6-build-
|
145762
|
-
* Build date:
|
145782
|
+
* Version: 24.2.6-build-25071-1429
|
145783
|
+
* Build date: Wed Mar 12 2025
|
145763
145784
|
*
|
145764
145785
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145765
145786
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|