devexpress-richedit 24.2.4-build-25009-0102 → 24.2.5-build-25030-0102
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/bin/gulpfile.js +1 -1
- package/bin/index-custom.js +1 -1
- package/bin/localization-builder.js +1 -1
- package/bin/nspell-index.js +1 -1
- package/bin/nspell.webpack.config.js +1 -1
- package/bin/webpack-externals.js +1 -1
- package/bin/webpack.config.js +1 -1
- package/dist/dx.richedit.d.ts +1 -1
- package/dist/dx.richedit.js +173 -173
- package/dist/dx.richedit.min.js +2 -2
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/lib/client/client-rich-edit.js +2 -2
- package/lib/client/model-api/collections/table/table-collection.js +1 -3
- package/lib/common/commands/tables/auto-fit-commands.js +1 -3
- package/lib/common/commands/tables/insert-table-core-command.js +1 -3
- package/lib/common/event-manager.js +21 -12
- package/lib/common/formats/html/export/html-document-exporter.js +5 -3
- package/lib/common/input-controller.js +5 -3
- package/lib/common/layout/document-layout.d.ts +1 -0
- package/lib/common/layout/document-layout.js +3 -0
- package/lib/common/layout/layout-position.d.ts +1 -3
- package/lib/common/layout/layout-position.js +6 -3
- package/lib/common/rich-utils/layout/rich-layout-utils.d.ts +0 -5
- package/lib/common/rich-utils/layout/rich-layout-utils.js +0 -9
- package/package.json +3 -3
package/dist/dx.richedit.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/**
|
2
2
|
* DevExpress WebRichEdit (dx.richedit.js)
|
3
|
-
* Version: 24.2.
|
3
|
+
* Version: 24.2.5
|
4
4
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
5
5
|
* License: https://www.devexpress.com/Support/EULAs
|
6
6
|
*/
|
@@ -31611,12 +31611,15 @@ class LayoutPosition extends LayoutPositionBase {
|
|
31611
31611
|
super();
|
31612
31612
|
this.detailsLevel = detailsLevel;
|
31613
31613
|
}
|
31614
|
-
static ensure(formatterController,
|
31614
|
+
static ensure(formatterController, subDocument, logPosition, detailsLevel = DocumentLayoutDetailsLevel.Row) {
|
31615
31615
|
const layout = formatterController.layout;
|
31616
|
+
const endRowConflictFlags = new LayoutPositionCreatorConflictFlags().setDefault(false);
|
31617
|
+
const middleRowConflictFlags = new LayoutPositionCreatorConflictFlags().setDefault(false);
|
31616
31618
|
if (subDocument.isMain())
|
31617
31619
|
return LayoutPositionMainSubDocumentCreator.ensureLayoutPosition(formatterController, subDocument, logPosition, detailsLevel, endRowConflictFlags, middleRowConflictFlags);
|
31618
31620
|
while (true) {
|
31619
|
-
const
|
31621
|
+
const pageIndex = layout.getPageBySubDocumentId(subDocument.id).index;
|
31622
|
+
const lp = new LayoutPositionOtherSubDocumentCreator(layout, subDocument, logPosition, pageIndex, detailsLevel)
|
31620
31623
|
.create(endRowConflictFlags, middleRowConflictFlags);
|
31621
31624
|
if (lp)
|
31622
31625
|
return lp;
|
@@ -68921,6 +68924,7 @@ class HtmlExporter {
|
|
68921
68924
|
|
68922
68925
|
|
68923
68926
|
|
68927
|
+
|
68924
68928
|
class HtmlDocumentExporter {
|
68925
68929
|
get modelManipulator() { return this.exportModelOptions.modelManager.modelManipulator; }
|
68926
68930
|
constructor(exportModelOptions, options) {
|
@@ -68933,9 +68937,10 @@ class HtmlDocumentExporter {
|
|
68933
68937
|
});
|
68934
68938
|
}
|
68935
68939
|
exportToBase64(callback) {
|
68936
|
-
this.
|
68937
|
-
|
68938
|
-
|
68940
|
+
this.exportToBlob(blob => utils_base64.Base64Utils.fromBlobAsDataUrl(blob, base64 => {
|
68941
|
+
const splitted = base64.split(',');
|
68942
|
+
callback(splitted.length === 2 ? splitted[1] : '');
|
68943
|
+
}));
|
68939
68944
|
}
|
68940
68945
|
exportAsString() {
|
68941
68946
|
const model = this.modelManipulator.model;
|
@@ -70670,6 +70675,9 @@ class DocumentLayout {
|
|
70670
70675
|
isPageValid(pageIndex) {
|
70671
70676
|
return pageIndex < this.validPageCount && this.pages[pageIndex].isValid;
|
70672
70677
|
}
|
70678
|
+
getPageBySubDocumentId(subDocumentId) {
|
70679
|
+
return this.pages.find((page) => !!page.mainSubDocumentPageAreas[subDocumentId] || !!page.otherPageAreas[subDocumentId]);
|
70680
|
+
}
|
70673
70681
|
}
|
70674
70682
|
|
70675
70683
|
;// CONCATENATED MODULE: ./src/client/model-api/table/enums.ts
|
@@ -71626,8 +71634,6 @@ class TableApi extends TableElementBase {
|
|
71626
71634
|
|
71627
71635
|
|
71628
71636
|
|
71629
|
-
|
71630
|
-
|
71631
71637
|
class TableCollection extends TableBaseCollection {
|
71632
71638
|
constructor(processor, subDocument) {
|
71633
71639
|
super(processor, subDocument);
|
@@ -71642,7 +71648,7 @@ class TableCollection extends TableBaseCollection {
|
|
71642
71648
|
rowCount = ApiParametersChecker.check(rowCount, 3, false, [
|
71643
71649
|
ApiParametersChecker.numberDescriptor("rowCount", (n) => n, 1)
|
71644
71650
|
]);
|
71645
|
-
const lp = LayoutPosition.ensure(this._processor.layoutFormatterManager, this.
|
71651
|
+
const lp = LayoutPosition.ensure(this._processor.layoutFormatterManager, this._subDocument, position);
|
71646
71652
|
const currentTable = Table.getTableByPosition(this._subDocument.tables, position, true);
|
71647
71653
|
const availableWidth = currentTable ? lp.row.tableCellInfo.avaliableContentWidth :
|
71648
71654
|
LayoutColumn.findSectionColumnWithMinimumWidth(lp.pageArea.columns);
|
@@ -107475,16 +107481,7 @@ class LogObjToStrCanvas {
|
|
107475
107481
|
|
107476
107482
|
|
107477
107483
|
|
107478
|
-
|
107479
|
-
|
107480
107484
|
class RichLayoutUtils {
|
107481
|
-
static getAllowedSizeForImage(subDocument, layoutFormatterManager, selection, logPosition) {
|
107482
|
-
const layoutPosition = LayoutPosition.ensure(layoutFormatterManager, selection, subDocument, logPosition, DocumentLayoutDetailsLevel.Row, new LayoutPositionCreatorConflictFlags().setDefault(false), new LayoutPositionCreatorConflictFlags().setDefault(true));
|
107483
|
-
const allowedSize = layoutPosition.column.createSize().applyConverter(unit_converter/* UnitConverter */.u.pixelsToTwips);
|
107484
|
-
if (layoutPosition.row.tableCellInfo)
|
107485
|
-
allowedSize.width = Math.min(unit_converter/* UnitConverter */.u.pixelsToTwips(layoutPosition.row.tableCellInfo.avaliableContentWidth), allowedSize.width);
|
107486
|
-
return allowedSize;
|
107487
|
-
}
|
107488
107485
|
static modifyTextUnderCursor(control, text) {
|
107489
107486
|
const subDocument = control.selection.activeSubDocument;
|
107490
107487
|
let position = control.selection.lastSelectedInterval.start;
|
@@ -107530,6 +107527,7 @@ class RichLayoutUtils {
|
|
107530
107527
|
|
107531
107528
|
|
107532
107529
|
|
107530
|
+
|
107533
107531
|
|
107534
107532
|
|
107535
107533
|
var MouseButton;
|
@@ -107654,10 +107652,12 @@ class EventManager {
|
|
107654
107652
|
}
|
107655
107653
|
modifyLastText(text, length) {
|
107656
107654
|
if (length === 0) {
|
107657
|
-
|
107658
|
-
|
107659
|
-
|
107660
|
-
|
107655
|
+
if (!utils_string.StringUtils.isNullOrEmpty(text)) {
|
107656
|
+
this.control.beginUpdate();
|
107657
|
+
this.control.commandManager.getCommand(RichEditClientCommand.InsertText).execute(this.control.commandManager.isPublicApiCall, new CommandSimpleOptions(this.control, text));
|
107658
|
+
this.control.endUpdate();
|
107659
|
+
}
|
107660
|
+
return true;
|
107661
107661
|
}
|
107662
107662
|
let endInterval = this.control.selection.lastSelectedInterval.start;
|
107663
107663
|
let startInterval = endInterval - length;
|
@@ -107665,14 +107665,19 @@ class EventManager {
|
|
107665
107665
|
const insertTextHistoryItem = this.control.modelManager.modelManipulator.text.getLastModifiableHistoryItem((hi) => hi instanceof InsertTextHistoryItem);
|
107666
107666
|
if (!insertTextHistoryItem)
|
107667
107667
|
return false;
|
107668
|
-
|
107669
|
-
|
107670
|
-
|
107671
|
-
|
107672
|
-
|
107673
|
-
|
107674
|
-
|
107675
|
-
|
107668
|
+
if (!utils_string.StringUtils.isNullOrEmpty(text)) {
|
107669
|
+
const setSelectionHistoryItem = this.control.modelManager.modelManipulator.text.getLastModifiableHistoryItem((hi) => hi instanceof SelectionHistoryItem);
|
107670
|
+
this.control.modelManager.modelManipulator.range.removeIntervalWithoutHistory(insertTextHistoryItem.params.subDocPos.subDocument, intervalForModify, false);
|
107671
|
+
this.control.modelManager.modelManipulator.text.insertTextInner(new InsertTextManipulatorParams(new SubDocumentPosition(insertTextHistoryItem.params.subDocPos.subDocument, intervalForModify.start), insertTextHistoryItem.params.charPropsBundle, RunType.TextRun, text));
|
107672
|
+
setSelectionHistoryItem.newState.intervalsInfo.intervals[0].start = startInterval + text.length;
|
107673
|
+
insertTextHistoryItem.params.text = text;
|
107674
|
+
var newPositionSelection = setSelectionHistoryItem.newState.intervalsInfo.intervals[0].start;
|
107675
|
+
this.control.selection.changeState((newState) => newState.setPosition(newPositionSelection));
|
107676
|
+
this.control.commandManager.lastTextInsertDate = new Date(0);
|
107677
|
+
}
|
107678
|
+
else
|
107679
|
+
this.control.modelManager.modelManipulator.range.removeIntervalInner(insertTextHistoryItem.params.subDocPos.subDocument, intervalForModify, false);
|
107680
|
+
return true;
|
107676
107681
|
}
|
107677
107682
|
modifyLastInsertedSymbol(symbol) {
|
107678
107683
|
if (symbol.length !== 1)
|
@@ -107733,6 +107738,7 @@ class EventManager {
|
|
107733
107738
|
createInputTypeHandlers() {
|
107734
107739
|
const result = {};
|
107735
107740
|
result["insertParagraph"] = RichEditClientCommand.InsertParagraph;
|
107741
|
+
result["deleteContentBackward"] = RichEditClientCommand.ToggleBackspaceKey;
|
107736
107742
|
return result;
|
107737
107743
|
}
|
107738
107744
|
}
|
@@ -110754,7 +110760,7 @@ class DivInputEditor extends InputEditorBase {
|
|
110754
110760
|
this.selectEditableDocumentContent();
|
110755
110761
|
}
|
110756
110762
|
super.onKeyDown(evt);
|
110757
|
-
this.canSkipInputEvent =
|
110763
|
+
this.canSkipInputEvent = key/* KeyUtils */.LN.getEventKeyCode(evt) != EMPTY_KEYCODE;
|
110758
110764
|
}
|
110759
110765
|
onKeyUp(evt) {
|
110760
110766
|
super.onKeyUp(evt);
|
@@ -111124,7 +111130,9 @@ class IFrameInputEditor extends InputEditorBase {
|
|
111124
111130
|
}
|
111125
111131
|
onCompositionUpdate(_evt) {
|
111126
111132
|
const text = this.getEditableDocumentText();
|
111127
|
-
if (this.IMEState
|
111133
|
+
if (this.IMEState === IMEState.None)
|
111134
|
+
return;
|
111135
|
+
if (text.length && this.previousText != text) {
|
111128
111136
|
this.onTextReplace(text, text);
|
111129
111137
|
this.updateInputIME();
|
111130
111138
|
}
|
@@ -111132,7 +111140,7 @@ class IFrameInputEditor extends InputEditorBase {
|
|
111132
111140
|
}
|
111133
111141
|
onCompositionEnd(_evt) {
|
111134
111142
|
const text = this.getEditableDocumentText();
|
111135
|
-
if (
|
111143
|
+
if (this.previousText != text)
|
111136
111144
|
this.onTextReplace(text, text);
|
111137
111145
|
else if (!browser.Browser.Edge)
|
111138
111146
|
this.clearInputElement();
|
@@ -133212,8 +133220,6 @@ class ApplyTableStyleCommand extends TableCommandBase {
|
|
133212
133220
|
|
133213
133221
|
|
133214
133222
|
|
133215
|
-
|
133216
|
-
|
133217
133223
|
class AutoFitCommandBase extends TableCommandBase {
|
133218
133224
|
getState() {
|
133219
133225
|
if (this.isEnabled()) {
|
@@ -133263,7 +133269,7 @@ class FixedColumnWidthCommand extends AutoFitCommandBase {
|
|
133263
133269
|
const table = state.value;
|
133264
133270
|
const history = this.history;
|
133265
133271
|
const subDocument = parameter.subDocument;
|
133266
|
-
const lp = LayoutPosition.ensure(this.control.layoutFormatterManager,
|
133272
|
+
const lp = LayoutPosition.ensure(this.control.layoutFormatterManager, subDocument, table.getStartPosition());
|
133267
133273
|
const grid = this.getGrid(table, lp);
|
133268
133274
|
history.beginTransaction();
|
133269
133275
|
history.addAndRedo(new TableLayoutTypeHistoryItem(this.modelManipulator, subDocument, table.index, TableLayoutType.Fixed, true));
|
@@ -134345,8 +134351,6 @@ class InsertTableColumnToTheRightCommand extends InsertTableColumnCommandBase {
|
|
134345
134351
|
|
134346
134352
|
|
134347
134353
|
|
134348
|
-
|
134349
|
-
|
134350
134354
|
class InsertTableCoreCommand extends CommandBase {
|
134351
134355
|
getState() {
|
134352
134356
|
return new SimpleCommandState(this.isEnabled());
|
@@ -134358,7 +134362,7 @@ class InsertTableCoreCommand extends CommandBase {
|
|
134358
134362
|
const parameter = options.param;
|
134359
134363
|
const subDocument = this.selection.activeSubDocument;
|
134360
134364
|
const position = this.selection.intervals[0].start;
|
134361
|
-
const lp = LayoutPosition.ensure(this.control.layoutFormatterManager,
|
134365
|
+
const lp = LayoutPosition.ensure(this.control.layoutFormatterManager, subDocument, position);
|
134362
134366
|
let currentTable = Table.getTableByPosition(subDocument.tables, position, true);
|
134363
134367
|
let availableWidth = currentTable ? lp.row.tableCellInfo.avaliableContentWidth :
|
134364
134368
|
LayoutColumn.findSectionColumnWithMinimumWidth(lp.pageArea.columns);
|
@@ -140762,8 +140766,8 @@ class DialogManager {
|
|
140762
140766
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_type.js
|
140763
140767
|
/**
|
140764
140768
|
* DevExtreme (esm/__internal/core/utils/m_type.js)
|
140765
|
-
* Version: 24.2.
|
140766
|
-
* Build date:
|
140769
|
+
* Version: 24.2.5-build-25028-1935
|
140770
|
+
* Build date: Tue Jan 28 2025
|
140767
140771
|
*
|
140768
140772
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140769
140773
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140865,8 +140869,8 @@ const isEvent = function(object) {
|
|
140865
140869
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/type.js
|
140866
140870
|
/**
|
140867
140871
|
* DevExtreme (esm/core/utils/type.js)
|
140868
|
-
* Version: 24.2.
|
140869
|
-
* Build date:
|
140872
|
+
* Version: 24.2.5-build-25028-1935
|
140873
|
+
* Build date: Tue Jan 28 2025
|
140870
140874
|
*
|
140871
140875
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140872
140876
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140876,8 +140880,8 @@ const isEvent = function(object) {
|
|
140876
140880
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_extend.js
|
140877
140881
|
/**
|
140878
140882
|
* DevExtreme (esm/__internal/core/utils/m_extend.js)
|
140879
|
-
* Version: 24.2.
|
140880
|
-
* Build date:
|
140883
|
+
* Version: 24.2.5-build-25028-1935
|
140884
|
+
* Build date: Tue Jan 28 2025
|
140881
140885
|
*
|
140882
140886
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140883
140887
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140935,8 +140939,8 @@ const extend = function(target) {
|
|
140935
140939
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/extend.js
|
140936
140940
|
/**
|
140937
140941
|
* DevExtreme (esm/core/utils/extend.js)
|
140938
|
-
* Version: 24.2.
|
140939
|
-
* Build date:
|
140942
|
+
* Version: 24.2.5-build-25028-1935
|
140943
|
+
* Build date: Tue Jan 28 2025
|
140940
140944
|
*
|
140941
140945
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140942
140946
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140946,8 +140950,8 @@ const extend = function(target) {
|
|
140946
140950
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_string.js
|
140947
140951
|
/**
|
140948
140952
|
* DevExtreme (esm/__internal/core/utils/m_string.js)
|
140949
|
-
* Version: 24.2.
|
140950
|
-
* Build date:
|
140953
|
+
* Version: 24.2.5-build-25028-1935
|
140954
|
+
* Build date: Tue Jan 28 2025
|
140951
140955
|
*
|
140952
140956
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140953
140957
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141022,8 +141026,8 @@ const isEmpty = function() {
|
|
141022
141026
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/string.js
|
141023
141027
|
/**
|
141024
141028
|
* DevExtreme (esm/core/utils/string.js)
|
141025
|
-
* Version: 24.2.
|
141026
|
-
* Build date:
|
141029
|
+
* Version: 24.2.5-build-25028-1935
|
141030
|
+
* Build date: Tue Jan 28 2025
|
141027
141031
|
*
|
141028
141032
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141029
141033
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141033,20 +141037,20 @@ const isEmpty = function() {
|
|
141033
141037
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/version.js
|
141034
141038
|
/**
|
141035
141039
|
* DevExtreme (esm/core/version.js)
|
141036
|
-
* Version: 24.2.
|
141037
|
-
* Build date:
|
141040
|
+
* Version: 24.2.5-build-25028-1935
|
141041
|
+
* Build date: Tue Jan 28 2025
|
141038
141042
|
*
|
141039
141043
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141040
141044
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
141041
141045
|
*/
|
141042
|
-
const version = "24.2.
|
141043
|
-
const fullVersion = "24.2.
|
141046
|
+
const version = "24.2.4";
|
141047
|
+
const fullVersion = "24.2.4.25028-1935";
|
141044
141048
|
|
141045
141049
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_console.js
|
141046
141050
|
/**
|
141047
141051
|
* DevExtreme (esm/__internal/core/utils/m_console.js)
|
141048
|
-
* Version: 24.2.
|
141049
|
-
* Build date:
|
141052
|
+
* Version: 24.2.5-build-25028-1935
|
141053
|
+
* Build date: Tue Jan 28 2025
|
141050
141054
|
*
|
141051
141055
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141052
141056
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141086,8 +141090,8 @@ const debug = function() {
|
|
141086
141090
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_error.js
|
141087
141091
|
/**
|
141088
141092
|
* DevExtreme (esm/__internal/core/utils/m_error.js)
|
141089
|
-
* Version: 24.2.
|
141090
|
-
* Build date:
|
141093
|
+
* Version: 24.2.5-build-25028-1935
|
141094
|
+
* Build date: Tue Jan 28 2025
|
141091
141095
|
*
|
141092
141096
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141093
141097
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141158,8 +141162,8 @@ function error(baseErrors, errors) {
|
|
141158
141162
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/error.js
|
141159
141163
|
/**
|
141160
141164
|
* DevExtreme (esm/core/utils/error.js)
|
141161
|
-
* Version: 24.2.
|
141162
|
-
* Build date:
|
141165
|
+
* Version: 24.2.5-build-25028-1935
|
141166
|
+
* Build date: Tue Jan 28 2025
|
141163
141167
|
*
|
141164
141168
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141165
141169
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141170,8 +141174,8 @@ function error(baseErrors, errors) {
|
|
141170
141174
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_errors.js
|
141171
141175
|
/**
|
141172
141176
|
* DevExtreme (esm/__internal/core/m_errors.js)
|
141173
|
-
* Version: 24.2.
|
141174
|
-
* Build date:
|
141177
|
+
* Version: 24.2.5-build-25028-1935
|
141178
|
+
* Build date: Tue Jan 28 2025
|
141175
141179
|
*
|
141176
141180
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141177
141181
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141237,8 +141241,8 @@ function error(baseErrors, errors) {
|
|
141237
141241
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/errors.js
|
141238
141242
|
/**
|
141239
141243
|
* DevExtreme (esm/core/errors.js)
|
141240
|
-
* Version: 24.2.
|
141241
|
-
* Build date:
|
141244
|
+
* Version: 24.2.5-build-25028-1935
|
141245
|
+
* Build date: Tue Jan 28 2025
|
141242
141246
|
*
|
141243
141247
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141244
141248
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141249,8 +141253,8 @@ function error(baseErrors, errors) {
|
|
141249
141253
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_class.js
|
141250
141254
|
/**
|
141251
141255
|
* DevExtreme (esm/__internal/core/m_class.js)
|
141252
|
-
* Version: 24.2.
|
141253
|
-
* Build date:
|
141256
|
+
* Version: 24.2.5-build-25028-1935
|
141257
|
+
* Build date: Tue Jan 28 2025
|
141254
141258
|
*
|
141255
141259
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141256
141260
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141383,8 +141387,8 @@ classImpl.abstract = m_class_abstract;
|
|
141383
141387
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/class.js
|
141384
141388
|
/**
|
141385
141389
|
* DevExtreme (esm/core/class.js)
|
141386
|
-
* Version: 24.2.
|
141387
|
-
* Build date:
|
141390
|
+
* Version: 24.2.5-build-25028-1935
|
141391
|
+
* Build date: Tue Jan 28 2025
|
141388
141392
|
*
|
141389
141393
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141390
141394
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141395,8 +141399,8 @@ classImpl.abstract = m_class_abstract;
|
|
141395
141399
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_iterator.js
|
141396
141400
|
/**
|
141397
141401
|
* DevExtreme (esm/__internal/core/utils/m_iterator.js)
|
141398
|
-
* Version: 24.2.
|
141399
|
-
* Build date:
|
141402
|
+
* Version: 24.2.5-build-25028-1935
|
141403
|
+
* Build date: Tue Jan 28 2025
|
141400
141404
|
*
|
141401
141405
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141402
141406
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141445,8 +141449,8 @@ const reverseEach = (array, callback) => {
|
|
141445
141449
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_dependency_injector.js
|
141446
141450
|
/**
|
141447
141451
|
* DevExtreme (esm/__internal/core/utils/m_dependency_injector.js)
|
141448
|
-
* Version: 24.2.
|
141449
|
-
* Build date:
|
141452
|
+
* Version: 24.2.5-build-25028-1935
|
141453
|
+
* Build date: Tue Jan 28 2025
|
141450
141454
|
*
|
141451
141455
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141452
141456
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141495,8 +141499,8 @@ function injector(object) {
|
|
141495
141499
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/dependency_injector.js
|
141496
141500
|
/**
|
141497
141501
|
* DevExtreme (esm/core/utils/dependency_injector.js)
|
141498
|
-
* Version: 24.2.
|
141499
|
-
* Build date:
|
141502
|
+
* Version: 24.2.5-build-25028-1935
|
141503
|
+
* Build date: Tue Jan 28 2025
|
141500
141504
|
*
|
141501
141505
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141502
141506
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141507,8 +141511,8 @@ function injector(object) {
|
|
141507
141511
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.formatter.js
|
141508
141512
|
/**
|
141509
141513
|
* DevExtreme (esm/common/core/localization/ldml/date.formatter.js)
|
141510
|
-
* Version: 24.2.
|
141511
|
-
* Build date:
|
141514
|
+
* Version: 24.2.5-build-25028-1935
|
141515
|
+
* Build date: Tue Jan 28 2025
|
141512
141516
|
*
|
141513
141517
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141514
141518
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141649,24 +141653,20 @@ const getFormatter = function(format, dateParts) {
|
|
141649
141653
|
|
141650
141654
|
;// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/extends.js
|
141651
141655
|
function _extends() {
|
141652
|
-
_extends = Object.assign ? Object.assign.bind() : function (
|
141653
|
-
for (var
|
141654
|
-
var
|
141655
|
-
for (var
|
141656
|
-
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
141657
|
-
target[key] = source[key];
|
141658
|
-
}
|
141659
|
-
}
|
141656
|
+
return _extends = Object.assign ? Object.assign.bind() : function (n) {
|
141657
|
+
for (var e = 1; e < arguments.length; e++) {
|
141658
|
+
var t = arguments[e];
|
141659
|
+
for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]);
|
141660
141660
|
}
|
141661
|
-
return
|
141662
|
-
};
|
141663
|
-
return _extends.apply(this, arguments);
|
141661
|
+
return n;
|
141662
|
+
}, _extends.apply(null, arguments);
|
141664
141663
|
}
|
141664
|
+
|
141665
141665
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_config.js
|
141666
141666
|
/**
|
141667
141667
|
* DevExtreme (esm/__internal/core/m_config.js)
|
141668
|
-
* Version: 24.2.
|
141669
|
-
* Build date:
|
141668
|
+
* Version: 24.2.5-build-25028-1935
|
141669
|
+
* Build date: Tue Jan 28 2025
|
141670
141670
|
*
|
141671
141671
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141672
141672
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141741,8 +141741,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
141741
141741
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/config.js
|
141742
141742
|
/**
|
141743
141743
|
* DevExtreme (esm/common/config.js)
|
141744
|
-
* Version: 24.2.
|
141745
|
-
* Build date:
|
141744
|
+
* Version: 24.2.5-build-25028-1935
|
141745
|
+
* Build date: Tue Jan 28 2025
|
141746
141746
|
*
|
141747
141747
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141748
141748
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141753,8 +141753,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
141753
141753
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_guid.js
|
141754
141754
|
/**
|
141755
141755
|
* DevExtreme (esm/__internal/core/m_guid.js)
|
141756
|
-
* Version: 24.2.
|
141757
|
-
* Build date:
|
141756
|
+
* Version: 24.2.5-build-25028-1935
|
141757
|
+
* Build date: Tue Jan 28 2025
|
141758
141758
|
*
|
141759
141759
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141760
141760
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141796,8 +141796,8 @@ const Guid = core_class.inherit({
|
|
141796
141796
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/guid.js
|
141797
141797
|
/**
|
141798
141798
|
* DevExtreme (esm/common/guid.js)
|
141799
|
-
* Version: 24.2.
|
141800
|
-
* Build date:
|
141799
|
+
* Version: 24.2.5-build-25028-1935
|
141800
|
+
* Build date: Tue Jan 28 2025
|
141801
141801
|
*
|
141802
141802
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141803
141803
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141808,8 +141808,8 @@ const Guid = core_class.inherit({
|
|
141808
141808
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/templates/m_template_engine_registry.js
|
141809
141809
|
/**
|
141810
141810
|
* DevExtreme (esm/__internal/core/templates/m_template_engine_registry.js)
|
141811
|
-
* Version: 24.2.
|
141812
|
-
* Build date:
|
141811
|
+
* Version: 24.2.5-build-25028-1935
|
141812
|
+
* Build date: Tue Jan 28 2025
|
141813
141813
|
*
|
141814
141814
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141815
141815
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141838,8 +141838,8 @@ function getCurrentTemplateEngine() {
|
|
141838
141838
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/templates/template_engine_registry.js
|
141839
141839
|
/**
|
141840
141840
|
* DevExtreme (esm/core/templates/template_engine_registry.js)
|
141841
|
-
* Version: 24.2.
|
141842
|
-
* Build date:
|
141841
|
+
* Version: 24.2.5-build-25028-1935
|
141842
|
+
* Build date: Tue Jan 28 2025
|
141843
141843
|
*
|
141844
141844
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141845
141845
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141849,8 +141849,8 @@ function getCurrentTemplateEngine() {
|
|
141849
141849
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_set_template_engine.js
|
141850
141850
|
/**
|
141851
141851
|
* DevExtreme (esm/__internal/core/m_set_template_engine.js)
|
141852
|
-
* Version: 24.2.
|
141853
|
-
* Build date:
|
141852
|
+
* Version: 24.2.5-build-25028-1935
|
141853
|
+
* Build date: Tue Jan 28 2025
|
141854
141854
|
*
|
141855
141855
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141856
141856
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141860,8 +141860,8 @@ function getCurrentTemplateEngine() {
|
|
141860
141860
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/set_template_engine.js
|
141861
141861
|
/**
|
141862
141862
|
* DevExtreme (esm/common/set_template_engine.js)
|
141863
|
-
* Version: 24.2.
|
141864
|
-
* Build date:
|
141863
|
+
* Version: 24.2.5-build-25028-1935
|
141864
|
+
* Build date: Tue Jan 28 2025
|
141865
141865
|
*
|
141866
141866
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141867
141867
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141872,8 +141872,8 @@ function getCurrentTemplateEngine() {
|
|
141872
141872
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common.js
|
141873
141873
|
/**
|
141874
141874
|
* DevExtreme (esm/common.js)
|
141875
|
-
* Version: 24.2.
|
141876
|
-
* Build date:
|
141875
|
+
* Version: 24.2.5-build-25028-1935
|
141876
|
+
* Build date: Tue Jan 28 2025
|
141877
141877
|
*
|
141878
141878
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141879
141879
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141886,8 +141886,8 @@ function getCurrentTemplateEngine() {
|
|
141886
141886
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/config.js
|
141887
141887
|
/**
|
141888
141888
|
* DevExtreme (esm/core/config.js)
|
141889
|
-
* Version: 24.2.
|
141890
|
-
* Build date:
|
141889
|
+
* Version: 24.2.5-build-25028-1935
|
141890
|
+
* Build date: Tue Jan 28 2025
|
141891
141891
|
*
|
141892
141892
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141893
141893
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141898,8 +141898,8 @@ function getCurrentTemplateEngine() {
|
|
141898
141898
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/guid.js
|
141899
141899
|
/**
|
141900
141900
|
* DevExtreme (esm/core/guid.js)
|
141901
|
-
* Version: 24.2.
|
141902
|
-
* Build date:
|
141901
|
+
* Version: 24.2.5-build-25028-1935
|
141902
|
+
* Build date: Tue Jan 28 2025
|
141903
141903
|
*
|
141904
141904
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141905
141905
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141910,8 +141910,8 @@ function getCurrentTemplateEngine() {
|
|
141910
141910
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/console.js
|
141911
141911
|
/**
|
141912
141912
|
* DevExtreme (esm/core/utils/console.js)
|
141913
|
-
* Version: 24.2.
|
141914
|
-
* Build date:
|
141913
|
+
* Version: 24.2.5-build-25028-1935
|
141914
|
+
* Build date: Tue Jan 28 2025
|
141915
141915
|
*
|
141916
141916
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141917
141917
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141921,8 +141921,8 @@ function getCurrentTemplateEngine() {
|
|
141921
141921
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_variable_wrapper.js
|
141922
141922
|
/**
|
141923
141923
|
* DevExtreme (esm/__internal/core/utils/m_variable_wrapper.js)
|
141924
|
-
* Version: 24.2.
|
141925
|
-
* Build date:
|
141924
|
+
* Version: 24.2.5-build-25028-1935
|
141925
|
+
* Build date: Tue Jan 28 2025
|
141926
141926
|
*
|
141927
141927
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141928
141928
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141951,8 +141951,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
141951
141951
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/variable_wrapper.js
|
141952
141952
|
/**
|
141953
141953
|
* DevExtreme (esm/core/utils/variable_wrapper.js)
|
141954
|
-
* Version: 24.2.
|
141955
|
-
* Build date:
|
141954
|
+
* Version: 24.2.5-build-25028-1935
|
141955
|
+
* Build date: Tue Jan 28 2025
|
141956
141956
|
*
|
141957
141957
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141958
141958
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141963,8 +141963,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
141963
141963
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_object.js
|
141964
141964
|
/**
|
141965
141965
|
* DevExtreme (esm/__internal/core/utils/m_object.js)
|
141966
|
-
* Version: 24.2.
|
141967
|
-
* Build date:
|
141966
|
+
* Version: 24.2.5-build-25028-1935
|
141967
|
+
* Build date: Tue Jan 28 2025
|
141968
141968
|
*
|
141969
141969
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141970
141970
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142064,8 +142064,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142064
142064
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/object.js
|
142065
142065
|
/**
|
142066
142066
|
* DevExtreme (esm/core/utils/object.js)
|
142067
|
-
* Version: 24.2.
|
142068
|
-
* Build date:
|
142067
|
+
* Version: 24.2.5-build-25028-1935
|
142068
|
+
* Build date: Tue Jan 28 2025
|
142069
142069
|
*
|
142070
142070
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142071
142071
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142075,8 +142075,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142075
142075
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_data.js
|
142076
142076
|
/**
|
142077
142077
|
* DevExtreme (esm/__internal/core/utils/m_data.js)
|
142078
|
-
* Version: 24.2.
|
142079
|
-
* Build date:
|
142078
|
+
* Version: 24.2.5-build-25028-1935
|
142079
|
+
* Build date: Tue Jan 28 2025
|
142080
142080
|
*
|
142081
142081
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142082
142082
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142272,8 +142272,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142272
142272
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/data.js
|
142273
142273
|
/**
|
142274
142274
|
* DevExtreme (esm/core/utils/data.js)
|
142275
|
-
* Version: 24.2.
|
142276
|
-
* Build date:
|
142275
|
+
* Version: 24.2.5-build-25028-1935
|
142276
|
+
* Build date: Tue Jan 28 2025
|
142277
142277
|
*
|
142278
142278
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142279
142279
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142283,8 +142283,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142283
142283
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_callbacks.js
|
142284
142284
|
/**
|
142285
142285
|
* DevExtreme (esm/__internal/core/utils/m_callbacks.js)
|
142286
|
-
* Version: 24.2.
|
142287
|
-
* Build date:
|
142286
|
+
* Version: 24.2.5-build-25028-1935
|
142287
|
+
* Build date: Tue Jan 28 2025
|
142288
142288
|
*
|
142289
142289
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142290
142290
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142379,8 +142379,8 @@ const Callbacks = function(options) {
|
|
142379
142379
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/callbacks.js
|
142380
142380
|
/**
|
142381
142381
|
* DevExtreme (esm/core/utils/callbacks.js)
|
142382
|
-
* Version: 24.2.
|
142383
|
-
* Build date:
|
142382
|
+
* Version: 24.2.5-build-25028-1935
|
142383
|
+
* Build date: Tue Jan 28 2025
|
142384
142384
|
*
|
142385
142385
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142386
142386
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142391,8 +142391,8 @@ const Callbacks = function(options) {
|
|
142391
142391
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_deferred.js
|
142392
142392
|
/**
|
142393
142393
|
* DevExtreme (esm/__internal/core/utils/m_deferred.js)
|
142394
|
-
* Version: 24.2.
|
142395
|
-
* Build date:
|
142394
|
+
* Version: 24.2.5-build-25028-1935
|
142395
|
+
* Build date: Tue Jan 28 2025
|
142396
142396
|
*
|
142397
142397
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142398
142398
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142557,8 +142557,8 @@ function when() {
|
|
142557
142557
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/deferred.js
|
142558
142558
|
/**
|
142559
142559
|
* DevExtreme (esm/core/utils/deferred.js)
|
142560
|
-
* Version: 24.2.
|
142561
|
-
* Build date:
|
142560
|
+
* Version: 24.2.5-build-25028-1935
|
142561
|
+
* Build date: Tue Jan 28 2025
|
142562
142562
|
*
|
142563
142563
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142564
142564
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142568,8 +142568,8 @@ function when() {
|
|
142568
142568
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_common.js
|
142569
142569
|
/**
|
142570
142570
|
* DevExtreme (esm/__internal/core/utils/m_common.js)
|
142571
|
-
* Version: 24.2.
|
142572
|
-
* Build date:
|
142571
|
+
* Version: 24.2.5-build-25028-1935
|
142572
|
+
* Build date: Tue Jan 28 2025
|
142573
142573
|
*
|
142574
142574
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142575
142575
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142863,8 +142863,8 @@ const equalByValue = function(value1, value2) {
|
|
142863
142863
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/common.js
|
142864
142864
|
/**
|
142865
142865
|
* DevExtreme (esm/core/utils/common.js)
|
142866
|
-
* Version: 24.2.
|
142867
|
-
* Build date:
|
142866
|
+
* Version: 24.2.5-build-25028-1935
|
142867
|
+
* Build date: Tue Jan 28 2025
|
142868
142868
|
*
|
142869
142869
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142870
142870
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142874,8 +142874,8 @@ const equalByValue = function(value1, value2) {
|
|
142874
142874
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_math.js
|
142875
142875
|
/**
|
142876
142876
|
* DevExtreme (esm/__internal/core/utils/m_math.js)
|
142877
|
-
* Version: 24.2.
|
142878
|
-
* Build date:
|
142877
|
+
* Version: 24.2.5-build-25028-1935
|
142878
|
+
* Build date: Tue Jan 28 2025
|
142879
142879
|
*
|
142880
142880
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142881
142881
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143044,8 +143044,8 @@ function roundFloatPart(value) {
|
|
143044
143044
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/math.js
|
143045
143045
|
/**
|
143046
143046
|
* DevExtreme (esm/core/utils/math.js)
|
143047
|
-
* Version: 24.2.
|
143048
|
-
* Build date:
|
143047
|
+
* Version: 24.2.5-build-25028-1935
|
143048
|
+
* Build date: Tue Jan 28 2025
|
143049
143049
|
*
|
143050
143050
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143051
143051
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143055,8 +143055,8 @@ function roundFloatPart(value) {
|
|
143055
143055
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/utils.js
|
143056
143056
|
/**
|
143057
143057
|
* DevExtreme (esm/common/core/localization/utils.js)
|
143058
|
-
* Version: 24.2.
|
143059
|
-
* Build date:
|
143058
|
+
* Version: 24.2.5-build-25028-1935
|
143059
|
+
* Build date: Tue Jan 28 2025
|
143060
143060
|
*
|
143061
143061
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143062
143062
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143083,8 +143083,8 @@ function toFixed(value, precision) {
|
|
143083
143083
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/number.js
|
143084
143084
|
/**
|
143085
143085
|
* DevExtreme (esm/common/core/localization/ldml/number.js)
|
143086
|
-
* Version: 24.2.
|
143087
|
-
* Build date:
|
143086
|
+
* Version: 24.2.5-build-25028-1935
|
143087
|
+
* Build date: Tue Jan 28 2025
|
143088
143088
|
*
|
143089
143089
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143090
143090
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143298,8 +143298,8 @@ function getFormat(formatter) {
|
|
143298
143298
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/currency.js
|
143299
143299
|
/**
|
143300
143300
|
* DevExtreme (esm/common/core/localization/currency.js)
|
143301
|
-
* Version: 24.2.
|
143302
|
-
* Build date:
|
143301
|
+
* Version: 24.2.5-build-25028-1935
|
143302
|
+
* Build date: Tue Jan 28 2025
|
143303
143303
|
*
|
143304
143304
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143305
143305
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143331,8 +143331,8 @@ function getFormat(formatter) {
|
|
143331
143331
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/parent_locales.js
|
143332
143332
|
/**
|
143333
143333
|
* DevExtreme (esm/common/core/localization/cldr-data/parent_locales.js)
|
143334
|
-
* Version: 24.2.
|
143335
|
-
* Build date:
|
143334
|
+
* Version: 24.2.5-build-25028-1935
|
143335
|
+
* Build date: Tue Jan 28 2025
|
143336
143336
|
*
|
143337
143337
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143338
143338
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143517,8 +143517,8 @@ function getFormat(formatter) {
|
|
143517
143517
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/parentLocale.js
|
143518
143518
|
/**
|
143519
143519
|
* DevExtreme (esm/common/core/localization/parentLocale.js)
|
143520
|
-
* Version: 24.2.
|
143521
|
-
* Build date:
|
143520
|
+
* Version: 24.2.5-build-25028-1935
|
143521
|
+
* Build date: Tue Jan 28 2025
|
143522
143522
|
*
|
143523
143523
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143524
143524
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143535,8 +143535,8 @@ const PARENT_LOCALE_SEPARATOR = "-";
|
|
143535
143535
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/core.js
|
143536
143536
|
/**
|
143537
143537
|
* DevExtreme (esm/common/core/localization/core.js)
|
143538
|
-
* Version: 24.2.
|
143539
|
-
* Build date:
|
143538
|
+
* Version: 24.2.5-build-25028-1935
|
143539
|
+
* Build date: Tue Jan 28 2025
|
143540
143540
|
*
|
143541
143541
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143542
143542
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143577,8 +143577,8 @@ const DEFAULT_LOCALE = "en";
|
|
143577
143577
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/open_xml_currency_format.js
|
143578
143578
|
/**
|
143579
143579
|
* DevExtreme (esm/common/core/localization/open_xml_currency_format.js)
|
143580
|
-
* Version: 24.2.
|
143581
|
-
* Build date:
|
143580
|
+
* Version: 24.2.5-build-25028-1935
|
143581
|
+
* Build date: Tue Jan 28 2025
|
143582
143582
|
*
|
143583
143583
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143584
143584
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143620,8 +143620,8 @@ const DEFAULT_LOCALE = "en";
|
|
143620
143620
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/accounting_formats.js
|
143621
143621
|
/**
|
143622
143622
|
* DevExtreme (esm/common/core/localization/cldr-data/accounting_formats.js)
|
143623
|
-
* Version: 24.2.
|
143624
|
-
* Build date:
|
143623
|
+
* Version: 24.2.5-build-25028-1935
|
143624
|
+
* Build date: Tue Jan 28 2025
|
143625
143625
|
*
|
143626
143626
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143627
143627
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144207,8 +144207,8 @@ const DEFAULT_LOCALE = "en";
|
|
144207
144207
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/number.js
|
144208
144208
|
/**
|
144209
144209
|
* DevExtreme (esm/common/core/localization/intl/number.js)
|
144210
|
-
* Version: 24.2.
|
144211
|
-
* Build date:
|
144210
|
+
* Version: 24.2.5-build-25028-1935
|
144211
|
+
* Build date: Tue Jan 28 2025
|
144212
144212
|
*
|
144213
144213
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144214
144214
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144328,8 +144328,8 @@ const getCurrencyFormatter = currency => new Intl.NumberFormat(core.locale(), {
|
|
144328
144328
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/number.js
|
144329
144329
|
/**
|
144330
144330
|
* DevExtreme (esm/common/core/localization/number.js)
|
144331
|
-
* Version: 24.2.
|
144332
|
-
* Build date:
|
144331
|
+
* Version: 24.2.5-build-25028-1935
|
144332
|
+
* Build date: Tue Jan 28 2025
|
144333
144333
|
*
|
144334
144334
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144335
144335
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144634,8 +144634,8 @@ if (hasIntl) {
|
|
144634
144634
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.format.js
|
144635
144635
|
/**
|
144636
144636
|
* DevExtreme (esm/common/core/localization/ldml/date.format.js)
|
144637
|
-
* Version: 24.2.
|
144638
|
-
* Build date:
|
144637
|
+
* Version: 24.2.5-build-25028-1935
|
144638
|
+
* Build date: Tue Jan 28 2025
|
144639
144639
|
*
|
144640
144640
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144641
144641
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144832,8 +144832,8 @@ const date_format_getFormat = function(formatter) {
|
|
144832
144832
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.parser.js
|
144833
144833
|
/**
|
144834
144834
|
* DevExtreme (esm/common/core/localization/ldml/date.parser.js)
|
144835
|
-
* Version: 24.2.
|
144836
|
-
* Build date:
|
144835
|
+
* Version: 24.2.5-build-25028-1935
|
144836
|
+
* Build date: Tue Jan 28 2025
|
144837
144837
|
*
|
144838
144838
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144839
144839
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145151,8 +145151,8 @@ const getParser = function(format, dateParts) {
|
|
145151
145151
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/default_date_names.js
|
145152
145152
|
/**
|
145153
145153
|
* DevExtreme (esm/common/core/localization/default_date_names.js)
|
145154
|
-
* Version: 24.2.
|
145155
|
-
* Build date:
|
145154
|
+
* Version: 24.2.5-build-25028-1935
|
145155
|
+
* Build date: Tue Jan 28 2025
|
145156
145156
|
*
|
145157
145157
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145158
145158
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145188,8 +145188,8 @@ const cutCaptions = (captions, format) => {
|
|
145188
145188
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/first_day_of_week_data.js
|
145189
145189
|
/**
|
145190
145190
|
* DevExtreme (esm/common/core/localization/cldr-data/first_day_of_week_data.js)
|
145191
|
-
* Version: 24.2.
|
145192
|
-
* Build date:
|
145191
|
+
* Version: 24.2.5-build-25028-1935
|
145192
|
+
* Build date: Tue Jan 28 2025
|
145193
145193
|
*
|
145194
145194
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145195
145195
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145388,8 +145388,8 @@ const cutCaptions = (captions, format) => {
|
|
145388
145388
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/date.js
|
145389
145389
|
/**
|
145390
145390
|
* DevExtreme (esm/common/core/localization/intl/date.js)
|
145391
|
-
* Version: 24.2.
|
145392
|
-
* Build date:
|
145391
|
+
* Version: 24.2.5-build-25028-1935
|
145392
|
+
* Build date: Tue Jan 28 2025
|
145393
145393
|
*
|
145394
145394
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145395
145395
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145706,8 +145706,8 @@ const monthNameStrategies = {
|
|
145706
145706
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/date.js
|
145707
145707
|
/**
|
145708
145708
|
* DevExtreme (esm/common/core/localization/date.js)
|
145709
|
-
* Version: 24.2.
|
145710
|
-
* Build date:
|
145709
|
+
* Version: 24.2.5-build-25028-1935
|
145710
|
+
* Build date: Tue Jan 28 2025
|
145711
145711
|
*
|
145712
145712
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145713
145713
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -146944,7 +146944,7 @@ class ClientRichEdit {
|
|
146944
146944
|
this.contextMenuSettings = settings.contextMenuSettings;
|
146945
146945
|
this.fullScreenHelper = new FullScreenHelper(element);
|
146946
146946
|
if (true)
|
146947
|
-
external_DevExpress_config_default()(JSON.parse(atob('
|
146947
|
+
external_DevExpress_config_default()(JSON.parse(atob('eyJsaWNlbnNlS2V5IjoiZXdvZ0lDSm1iM0p0WVhRaU9pQXhMQW9nSUNKcGJuUmxjbTVoYkZWellXZGxTV1FpT2lBaVZITk1NM3AyT1dkeE1EWk5lVlEyYXpCT1NIazNaeUlLZlE9PS52MHVNYVVSVFFNRWg3SEFEV1dZUnBXY2tsSTZiZC82Uis3VGpHa0lESDZ2aVY2Q2pieFI5L2ZZOERxQmdPQ0tVVld4Wnh0Z0p0blhxSXBqNnhnZFVRaEJQbHFHbm9WYUhWdTYxb0FjRnVWRUJlR0lDMERQN0pnaXBYZkgrd3VReFZZdGxrQT09In0=')));
|
146948
146948
|
this.prepareElement(element, settings);
|
146949
146949
|
this.initDefaultFontsAndStyles();
|
146950
146950
|
this.initBars(settings.ribbon, settings.fonts);
|