devexpress-richedit 24.2.7-build-25100-0108 → 24.2.7-build-25107-0104
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dx.richedit.js +201 -179
- package/dist/dx.richedit.min.js +1 -1
- package/lib/client/public/rich-edit.js +2 -2
- package/lib/common/canvas/renderes/common/document-renderer.js +10 -12
- package/lib/common/input-controller.d.ts +5 -5
- package/lib/common/input-controller.js +12 -12
- package/lib/common/layout-formatter/row/tab-info.js +1 -1
- package/lib/common/mouse-handler/mouse-handler/mouse-handler-default-state.d.ts +1 -1
- package/lib/common/mouse-handler/mouse-handler/mouse-handler-default-state.js +22 -25
- package/lib/common/rich-edit-core.js +2 -2
- package/lib/common/utils/size-utils.d.ts +7 -0
- package/lib/common/utils/size-utils.js +31 -4
- package/package.json +3 -3
package/dist/dx.richedit.js
CHANGED
@@ -95784,7 +95784,7 @@ class RowTabInfo {
|
|
95784
95784
|
const lastInterval = utils_list.ListUtils.last(this.rowFormatter.rowSizesManager.rowFormattingInfo.intervals);
|
95785
95785
|
if (tabXPosRelativePage > lastInterval.end) {
|
95786
95786
|
if (lastInterval.end < this.rowFormatter.paragraphHorizontalBounds.end) {
|
95787
|
-
if (this.rowFormatter.manager.model.compatibilitySettings.compatibilityMode < CompatibilityMode.Word2013) {
|
95787
|
+
if (this.rowFormatter.manager.model.compatibilitySettings.compatibilityMode < CompatibilityMode.Word2013 && tabPosition !== null) {
|
95788
95788
|
this.currInterval.avaliableWidth = Number.MAX_SAFE_INTEGER - this.currInterval.busyWidth;
|
95789
95789
|
this.currInterval.length = Number.MAX_SAFE_INTEGER;
|
95790
95790
|
this.row.width = Number.MAX_SAFE_INTEGER;
|
@@ -102369,18 +102369,16 @@ class SimpleViewCanvasSizeManager {
|
|
102369
102369
|
this.sizeUpdated = true;
|
102370
102370
|
}
|
102371
102371
|
changeSizeCore() {
|
102372
|
-
|
102373
|
-
|
102374
|
-
|
102375
|
-
|
102376
|
-
|
102377
|
-
|
102378
|
-
this.control.selection.
|
102379
|
-
.setModelPosition(this.control.selection.lastSelectedInterval.start).useStdRelativePosition().useStdOffset());
|
102380
|
-
}
|
102381
|
-
this.control.owner.adjustControl();
|
102382
|
-
this.control.horizontalRulerControl.update();
|
102372
|
+
utils_list.ListUtils.forEach(this.control.viewManager.cache, (_val) => this.control.viewManager.renderer.removePage(1), 1);
|
102373
|
+
this.control.viewManager.ensureFirstPageIsRendered();
|
102374
|
+
this.control.innerClientProperties.viewsSettings.widthOfPage = this.canvasManager.getCanvasWidth();
|
102375
|
+
if (this.control.layoutFormatterManager) {
|
102376
|
+
this.control.layoutFormatterManager.invalidator.onChangedAllLayout();
|
102377
|
+
this.control.selection.scrollManager.setScroll(new ScrollState().byModelPosition(this.control.selection)
|
102378
|
+
.setModelPosition(this.control.selection.lastSelectedInterval.start).useStdRelativePosition().useStdOffset());
|
102383
102379
|
}
|
102380
|
+
this.control.owner.adjustControl();
|
102381
|
+
this.control.horizontalRulerControl.update();
|
102384
102382
|
}
|
102385
102383
|
}
|
102386
102384
|
class DocumentRenderer {
|
@@ -102564,7 +102562,7 @@ class DocumentRenderer {
|
|
102564
102562
|
}
|
102565
102563
|
}
|
102566
102564
|
updatePageSize(page, pageElement) {
|
102567
|
-
if (pageElement.offsetHeight != page.height || pageElement.offsetWidth != page.width)
|
102565
|
+
if (pageElement.offsetHeight != Math.round(page.height) || pageElement.offsetWidth != Math.round(page.width))
|
102568
102566
|
dom.DomUtils.setStyleSize(pageElement.style, page);
|
102569
102567
|
}
|
102570
102568
|
updatePageClasses(pageElement) {
|
@@ -106418,40 +106416,31 @@ class MouseHandlerDefaultState extends MouseHandlerStateBase {
|
|
106418
106416
|
this.processMouseDownOnMaxDetailsLevel(evt, htr, activeSubDocument);
|
106419
106417
|
}
|
106420
106418
|
processMouseDownOnMaxDetailsLevel(evt, htr, activeSubDocument) {
|
106419
|
+
const selection = this.handler.control.selection;
|
106421
106420
|
if (htr.floatingObject) {
|
106422
|
-
if (htr.floatingObject.belongsToSubDocId != this.handler.control.selection.activeSubDocument.id)
|
106423
|
-
MouseHandlerHelper.changeActiveSubDocumentToParent(this.handler.control);
|
106424
106421
|
const box = htr.floatingObject;
|
106425
|
-
|
106426
|
-
|
106427
|
-
|
106428
|
-
if (
|
106429
|
-
HitTestManager.isPointInTexBoxArea(evt.layoutPoint, box, activeSubDocument.isTextBox() ? 0 : box.rotationInRadians)) {
|
106422
|
+
const rotationAngle = activeSubDocument.isTextBox() ? 0 : box.rotationInRadians;
|
106423
|
+
if (box.getType() == LayoutBoxType.AnchorTextBox && HitTestManager.isPointInTexBoxArea(evt.layoutPoint, box, rotationAngle)) {
|
106424
|
+
const textbox = box;
|
106425
|
+
if (textbox.internalSubDocId !== selection.activeSubDocument.id && this.selectFloatingObject(box)) {
|
106430
106426
|
this.handler.control.commandManager.getCommand(RichEditClientCommand.ChangeActiveSubDocumentToTextBox).execute(this.handler.control.commandManager.isPublicApiCall);
|
106431
106427
|
this.handler.boxVisualizerManager.resizeBoxVisualizer.show(htr.pageIndex, null, null, null, box);
|
106432
|
-
htr = this.handler.control.hitTestManager.calculate(evt.layoutPoint, DocumentLayoutDetailsLevel.Max,
|
106433
|
-
}
|
106434
|
-
else {
|
106435
|
-
if (this.resizeRotationChecker(() => {
|
106436
|
-
const dragFloatingObjectState = new MouseHandlerDragFloatingObjectState(this.handler, evt);
|
106437
|
-
this.handler.switchState(new MouseHandlerBeginDragHelperState(evt.layoutPoint, this.handler, dragFloatingObjectState));
|
106438
|
-
}))
|
106439
|
-
return;
|
106440
|
-
else {
|
106441
|
-
if (specRunInfo.isPictureSelected()) {
|
106442
|
-
this.handler.control.selection.setSelection(new SetSelectionParams()
|
106443
|
-
.setInterval(new fixed.FixedInterval(specRunInfo.getPicturePosition(), 1)));
|
106444
|
-
return;
|
106445
|
-
}
|
106446
|
-
}
|
106428
|
+
htr = this.handler.control.hitTestManager.calculate(evt.layoutPoint, DocumentLayoutDetailsLevel.Max, selection.activeSubDocument);
|
106447
106429
|
}
|
106448
106430
|
}
|
106431
|
+
else {
|
106432
|
+
if (this.selectFloatingObject(box) && this.resizeRotationChecker(() => {
|
106433
|
+
const dragFloatingObjectState = new MouseHandlerDragFloatingObjectState(this.handler, evt);
|
106434
|
+
this.handler.switchState(new MouseHandlerBeginDragHelperState(evt.layoutPoint, this.handler, dragFloatingObjectState));
|
106435
|
+
}))
|
106436
|
+
return;
|
106437
|
+
}
|
106449
106438
|
}
|
106450
106439
|
if (browser.Browser.TouchUI && htr.subDocument.isMain() && htr.exactlyDetailLevel < DocumentLayoutDetailsLevel.PageArea) {
|
106451
106440
|
if (htr.deviations[DocumentLayoutDetailsLevel.PageArea] & rectangle.HitTestDeviation.Top || htr.deviations[DocumentLayoutDetailsLevel.PageArea] & rectangle.HitTestDeviation.Bottom)
|
106452
106441
|
this.handler.control.viewManager.canvasScrollManager.waitForDblClick();
|
106453
106442
|
}
|
106454
|
-
if (evt.button === MouseButton.Right &&
|
106443
|
+
if (evt.button === MouseButton.Right && selection.lastSelectedInterval.contains(htr.getPosition()))
|
106455
106444
|
return;
|
106456
106445
|
if (this.shouldSelectEntireTableColumn(htr))
|
106457
106446
|
this.beginSelectEntireTableColumn(htr, evt);
|
@@ -106466,7 +106455,7 @@ class MouseHandlerDefaultState extends MouseHandlerStateBase {
|
|
106466
106455
|
this.beginSelectEntireTableCell(htr, evt);
|
106467
106456
|
}
|
106468
106457
|
else if (this.isLeftArea(htr, evt)) {
|
106469
|
-
if (evt.modifiers & key/* ModifierKey */.tx.Ctrl &&
|
106458
|
+
if (evt.modifiers & key/* ModifierKey */.tx.Ctrl && selection.isCollapsed())
|
106470
106459
|
this.handler.control.commandManager.getCommand(RichEditClientCommand.SelectAll).execute(this.handler.control.commandManager.isPublicApiCall, htr.getPosition());
|
106471
106460
|
else if (this.isLeftAreaOffset(htr, evt))
|
106472
106461
|
this.beginLineSelection(htr, evt);
|
@@ -106674,8 +106663,14 @@ class MouseHandlerDefaultState extends MouseHandlerStateBase {
|
|
106674
106663
|
this.handler.switchState(state);
|
106675
106664
|
}
|
106676
106665
|
selectFloatingObject(box) {
|
106666
|
+
const selection = this.handler.control.selection;
|
106667
|
+
if (box.belongsToSubDocId !== selection.activeSubDocument.id)
|
106668
|
+
MouseHandlerHelper.changeActiveSubDocumentToParent(this.handler.control);
|
106669
|
+
if (box.belongsToSubDocId !== selection.activeSubDocument.id)
|
106670
|
+
return false;
|
106677
106671
|
const pos = this.handler.control.layout.anchorObjectsPositionInfo.getPosition(box.objectId);
|
106678
|
-
|
106672
|
+
selection.setSelection(new SetSelectionParams().setInterval(new fixed.FixedInterval(pos, 1)));
|
106673
|
+
return selection.specialRunInfo.isSelectedAnchorObject;
|
106679
106674
|
}
|
106680
106675
|
}
|
106681
106676
|
class MouseHandlerHelper {
|
@@ -107848,14 +107843,39 @@ ResizeBoxListener.directionToSource = {
|
|
107848
107843
|
};
|
107849
107844
|
|
107850
107845
|
;// CONCATENATED MODULE: ./src/common/utils/size-utils.ts
|
107846
|
+
|
107851
107847
|
class SizeUtils {
|
107848
|
+
static getScrollbarsWidth() {
|
107849
|
+
if (!(0,common.isDefined)(this._scrollbarsWidth)) {
|
107850
|
+
const scrollDiv = document.createElement('div');
|
107851
|
+
scrollDiv.style.visibility = 'hidden';
|
107852
|
+
scrollDiv.style.overflow = 'scroll';
|
107853
|
+
scrollDiv.style.position = 'absolute';
|
107854
|
+
scrollDiv.style.top = '-9999px';
|
107855
|
+
scrollDiv.style.width = '100px';
|
107856
|
+
scrollDiv.style.height = '100px';
|
107857
|
+
document.body.appendChild(scrollDiv);
|
107858
|
+
const innerDiv = document.createElement('div');
|
107859
|
+
innerDiv.style.width = '100%';
|
107860
|
+
innerDiv.style.height = '100%';
|
107861
|
+
scrollDiv.appendChild(innerDiv);
|
107862
|
+
this._scrollbarsWidth = {
|
107863
|
+
horizontal: SizeUtils.getOffsetHeight(scrollDiv) - SizeUtils.getOffsetHeight(innerDiv),
|
107864
|
+
vertical: SizeUtils.getOffsetWidth(scrollDiv) - SizeUtils.getOffsetWidth(innerDiv)
|
107865
|
+
};
|
107866
|
+
scrollDiv.remove();
|
107867
|
+
}
|
107868
|
+
return this._scrollbarsWidth;
|
107869
|
+
}
|
107852
107870
|
static getWidthInfo(element) {
|
107853
107871
|
const computedStyle = getComputedStyle(element);
|
107854
107872
|
const offsetWidth = this.getOffsetWidth(element);
|
107855
107873
|
const offsetWidthWithoutBorder = offsetWidth
|
107856
107874
|
- parseCssValue(computedStyle.borderLeftWidth)
|
107857
107875
|
- parseCssValue(computedStyle.borderRightWidth);
|
107858
|
-
|
107876
|
+
let scrollbarWidth = 0;
|
107877
|
+
if (Math.round(offsetWidthWithoutBorder) > element.clientWidth)
|
107878
|
+
scrollbarWidth = SizeUtils.getScrollbarsWidth().vertical;
|
107859
107879
|
const clientWidth = offsetWidthWithoutBorder - scrollbarWidth;
|
107860
107880
|
return new DimensionInfo(offsetWidth, clientWidth, scrollbarWidth);
|
107861
107881
|
}
|
@@ -107868,9 +107888,11 @@ class SizeUtils {
|
|
107868
107888
|
const offsetHeightWithoutBorder = offsetHeight
|
107869
107889
|
- parseCssValue(computedStyle.borderTopWidth)
|
107870
107890
|
- parseCssValue(computedStyle.borderBottomWidth);
|
107871
|
-
|
107872
|
-
|
107873
|
-
|
107891
|
+
let scrollbarWidth = 0;
|
107892
|
+
if (Math.round(offsetHeightWithoutBorder) > element.clientHeight)
|
107893
|
+
scrollbarWidth = SizeUtils.getScrollbarsWidth().horizontal;
|
107894
|
+
const clientHeight = offsetHeightWithoutBorder - scrollbarWidth;
|
107895
|
+
return new DimensionInfo(offsetHeight, clientHeight, scrollbarWidth);
|
107874
107896
|
}
|
107875
107897
|
static getClientHeight(element) {
|
107876
107898
|
return this.getHeightInfo(element).clientSize;
|
@@ -110526,17 +110548,17 @@ class InputEditorBase {
|
|
110526
110548
|
clearTimeout(this.onKeyUpTimerId);
|
110527
110549
|
}
|
110528
110550
|
initialize() {
|
110529
|
-
this.
|
110551
|
+
this.initializeEditableState();
|
110530
110552
|
this.initEvents();
|
110531
110553
|
this.prevKeyCode = EMPTY_KEYCODE;
|
110532
110554
|
}
|
110533
|
-
|
110534
|
-
if (
|
110535
|
-
this.
|
110536
|
-
this.
|
110555
|
+
initializeEditableState() {
|
110556
|
+
if (!this.editableStateInitialized) {
|
110557
|
+
this.editableStateInitialized = true;
|
110558
|
+
this.initializeEditableStateCore();
|
110537
110559
|
}
|
110538
110560
|
}
|
110539
|
-
|
110561
|
+
initializeEditableStateCore() {
|
110540
110562
|
}
|
110541
110563
|
initEvents() {
|
110542
110564
|
this.evtHandlersHolder.addListener(this.getEditableDocument(), "keydown", this.onKeyDown.bind(this));
|
@@ -110756,8 +110778,8 @@ class DivInputEditor extends InputEditorBase {
|
|
110756
110778
|
clearTimeout(this.composEndTimerId);
|
110757
110779
|
clearTimeout(this.onTextInputTimerId);
|
110758
110780
|
}
|
110759
|
-
|
110760
|
-
this.inputElement.contentEditable =
|
110781
|
+
initializeEditableStateCore() {
|
110782
|
+
this.inputElement.contentEditable = String(!this.control.isReadOnlyPersistent);
|
110761
110783
|
this.clearInputElement();
|
110762
110784
|
}
|
110763
110785
|
setPosition(left, top) {
|
@@ -111005,11 +111027,11 @@ class IFrameInputEditor extends InputEditorBase {
|
|
111005
111027
|
body.style.margin = "0px";
|
111006
111028
|
body.style.overflow = "hidden";
|
111007
111029
|
}
|
111008
|
-
|
111030
|
+
initializeEditableStateCore() {
|
111009
111031
|
if (browser.Browser.WebKitFamily)
|
111010
|
-
this.editableDocument.body.setAttribute("contenteditable",
|
111032
|
+
this.editableDocument.body.setAttribute("contenteditable", String(!this.control.isReadOnlyPersistent));
|
111011
111033
|
else
|
111012
|
-
this.editableDocument.designMode = "on";
|
111034
|
+
this.editableDocument.designMode = this.control.isReadOnlyPersistent ? "off" : "on";
|
111013
111035
|
}
|
111014
111036
|
createInputElement() {
|
111015
111037
|
const element = document.createElement("IFRAME");
|
@@ -111148,7 +111170,7 @@ class IFrameInputEditor extends InputEditorBase {
|
|
111148
111170
|
recreateIfNeeded() {
|
111149
111171
|
const iframeDocument = this.inputElement.contentDocument || this.inputElement.contentWindow.document;
|
111150
111172
|
if (!iframeDocument.body.hasAttribute("loaded")) {
|
111151
|
-
this.
|
111173
|
+
this.editableStateInitialized = false;
|
111152
111174
|
this.createHierarchyCore();
|
111153
111175
|
this.initialize();
|
111154
111176
|
}
|
@@ -115416,7 +115438,7 @@ class SearchManager {
|
|
115416
115438
|
|
115417
115439
|
|
115418
115440
|
class RichEditCore {
|
115419
|
-
get isReadOnlyPersistent() { return this.readOnly
|
115441
|
+
get isReadOnlyPersistent() { return this.readOnly === ReadOnlyMode.Persistent; }
|
115420
115442
|
get model() { return this.modelManager.model; }
|
115421
115443
|
get isDisposed() {
|
115422
115444
|
return this._isDisposed;
|
@@ -115628,8 +115650,8 @@ class RichEditCore {
|
|
115628
115650
|
this.readOnly = ReadOnlyMode.Persistent;
|
115629
115651
|
else if (!readOnly && this.readOnly === ReadOnlyMode.Persistent) {
|
115630
115652
|
this.readOnly = ReadOnlyMode.None;
|
115631
|
-
this.inputController.inputEditor.initializeIfNotReadOnly();
|
115632
115653
|
}
|
115654
|
+
this.inputController.inputEditor.initializeEditableStateCore();
|
115633
115655
|
}
|
115634
115656
|
setWorkSession(sessionGuid, documentInfo) {
|
115635
115657
|
this.sessionGuid = sessionGuid;
|
@@ -140874,8 +140896,8 @@ class DialogManager {
|
|
140874
140896
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_type.js
|
140875
140897
|
/**
|
140876
140898
|
* DevExtreme (esm/__internal/core/utils/m_type.js)
|
140877
|
-
* Version: 24.2.7-build-
|
140878
|
-
* Build date: Tue Apr
|
140899
|
+
* Version: 24.2.7-build-25105-1935
|
140900
|
+
* Build date: Tue Apr 15 2025
|
140879
140901
|
*
|
140880
140902
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140881
140903
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140977,8 +140999,8 @@ const isEvent = function(object) {
|
|
140977
140999
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/type.js
|
140978
141000
|
/**
|
140979
141001
|
* DevExtreme (esm/core/utils/type.js)
|
140980
|
-
* Version: 24.2.7-build-
|
140981
|
-
* Build date: Tue Apr
|
141002
|
+
* Version: 24.2.7-build-25105-1935
|
141003
|
+
* Build date: Tue Apr 15 2025
|
140982
141004
|
*
|
140983
141005
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140984
141006
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140988,8 +141010,8 @@ const isEvent = function(object) {
|
|
140988
141010
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_extend.js
|
140989
141011
|
/**
|
140990
141012
|
* DevExtreme (esm/__internal/core/utils/m_extend.js)
|
140991
|
-
* Version: 24.2.7-build-
|
140992
|
-
* Build date: Tue Apr
|
141013
|
+
* Version: 24.2.7-build-25105-1935
|
141014
|
+
* Build date: Tue Apr 15 2025
|
140993
141015
|
*
|
140994
141016
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140995
141017
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141047,8 +141069,8 @@ const extend = function(target) {
|
|
141047
141069
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/extend.js
|
141048
141070
|
/**
|
141049
141071
|
* DevExtreme (esm/core/utils/extend.js)
|
141050
|
-
* Version: 24.2.7-build-
|
141051
|
-
* Build date: Tue Apr
|
141072
|
+
* Version: 24.2.7-build-25105-1935
|
141073
|
+
* Build date: Tue Apr 15 2025
|
141052
141074
|
*
|
141053
141075
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141054
141076
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141058,8 +141080,8 @@ const extend = function(target) {
|
|
141058
141080
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_string.js
|
141059
141081
|
/**
|
141060
141082
|
* DevExtreme (esm/__internal/core/utils/m_string.js)
|
141061
|
-
* Version: 24.2.7-build-
|
141062
|
-
* Build date: Tue Apr
|
141083
|
+
* Version: 24.2.7-build-25105-1935
|
141084
|
+
* Build date: Tue Apr 15 2025
|
141063
141085
|
*
|
141064
141086
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141065
141087
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141134,8 +141156,8 @@ const isEmpty = function() {
|
|
141134
141156
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/string.js
|
141135
141157
|
/**
|
141136
141158
|
* DevExtreme (esm/core/utils/string.js)
|
141137
|
-
* Version: 24.2.7-build-
|
141138
|
-
* Build date: Tue Apr
|
141159
|
+
* Version: 24.2.7-build-25105-1935
|
141160
|
+
* Build date: Tue Apr 15 2025
|
141139
141161
|
*
|
141140
141162
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141141
141163
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141145,20 +141167,20 @@ const isEmpty = function() {
|
|
141145
141167
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/version.js
|
141146
141168
|
/**
|
141147
141169
|
* DevExtreme (esm/core/version.js)
|
141148
|
-
* Version: 24.2.7-build-
|
141149
|
-
* Build date: Tue Apr
|
141170
|
+
* Version: 24.2.7-build-25105-1935
|
141171
|
+
* Build date: Tue Apr 15 2025
|
141150
141172
|
*
|
141151
141173
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141152
141174
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
141153
141175
|
*/
|
141154
141176
|
const version = "24.2.6";
|
141155
|
-
const fullVersion = "24.2.6.
|
141177
|
+
const fullVersion = "24.2.6.25105-1935";
|
141156
141178
|
|
141157
141179
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_console.js
|
141158
141180
|
/**
|
141159
141181
|
* DevExtreme (esm/__internal/core/utils/m_console.js)
|
141160
|
-
* Version: 24.2.7-build-
|
141161
|
-
* Build date: Tue Apr
|
141182
|
+
* Version: 24.2.7-build-25105-1935
|
141183
|
+
* Build date: Tue Apr 15 2025
|
141162
141184
|
*
|
141163
141185
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141164
141186
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141198,8 +141220,8 @@ const debug = function() {
|
|
141198
141220
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_error.js
|
141199
141221
|
/**
|
141200
141222
|
* DevExtreme (esm/__internal/core/utils/m_error.js)
|
141201
|
-
* Version: 24.2.7-build-
|
141202
|
-
* Build date: Tue Apr
|
141223
|
+
* Version: 24.2.7-build-25105-1935
|
141224
|
+
* Build date: Tue Apr 15 2025
|
141203
141225
|
*
|
141204
141226
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141205
141227
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141270,8 +141292,8 @@ function error(baseErrors, errors) {
|
|
141270
141292
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/error.js
|
141271
141293
|
/**
|
141272
141294
|
* DevExtreme (esm/core/utils/error.js)
|
141273
|
-
* Version: 24.2.7-build-
|
141274
|
-
* Build date: Tue Apr
|
141295
|
+
* Version: 24.2.7-build-25105-1935
|
141296
|
+
* Build date: Tue Apr 15 2025
|
141275
141297
|
*
|
141276
141298
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141277
141299
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141282,8 +141304,8 @@ function error(baseErrors, errors) {
|
|
141282
141304
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_errors.js
|
141283
141305
|
/**
|
141284
141306
|
* DevExtreme (esm/__internal/core/m_errors.js)
|
141285
|
-
* Version: 24.2.7-build-
|
141286
|
-
* Build date: Tue Apr
|
141307
|
+
* Version: 24.2.7-build-25105-1935
|
141308
|
+
* Build date: Tue Apr 15 2025
|
141287
141309
|
*
|
141288
141310
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141289
141311
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141349,8 +141371,8 @@ function error(baseErrors, errors) {
|
|
141349
141371
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/errors.js
|
141350
141372
|
/**
|
141351
141373
|
* DevExtreme (esm/core/errors.js)
|
141352
|
-
* Version: 24.2.7-build-
|
141353
|
-
* Build date: Tue Apr
|
141374
|
+
* Version: 24.2.7-build-25105-1935
|
141375
|
+
* Build date: Tue Apr 15 2025
|
141354
141376
|
*
|
141355
141377
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141356
141378
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141361,8 +141383,8 @@ function error(baseErrors, errors) {
|
|
141361
141383
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_class.js
|
141362
141384
|
/**
|
141363
141385
|
* DevExtreme (esm/__internal/core/m_class.js)
|
141364
|
-
* Version: 24.2.7-build-
|
141365
|
-
* Build date: Tue Apr
|
141386
|
+
* Version: 24.2.7-build-25105-1935
|
141387
|
+
* Build date: Tue Apr 15 2025
|
141366
141388
|
*
|
141367
141389
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141368
141390
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141495,8 +141517,8 @@ classImpl.abstract = m_class_abstract;
|
|
141495
141517
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/class.js
|
141496
141518
|
/**
|
141497
141519
|
* DevExtreme (esm/core/class.js)
|
141498
|
-
* Version: 24.2.7-build-
|
141499
|
-
* Build date: Tue Apr
|
141520
|
+
* Version: 24.2.7-build-25105-1935
|
141521
|
+
* Build date: Tue Apr 15 2025
|
141500
141522
|
*
|
141501
141523
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141502
141524
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141507,8 +141529,8 @@ classImpl.abstract = m_class_abstract;
|
|
141507
141529
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_iterator.js
|
141508
141530
|
/**
|
141509
141531
|
* DevExtreme (esm/__internal/core/utils/m_iterator.js)
|
141510
|
-
* Version: 24.2.7-build-
|
141511
|
-
* Build date: Tue Apr
|
141532
|
+
* Version: 24.2.7-build-25105-1935
|
141533
|
+
* Build date: Tue Apr 15 2025
|
141512
141534
|
*
|
141513
141535
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141514
141536
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141557,8 +141579,8 @@ const reverseEach = (array, callback) => {
|
|
141557
141579
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_dependency_injector.js
|
141558
141580
|
/**
|
141559
141581
|
* DevExtreme (esm/__internal/core/utils/m_dependency_injector.js)
|
141560
|
-
* Version: 24.2.7-build-
|
141561
|
-
* Build date: Tue Apr
|
141582
|
+
* Version: 24.2.7-build-25105-1935
|
141583
|
+
* Build date: Tue Apr 15 2025
|
141562
141584
|
*
|
141563
141585
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141564
141586
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141607,8 +141629,8 @@ function injector(object) {
|
|
141607
141629
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/dependency_injector.js
|
141608
141630
|
/**
|
141609
141631
|
* DevExtreme (esm/core/utils/dependency_injector.js)
|
141610
|
-
* Version: 24.2.7-build-
|
141611
|
-
* Build date: Tue Apr
|
141632
|
+
* Version: 24.2.7-build-25105-1935
|
141633
|
+
* Build date: Tue Apr 15 2025
|
141612
141634
|
*
|
141613
141635
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141614
141636
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141619,8 +141641,8 @@ function injector(object) {
|
|
141619
141641
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.formatter.js
|
141620
141642
|
/**
|
141621
141643
|
* DevExtreme (esm/common/core/localization/ldml/date.formatter.js)
|
141622
|
-
* Version: 24.2.7-build-
|
141623
|
-
* Build date: Tue Apr
|
141644
|
+
* Version: 24.2.7-build-25105-1935
|
141645
|
+
* Build date: Tue Apr 15 2025
|
141624
141646
|
*
|
141625
141647
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141626
141648
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141773,8 +141795,8 @@ function _extends() {
|
|
141773
141795
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_config.js
|
141774
141796
|
/**
|
141775
141797
|
* DevExtreme (esm/__internal/core/m_config.js)
|
141776
|
-
* Version: 24.2.7-build-
|
141777
|
-
* Build date: Tue Apr
|
141798
|
+
* Version: 24.2.7-build-25105-1935
|
141799
|
+
* Build date: Tue Apr 15 2025
|
141778
141800
|
*
|
141779
141801
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141780
141802
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141849,8 +141871,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
141849
141871
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/config.js
|
141850
141872
|
/**
|
141851
141873
|
* DevExtreme (esm/common/config.js)
|
141852
|
-
* Version: 24.2.7-build-
|
141853
|
-
* Build date: Tue Apr
|
141874
|
+
* Version: 24.2.7-build-25105-1935
|
141875
|
+
* Build date: Tue Apr 15 2025
|
141854
141876
|
*
|
141855
141877
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141856
141878
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141861,8 +141883,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
141861
141883
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_guid.js
|
141862
141884
|
/**
|
141863
141885
|
* DevExtreme (esm/__internal/core/m_guid.js)
|
141864
|
-
* Version: 24.2.7-build-
|
141865
|
-
* Build date: Tue Apr
|
141886
|
+
* Version: 24.2.7-build-25105-1935
|
141887
|
+
* Build date: Tue Apr 15 2025
|
141866
141888
|
*
|
141867
141889
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141868
141890
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141904,8 +141926,8 @@ const Guid = core_class.inherit({
|
|
141904
141926
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/guid.js
|
141905
141927
|
/**
|
141906
141928
|
* DevExtreme (esm/common/guid.js)
|
141907
|
-
* Version: 24.2.7-build-
|
141908
|
-
* Build date: Tue Apr
|
141929
|
+
* Version: 24.2.7-build-25105-1935
|
141930
|
+
* Build date: Tue Apr 15 2025
|
141909
141931
|
*
|
141910
141932
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141911
141933
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141916,8 +141938,8 @@ const Guid = core_class.inherit({
|
|
141916
141938
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/templates/m_template_engine_registry.js
|
141917
141939
|
/**
|
141918
141940
|
* DevExtreme (esm/__internal/core/templates/m_template_engine_registry.js)
|
141919
|
-
* Version: 24.2.7-build-
|
141920
|
-
* Build date: Tue Apr
|
141941
|
+
* Version: 24.2.7-build-25105-1935
|
141942
|
+
* Build date: Tue Apr 15 2025
|
141921
141943
|
*
|
141922
141944
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141923
141945
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141946,8 +141968,8 @@ function getCurrentTemplateEngine() {
|
|
141946
141968
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/templates/template_engine_registry.js
|
141947
141969
|
/**
|
141948
141970
|
* DevExtreme (esm/core/templates/template_engine_registry.js)
|
141949
|
-
* Version: 24.2.7-build-
|
141950
|
-
* Build date: Tue Apr
|
141971
|
+
* Version: 24.2.7-build-25105-1935
|
141972
|
+
* Build date: Tue Apr 15 2025
|
141951
141973
|
*
|
141952
141974
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141953
141975
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141957,8 +141979,8 @@ function getCurrentTemplateEngine() {
|
|
141957
141979
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_set_template_engine.js
|
141958
141980
|
/**
|
141959
141981
|
* DevExtreme (esm/__internal/core/m_set_template_engine.js)
|
141960
|
-
* Version: 24.2.7-build-
|
141961
|
-
* Build date: Tue Apr
|
141982
|
+
* Version: 24.2.7-build-25105-1935
|
141983
|
+
* Build date: Tue Apr 15 2025
|
141962
141984
|
*
|
141963
141985
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141964
141986
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141968,8 +141990,8 @@ function getCurrentTemplateEngine() {
|
|
141968
141990
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/set_template_engine.js
|
141969
141991
|
/**
|
141970
141992
|
* DevExtreme (esm/common/set_template_engine.js)
|
141971
|
-
* Version: 24.2.7-build-
|
141972
|
-
* Build date: Tue Apr
|
141993
|
+
* Version: 24.2.7-build-25105-1935
|
141994
|
+
* Build date: Tue Apr 15 2025
|
141973
141995
|
*
|
141974
141996
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141975
141997
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141980,8 +142002,8 @@ function getCurrentTemplateEngine() {
|
|
141980
142002
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common.js
|
141981
142003
|
/**
|
141982
142004
|
* DevExtreme (esm/common.js)
|
141983
|
-
* Version: 24.2.7-build-
|
141984
|
-
* Build date: Tue Apr
|
142005
|
+
* Version: 24.2.7-build-25105-1935
|
142006
|
+
* Build date: Tue Apr 15 2025
|
141985
142007
|
*
|
141986
142008
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141987
142009
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141994,8 +142016,8 @@ function getCurrentTemplateEngine() {
|
|
141994
142016
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/config.js
|
141995
142017
|
/**
|
141996
142018
|
* DevExtreme (esm/core/config.js)
|
141997
|
-
* Version: 24.2.7-build-
|
141998
|
-
* Build date: Tue Apr
|
142019
|
+
* Version: 24.2.7-build-25105-1935
|
142020
|
+
* Build date: Tue Apr 15 2025
|
141999
142021
|
*
|
142000
142022
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142001
142023
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142006,8 +142028,8 @@ function getCurrentTemplateEngine() {
|
|
142006
142028
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/guid.js
|
142007
142029
|
/**
|
142008
142030
|
* DevExtreme (esm/core/guid.js)
|
142009
|
-
* Version: 24.2.7-build-
|
142010
|
-
* Build date: Tue Apr
|
142031
|
+
* Version: 24.2.7-build-25105-1935
|
142032
|
+
* Build date: Tue Apr 15 2025
|
142011
142033
|
*
|
142012
142034
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142013
142035
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142018,8 +142040,8 @@ function getCurrentTemplateEngine() {
|
|
142018
142040
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/console.js
|
142019
142041
|
/**
|
142020
142042
|
* DevExtreme (esm/core/utils/console.js)
|
142021
|
-
* Version: 24.2.7-build-
|
142022
|
-
* Build date: Tue Apr
|
142043
|
+
* Version: 24.2.7-build-25105-1935
|
142044
|
+
* Build date: Tue Apr 15 2025
|
142023
142045
|
*
|
142024
142046
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142025
142047
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142029,8 +142051,8 @@ function getCurrentTemplateEngine() {
|
|
142029
142051
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_variable_wrapper.js
|
142030
142052
|
/**
|
142031
142053
|
* DevExtreme (esm/__internal/core/utils/m_variable_wrapper.js)
|
142032
|
-
* Version: 24.2.7-build-
|
142033
|
-
* Build date: Tue Apr
|
142054
|
+
* Version: 24.2.7-build-25105-1935
|
142055
|
+
* Build date: Tue Apr 15 2025
|
142034
142056
|
*
|
142035
142057
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142036
142058
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142059,8 +142081,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
142059
142081
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/variable_wrapper.js
|
142060
142082
|
/**
|
142061
142083
|
* DevExtreme (esm/core/utils/variable_wrapper.js)
|
142062
|
-
* Version: 24.2.7-build-
|
142063
|
-
* Build date: Tue Apr
|
142084
|
+
* Version: 24.2.7-build-25105-1935
|
142085
|
+
* Build date: Tue Apr 15 2025
|
142064
142086
|
*
|
142065
142087
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142066
142088
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142071,8 +142093,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
142071
142093
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_object.js
|
142072
142094
|
/**
|
142073
142095
|
* DevExtreme (esm/__internal/core/utils/m_object.js)
|
142074
|
-
* Version: 24.2.7-build-
|
142075
|
-
* Build date: Tue Apr
|
142096
|
+
* Version: 24.2.7-build-25105-1935
|
142097
|
+
* Build date: Tue Apr 15 2025
|
142076
142098
|
*
|
142077
142099
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142078
142100
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142172,8 +142194,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142172
142194
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/object.js
|
142173
142195
|
/**
|
142174
142196
|
* DevExtreme (esm/core/utils/object.js)
|
142175
|
-
* Version: 24.2.7-build-
|
142176
|
-
* Build date: Tue Apr
|
142197
|
+
* Version: 24.2.7-build-25105-1935
|
142198
|
+
* Build date: Tue Apr 15 2025
|
142177
142199
|
*
|
142178
142200
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142179
142201
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142183,8 +142205,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142183
142205
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_data.js
|
142184
142206
|
/**
|
142185
142207
|
* DevExtreme (esm/__internal/core/utils/m_data.js)
|
142186
|
-
* Version: 24.2.7-build-
|
142187
|
-
* Build date: Tue Apr
|
142208
|
+
* Version: 24.2.7-build-25105-1935
|
142209
|
+
* Build date: Tue Apr 15 2025
|
142188
142210
|
*
|
142189
142211
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142190
142212
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142380,8 +142402,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142380
142402
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/data.js
|
142381
142403
|
/**
|
142382
142404
|
* DevExtreme (esm/core/utils/data.js)
|
142383
|
-
* Version: 24.2.7-build-
|
142384
|
-
* Build date: Tue Apr
|
142405
|
+
* Version: 24.2.7-build-25105-1935
|
142406
|
+
* Build date: Tue Apr 15 2025
|
142385
142407
|
*
|
142386
142408
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142387
142409
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142391,8 +142413,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142391
142413
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_callbacks.js
|
142392
142414
|
/**
|
142393
142415
|
* DevExtreme (esm/__internal/core/utils/m_callbacks.js)
|
142394
|
-
* Version: 24.2.7-build-
|
142395
|
-
* Build date: Tue Apr
|
142416
|
+
* Version: 24.2.7-build-25105-1935
|
142417
|
+
* Build date: Tue Apr 15 2025
|
142396
142418
|
*
|
142397
142419
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142398
142420
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142487,8 +142509,8 @@ const Callbacks = function(options) {
|
|
142487
142509
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/callbacks.js
|
142488
142510
|
/**
|
142489
142511
|
* DevExtreme (esm/core/utils/callbacks.js)
|
142490
|
-
* Version: 24.2.7-build-
|
142491
|
-
* Build date: Tue Apr
|
142512
|
+
* Version: 24.2.7-build-25105-1935
|
142513
|
+
* Build date: Tue Apr 15 2025
|
142492
142514
|
*
|
142493
142515
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142494
142516
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142499,8 +142521,8 @@ const Callbacks = function(options) {
|
|
142499
142521
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_deferred.js
|
142500
142522
|
/**
|
142501
142523
|
* DevExtreme (esm/__internal/core/utils/m_deferred.js)
|
142502
|
-
* Version: 24.2.7-build-
|
142503
|
-
* Build date: Tue Apr
|
142524
|
+
* Version: 24.2.7-build-25105-1935
|
142525
|
+
* Build date: Tue Apr 15 2025
|
142504
142526
|
*
|
142505
142527
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142506
142528
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142665,8 +142687,8 @@ function when() {
|
|
142665
142687
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/deferred.js
|
142666
142688
|
/**
|
142667
142689
|
* DevExtreme (esm/core/utils/deferred.js)
|
142668
|
-
* Version: 24.2.7-build-
|
142669
|
-
* Build date: Tue Apr
|
142690
|
+
* Version: 24.2.7-build-25105-1935
|
142691
|
+
* Build date: Tue Apr 15 2025
|
142670
142692
|
*
|
142671
142693
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142672
142694
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142676,8 +142698,8 @@ function when() {
|
|
142676
142698
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_common.js
|
142677
142699
|
/**
|
142678
142700
|
* DevExtreme (esm/__internal/core/utils/m_common.js)
|
142679
|
-
* Version: 24.2.7-build-
|
142680
|
-
* Build date: Tue Apr
|
142701
|
+
* Version: 24.2.7-build-25105-1935
|
142702
|
+
* Build date: Tue Apr 15 2025
|
142681
142703
|
*
|
142682
142704
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142683
142705
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142972,8 +142994,8 @@ const equalByValue = function(value1, value2) {
|
|
142972
142994
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/common.js
|
142973
142995
|
/**
|
142974
142996
|
* DevExtreme (esm/core/utils/common.js)
|
142975
|
-
* Version: 24.2.7-build-
|
142976
|
-
* Build date: Tue Apr
|
142997
|
+
* Version: 24.2.7-build-25105-1935
|
142998
|
+
* Build date: Tue Apr 15 2025
|
142977
142999
|
*
|
142978
143000
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142979
143001
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142983,8 +143005,8 @@ const equalByValue = function(value1, value2) {
|
|
142983
143005
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_math.js
|
142984
143006
|
/**
|
142985
143007
|
* DevExtreme (esm/__internal/core/utils/m_math.js)
|
142986
|
-
* Version: 24.2.7-build-
|
142987
|
-
* Build date: Tue Apr
|
143008
|
+
* Version: 24.2.7-build-25105-1935
|
143009
|
+
* Build date: Tue Apr 15 2025
|
142988
143010
|
*
|
142989
143011
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142990
143012
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143153,8 +143175,8 @@ function roundFloatPart(value) {
|
|
143153
143175
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/math.js
|
143154
143176
|
/**
|
143155
143177
|
* DevExtreme (esm/core/utils/math.js)
|
143156
|
-
* Version: 24.2.7-build-
|
143157
|
-
* Build date: Tue Apr
|
143178
|
+
* Version: 24.2.7-build-25105-1935
|
143179
|
+
* Build date: Tue Apr 15 2025
|
143158
143180
|
*
|
143159
143181
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143160
143182
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143164,8 +143186,8 @@ function roundFloatPart(value) {
|
|
143164
143186
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/utils.js
|
143165
143187
|
/**
|
143166
143188
|
* DevExtreme (esm/common/core/localization/utils.js)
|
143167
|
-
* Version: 24.2.7-build-
|
143168
|
-
* Build date: Tue Apr
|
143189
|
+
* Version: 24.2.7-build-25105-1935
|
143190
|
+
* Build date: Tue Apr 15 2025
|
143169
143191
|
*
|
143170
143192
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143171
143193
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143192,8 +143214,8 @@ function toFixed(value, precision) {
|
|
143192
143214
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/number.js
|
143193
143215
|
/**
|
143194
143216
|
* DevExtreme (esm/common/core/localization/ldml/number.js)
|
143195
|
-
* Version: 24.2.7-build-
|
143196
|
-
* Build date: Tue Apr
|
143217
|
+
* Version: 24.2.7-build-25105-1935
|
143218
|
+
* Build date: Tue Apr 15 2025
|
143197
143219
|
*
|
143198
143220
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143199
143221
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143434,8 +143456,8 @@ function getFormat(formatter) {
|
|
143434
143456
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/currency.js
|
143435
143457
|
/**
|
143436
143458
|
* DevExtreme (esm/common/core/localization/currency.js)
|
143437
|
-
* Version: 24.2.7-build-
|
143438
|
-
* Build date: Tue Apr
|
143459
|
+
* Version: 24.2.7-build-25105-1935
|
143460
|
+
* Build date: Tue Apr 15 2025
|
143439
143461
|
*
|
143440
143462
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143441
143463
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143467,8 +143489,8 @@ function getFormat(formatter) {
|
|
143467
143489
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/parent_locales.js
|
143468
143490
|
/**
|
143469
143491
|
* DevExtreme (esm/common/core/localization/cldr-data/parent_locales.js)
|
143470
|
-
* Version: 24.2.7-build-
|
143471
|
-
* Build date: Tue Apr
|
143492
|
+
* Version: 24.2.7-build-25105-1935
|
143493
|
+
* Build date: Tue Apr 15 2025
|
143472
143494
|
*
|
143473
143495
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143474
143496
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143653,8 +143675,8 @@ function getFormat(formatter) {
|
|
143653
143675
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/parentLocale.js
|
143654
143676
|
/**
|
143655
143677
|
* DevExtreme (esm/common/core/localization/parentLocale.js)
|
143656
|
-
* Version: 24.2.7-build-
|
143657
|
-
* Build date: Tue Apr
|
143678
|
+
* Version: 24.2.7-build-25105-1935
|
143679
|
+
* Build date: Tue Apr 15 2025
|
143658
143680
|
*
|
143659
143681
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143660
143682
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143671,8 +143693,8 @@ const PARENT_LOCALE_SEPARATOR = "-";
|
|
143671
143693
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/core.js
|
143672
143694
|
/**
|
143673
143695
|
* DevExtreme (esm/common/core/localization/core.js)
|
143674
|
-
* Version: 24.2.7-build-
|
143675
|
-
* Build date: Tue Apr
|
143696
|
+
* Version: 24.2.7-build-25105-1935
|
143697
|
+
* Build date: Tue Apr 15 2025
|
143676
143698
|
*
|
143677
143699
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143678
143700
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143713,8 +143735,8 @@ const DEFAULT_LOCALE = "en";
|
|
143713
143735
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/open_xml_currency_format.js
|
143714
143736
|
/**
|
143715
143737
|
* DevExtreme (esm/common/core/localization/open_xml_currency_format.js)
|
143716
|
-
* Version: 24.2.7-build-
|
143717
|
-
* Build date: Tue Apr
|
143738
|
+
* Version: 24.2.7-build-25105-1935
|
143739
|
+
* Build date: Tue Apr 15 2025
|
143718
143740
|
*
|
143719
143741
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143720
143742
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143756,8 +143778,8 @@ const DEFAULT_LOCALE = "en";
|
|
143756
143778
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/accounting_formats.js
|
143757
143779
|
/**
|
143758
143780
|
* DevExtreme (esm/common/core/localization/cldr-data/accounting_formats.js)
|
143759
|
-
* Version: 24.2.7-build-
|
143760
|
-
* Build date: Tue Apr
|
143781
|
+
* Version: 24.2.7-build-25105-1935
|
143782
|
+
* Build date: Tue Apr 15 2025
|
143761
143783
|
*
|
143762
143784
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143763
143785
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144343,8 +144365,8 @@ const DEFAULT_LOCALE = "en";
|
|
144343
144365
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/number.js
|
144344
144366
|
/**
|
144345
144367
|
* DevExtreme (esm/common/core/localization/intl/number.js)
|
144346
|
-
* Version: 24.2.7-build-
|
144347
|
-
* Build date: Tue Apr
|
144368
|
+
* Version: 24.2.7-build-25105-1935
|
144369
|
+
* Build date: Tue Apr 15 2025
|
144348
144370
|
*
|
144349
144371
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144350
144372
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144464,8 +144486,8 @@ const getCurrencyFormatter = currency => new Intl.NumberFormat(core.locale(), {
|
|
144464
144486
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/number.js
|
144465
144487
|
/**
|
144466
144488
|
* DevExtreme (esm/common/core/localization/number.js)
|
144467
|
-
* Version: 24.2.7-build-
|
144468
|
-
* Build date: Tue Apr
|
144489
|
+
* Version: 24.2.7-build-25105-1935
|
144490
|
+
* Build date: Tue Apr 15 2025
|
144469
144491
|
*
|
144470
144492
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144471
144493
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144770,8 +144792,8 @@ if (hasIntl) {
|
|
144770
144792
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.format.js
|
144771
144793
|
/**
|
144772
144794
|
* DevExtreme (esm/common/core/localization/ldml/date.format.js)
|
144773
|
-
* Version: 24.2.7-build-
|
144774
|
-
* Build date: Tue Apr
|
144795
|
+
* Version: 24.2.7-build-25105-1935
|
144796
|
+
* Build date: Tue Apr 15 2025
|
144775
144797
|
*
|
144776
144798
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144777
144799
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144968,8 +144990,8 @@ const date_format_getFormat = function(formatter) {
|
|
144968
144990
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.parser.js
|
144969
144991
|
/**
|
144970
144992
|
* DevExtreme (esm/common/core/localization/ldml/date.parser.js)
|
144971
|
-
* Version: 24.2.7-build-
|
144972
|
-
* Build date: Tue Apr
|
144993
|
+
* Version: 24.2.7-build-25105-1935
|
144994
|
+
* Build date: Tue Apr 15 2025
|
144973
144995
|
*
|
144974
144996
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144975
144997
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145287,8 +145309,8 @@ const getParser = function(format, dateParts) {
|
|
145287
145309
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/default_date_names.js
|
145288
145310
|
/**
|
145289
145311
|
* DevExtreme (esm/common/core/localization/default_date_names.js)
|
145290
|
-
* Version: 24.2.7-build-
|
145291
|
-
* Build date: Tue Apr
|
145312
|
+
* Version: 24.2.7-build-25105-1935
|
145313
|
+
* Build date: Tue Apr 15 2025
|
145292
145314
|
*
|
145293
145315
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145294
145316
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145324,8 +145346,8 @@ const cutCaptions = (captions, format) => {
|
|
145324
145346
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/first_day_of_week_data.js
|
145325
145347
|
/**
|
145326
145348
|
* DevExtreme (esm/common/core/localization/cldr-data/first_day_of_week_data.js)
|
145327
|
-
* Version: 24.2.7-build-
|
145328
|
-
* Build date: Tue Apr
|
145349
|
+
* Version: 24.2.7-build-25105-1935
|
145350
|
+
* Build date: Tue Apr 15 2025
|
145329
145351
|
*
|
145330
145352
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145331
145353
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145524,8 +145546,8 @@ const cutCaptions = (captions, format) => {
|
|
145524
145546
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/date.js
|
145525
145547
|
/**
|
145526
145548
|
* DevExtreme (esm/common/core/localization/intl/date.js)
|
145527
|
-
* Version: 24.2.7-build-
|
145528
|
-
* Build date: Tue Apr
|
145549
|
+
* Version: 24.2.7-build-25105-1935
|
145550
|
+
* Build date: Tue Apr 15 2025
|
145529
145551
|
*
|
145530
145552
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145531
145553
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145842,8 +145864,8 @@ const monthNameStrategies = {
|
|
145842
145864
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/date.js
|
145843
145865
|
/**
|
145844
145866
|
* DevExtreme (esm/common/core/localization/date.js)
|
145845
|
-
* Version: 24.2.7-build-
|
145846
|
-
* Build date: Tue Apr
|
145867
|
+
* Version: 24.2.7-build-25105-1935
|
145868
|
+
* Build date: Tue Apr 15 2025
|
145847
145869
|
*
|
145848
145870
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145849
145871
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -149526,11 +149548,11 @@ class RichEditPublic {
|
|
149526
149548
|
command.execute(true, type);
|
149527
149549
|
}
|
149528
149550
|
get readOnly() {
|
149529
|
-
return this._native.core.readOnly
|
149551
|
+
return this._native.core.readOnly === ReadOnlyMode.Persistent;
|
149530
149552
|
}
|
149531
149553
|
set readOnly(value) {
|
149532
149554
|
if (this.readOnly != value) {
|
149533
|
-
this._native.core.
|
149555
|
+
this._native.core.setPersistentReadOnly(value);
|
149534
149556
|
this._native.core.barHolder.updateItemsState();
|
149535
149557
|
this._native.core.horizontalRulerControl.update();
|
149536
149558
|
this._native.core.beginUpdate();
|