devexpress-richedit 24.2.7-build-25093-0104 → 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 +223 -197
- package/dist/dx.richedit.min.js +1 -1
- package/lib/client/public/rich-edit.js +2 -2
- package/lib/common/canvas/canvas-manager.js +10 -4
- 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 +14 -7
- package/lib/common/utils/size-utils.js +43 -18
- 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,31 +107843,56 @@ 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
|
-
const
|
107854
|
-
const
|
107855
|
-
const
|
107856
|
-
|
107857
|
-
|
107858
|
-
|
107859
|
-
|
107860
|
-
|
107861
|
-
|
107871
|
+
const computedStyle = getComputedStyle(element);
|
107872
|
+
const offsetWidth = this.getOffsetWidth(element);
|
107873
|
+
const offsetWidthWithoutBorder = offsetWidth
|
107874
|
+
- parseCssValue(computedStyle.borderLeftWidth)
|
107875
|
+
- parseCssValue(computedStyle.borderRightWidth);
|
107876
|
+
let scrollbarWidth = 0;
|
107877
|
+
if (Math.round(offsetWidthWithoutBorder) > element.clientWidth)
|
107878
|
+
scrollbarWidth = SizeUtils.getScrollbarsWidth().vertical;
|
107879
|
+
const clientWidth = offsetWidthWithoutBorder - scrollbarWidth;
|
107880
|
+
return new DimensionInfo(offsetWidth, clientWidth, scrollbarWidth);
|
107862
107881
|
}
|
107863
107882
|
static getClientWidth(element) {
|
107864
107883
|
return this.getWidthInfo(element).clientSize;
|
107865
107884
|
}
|
107866
107885
|
static getHeightInfo(element) {
|
107867
|
-
const
|
107868
|
-
const
|
107869
|
-
const
|
107870
|
-
|
107871
|
-
|
107872
|
-
|
107873
|
-
|
107874
|
-
|
107875
|
-
|
107886
|
+
const computedStyle = getComputedStyle(element);
|
107887
|
+
const offsetHeight = this.getOffsetHeight(element);
|
107888
|
+
const offsetHeightWithoutBorder = offsetHeight
|
107889
|
+
- parseCssValue(computedStyle.borderTopWidth)
|
107890
|
+
- parseCssValue(computedStyle.borderBottomWidth);
|
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);
|
107876
107896
|
}
|
107877
107897
|
static getClientHeight(element) {
|
107878
107898
|
return this.getHeightInfo(element).clientSize;
|
@@ -108219,17 +108239,23 @@ class CanvasManager extends batch_updatable/* BatchUpdatableObject */.IS {
|
|
108219
108239
|
onScrollIntervalTick() {
|
108220
108240
|
const evtX = this.lastMousePosition.x;
|
108221
108241
|
const evtY = this.lastMousePosition.y;
|
108222
|
-
const inHorizontalArea = evtX >= this.canvasPosition.x && evtX <= this.canvasPosition.x + this.sizes.getVisibleAreaWidth(
|
108223
|
-
const inVerticalArea = evtY >= this.canvasPosition.y && evtY <= this.canvasPosition.y + this.sizes.getVisibleAreaHeight(
|
108242
|
+
const inHorizontalArea = evtX >= this.canvasPosition.x && evtX <= this.canvasPosition.x + this.sizes.getVisibleAreaWidth(false);
|
108243
|
+
const inVerticalArea = evtY >= this.canvasPosition.y && evtY <= this.canvasPosition.y + this.sizes.getVisibleAreaHeight(false);
|
108224
108244
|
if (!inHorizontalArea && !inVerticalArea)
|
108225
108245
|
return;
|
108246
|
+
const yOffsetWithoutScrollbar = this.canvasPosition.y + this.sizes.getVisibleAreaHeight(false) - evtY;
|
108247
|
+
const yOffsetWithScrollbar = this.canvasPosition.y + this.sizes.getVisibleAreaHeight(true) - evtY;
|
108248
|
+
const outsideHorizontalScrollbar = yOffsetWithoutScrollbar > 0 || yOffsetWithScrollbar < 0;
|
108226
108249
|
if (inHorizontalArea && evtY - this.canvasPosition.y <= AUTOSCROLL_AREA_SIZE)
|
108227
108250
|
this.viewManager.canvas.scrollTop -= AUTOSCROLL_STEP;
|
108228
|
-
else if (inHorizontalArea &&
|
108251
|
+
else if (inHorizontalArea && yOffsetWithoutScrollbar <= AUTOSCROLL_AREA_SIZE && outsideHorizontalScrollbar)
|
108229
108252
|
this.viewManager.canvas.scrollTop += AUTOSCROLL_STEP;
|
108253
|
+
const xOffsetWithoutScrollbar = this.canvasPosition.x + this.sizes.getVisibleAreaWidth(false) - evtX;
|
108254
|
+
const xOffsetWithScrollbar = this.canvasPosition.x + this.sizes.getVisibleAreaWidth(true) - evtX;
|
108255
|
+
const outsideVerticalScrollbar = xOffsetWithoutScrollbar > 0 || xOffsetWithScrollbar < 0;
|
108230
108256
|
if (inVerticalArea && evtX - this.canvasPosition.x <= AUTOSCROLL_AREA_SIZE)
|
108231
108257
|
this.viewManager.canvas.scrollLeft -= AUTOSCROLL_STEP;
|
108232
|
-
else if (inVerticalArea &&
|
108258
|
+
else if (inVerticalArea && xOffsetWithoutScrollbar <= AUTOSCROLL_AREA_SIZE && outsideVerticalScrollbar)
|
108233
108259
|
this.viewManager.canvas.scrollLeft += AUTOSCROLL_STEP;
|
108234
108260
|
}
|
108235
108261
|
static getCursorClassName(pointer) {
|
@@ -110522,17 +110548,17 @@ class InputEditorBase {
|
|
110522
110548
|
clearTimeout(this.onKeyUpTimerId);
|
110523
110549
|
}
|
110524
110550
|
initialize() {
|
110525
|
-
this.
|
110551
|
+
this.initializeEditableState();
|
110526
110552
|
this.initEvents();
|
110527
110553
|
this.prevKeyCode = EMPTY_KEYCODE;
|
110528
110554
|
}
|
110529
|
-
|
110530
|
-
if (
|
110531
|
-
this.
|
110532
|
-
this.
|
110555
|
+
initializeEditableState() {
|
110556
|
+
if (!this.editableStateInitialized) {
|
110557
|
+
this.editableStateInitialized = true;
|
110558
|
+
this.initializeEditableStateCore();
|
110533
110559
|
}
|
110534
110560
|
}
|
110535
|
-
|
110561
|
+
initializeEditableStateCore() {
|
110536
110562
|
}
|
110537
110563
|
initEvents() {
|
110538
110564
|
this.evtHandlersHolder.addListener(this.getEditableDocument(), "keydown", this.onKeyDown.bind(this));
|
@@ -110752,8 +110778,8 @@ class DivInputEditor extends InputEditorBase {
|
|
110752
110778
|
clearTimeout(this.composEndTimerId);
|
110753
110779
|
clearTimeout(this.onTextInputTimerId);
|
110754
110780
|
}
|
110755
|
-
|
110756
|
-
this.inputElement.contentEditable =
|
110781
|
+
initializeEditableStateCore() {
|
110782
|
+
this.inputElement.contentEditable = String(!this.control.isReadOnlyPersistent);
|
110757
110783
|
this.clearInputElement();
|
110758
110784
|
}
|
110759
110785
|
setPosition(left, top) {
|
@@ -111001,11 +111027,11 @@ class IFrameInputEditor extends InputEditorBase {
|
|
111001
111027
|
body.style.margin = "0px";
|
111002
111028
|
body.style.overflow = "hidden";
|
111003
111029
|
}
|
111004
|
-
|
111030
|
+
initializeEditableStateCore() {
|
111005
111031
|
if (browser.Browser.WebKitFamily)
|
111006
|
-
this.editableDocument.body.setAttribute("contenteditable",
|
111032
|
+
this.editableDocument.body.setAttribute("contenteditable", String(!this.control.isReadOnlyPersistent));
|
111007
111033
|
else
|
111008
|
-
this.editableDocument.designMode = "on";
|
111034
|
+
this.editableDocument.designMode = this.control.isReadOnlyPersistent ? "off" : "on";
|
111009
111035
|
}
|
111010
111036
|
createInputElement() {
|
111011
111037
|
const element = document.createElement("IFRAME");
|
@@ -111144,7 +111170,7 @@ class IFrameInputEditor extends InputEditorBase {
|
|
111144
111170
|
recreateIfNeeded() {
|
111145
111171
|
const iframeDocument = this.inputElement.contentDocument || this.inputElement.contentWindow.document;
|
111146
111172
|
if (!iframeDocument.body.hasAttribute("loaded")) {
|
111147
|
-
this.
|
111173
|
+
this.editableStateInitialized = false;
|
111148
111174
|
this.createHierarchyCore();
|
111149
111175
|
this.initialize();
|
111150
111176
|
}
|
@@ -115412,7 +115438,7 @@ class SearchManager {
|
|
115412
115438
|
|
115413
115439
|
|
115414
115440
|
class RichEditCore {
|
115415
|
-
get isReadOnlyPersistent() { return this.readOnly
|
115441
|
+
get isReadOnlyPersistent() { return this.readOnly === ReadOnlyMode.Persistent; }
|
115416
115442
|
get model() { return this.modelManager.model; }
|
115417
115443
|
get isDisposed() {
|
115418
115444
|
return this._isDisposed;
|
@@ -115624,8 +115650,8 @@ class RichEditCore {
|
|
115624
115650
|
this.readOnly = ReadOnlyMode.Persistent;
|
115625
115651
|
else if (!readOnly && this.readOnly === ReadOnlyMode.Persistent) {
|
115626
115652
|
this.readOnly = ReadOnlyMode.None;
|
115627
|
-
this.inputController.inputEditor.initializeIfNotReadOnly();
|
115628
115653
|
}
|
115654
|
+
this.inputController.inputEditor.initializeEditableStateCore();
|
115629
115655
|
}
|
115630
115656
|
setWorkSession(sessionGuid, documentInfo) {
|
115631
115657
|
this.sessionGuid = sessionGuid;
|
@@ -140870,8 +140896,8 @@ class DialogManager {
|
|
140870
140896
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_type.js
|
140871
140897
|
/**
|
140872
140898
|
* DevExtreme (esm/__internal/core/utils/m_type.js)
|
140873
|
-
* Version: 24.2.7-build-
|
140874
|
-
* Build date: Tue Apr
|
140899
|
+
* Version: 24.2.7-build-25105-1935
|
140900
|
+
* Build date: Tue Apr 15 2025
|
140875
140901
|
*
|
140876
140902
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140877
140903
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140973,8 +140999,8 @@ const isEvent = function(object) {
|
|
140973
140999
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/type.js
|
140974
141000
|
/**
|
140975
141001
|
* DevExtreme (esm/core/utils/type.js)
|
140976
|
-
* Version: 24.2.7-build-
|
140977
|
-
* Build date: Tue Apr
|
141002
|
+
* Version: 24.2.7-build-25105-1935
|
141003
|
+
* Build date: Tue Apr 15 2025
|
140978
141004
|
*
|
140979
141005
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140980
141006
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140984,8 +141010,8 @@ const isEvent = function(object) {
|
|
140984
141010
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_extend.js
|
140985
141011
|
/**
|
140986
141012
|
* DevExtreme (esm/__internal/core/utils/m_extend.js)
|
140987
|
-
* Version: 24.2.7-build-
|
140988
|
-
* Build date: Tue Apr
|
141013
|
+
* Version: 24.2.7-build-25105-1935
|
141014
|
+
* Build date: Tue Apr 15 2025
|
140989
141015
|
*
|
140990
141016
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140991
141017
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141043,8 +141069,8 @@ const extend = function(target) {
|
|
141043
141069
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/extend.js
|
141044
141070
|
/**
|
141045
141071
|
* DevExtreme (esm/core/utils/extend.js)
|
141046
|
-
* Version: 24.2.7-build-
|
141047
|
-
* Build date: Tue Apr
|
141072
|
+
* Version: 24.2.7-build-25105-1935
|
141073
|
+
* Build date: Tue Apr 15 2025
|
141048
141074
|
*
|
141049
141075
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141050
141076
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141054,8 +141080,8 @@ const extend = function(target) {
|
|
141054
141080
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_string.js
|
141055
141081
|
/**
|
141056
141082
|
* DevExtreme (esm/__internal/core/utils/m_string.js)
|
141057
|
-
* Version: 24.2.7-build-
|
141058
|
-
* Build date: Tue Apr
|
141083
|
+
* Version: 24.2.7-build-25105-1935
|
141084
|
+
* Build date: Tue Apr 15 2025
|
141059
141085
|
*
|
141060
141086
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141061
141087
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141130,8 +141156,8 @@ const isEmpty = function() {
|
|
141130
141156
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/string.js
|
141131
141157
|
/**
|
141132
141158
|
* DevExtreme (esm/core/utils/string.js)
|
141133
|
-
* Version: 24.2.7-build-
|
141134
|
-
* Build date: Tue Apr
|
141159
|
+
* Version: 24.2.7-build-25105-1935
|
141160
|
+
* Build date: Tue Apr 15 2025
|
141135
141161
|
*
|
141136
141162
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141137
141163
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141141,20 +141167,20 @@ const isEmpty = function() {
|
|
141141
141167
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/version.js
|
141142
141168
|
/**
|
141143
141169
|
* DevExtreme (esm/core/version.js)
|
141144
|
-
* Version: 24.2.7-build-
|
141145
|
-
* Build date: Tue Apr
|
141170
|
+
* Version: 24.2.7-build-25105-1935
|
141171
|
+
* Build date: Tue Apr 15 2025
|
141146
141172
|
*
|
141147
141173
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141148
141174
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
141149
141175
|
*/
|
141150
141176
|
const version = "24.2.6";
|
141151
|
-
const fullVersion = "24.2.6.
|
141177
|
+
const fullVersion = "24.2.6.25105-1935";
|
141152
141178
|
|
141153
141179
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_console.js
|
141154
141180
|
/**
|
141155
141181
|
* DevExtreme (esm/__internal/core/utils/m_console.js)
|
141156
|
-
* Version: 24.2.7-build-
|
141157
|
-
* Build date: Tue Apr
|
141182
|
+
* Version: 24.2.7-build-25105-1935
|
141183
|
+
* Build date: Tue Apr 15 2025
|
141158
141184
|
*
|
141159
141185
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141160
141186
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141194,8 +141220,8 @@ const debug = function() {
|
|
141194
141220
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_error.js
|
141195
141221
|
/**
|
141196
141222
|
* DevExtreme (esm/__internal/core/utils/m_error.js)
|
141197
|
-
* Version: 24.2.7-build-
|
141198
|
-
* Build date: Tue Apr
|
141223
|
+
* Version: 24.2.7-build-25105-1935
|
141224
|
+
* Build date: Tue Apr 15 2025
|
141199
141225
|
*
|
141200
141226
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141201
141227
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141266,8 +141292,8 @@ function error(baseErrors, errors) {
|
|
141266
141292
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/error.js
|
141267
141293
|
/**
|
141268
141294
|
* DevExtreme (esm/core/utils/error.js)
|
141269
|
-
* Version: 24.2.7-build-
|
141270
|
-
* Build date: Tue Apr
|
141295
|
+
* Version: 24.2.7-build-25105-1935
|
141296
|
+
* Build date: Tue Apr 15 2025
|
141271
141297
|
*
|
141272
141298
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141273
141299
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141278,8 +141304,8 @@ function error(baseErrors, errors) {
|
|
141278
141304
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_errors.js
|
141279
141305
|
/**
|
141280
141306
|
* DevExtreme (esm/__internal/core/m_errors.js)
|
141281
|
-
* Version: 24.2.7-build-
|
141282
|
-
* Build date: Tue Apr
|
141307
|
+
* Version: 24.2.7-build-25105-1935
|
141308
|
+
* Build date: Tue Apr 15 2025
|
141283
141309
|
*
|
141284
141310
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141285
141311
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141345,8 +141371,8 @@ function error(baseErrors, errors) {
|
|
141345
141371
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/errors.js
|
141346
141372
|
/**
|
141347
141373
|
* DevExtreme (esm/core/errors.js)
|
141348
|
-
* Version: 24.2.7-build-
|
141349
|
-
* Build date: Tue Apr
|
141374
|
+
* Version: 24.2.7-build-25105-1935
|
141375
|
+
* Build date: Tue Apr 15 2025
|
141350
141376
|
*
|
141351
141377
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141352
141378
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141357,8 +141383,8 @@ function error(baseErrors, errors) {
|
|
141357
141383
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_class.js
|
141358
141384
|
/**
|
141359
141385
|
* DevExtreme (esm/__internal/core/m_class.js)
|
141360
|
-
* Version: 24.2.7-build-
|
141361
|
-
* Build date: Tue Apr
|
141386
|
+
* Version: 24.2.7-build-25105-1935
|
141387
|
+
* Build date: Tue Apr 15 2025
|
141362
141388
|
*
|
141363
141389
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141364
141390
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141491,8 +141517,8 @@ classImpl.abstract = m_class_abstract;
|
|
141491
141517
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/class.js
|
141492
141518
|
/**
|
141493
141519
|
* DevExtreme (esm/core/class.js)
|
141494
|
-
* Version: 24.2.7-build-
|
141495
|
-
* Build date: Tue Apr
|
141520
|
+
* Version: 24.2.7-build-25105-1935
|
141521
|
+
* Build date: Tue Apr 15 2025
|
141496
141522
|
*
|
141497
141523
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141498
141524
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141503,8 +141529,8 @@ classImpl.abstract = m_class_abstract;
|
|
141503
141529
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_iterator.js
|
141504
141530
|
/**
|
141505
141531
|
* DevExtreme (esm/__internal/core/utils/m_iterator.js)
|
141506
|
-
* Version: 24.2.7-build-
|
141507
|
-
* Build date: Tue Apr
|
141532
|
+
* Version: 24.2.7-build-25105-1935
|
141533
|
+
* Build date: Tue Apr 15 2025
|
141508
141534
|
*
|
141509
141535
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141510
141536
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141553,8 +141579,8 @@ const reverseEach = (array, callback) => {
|
|
141553
141579
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_dependency_injector.js
|
141554
141580
|
/**
|
141555
141581
|
* DevExtreme (esm/__internal/core/utils/m_dependency_injector.js)
|
141556
|
-
* Version: 24.2.7-build-
|
141557
|
-
* Build date: Tue Apr
|
141582
|
+
* Version: 24.2.7-build-25105-1935
|
141583
|
+
* Build date: Tue Apr 15 2025
|
141558
141584
|
*
|
141559
141585
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141560
141586
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141603,8 +141629,8 @@ function injector(object) {
|
|
141603
141629
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/dependency_injector.js
|
141604
141630
|
/**
|
141605
141631
|
* DevExtreme (esm/core/utils/dependency_injector.js)
|
141606
|
-
* Version: 24.2.7-build-
|
141607
|
-
* Build date: Tue Apr
|
141632
|
+
* Version: 24.2.7-build-25105-1935
|
141633
|
+
* Build date: Tue Apr 15 2025
|
141608
141634
|
*
|
141609
141635
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141610
141636
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141615,8 +141641,8 @@ function injector(object) {
|
|
141615
141641
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.formatter.js
|
141616
141642
|
/**
|
141617
141643
|
* DevExtreme (esm/common/core/localization/ldml/date.formatter.js)
|
141618
|
-
* Version: 24.2.7-build-
|
141619
|
-
* Build date: Tue Apr
|
141644
|
+
* Version: 24.2.7-build-25105-1935
|
141645
|
+
* Build date: Tue Apr 15 2025
|
141620
141646
|
*
|
141621
141647
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141622
141648
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141769,8 +141795,8 @@ function _extends() {
|
|
141769
141795
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_config.js
|
141770
141796
|
/**
|
141771
141797
|
* DevExtreme (esm/__internal/core/m_config.js)
|
141772
|
-
* Version: 24.2.7-build-
|
141773
|
-
* Build date: Tue Apr
|
141798
|
+
* Version: 24.2.7-build-25105-1935
|
141799
|
+
* Build date: Tue Apr 15 2025
|
141774
141800
|
*
|
141775
141801
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141776
141802
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141845,8 +141871,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
141845
141871
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/config.js
|
141846
141872
|
/**
|
141847
141873
|
* DevExtreme (esm/common/config.js)
|
141848
|
-
* Version: 24.2.7-build-
|
141849
|
-
* Build date: Tue Apr
|
141874
|
+
* Version: 24.2.7-build-25105-1935
|
141875
|
+
* Build date: Tue Apr 15 2025
|
141850
141876
|
*
|
141851
141877
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141852
141878
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141857,8 +141883,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
141857
141883
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_guid.js
|
141858
141884
|
/**
|
141859
141885
|
* DevExtreme (esm/__internal/core/m_guid.js)
|
141860
|
-
* Version: 24.2.7-build-
|
141861
|
-
* Build date: Tue Apr
|
141886
|
+
* Version: 24.2.7-build-25105-1935
|
141887
|
+
* Build date: Tue Apr 15 2025
|
141862
141888
|
*
|
141863
141889
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141864
141890
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141900,8 +141926,8 @@ const Guid = core_class.inherit({
|
|
141900
141926
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/guid.js
|
141901
141927
|
/**
|
141902
141928
|
* DevExtreme (esm/common/guid.js)
|
141903
|
-
* Version: 24.2.7-build-
|
141904
|
-
* Build date: Tue Apr
|
141929
|
+
* Version: 24.2.7-build-25105-1935
|
141930
|
+
* Build date: Tue Apr 15 2025
|
141905
141931
|
*
|
141906
141932
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141907
141933
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141912,8 +141938,8 @@ const Guid = core_class.inherit({
|
|
141912
141938
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/templates/m_template_engine_registry.js
|
141913
141939
|
/**
|
141914
141940
|
* DevExtreme (esm/__internal/core/templates/m_template_engine_registry.js)
|
141915
|
-
* Version: 24.2.7-build-
|
141916
|
-
* Build date: Tue Apr
|
141941
|
+
* Version: 24.2.7-build-25105-1935
|
141942
|
+
* Build date: Tue Apr 15 2025
|
141917
141943
|
*
|
141918
141944
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141919
141945
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141942,8 +141968,8 @@ function getCurrentTemplateEngine() {
|
|
141942
141968
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/templates/template_engine_registry.js
|
141943
141969
|
/**
|
141944
141970
|
* DevExtreme (esm/core/templates/template_engine_registry.js)
|
141945
|
-
* Version: 24.2.7-build-
|
141946
|
-
* Build date: Tue Apr
|
141971
|
+
* Version: 24.2.7-build-25105-1935
|
141972
|
+
* Build date: Tue Apr 15 2025
|
141947
141973
|
*
|
141948
141974
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141949
141975
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141953,8 +141979,8 @@ function getCurrentTemplateEngine() {
|
|
141953
141979
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_set_template_engine.js
|
141954
141980
|
/**
|
141955
141981
|
* DevExtreme (esm/__internal/core/m_set_template_engine.js)
|
141956
|
-
* Version: 24.2.7-build-
|
141957
|
-
* Build date: Tue Apr
|
141982
|
+
* Version: 24.2.7-build-25105-1935
|
141983
|
+
* Build date: Tue Apr 15 2025
|
141958
141984
|
*
|
141959
141985
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141960
141986
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141964,8 +141990,8 @@ function getCurrentTemplateEngine() {
|
|
141964
141990
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/set_template_engine.js
|
141965
141991
|
/**
|
141966
141992
|
* DevExtreme (esm/common/set_template_engine.js)
|
141967
|
-
* Version: 24.2.7-build-
|
141968
|
-
* Build date: Tue Apr
|
141993
|
+
* Version: 24.2.7-build-25105-1935
|
141994
|
+
* Build date: Tue Apr 15 2025
|
141969
141995
|
*
|
141970
141996
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141971
141997
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141976,8 +142002,8 @@ function getCurrentTemplateEngine() {
|
|
141976
142002
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common.js
|
141977
142003
|
/**
|
141978
142004
|
* DevExtreme (esm/common.js)
|
141979
|
-
* Version: 24.2.7-build-
|
141980
|
-
* Build date: Tue Apr
|
142005
|
+
* Version: 24.2.7-build-25105-1935
|
142006
|
+
* Build date: Tue Apr 15 2025
|
141981
142007
|
*
|
141982
142008
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141983
142009
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141990,8 +142016,8 @@ function getCurrentTemplateEngine() {
|
|
141990
142016
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/config.js
|
141991
142017
|
/**
|
141992
142018
|
* DevExtreme (esm/core/config.js)
|
141993
|
-
* Version: 24.2.7-build-
|
141994
|
-
* Build date: Tue Apr
|
142019
|
+
* Version: 24.2.7-build-25105-1935
|
142020
|
+
* Build date: Tue Apr 15 2025
|
141995
142021
|
*
|
141996
142022
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141997
142023
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142002,8 +142028,8 @@ function getCurrentTemplateEngine() {
|
|
142002
142028
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/guid.js
|
142003
142029
|
/**
|
142004
142030
|
* DevExtreme (esm/core/guid.js)
|
142005
|
-
* Version: 24.2.7-build-
|
142006
|
-
* Build date: Tue Apr
|
142031
|
+
* Version: 24.2.7-build-25105-1935
|
142032
|
+
* Build date: Tue Apr 15 2025
|
142007
142033
|
*
|
142008
142034
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142009
142035
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142014,8 +142040,8 @@ function getCurrentTemplateEngine() {
|
|
142014
142040
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/console.js
|
142015
142041
|
/**
|
142016
142042
|
* DevExtreme (esm/core/utils/console.js)
|
142017
|
-
* Version: 24.2.7-build-
|
142018
|
-
* Build date: Tue Apr
|
142043
|
+
* Version: 24.2.7-build-25105-1935
|
142044
|
+
* Build date: Tue Apr 15 2025
|
142019
142045
|
*
|
142020
142046
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142021
142047
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142025,8 +142051,8 @@ function getCurrentTemplateEngine() {
|
|
142025
142051
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_variable_wrapper.js
|
142026
142052
|
/**
|
142027
142053
|
* DevExtreme (esm/__internal/core/utils/m_variable_wrapper.js)
|
142028
|
-
* Version: 24.2.7-build-
|
142029
|
-
* Build date: Tue Apr
|
142054
|
+
* Version: 24.2.7-build-25105-1935
|
142055
|
+
* Build date: Tue Apr 15 2025
|
142030
142056
|
*
|
142031
142057
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142032
142058
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142055,8 +142081,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
142055
142081
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/variable_wrapper.js
|
142056
142082
|
/**
|
142057
142083
|
* DevExtreme (esm/core/utils/variable_wrapper.js)
|
142058
|
-
* Version: 24.2.7-build-
|
142059
|
-
* Build date: Tue Apr
|
142084
|
+
* Version: 24.2.7-build-25105-1935
|
142085
|
+
* Build date: Tue Apr 15 2025
|
142060
142086
|
*
|
142061
142087
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142062
142088
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142067,8 +142093,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
142067
142093
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_object.js
|
142068
142094
|
/**
|
142069
142095
|
* DevExtreme (esm/__internal/core/utils/m_object.js)
|
142070
|
-
* Version: 24.2.7-build-
|
142071
|
-
* Build date: Tue Apr
|
142096
|
+
* Version: 24.2.7-build-25105-1935
|
142097
|
+
* Build date: Tue Apr 15 2025
|
142072
142098
|
*
|
142073
142099
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142074
142100
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142168,8 +142194,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142168
142194
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/object.js
|
142169
142195
|
/**
|
142170
142196
|
* DevExtreme (esm/core/utils/object.js)
|
142171
|
-
* Version: 24.2.7-build-
|
142172
|
-
* Build date: Tue Apr
|
142197
|
+
* Version: 24.2.7-build-25105-1935
|
142198
|
+
* Build date: Tue Apr 15 2025
|
142173
142199
|
*
|
142174
142200
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142175
142201
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142179,8 +142205,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142179
142205
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_data.js
|
142180
142206
|
/**
|
142181
142207
|
* DevExtreme (esm/__internal/core/utils/m_data.js)
|
142182
|
-
* Version: 24.2.7-build-
|
142183
|
-
* Build date: Tue Apr
|
142208
|
+
* Version: 24.2.7-build-25105-1935
|
142209
|
+
* Build date: Tue Apr 15 2025
|
142184
142210
|
*
|
142185
142211
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142186
142212
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142376,8 +142402,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142376
142402
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/data.js
|
142377
142403
|
/**
|
142378
142404
|
* DevExtreme (esm/core/utils/data.js)
|
142379
|
-
* Version: 24.2.7-build-
|
142380
|
-
* Build date: Tue Apr
|
142405
|
+
* Version: 24.2.7-build-25105-1935
|
142406
|
+
* Build date: Tue Apr 15 2025
|
142381
142407
|
*
|
142382
142408
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142383
142409
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142387,8 +142413,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142387
142413
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_callbacks.js
|
142388
142414
|
/**
|
142389
142415
|
* DevExtreme (esm/__internal/core/utils/m_callbacks.js)
|
142390
|
-
* Version: 24.2.7-build-
|
142391
|
-
* Build date: Tue Apr
|
142416
|
+
* Version: 24.2.7-build-25105-1935
|
142417
|
+
* Build date: Tue Apr 15 2025
|
142392
142418
|
*
|
142393
142419
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142394
142420
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142483,8 +142509,8 @@ const Callbacks = function(options) {
|
|
142483
142509
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/callbacks.js
|
142484
142510
|
/**
|
142485
142511
|
* DevExtreme (esm/core/utils/callbacks.js)
|
142486
|
-
* Version: 24.2.7-build-
|
142487
|
-
* Build date: Tue Apr
|
142512
|
+
* Version: 24.2.7-build-25105-1935
|
142513
|
+
* Build date: Tue Apr 15 2025
|
142488
142514
|
*
|
142489
142515
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142490
142516
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142495,8 +142521,8 @@ const Callbacks = function(options) {
|
|
142495
142521
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_deferred.js
|
142496
142522
|
/**
|
142497
142523
|
* DevExtreme (esm/__internal/core/utils/m_deferred.js)
|
142498
|
-
* Version: 24.2.7-build-
|
142499
|
-
* Build date: Tue Apr
|
142524
|
+
* Version: 24.2.7-build-25105-1935
|
142525
|
+
* Build date: Tue Apr 15 2025
|
142500
142526
|
*
|
142501
142527
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142502
142528
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142661,8 +142687,8 @@ function when() {
|
|
142661
142687
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/deferred.js
|
142662
142688
|
/**
|
142663
142689
|
* DevExtreme (esm/core/utils/deferred.js)
|
142664
|
-
* Version: 24.2.7-build-
|
142665
|
-
* Build date: Tue Apr
|
142690
|
+
* Version: 24.2.7-build-25105-1935
|
142691
|
+
* Build date: Tue Apr 15 2025
|
142666
142692
|
*
|
142667
142693
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142668
142694
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142672,8 +142698,8 @@ function when() {
|
|
142672
142698
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_common.js
|
142673
142699
|
/**
|
142674
142700
|
* DevExtreme (esm/__internal/core/utils/m_common.js)
|
142675
|
-
* Version: 24.2.7-build-
|
142676
|
-
* Build date: Tue Apr
|
142701
|
+
* Version: 24.2.7-build-25105-1935
|
142702
|
+
* Build date: Tue Apr 15 2025
|
142677
142703
|
*
|
142678
142704
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142679
142705
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142968,8 +142994,8 @@ const equalByValue = function(value1, value2) {
|
|
142968
142994
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/common.js
|
142969
142995
|
/**
|
142970
142996
|
* DevExtreme (esm/core/utils/common.js)
|
142971
|
-
* Version: 24.2.7-build-
|
142972
|
-
* Build date: Tue Apr
|
142997
|
+
* Version: 24.2.7-build-25105-1935
|
142998
|
+
* Build date: Tue Apr 15 2025
|
142973
142999
|
*
|
142974
143000
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142975
143001
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142979,8 +143005,8 @@ const equalByValue = function(value1, value2) {
|
|
142979
143005
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_math.js
|
142980
143006
|
/**
|
142981
143007
|
* DevExtreme (esm/__internal/core/utils/m_math.js)
|
142982
|
-
* Version: 24.2.7-build-
|
142983
|
-
* Build date: Tue Apr
|
143008
|
+
* Version: 24.2.7-build-25105-1935
|
143009
|
+
* Build date: Tue Apr 15 2025
|
142984
143010
|
*
|
142985
143011
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142986
143012
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143149,8 +143175,8 @@ function roundFloatPart(value) {
|
|
143149
143175
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/math.js
|
143150
143176
|
/**
|
143151
143177
|
* DevExtreme (esm/core/utils/math.js)
|
143152
|
-
* Version: 24.2.7-build-
|
143153
|
-
* Build date: Tue Apr
|
143178
|
+
* Version: 24.2.7-build-25105-1935
|
143179
|
+
* Build date: Tue Apr 15 2025
|
143154
143180
|
*
|
143155
143181
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143156
143182
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143160,8 +143186,8 @@ function roundFloatPart(value) {
|
|
143160
143186
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/utils.js
|
143161
143187
|
/**
|
143162
143188
|
* DevExtreme (esm/common/core/localization/utils.js)
|
143163
|
-
* Version: 24.2.7-build-
|
143164
|
-
* Build date: Tue Apr
|
143189
|
+
* Version: 24.2.7-build-25105-1935
|
143190
|
+
* Build date: Tue Apr 15 2025
|
143165
143191
|
*
|
143166
143192
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143167
143193
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143188,8 +143214,8 @@ function toFixed(value, precision) {
|
|
143188
143214
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/number.js
|
143189
143215
|
/**
|
143190
143216
|
* DevExtreme (esm/common/core/localization/ldml/number.js)
|
143191
|
-
* Version: 24.2.7-build-
|
143192
|
-
* Build date: Tue Apr
|
143217
|
+
* Version: 24.2.7-build-25105-1935
|
143218
|
+
* Build date: Tue Apr 15 2025
|
143193
143219
|
*
|
143194
143220
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143195
143221
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143430,8 +143456,8 @@ function getFormat(formatter) {
|
|
143430
143456
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/currency.js
|
143431
143457
|
/**
|
143432
143458
|
* DevExtreme (esm/common/core/localization/currency.js)
|
143433
|
-
* Version: 24.2.7-build-
|
143434
|
-
* Build date: Tue Apr
|
143459
|
+
* Version: 24.2.7-build-25105-1935
|
143460
|
+
* Build date: Tue Apr 15 2025
|
143435
143461
|
*
|
143436
143462
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143437
143463
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143463,8 +143489,8 @@ function getFormat(formatter) {
|
|
143463
143489
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/parent_locales.js
|
143464
143490
|
/**
|
143465
143491
|
* DevExtreme (esm/common/core/localization/cldr-data/parent_locales.js)
|
143466
|
-
* Version: 24.2.7-build-
|
143467
|
-
* Build date: Tue Apr
|
143492
|
+
* Version: 24.2.7-build-25105-1935
|
143493
|
+
* Build date: Tue Apr 15 2025
|
143468
143494
|
*
|
143469
143495
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143470
143496
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143649,8 +143675,8 @@ function getFormat(formatter) {
|
|
143649
143675
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/parentLocale.js
|
143650
143676
|
/**
|
143651
143677
|
* DevExtreme (esm/common/core/localization/parentLocale.js)
|
143652
|
-
* Version: 24.2.7-build-
|
143653
|
-
* Build date: Tue Apr
|
143678
|
+
* Version: 24.2.7-build-25105-1935
|
143679
|
+
* Build date: Tue Apr 15 2025
|
143654
143680
|
*
|
143655
143681
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143656
143682
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143667,8 +143693,8 @@ const PARENT_LOCALE_SEPARATOR = "-";
|
|
143667
143693
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/core.js
|
143668
143694
|
/**
|
143669
143695
|
* DevExtreme (esm/common/core/localization/core.js)
|
143670
|
-
* Version: 24.2.7-build-
|
143671
|
-
* Build date: Tue Apr
|
143696
|
+
* Version: 24.2.7-build-25105-1935
|
143697
|
+
* Build date: Tue Apr 15 2025
|
143672
143698
|
*
|
143673
143699
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143674
143700
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143709,8 +143735,8 @@ const DEFAULT_LOCALE = "en";
|
|
143709
143735
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/open_xml_currency_format.js
|
143710
143736
|
/**
|
143711
143737
|
* DevExtreme (esm/common/core/localization/open_xml_currency_format.js)
|
143712
|
-
* Version: 24.2.7-build-
|
143713
|
-
* Build date: Tue Apr
|
143738
|
+
* Version: 24.2.7-build-25105-1935
|
143739
|
+
* Build date: Tue Apr 15 2025
|
143714
143740
|
*
|
143715
143741
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143716
143742
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143752,8 +143778,8 @@ const DEFAULT_LOCALE = "en";
|
|
143752
143778
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/accounting_formats.js
|
143753
143779
|
/**
|
143754
143780
|
* DevExtreme (esm/common/core/localization/cldr-data/accounting_formats.js)
|
143755
|
-
* Version: 24.2.7-build-
|
143756
|
-
* Build date: Tue Apr
|
143781
|
+
* Version: 24.2.7-build-25105-1935
|
143782
|
+
* Build date: Tue Apr 15 2025
|
143757
143783
|
*
|
143758
143784
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143759
143785
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144339,8 +144365,8 @@ const DEFAULT_LOCALE = "en";
|
|
144339
144365
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/number.js
|
144340
144366
|
/**
|
144341
144367
|
* DevExtreme (esm/common/core/localization/intl/number.js)
|
144342
|
-
* Version: 24.2.7-build-
|
144343
|
-
* Build date: Tue Apr
|
144368
|
+
* Version: 24.2.7-build-25105-1935
|
144369
|
+
* Build date: Tue Apr 15 2025
|
144344
144370
|
*
|
144345
144371
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144346
144372
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144460,8 +144486,8 @@ const getCurrencyFormatter = currency => new Intl.NumberFormat(core.locale(), {
|
|
144460
144486
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/number.js
|
144461
144487
|
/**
|
144462
144488
|
* DevExtreme (esm/common/core/localization/number.js)
|
144463
|
-
* Version: 24.2.7-build-
|
144464
|
-
* Build date: Tue Apr
|
144489
|
+
* Version: 24.2.7-build-25105-1935
|
144490
|
+
* Build date: Tue Apr 15 2025
|
144465
144491
|
*
|
144466
144492
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144467
144493
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144766,8 +144792,8 @@ if (hasIntl) {
|
|
144766
144792
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.format.js
|
144767
144793
|
/**
|
144768
144794
|
* DevExtreme (esm/common/core/localization/ldml/date.format.js)
|
144769
|
-
* Version: 24.2.7-build-
|
144770
|
-
* Build date: Tue Apr
|
144795
|
+
* Version: 24.2.7-build-25105-1935
|
144796
|
+
* Build date: Tue Apr 15 2025
|
144771
144797
|
*
|
144772
144798
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144773
144799
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144964,8 +144990,8 @@ const date_format_getFormat = function(formatter) {
|
|
144964
144990
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.parser.js
|
144965
144991
|
/**
|
144966
144992
|
* DevExtreme (esm/common/core/localization/ldml/date.parser.js)
|
144967
|
-
* Version: 24.2.7-build-
|
144968
|
-
* Build date: Tue Apr
|
144993
|
+
* Version: 24.2.7-build-25105-1935
|
144994
|
+
* Build date: Tue Apr 15 2025
|
144969
144995
|
*
|
144970
144996
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144971
144997
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145283,8 +145309,8 @@ const getParser = function(format, dateParts) {
|
|
145283
145309
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/default_date_names.js
|
145284
145310
|
/**
|
145285
145311
|
* DevExtreme (esm/common/core/localization/default_date_names.js)
|
145286
|
-
* Version: 24.2.7-build-
|
145287
|
-
* Build date: Tue Apr
|
145312
|
+
* Version: 24.2.7-build-25105-1935
|
145313
|
+
* Build date: Tue Apr 15 2025
|
145288
145314
|
*
|
145289
145315
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145290
145316
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145320,8 +145346,8 @@ const cutCaptions = (captions, format) => {
|
|
145320
145346
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/first_day_of_week_data.js
|
145321
145347
|
/**
|
145322
145348
|
* DevExtreme (esm/common/core/localization/cldr-data/first_day_of_week_data.js)
|
145323
|
-
* Version: 24.2.7-build-
|
145324
|
-
* Build date: Tue Apr
|
145349
|
+
* Version: 24.2.7-build-25105-1935
|
145350
|
+
* Build date: Tue Apr 15 2025
|
145325
145351
|
*
|
145326
145352
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145327
145353
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145520,8 +145546,8 @@ const cutCaptions = (captions, format) => {
|
|
145520
145546
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/date.js
|
145521
145547
|
/**
|
145522
145548
|
* DevExtreme (esm/common/core/localization/intl/date.js)
|
145523
|
-
* Version: 24.2.7-build-
|
145524
|
-
* Build date: Tue Apr
|
145549
|
+
* Version: 24.2.7-build-25105-1935
|
145550
|
+
* Build date: Tue Apr 15 2025
|
145525
145551
|
*
|
145526
145552
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145527
145553
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145838,8 +145864,8 @@ const monthNameStrategies = {
|
|
145838
145864
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/date.js
|
145839
145865
|
/**
|
145840
145866
|
* DevExtreme (esm/common/core/localization/date.js)
|
145841
|
-
* Version: 24.2.7-build-
|
145842
|
-
* Build date: Tue Apr
|
145867
|
+
* Version: 24.2.7-build-25105-1935
|
145868
|
+
* Build date: Tue Apr 15 2025
|
145843
145869
|
*
|
145844
145870
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145845
145871
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -149522,11 +149548,11 @@ class RichEditPublic {
|
|
149522
149548
|
command.execute(true, type);
|
149523
149549
|
}
|
149524
149550
|
get readOnly() {
|
149525
|
-
return this._native.core.readOnly
|
149551
|
+
return this._native.core.readOnly === ReadOnlyMode.Persistent;
|
149526
149552
|
}
|
149527
149553
|
set readOnly(value) {
|
149528
149554
|
if (this.readOnly != value) {
|
149529
|
-
this._native.core.
|
149555
|
+
this._native.core.setPersistentReadOnly(value);
|
149530
149556
|
this._native.core.barHolder.updateItemsState();
|
149531
149557
|
this._native.core.horizontalRulerControl.update();
|
149532
149558
|
this._native.core.beginUpdate();
|