devexpress-richedit 24.2.5-build-25030-0102 → 24.2.5
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
CHANGED
@@ -22720,8 +22720,6 @@ class HyperlinkInfo {
|
|
22720
22720
|
return false;
|
22721
22721
|
if (this.uri.startsWith("#"))
|
22722
22722
|
return false;
|
22723
|
-
if (this.isMail())
|
22724
|
-
return false;
|
22725
22723
|
return utils/* UrlUtils */.jE.isValid(this.uri);
|
22726
22724
|
}
|
22727
22725
|
isMail() {
|
@@ -110052,7 +110050,6 @@ class UpdateFieldCommand extends UpdateFieldCommandBase {
|
|
110052
110050
|
}
|
110053
110051
|
|
110054
110052
|
;// CONCATENATED MODULE: ./src/common/focus-manager.ts
|
110055
|
-
|
110056
110053
|
class FocusManager {
|
110057
110054
|
constructor(canvasManager, owner, inputController, eventManager) {
|
110058
110055
|
this.canvasManager = canvasManager;
|
@@ -110072,9 +110069,7 @@ class FocusManager {
|
|
110072
110069
|
captureFocus() {
|
110073
110070
|
if (this.owner.canCaptureFocus()) {
|
110074
110071
|
this.owner.onCaptureFocus();
|
110075
|
-
|
110076
|
-
browser.Browser.MacOSMobilePlatform && window.self !== window.top)
|
110077
|
-
this.inputController.captureFocus();
|
110072
|
+
this.inputController.captureFocus();
|
110078
110073
|
this.eventManager.onFocusIn();
|
110079
110074
|
}
|
110080
110075
|
}
|
@@ -110855,15 +110850,16 @@ class DivInputEditor extends InputEditorBase {
|
|
110855
110850
|
this.cursorWasSetOnLastPosition = true;
|
110856
110851
|
}
|
110857
110852
|
setEditableDocumentContent(content) {
|
110853
|
+
if (!content) {
|
110854
|
+
this.clearInputElement();
|
110855
|
+
return;
|
110856
|
+
}
|
110858
110857
|
if (typeof content === "string")
|
110859
110858
|
this.inputElement.innerHTML = content;
|
110860
|
-
else
|
110859
|
+
else {
|
110861
110860
|
this.inputElement.innerHTML = "";
|
110862
|
-
|
110863
|
-
this.inputElement.appendChild(content[i]);
|
110861
|
+
content.forEach((node) => this.inputElement.appendChild(node));
|
110864
110862
|
}
|
110865
|
-
else
|
110866
|
-
this.clearInputElement();
|
110867
110863
|
}
|
110868
110864
|
setEditableDocumentCursorPosition(cursorPosition) {
|
110869
110865
|
let textLength = this.getEditableDocumentFullText().length;
|
@@ -111032,8 +111028,9 @@ class IFrameInputEditor extends InputEditorBase {
|
|
111032
111028
|
else
|
111033
111029
|
dom.DomUtils.setFocus(this.control.readOnly == ReadOnlyMode.Persistent ? this.inputElement : this.editableDocument.body);
|
111034
111030
|
}
|
111035
|
-
setPosition(left, top) {
|
111036
|
-
|
111031
|
+
setPosition(left, top, force = false) {
|
111032
|
+
if (this.IMEState === IMEState.None || force)
|
111033
|
+
super.setPosition(left, top);
|
111037
111034
|
if (left && top)
|
111038
111035
|
this.selectEditableDocumentContent();
|
111039
111036
|
}
|
@@ -111168,11 +111165,12 @@ class IFrameInputEditor extends InputEditorBase {
|
|
111168
111165
|
const layoutPoint = new LayoutPoint(layoutPosition.pageIndex, layoutX, layoutPosition.getLayoutY(DocumentLayoutDetailsLevel.Row));
|
111169
111166
|
const pageElement = this.control.viewManager.cache[layoutPoint.pageIndex].page;
|
111170
111167
|
layoutPoint.offset(pageElement.offsetLeft, pageElement.offsetTop);
|
111171
|
-
this.setPosition(layoutPoint.x, layoutPoint.y);
|
111168
|
+
this.setPosition(layoutPoint.x, layoutPoint.y, true);
|
111172
111169
|
this.editableDocument.body.style.textIndent = this.previousText.length ? currentTextIndent :
|
111173
111170
|
layoutPosition.getLayoutX(this.control.measurer, DocumentLayoutDetailsLevel.Box) +
|
111174
111171
|
layoutPosition.box.getCharOffsetXInPixels(this.control.measurer, layoutPosition.charOffset) - layoutX + "px";
|
111175
111172
|
this.inputElement.style.width = layoutPosition.row.width + "px";
|
111173
|
+
this.inputElement.style.minWidth = layoutPosition.row.width + "px";
|
111176
111174
|
if (browser.Browser.IE || browser.Browser.Edge) {
|
111177
111175
|
this.editableDocument.body.style.width = this.inputElement.style.width;
|
111178
111176
|
this.editableDocument.body.style.height = this.inputElement.style.height = layoutPosition.row.height + "px";
|
@@ -140766,8 +140764,8 @@ class DialogManager {
|
|
140766
140764
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_type.js
|
140767
140765
|
/**
|
140768
140766
|
* DevExtreme (esm/__internal/core/utils/m_type.js)
|
140769
|
-
* Version: 24.2.5
|
140770
|
-
* Build date:
|
140767
|
+
* Version: 24.2.5
|
140768
|
+
* Build date: Fri Feb 14 2025
|
140771
140769
|
*
|
140772
140770
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140773
140771
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140869,8 +140867,8 @@ const isEvent = function(object) {
|
|
140869
140867
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/type.js
|
140870
140868
|
/**
|
140871
140869
|
* DevExtreme (esm/core/utils/type.js)
|
140872
|
-
* Version: 24.2.5
|
140873
|
-
* Build date:
|
140870
|
+
* Version: 24.2.5
|
140871
|
+
* Build date: Fri Feb 14 2025
|
140874
140872
|
*
|
140875
140873
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140876
140874
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140880,8 +140878,8 @@ const isEvent = function(object) {
|
|
140880
140878
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_extend.js
|
140881
140879
|
/**
|
140882
140880
|
* DevExtreme (esm/__internal/core/utils/m_extend.js)
|
140883
|
-
* Version: 24.2.5
|
140884
|
-
* Build date:
|
140881
|
+
* Version: 24.2.5
|
140882
|
+
* Build date: Fri Feb 14 2025
|
140885
140883
|
*
|
140886
140884
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140887
140885
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140939,8 +140937,8 @@ const extend = function(target) {
|
|
140939
140937
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/extend.js
|
140940
140938
|
/**
|
140941
140939
|
* DevExtreme (esm/core/utils/extend.js)
|
140942
|
-
* Version: 24.2.5
|
140943
|
-
* Build date:
|
140940
|
+
* Version: 24.2.5
|
140941
|
+
* Build date: Fri Feb 14 2025
|
140944
140942
|
*
|
140945
140943
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140946
140944
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140950,8 +140948,8 @@ const extend = function(target) {
|
|
140950
140948
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_string.js
|
140951
140949
|
/**
|
140952
140950
|
* DevExtreme (esm/__internal/core/utils/m_string.js)
|
140953
|
-
* Version: 24.2.5
|
140954
|
-
* Build date:
|
140951
|
+
* Version: 24.2.5
|
140952
|
+
* Build date: Fri Feb 14 2025
|
140955
140953
|
*
|
140956
140954
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140957
140955
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141026,8 +141024,8 @@ const isEmpty = function() {
|
|
141026
141024
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/string.js
|
141027
141025
|
/**
|
141028
141026
|
* DevExtreme (esm/core/utils/string.js)
|
141029
|
-
* Version: 24.2.5
|
141030
|
-
* Build date:
|
141027
|
+
* Version: 24.2.5
|
141028
|
+
* Build date: Fri Feb 14 2025
|
141031
141029
|
*
|
141032
141030
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141033
141031
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141037,20 +141035,20 @@ const isEmpty = function() {
|
|
141037
141035
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/version.js
|
141038
141036
|
/**
|
141039
141037
|
* DevExtreme (esm/core/version.js)
|
141040
|
-
* Version: 24.2.5
|
141041
|
-
* Build date:
|
141038
|
+
* Version: 24.2.5
|
141039
|
+
* Build date: Fri Feb 14 2025
|
141042
141040
|
*
|
141043
141041
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141044
141042
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
141045
141043
|
*/
|
141046
|
-
const version = "24.2.
|
141047
|
-
const fullVersion = "24.2.
|
141044
|
+
const version = "24.2.5";
|
141045
|
+
const fullVersion = "24.2.5";
|
141048
141046
|
|
141049
141047
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_console.js
|
141050
141048
|
/**
|
141051
141049
|
* DevExtreme (esm/__internal/core/utils/m_console.js)
|
141052
|
-
* Version: 24.2.5
|
141053
|
-
* Build date:
|
141050
|
+
* Version: 24.2.5
|
141051
|
+
* Build date: Fri Feb 14 2025
|
141054
141052
|
*
|
141055
141053
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141056
141054
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141090,8 +141088,8 @@ const debug = function() {
|
|
141090
141088
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_error.js
|
141091
141089
|
/**
|
141092
141090
|
* DevExtreme (esm/__internal/core/utils/m_error.js)
|
141093
|
-
* Version: 24.2.5
|
141094
|
-
* Build date:
|
141091
|
+
* Version: 24.2.5
|
141092
|
+
* Build date: Fri Feb 14 2025
|
141095
141093
|
*
|
141096
141094
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141097
141095
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141162,8 +141160,8 @@ function error(baseErrors, errors) {
|
|
141162
141160
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/error.js
|
141163
141161
|
/**
|
141164
141162
|
* DevExtreme (esm/core/utils/error.js)
|
141165
|
-
* Version: 24.2.5
|
141166
|
-
* Build date:
|
141163
|
+
* Version: 24.2.5
|
141164
|
+
* Build date: Fri Feb 14 2025
|
141167
141165
|
*
|
141168
141166
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141169
141167
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141174,8 +141172,8 @@ function error(baseErrors, errors) {
|
|
141174
141172
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_errors.js
|
141175
141173
|
/**
|
141176
141174
|
* DevExtreme (esm/__internal/core/m_errors.js)
|
141177
|
-
* Version: 24.2.5
|
141178
|
-
* Build date:
|
141175
|
+
* Version: 24.2.5
|
141176
|
+
* Build date: Fri Feb 14 2025
|
141179
141177
|
*
|
141180
141178
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141181
141179
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141241,8 +141239,8 @@ function error(baseErrors, errors) {
|
|
141241
141239
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/errors.js
|
141242
141240
|
/**
|
141243
141241
|
* DevExtreme (esm/core/errors.js)
|
141244
|
-
* Version: 24.2.5
|
141245
|
-
* Build date:
|
141242
|
+
* Version: 24.2.5
|
141243
|
+
* Build date: Fri Feb 14 2025
|
141246
141244
|
*
|
141247
141245
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141248
141246
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141253,8 +141251,8 @@ function error(baseErrors, errors) {
|
|
141253
141251
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_class.js
|
141254
141252
|
/**
|
141255
141253
|
* DevExtreme (esm/__internal/core/m_class.js)
|
141256
|
-
* Version: 24.2.5
|
141257
|
-
* Build date:
|
141254
|
+
* Version: 24.2.5
|
141255
|
+
* Build date: Fri Feb 14 2025
|
141258
141256
|
*
|
141259
141257
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141260
141258
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141387,8 +141385,8 @@ classImpl.abstract = m_class_abstract;
|
|
141387
141385
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/class.js
|
141388
141386
|
/**
|
141389
141387
|
* DevExtreme (esm/core/class.js)
|
141390
|
-
* Version: 24.2.5
|
141391
|
-
* Build date:
|
141388
|
+
* Version: 24.2.5
|
141389
|
+
* Build date: Fri Feb 14 2025
|
141392
141390
|
*
|
141393
141391
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141394
141392
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141399,8 +141397,8 @@ classImpl.abstract = m_class_abstract;
|
|
141399
141397
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_iterator.js
|
141400
141398
|
/**
|
141401
141399
|
* DevExtreme (esm/__internal/core/utils/m_iterator.js)
|
141402
|
-
* Version: 24.2.5
|
141403
|
-
* Build date:
|
141400
|
+
* Version: 24.2.5
|
141401
|
+
* Build date: Fri Feb 14 2025
|
141404
141402
|
*
|
141405
141403
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141406
141404
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141449,8 +141447,8 @@ const reverseEach = (array, callback) => {
|
|
141449
141447
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_dependency_injector.js
|
141450
141448
|
/**
|
141451
141449
|
* DevExtreme (esm/__internal/core/utils/m_dependency_injector.js)
|
141452
|
-
* Version: 24.2.5
|
141453
|
-
* Build date:
|
141450
|
+
* Version: 24.2.5
|
141451
|
+
* Build date: Fri Feb 14 2025
|
141454
141452
|
*
|
141455
141453
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141456
141454
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141499,8 +141497,8 @@ function injector(object) {
|
|
141499
141497
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/dependency_injector.js
|
141500
141498
|
/**
|
141501
141499
|
* DevExtreme (esm/core/utils/dependency_injector.js)
|
141502
|
-
* Version: 24.2.5
|
141503
|
-
* Build date:
|
141500
|
+
* Version: 24.2.5
|
141501
|
+
* Build date: Fri Feb 14 2025
|
141504
141502
|
*
|
141505
141503
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141506
141504
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141511,8 +141509,8 @@ function injector(object) {
|
|
141511
141509
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.formatter.js
|
141512
141510
|
/**
|
141513
141511
|
* DevExtreme (esm/common/core/localization/ldml/date.formatter.js)
|
141514
|
-
* Version: 24.2.5
|
141515
|
-
* Build date:
|
141512
|
+
* Version: 24.2.5
|
141513
|
+
* Build date: Fri Feb 14 2025
|
141516
141514
|
*
|
141517
141515
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141518
141516
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141665,8 +141663,8 @@ function _extends() {
|
|
141665
141663
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_config.js
|
141666
141664
|
/**
|
141667
141665
|
* DevExtreme (esm/__internal/core/m_config.js)
|
141668
|
-
* Version: 24.2.5
|
141669
|
-
* Build date:
|
141666
|
+
* Version: 24.2.5
|
141667
|
+
* Build date: Fri Feb 14 2025
|
141670
141668
|
*
|
141671
141669
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141672
141670
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141741,8 +141739,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
141741
141739
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/config.js
|
141742
141740
|
/**
|
141743
141741
|
* DevExtreme (esm/common/config.js)
|
141744
|
-
* Version: 24.2.5
|
141745
|
-
* Build date:
|
141742
|
+
* Version: 24.2.5
|
141743
|
+
* Build date: Fri Feb 14 2025
|
141746
141744
|
*
|
141747
141745
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141748
141746
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141753,8 +141751,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
141753
141751
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_guid.js
|
141754
141752
|
/**
|
141755
141753
|
* DevExtreme (esm/__internal/core/m_guid.js)
|
141756
|
-
* Version: 24.2.5
|
141757
|
-
* Build date:
|
141754
|
+
* Version: 24.2.5
|
141755
|
+
* Build date: Fri Feb 14 2025
|
141758
141756
|
*
|
141759
141757
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141760
141758
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141796,8 +141794,8 @@ const Guid = core_class.inherit({
|
|
141796
141794
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/guid.js
|
141797
141795
|
/**
|
141798
141796
|
* DevExtreme (esm/common/guid.js)
|
141799
|
-
* Version: 24.2.5
|
141800
|
-
* Build date:
|
141797
|
+
* Version: 24.2.5
|
141798
|
+
* Build date: Fri Feb 14 2025
|
141801
141799
|
*
|
141802
141800
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141803
141801
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141808,8 +141806,8 @@ const Guid = core_class.inherit({
|
|
141808
141806
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/templates/m_template_engine_registry.js
|
141809
141807
|
/**
|
141810
141808
|
* DevExtreme (esm/__internal/core/templates/m_template_engine_registry.js)
|
141811
|
-
* Version: 24.2.5
|
141812
|
-
* Build date:
|
141809
|
+
* Version: 24.2.5
|
141810
|
+
* Build date: Fri Feb 14 2025
|
141813
141811
|
*
|
141814
141812
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141815
141813
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141838,8 +141836,8 @@ function getCurrentTemplateEngine() {
|
|
141838
141836
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/templates/template_engine_registry.js
|
141839
141837
|
/**
|
141840
141838
|
* DevExtreme (esm/core/templates/template_engine_registry.js)
|
141841
|
-
* Version: 24.2.5
|
141842
|
-
* Build date:
|
141839
|
+
* Version: 24.2.5
|
141840
|
+
* Build date: Fri Feb 14 2025
|
141843
141841
|
*
|
141844
141842
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141845
141843
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141849,8 +141847,8 @@ function getCurrentTemplateEngine() {
|
|
141849
141847
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_set_template_engine.js
|
141850
141848
|
/**
|
141851
141849
|
* DevExtreme (esm/__internal/core/m_set_template_engine.js)
|
141852
|
-
* Version: 24.2.5
|
141853
|
-
* Build date:
|
141850
|
+
* Version: 24.2.5
|
141851
|
+
* Build date: Fri Feb 14 2025
|
141854
141852
|
*
|
141855
141853
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141856
141854
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141860,8 +141858,8 @@ function getCurrentTemplateEngine() {
|
|
141860
141858
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/set_template_engine.js
|
141861
141859
|
/**
|
141862
141860
|
* DevExtreme (esm/common/set_template_engine.js)
|
141863
|
-
* Version: 24.2.5
|
141864
|
-
* Build date:
|
141861
|
+
* Version: 24.2.5
|
141862
|
+
* Build date: Fri Feb 14 2025
|
141865
141863
|
*
|
141866
141864
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141867
141865
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141872,8 +141870,8 @@ function getCurrentTemplateEngine() {
|
|
141872
141870
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common.js
|
141873
141871
|
/**
|
141874
141872
|
* DevExtreme (esm/common.js)
|
141875
|
-
* Version: 24.2.5
|
141876
|
-
* Build date:
|
141873
|
+
* Version: 24.2.5
|
141874
|
+
* Build date: Fri Feb 14 2025
|
141877
141875
|
*
|
141878
141876
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141879
141877
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141886,8 +141884,8 @@ function getCurrentTemplateEngine() {
|
|
141886
141884
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/config.js
|
141887
141885
|
/**
|
141888
141886
|
* DevExtreme (esm/core/config.js)
|
141889
|
-
* Version: 24.2.5
|
141890
|
-
* Build date:
|
141887
|
+
* Version: 24.2.5
|
141888
|
+
* Build date: Fri Feb 14 2025
|
141891
141889
|
*
|
141892
141890
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141893
141891
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141898,8 +141896,8 @@ function getCurrentTemplateEngine() {
|
|
141898
141896
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/guid.js
|
141899
141897
|
/**
|
141900
141898
|
* DevExtreme (esm/core/guid.js)
|
141901
|
-
* Version: 24.2.5
|
141902
|
-
* Build date:
|
141899
|
+
* Version: 24.2.5
|
141900
|
+
* Build date: Fri Feb 14 2025
|
141903
141901
|
*
|
141904
141902
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141905
141903
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141910,8 +141908,8 @@ function getCurrentTemplateEngine() {
|
|
141910
141908
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/console.js
|
141911
141909
|
/**
|
141912
141910
|
* DevExtreme (esm/core/utils/console.js)
|
141913
|
-
* Version: 24.2.5
|
141914
|
-
* Build date:
|
141911
|
+
* Version: 24.2.5
|
141912
|
+
* Build date: Fri Feb 14 2025
|
141915
141913
|
*
|
141916
141914
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141917
141915
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141921,8 +141919,8 @@ function getCurrentTemplateEngine() {
|
|
141921
141919
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_variable_wrapper.js
|
141922
141920
|
/**
|
141923
141921
|
* DevExtreme (esm/__internal/core/utils/m_variable_wrapper.js)
|
141924
|
-
* Version: 24.2.5
|
141925
|
-
* Build date:
|
141922
|
+
* Version: 24.2.5
|
141923
|
+
* Build date: Fri Feb 14 2025
|
141926
141924
|
*
|
141927
141925
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141928
141926
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141951,8 +141949,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
141951
141949
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/variable_wrapper.js
|
141952
141950
|
/**
|
141953
141951
|
* DevExtreme (esm/core/utils/variable_wrapper.js)
|
141954
|
-
* Version: 24.2.5
|
141955
|
-
* Build date:
|
141952
|
+
* Version: 24.2.5
|
141953
|
+
* Build date: Fri Feb 14 2025
|
141956
141954
|
*
|
141957
141955
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141958
141956
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141963,8 +141961,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
141963
141961
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_object.js
|
141964
141962
|
/**
|
141965
141963
|
* DevExtreme (esm/__internal/core/utils/m_object.js)
|
141966
|
-
* Version: 24.2.5
|
141967
|
-
* Build date:
|
141964
|
+
* Version: 24.2.5
|
141965
|
+
* Build date: Fri Feb 14 2025
|
141968
141966
|
*
|
141969
141967
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141970
141968
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142064,8 +142062,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142064
142062
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/object.js
|
142065
142063
|
/**
|
142066
142064
|
* DevExtreme (esm/core/utils/object.js)
|
142067
|
-
* Version: 24.2.5
|
142068
|
-
* Build date:
|
142065
|
+
* Version: 24.2.5
|
142066
|
+
* Build date: Fri Feb 14 2025
|
142069
142067
|
*
|
142070
142068
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142071
142069
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142075,8 +142073,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142075
142073
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_data.js
|
142076
142074
|
/**
|
142077
142075
|
* DevExtreme (esm/__internal/core/utils/m_data.js)
|
142078
|
-
* Version: 24.2.5
|
142079
|
-
* Build date:
|
142076
|
+
* Version: 24.2.5
|
142077
|
+
* Build date: Fri Feb 14 2025
|
142080
142078
|
*
|
142081
142079
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142082
142080
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142272,8 +142270,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142272
142270
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/data.js
|
142273
142271
|
/**
|
142274
142272
|
* DevExtreme (esm/core/utils/data.js)
|
142275
|
-
* Version: 24.2.5
|
142276
|
-
* Build date:
|
142273
|
+
* Version: 24.2.5
|
142274
|
+
* Build date: Fri Feb 14 2025
|
142277
142275
|
*
|
142278
142276
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142279
142277
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142283,8 +142281,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142283
142281
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_callbacks.js
|
142284
142282
|
/**
|
142285
142283
|
* DevExtreme (esm/__internal/core/utils/m_callbacks.js)
|
142286
|
-
* Version: 24.2.5
|
142287
|
-
* Build date:
|
142284
|
+
* Version: 24.2.5
|
142285
|
+
* Build date: Fri Feb 14 2025
|
142288
142286
|
*
|
142289
142287
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142290
142288
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142379,8 +142377,8 @@ const Callbacks = function(options) {
|
|
142379
142377
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/callbacks.js
|
142380
142378
|
/**
|
142381
142379
|
* DevExtreme (esm/core/utils/callbacks.js)
|
142382
|
-
* Version: 24.2.5
|
142383
|
-
* Build date:
|
142380
|
+
* Version: 24.2.5
|
142381
|
+
* Build date: Fri Feb 14 2025
|
142384
142382
|
*
|
142385
142383
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142386
142384
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142391,8 +142389,8 @@ const Callbacks = function(options) {
|
|
142391
142389
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_deferred.js
|
142392
142390
|
/**
|
142393
142391
|
* DevExtreme (esm/__internal/core/utils/m_deferred.js)
|
142394
|
-
* Version: 24.2.5
|
142395
|
-
* Build date:
|
142392
|
+
* Version: 24.2.5
|
142393
|
+
* Build date: Fri Feb 14 2025
|
142396
142394
|
*
|
142397
142395
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142398
142396
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142557,8 +142555,8 @@ function when() {
|
|
142557
142555
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/deferred.js
|
142558
142556
|
/**
|
142559
142557
|
* DevExtreme (esm/core/utils/deferred.js)
|
142560
|
-
* Version: 24.2.5
|
142561
|
-
* Build date:
|
142558
|
+
* Version: 24.2.5
|
142559
|
+
* Build date: Fri Feb 14 2025
|
142562
142560
|
*
|
142563
142561
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142564
142562
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142568,8 +142566,8 @@ function when() {
|
|
142568
142566
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_common.js
|
142569
142567
|
/**
|
142570
142568
|
* DevExtreme (esm/__internal/core/utils/m_common.js)
|
142571
|
-
* Version: 24.2.5
|
142572
|
-
* Build date:
|
142569
|
+
* Version: 24.2.5
|
142570
|
+
* Build date: Fri Feb 14 2025
|
142573
142571
|
*
|
142574
142572
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142575
142573
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142863,8 +142861,8 @@ const equalByValue = function(value1, value2) {
|
|
142863
142861
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/common.js
|
142864
142862
|
/**
|
142865
142863
|
* DevExtreme (esm/core/utils/common.js)
|
142866
|
-
* Version: 24.2.5
|
142867
|
-
* Build date:
|
142864
|
+
* Version: 24.2.5
|
142865
|
+
* Build date: Fri Feb 14 2025
|
142868
142866
|
*
|
142869
142867
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142870
142868
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142874,8 +142872,8 @@ const equalByValue = function(value1, value2) {
|
|
142874
142872
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_math.js
|
142875
142873
|
/**
|
142876
142874
|
* DevExtreme (esm/__internal/core/utils/m_math.js)
|
142877
|
-
* Version: 24.2.5
|
142878
|
-
* Build date:
|
142875
|
+
* Version: 24.2.5
|
142876
|
+
* Build date: Fri Feb 14 2025
|
142879
142877
|
*
|
142880
142878
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142881
142879
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143044,8 +143042,8 @@ function roundFloatPart(value) {
|
|
143044
143042
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/math.js
|
143045
143043
|
/**
|
143046
143044
|
* DevExtreme (esm/core/utils/math.js)
|
143047
|
-
* Version: 24.2.5
|
143048
|
-
* Build date:
|
143045
|
+
* Version: 24.2.5
|
143046
|
+
* Build date: Fri Feb 14 2025
|
143049
143047
|
*
|
143050
143048
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143051
143049
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143055,8 +143053,8 @@ function roundFloatPart(value) {
|
|
143055
143053
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/utils.js
|
143056
143054
|
/**
|
143057
143055
|
* DevExtreme (esm/common/core/localization/utils.js)
|
143058
|
-
* Version: 24.2.5
|
143059
|
-
* Build date:
|
143056
|
+
* Version: 24.2.5
|
143057
|
+
* Build date: Fri Feb 14 2025
|
143060
143058
|
*
|
143061
143059
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143062
143060
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143083,8 +143081,8 @@ function toFixed(value, precision) {
|
|
143083
143081
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/number.js
|
143084
143082
|
/**
|
143085
143083
|
* DevExtreme (esm/common/core/localization/ldml/number.js)
|
143086
|
-
* Version: 24.2.5
|
143087
|
-
* Build date:
|
143084
|
+
* Version: 24.2.5
|
143085
|
+
* Build date: Fri Feb 14 2025
|
143088
143086
|
*
|
143089
143087
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143090
143088
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143298,8 +143296,8 @@ function getFormat(formatter) {
|
|
143298
143296
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/currency.js
|
143299
143297
|
/**
|
143300
143298
|
* DevExtreme (esm/common/core/localization/currency.js)
|
143301
|
-
* Version: 24.2.5
|
143302
|
-
* Build date:
|
143299
|
+
* Version: 24.2.5
|
143300
|
+
* Build date: Fri Feb 14 2025
|
143303
143301
|
*
|
143304
143302
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143305
143303
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143331,8 +143329,8 @@ function getFormat(formatter) {
|
|
143331
143329
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/parent_locales.js
|
143332
143330
|
/**
|
143333
143331
|
* DevExtreme (esm/common/core/localization/cldr-data/parent_locales.js)
|
143334
|
-
* Version: 24.2.5
|
143335
|
-
* Build date:
|
143332
|
+
* Version: 24.2.5
|
143333
|
+
* Build date: Fri Feb 14 2025
|
143336
143334
|
*
|
143337
143335
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143338
143336
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143517,8 +143515,8 @@ function getFormat(formatter) {
|
|
143517
143515
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/parentLocale.js
|
143518
143516
|
/**
|
143519
143517
|
* DevExtreme (esm/common/core/localization/parentLocale.js)
|
143520
|
-
* Version: 24.2.5
|
143521
|
-
* Build date:
|
143518
|
+
* Version: 24.2.5
|
143519
|
+
* Build date: Fri Feb 14 2025
|
143522
143520
|
*
|
143523
143521
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143524
143522
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143535,8 +143533,8 @@ const PARENT_LOCALE_SEPARATOR = "-";
|
|
143535
143533
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/core.js
|
143536
143534
|
/**
|
143537
143535
|
* DevExtreme (esm/common/core/localization/core.js)
|
143538
|
-
* Version: 24.2.5
|
143539
|
-
* Build date:
|
143536
|
+
* Version: 24.2.5
|
143537
|
+
* Build date: Fri Feb 14 2025
|
143540
143538
|
*
|
143541
143539
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143542
143540
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143577,8 +143575,8 @@ const DEFAULT_LOCALE = "en";
|
|
143577
143575
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/open_xml_currency_format.js
|
143578
143576
|
/**
|
143579
143577
|
* DevExtreme (esm/common/core/localization/open_xml_currency_format.js)
|
143580
|
-
* Version: 24.2.5
|
143581
|
-
* Build date:
|
143578
|
+
* Version: 24.2.5
|
143579
|
+
* Build date: Fri Feb 14 2025
|
143582
143580
|
*
|
143583
143581
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143584
143582
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143620,8 +143618,8 @@ const DEFAULT_LOCALE = "en";
|
|
143620
143618
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/accounting_formats.js
|
143621
143619
|
/**
|
143622
143620
|
* DevExtreme (esm/common/core/localization/cldr-data/accounting_formats.js)
|
143623
|
-
* Version: 24.2.5
|
143624
|
-
* Build date:
|
143621
|
+
* Version: 24.2.5
|
143622
|
+
* Build date: Fri Feb 14 2025
|
143625
143623
|
*
|
143626
143624
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143627
143625
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144207,8 +144205,8 @@ const DEFAULT_LOCALE = "en";
|
|
144207
144205
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/number.js
|
144208
144206
|
/**
|
144209
144207
|
* DevExtreme (esm/common/core/localization/intl/number.js)
|
144210
|
-
* Version: 24.2.5
|
144211
|
-
* Build date:
|
144208
|
+
* Version: 24.2.5
|
144209
|
+
* Build date: Fri Feb 14 2025
|
144212
144210
|
*
|
144213
144211
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144214
144212
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144328,8 +144326,8 @@ const getCurrencyFormatter = currency => new Intl.NumberFormat(core.locale(), {
|
|
144328
144326
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/number.js
|
144329
144327
|
/**
|
144330
144328
|
* DevExtreme (esm/common/core/localization/number.js)
|
144331
|
-
* Version: 24.2.5
|
144332
|
-
* Build date:
|
144329
|
+
* Version: 24.2.5
|
144330
|
+
* Build date: Fri Feb 14 2025
|
144333
144331
|
*
|
144334
144332
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144335
144333
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144634,8 +144632,8 @@ if (hasIntl) {
|
|
144634
144632
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.format.js
|
144635
144633
|
/**
|
144636
144634
|
* DevExtreme (esm/common/core/localization/ldml/date.format.js)
|
144637
|
-
* Version: 24.2.5
|
144638
|
-
* Build date:
|
144635
|
+
* Version: 24.2.5
|
144636
|
+
* Build date: Fri Feb 14 2025
|
144639
144637
|
*
|
144640
144638
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144641
144639
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144832,8 +144830,8 @@ const date_format_getFormat = function(formatter) {
|
|
144832
144830
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.parser.js
|
144833
144831
|
/**
|
144834
144832
|
* DevExtreme (esm/common/core/localization/ldml/date.parser.js)
|
144835
|
-
* Version: 24.2.5
|
144836
|
-
* Build date:
|
144833
|
+
* Version: 24.2.5
|
144834
|
+
* Build date: Fri Feb 14 2025
|
144837
144835
|
*
|
144838
144836
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144839
144837
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145151,8 +145149,8 @@ const getParser = function(format, dateParts) {
|
|
145151
145149
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/default_date_names.js
|
145152
145150
|
/**
|
145153
145151
|
* DevExtreme (esm/common/core/localization/default_date_names.js)
|
145154
|
-
* Version: 24.2.5
|
145155
|
-
* Build date:
|
145152
|
+
* Version: 24.2.5
|
145153
|
+
* Build date: Fri Feb 14 2025
|
145156
145154
|
*
|
145157
145155
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145158
145156
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145188,8 +145186,8 @@ const cutCaptions = (captions, format) => {
|
|
145188
145186
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/first_day_of_week_data.js
|
145189
145187
|
/**
|
145190
145188
|
* DevExtreme (esm/common/core/localization/cldr-data/first_day_of_week_data.js)
|
145191
|
-
* Version: 24.2.5
|
145192
|
-
* Build date:
|
145189
|
+
* Version: 24.2.5
|
145190
|
+
* Build date: Fri Feb 14 2025
|
145193
145191
|
*
|
145194
145192
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145195
145193
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145388,8 +145386,8 @@ const cutCaptions = (captions, format) => {
|
|
145388
145386
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/date.js
|
145389
145387
|
/**
|
145390
145388
|
* DevExtreme (esm/common/core/localization/intl/date.js)
|
145391
|
-
* Version: 24.2.5
|
145392
|
-
* Build date:
|
145389
|
+
* Version: 24.2.5
|
145390
|
+
* Build date: Fri Feb 14 2025
|
145393
145391
|
*
|
145394
145392
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145395
145393
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145706,8 +145704,8 @@ const monthNameStrategies = {
|
|
145706
145704
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/date.js
|
145707
145705
|
/**
|
145708
145706
|
* DevExtreme (esm/common/core/localization/date.js)
|
145709
|
-
* Version: 24.2.5
|
145710
|
-
* Build date:
|
145707
|
+
* Version: 24.2.5
|
145708
|
+
* Build date: Fri Feb 14 2025
|
145711
145709
|
*
|
145712
145710
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145713
145711
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|