devexpress-richedit 24.2.5-build-25037-0102 → 24.2.6-build-25051-0120
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 +210 -165
- package/dist/dx.richedit.min.js +2 -2
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/lib/common/commands/text/clipboard-commands.d.ts +5 -5
- package/lib/common/commands/text/clipboard-commands.js +41 -20
- package/lib/common/focus-manager.js +1 -4
- package/lib/common/input-controller.d.ts +1 -1
- package/lib/common/input-controller.js +11 -8
- package/lib/common/model/fields/field.js +0 -2
- package/lib/common/model/fields/parsers/field-code-parser-hyperlink.js +3 -3
- package/lib/common/mouse-handler/touch-handler/touch-handler-popup-menu-state.js +2 -3
- 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.6
|
4
4
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
5
5
|
* License: https://www.devexpress.com/Support/EULAs
|
6
6
|
*/
|
@@ -22720,8 +22720,6 @@ class HyperlinkInfo {
|
|
22720
22720
|
return false;
|
22721
22721
|
if (this.uri.startsWith("#"))
|
22722
22722
|
return false;
|
22723
|
-
if (this.isMail())
|
22724
|
-
return false;
|
22725
22723
|
return utils/* UrlUtils */.jE.isValid(this.uri);
|
22726
22724
|
}
|
22727
22725
|
isMail() {
|
@@ -31266,6 +31264,7 @@ ApplyFieldHyperlinkStyleHistoryItem.mask = CharacterPropertiesMask.UseAll & ~(Ch
|
|
31266
31264
|
|
31267
31265
|
|
31268
31266
|
|
31267
|
+
|
31269
31268
|
class FieldCodeParserHyperlink extends FieldCodeParserClientUpdatingBase {
|
31270
31269
|
get name() { return FieldName.Hyperlink; }
|
31271
31270
|
parseCodeCurrentFieldInternal(_responce) {
|
@@ -31282,15 +31281,14 @@ class FieldCodeParserHyperlink extends FieldCodeParserClientUpdatingBase {
|
|
31282
31281
|
const text = (_b = (_a = this.parameterInfoList[0]) === null || _a === void 0 ? void 0 : _a.text) !== null && _b !== void 0 ? _b : "";
|
31283
31282
|
const newHyperlinkInfo = this.updateHyperlinkInfo(text);
|
31284
31283
|
if (!newHyperlinkInfo) {
|
31285
|
-
if (!this.modelManager.richOptions.fields.keepHyperlinkResultForInvalidReference)
|
31284
|
+
if (!this.modelManager.richOptions.fields.keepHyperlinkResultForInvalidReference)
|
31286
31285
|
this.removeInterval(this.getTopField().getResultInterval());
|
31287
|
-
}
|
31288
31286
|
return true;
|
31289
31287
|
}
|
31290
31288
|
const modelManipulator = this.modelManager.modelManipulator;
|
31291
31289
|
const resultInterval = field.getResultInterval();
|
31292
31290
|
if (resultInterval.length === 0) {
|
31293
|
-
const resultText = text
|
31291
|
+
const resultText = utils_string.StringUtils.isNullOrEmpty(text) ? `#${newHyperlinkInfo.anchor}` : text;
|
31294
31292
|
const newResultInterval = new fixed.FixedInterval(resultInterval.start, resultText.length);
|
31295
31293
|
this.setInputPositionState();
|
31296
31294
|
this.replaceTextByInterval(resultInterval, resultText);
|
@@ -107226,12 +107224,11 @@ class TouchHandlerPopupMenuState extends TouchHandlerStateBase {
|
|
107226
107224
|
return new TouchHandlerBeginTapProcessingState(this.handler, evt);
|
107227
107225
|
}
|
107228
107226
|
canExtendSelection(mousePoint, lpStart) {
|
107229
|
-
return this.handler.control.
|
107230
|
-
this.handler.control.selection.isCollapsed() &&
|
107227
|
+
return this.handler.control.selection.isCollapsed() &&
|
107231
107228
|
this.isHitPoints(mousePoint, lpStart.getPositionRelativePage(this.handler.control.measurer), lpStart.row.height);
|
107232
107229
|
}
|
107233
107230
|
canExtendSelectionOnOneSide(mousePoint, selectionInterval) {
|
107234
|
-
return this.
|
107231
|
+
return this.isLeftOrRightEdge(mousePoint, selectionInterval);
|
107235
107232
|
}
|
107236
107233
|
getLayoutPosition(logPosition) {
|
107237
107234
|
var subDocument = this.handler.control.selection.activeSubDocument;
|
@@ -110052,7 +110049,6 @@ class UpdateFieldCommand extends UpdateFieldCommandBase {
|
|
110052
110049
|
}
|
110053
110050
|
|
110054
110051
|
;// CONCATENATED MODULE: ./src/common/focus-manager.ts
|
110055
|
-
|
110056
110052
|
class FocusManager {
|
110057
110053
|
constructor(canvasManager, owner, inputController, eventManager) {
|
110058
110054
|
this.canvasManager = canvasManager;
|
@@ -110072,9 +110068,7 @@ class FocusManager {
|
|
110072
110068
|
captureFocus() {
|
110073
110069
|
if (this.owner.canCaptureFocus()) {
|
110074
110070
|
this.owner.onCaptureFocus();
|
110075
|
-
|
110076
|
-
browser.Browser.MacOSMobilePlatform && window.self !== window.top)
|
110077
|
-
this.inputController.captureFocus();
|
110071
|
+
this.inputController.captureFocus();
|
110078
110072
|
this.eventManager.onFocusIn();
|
110079
110073
|
}
|
110080
110074
|
}
|
@@ -110855,15 +110849,16 @@ class DivInputEditor extends InputEditorBase {
|
|
110855
110849
|
this.cursorWasSetOnLastPosition = true;
|
110856
110850
|
}
|
110857
110851
|
setEditableDocumentContent(content) {
|
110852
|
+
if (!content) {
|
110853
|
+
this.clearInputElement();
|
110854
|
+
return;
|
110855
|
+
}
|
110858
110856
|
if (typeof content === "string")
|
110859
110857
|
this.inputElement.innerHTML = content;
|
110860
|
-
else
|
110858
|
+
else {
|
110861
110859
|
this.inputElement.innerHTML = "";
|
110862
|
-
|
110863
|
-
this.inputElement.appendChild(content[i]);
|
110860
|
+
content.forEach((node) => this.inputElement.appendChild(node));
|
110864
110861
|
}
|
110865
|
-
else
|
110866
|
-
this.clearInputElement();
|
110867
110862
|
}
|
110868
110863
|
setEditableDocumentCursorPosition(cursorPosition) {
|
110869
110864
|
let textLength = this.getEditableDocumentFullText().length;
|
@@ -111032,8 +111027,9 @@ class IFrameInputEditor extends InputEditorBase {
|
|
111032
111027
|
else
|
111033
111028
|
dom.DomUtils.setFocus(this.control.readOnly == ReadOnlyMode.Persistent ? this.inputElement : this.editableDocument.body);
|
111034
111029
|
}
|
111035
|
-
setPosition(left, top) {
|
111036
|
-
|
111030
|
+
setPosition(left, top, force = false) {
|
111031
|
+
if (this.IMEState === IMEState.None || force)
|
111032
|
+
super.setPosition(left, top);
|
111037
111033
|
if (left && top)
|
111038
111034
|
this.selectEditableDocumentContent();
|
111039
111035
|
}
|
@@ -111168,11 +111164,12 @@ class IFrameInputEditor extends InputEditorBase {
|
|
111168
111164
|
const layoutPoint = new LayoutPoint(layoutPosition.pageIndex, layoutX, layoutPosition.getLayoutY(DocumentLayoutDetailsLevel.Row));
|
111169
111165
|
const pageElement = this.control.viewManager.cache[layoutPoint.pageIndex].page;
|
111170
111166
|
layoutPoint.offset(pageElement.offsetLeft, pageElement.offsetTop);
|
111171
|
-
this.setPosition(layoutPoint.x, layoutPoint.y);
|
111167
|
+
this.setPosition(layoutPoint.x, layoutPoint.y, true);
|
111172
111168
|
this.editableDocument.body.style.textIndent = this.previousText.length ? currentTextIndent :
|
111173
111169
|
layoutPosition.getLayoutX(this.control.measurer, DocumentLayoutDetailsLevel.Box) +
|
111174
111170
|
layoutPosition.box.getCharOffsetXInPixels(this.control.measurer, layoutPosition.charOffset) - layoutX + "px";
|
111175
111171
|
this.inputElement.style.width = layoutPosition.row.width + "px";
|
111172
|
+
this.inputElement.style.minWidth = layoutPosition.row.width + "px";
|
111176
111173
|
if (browser.Browser.IE || browser.Browser.Edge) {
|
111177
111174
|
this.editableDocument.body.style.width = this.inputElement.style.width;
|
111178
111175
|
this.editableDocument.body.style.height = this.inputElement.style.height = layoutPosition.row.height + "px";
|
@@ -135030,7 +135027,14 @@ class ClipboardCommand extends CommandBase {
|
|
135030
135027
|
this.control.endUpdate();
|
135031
135028
|
}
|
135032
135029
|
tryWriteToClipboard() {
|
135033
|
-
this
|
135030
|
+
return __awaiter(this, void 0, void 0, function* () {
|
135031
|
+
try {
|
135032
|
+
yield this.clipboardHelper.tryWriteToClipboard(ClipboardCommand.builtInClipboard.clipboardData);
|
135033
|
+
}
|
135034
|
+
catch (error) {
|
135035
|
+
console.log(error);
|
135036
|
+
}
|
135037
|
+
});
|
135034
135038
|
}
|
135035
135039
|
isVisible() {
|
135036
135040
|
return true;
|
@@ -135227,15 +135231,17 @@ class ClipboardHelper {
|
|
135227
135231
|
return Promise.reject(ClipboardHelper.noDataInClipboardMessage);
|
135228
135232
|
}
|
135229
135233
|
insertClipboardItem(item, type, insert) {
|
135230
|
-
return
|
135231
|
-
|
135232
|
-
|
135234
|
+
return __awaiter(this, void 0, void 0, function* () {
|
135235
|
+
const blob = yield item.getType(type);
|
135236
|
+
const text = yield this.readAsText(blob);
|
135237
|
+
return yield insert(text);
|
135238
|
+
});
|
135233
135239
|
}
|
135234
135240
|
insertPlainText(text) {
|
135235
135241
|
return new Promise((resolve, reject) => {
|
135236
|
-
if (ClipboardHelper.
|
135242
|
+
if (ClipboardHelper.lastWrittenTextHash === this.calculateHash(text))
|
135237
135243
|
reject();
|
135238
|
-
ClipboardHelper.
|
135244
|
+
ClipboardHelper.lastWrittenTextHash = -1;
|
135239
135245
|
const command = new InsertPlainTextCommand(this.control);
|
135240
135246
|
if (command.execute(false, new CommandSimpleOptions(this.control, text)))
|
135241
135247
|
resolve();
|
@@ -135257,30 +135263,43 @@ class ClipboardHelper {
|
|
135257
135263
|
}
|
135258
135264
|
});
|
135259
135265
|
}
|
135266
|
+
tryWriteToClipboard(clipboardData) {
|
135267
|
+
return __awaiter(this, void 0, void 0, function* () {
|
135268
|
+
if (this.canWriteToClipboard())
|
135269
|
+
yield this.writeToClipboard(clipboardData);
|
135270
|
+
});
|
135271
|
+
}
|
135260
135272
|
canWriteToClipboard() {
|
135261
135273
|
var _a;
|
135262
|
-
return !!((_a = this.clipboard) === null || _a === void 0 ? void 0 : _a.
|
135274
|
+
return !!((_a = this.clipboard) === null || _a === void 0 ? void 0 : _a.write);
|
135263
135275
|
}
|
135264
135276
|
writeToClipboard(clipboardData) {
|
135265
|
-
ClipboardHelper.
|
135277
|
+
ClipboardHelper.lastWrittenTextHash = -1;
|
135266
135278
|
return new Promise((resolve, reject) => {
|
135267
135279
|
const modelManager = this.createModelManager(clipboardData.model);
|
135268
135280
|
const exporter = new TxtExporter(modelManager.modelManipulator, new DocumentExporterOptions());
|
135269
135281
|
exporter.exportToBlob((blob) => __awaiter(this, void 0, void 0, function* () {
|
135270
|
-
|
135271
|
-
|
135272
|
-
|
135273
|
-
|
135274
|
-
|
135282
|
+
let error = null;
|
135283
|
+
try {
|
135284
|
+
const item = this.createClipboardItem(blob);
|
135285
|
+
yield this.clipboard.write([item]);
|
135286
|
+
}
|
135287
|
+
catch (err) {
|
135288
|
+
error = err;
|
135289
|
+
}
|
135290
|
+
if (this.useWithBuildInClipboard) {
|
135291
|
+
const text = yield this.readAsText(blob);
|
135292
|
+
ClipboardHelper.lastWrittenTextHash = this.calculateHash(text);
|
135293
|
+
}
|
135294
|
+
if (error)
|
135295
|
+
reject(error);
|
135275
135296
|
else
|
135276
|
-
|
135297
|
+
resolve();
|
135277
135298
|
}));
|
135278
135299
|
});
|
135279
135300
|
}
|
135280
|
-
|
135281
|
-
|
135282
|
-
return this.writeToClipboard(clipboardData);
|
135283
|
-
return Promise.resolve();
|
135301
|
+
createClipboardItem(blob) {
|
135302
|
+
return new ClipboardItem({ 'text/plain': blob });
|
135284
135303
|
}
|
135285
135304
|
calculateHash(text) {
|
135286
135305
|
let hash = 0;
|
@@ -135300,10 +135319,9 @@ class ClipboardHelper {
|
|
135300
135319
|
}
|
135301
135320
|
}
|
135302
135321
|
ClipboardHelper.browserDoesNotSupportReadingFromClipboard = 'The browser does not support reading from the clipboard.';
|
135303
|
-
ClipboardHelper.browserDoesNotSupportWritingToClipboard = 'The browser does not support writing to the clipboard.';
|
135304
135322
|
ClipboardHelper.noDataInClipboardMessage = 'There is no any supported data in the clipboard.';
|
135305
135323
|
ClipboardHelper.clipboardItemCannotBeInsertedMessage = 'The clipboard item cannot be inserted.';
|
135306
|
-
ClipboardHelper.
|
135324
|
+
ClipboardHelper.lastWrittenTextHash = -1;
|
135307
135325
|
class InsertHtmlCommand extends CommandBase {
|
135308
135326
|
getState() {
|
135309
135327
|
return new SimpleCommandState(this.isEnabled());
|
@@ -140766,8 +140784,8 @@ class DialogManager {
|
|
140766
140784
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_type.js
|
140767
140785
|
/**
|
140768
140786
|
* DevExtreme (esm/__internal/core/utils/m_type.js)
|
140769
|
-
* Version: 24.2.
|
140770
|
-
* Build date:
|
140787
|
+
* Version: 24.2.6-build-25050-1935
|
140788
|
+
* Build date: Wed Feb 19 2025
|
140771
140789
|
*
|
140772
140790
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140773
140791
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140869,8 +140887,8 @@ const isEvent = function(object) {
|
|
140869
140887
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/type.js
|
140870
140888
|
/**
|
140871
140889
|
* DevExtreme (esm/core/utils/type.js)
|
140872
|
-
* Version: 24.2.
|
140873
|
-
* Build date:
|
140890
|
+
* Version: 24.2.6-build-25050-1935
|
140891
|
+
* Build date: Wed Feb 19 2025
|
140874
140892
|
*
|
140875
140893
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140876
140894
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140880,8 +140898,8 @@ const isEvent = function(object) {
|
|
140880
140898
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_extend.js
|
140881
140899
|
/**
|
140882
140900
|
* DevExtreme (esm/__internal/core/utils/m_extend.js)
|
140883
|
-
* Version: 24.2.
|
140884
|
-
* Build date:
|
140901
|
+
* Version: 24.2.6-build-25050-1935
|
140902
|
+
* Build date: Wed Feb 19 2025
|
140885
140903
|
*
|
140886
140904
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140887
140905
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140939,8 +140957,8 @@ const extend = function(target) {
|
|
140939
140957
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/extend.js
|
140940
140958
|
/**
|
140941
140959
|
* DevExtreme (esm/core/utils/extend.js)
|
140942
|
-
* Version: 24.2.
|
140943
|
-
* Build date:
|
140960
|
+
* Version: 24.2.6-build-25050-1935
|
140961
|
+
* Build date: Wed Feb 19 2025
|
140944
140962
|
*
|
140945
140963
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140946
140964
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140950,8 +140968,8 @@ const extend = function(target) {
|
|
140950
140968
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_string.js
|
140951
140969
|
/**
|
140952
140970
|
* DevExtreme (esm/__internal/core/utils/m_string.js)
|
140953
|
-
* Version: 24.2.
|
140954
|
-
* Build date:
|
140971
|
+
* Version: 24.2.6-build-25050-1935
|
140972
|
+
* Build date: Wed Feb 19 2025
|
140955
140973
|
*
|
140956
140974
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140957
140975
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141026,8 +141044,8 @@ const isEmpty = function() {
|
|
141026
141044
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/string.js
|
141027
141045
|
/**
|
141028
141046
|
* DevExtreme (esm/core/utils/string.js)
|
141029
|
-
* Version: 24.2.
|
141030
|
-
* Build date:
|
141047
|
+
* Version: 24.2.6-build-25050-1935
|
141048
|
+
* Build date: Wed Feb 19 2025
|
141031
141049
|
*
|
141032
141050
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141033
141051
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141037,20 +141055,20 @@ const isEmpty = function() {
|
|
141037
141055
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/version.js
|
141038
141056
|
/**
|
141039
141057
|
* DevExtreme (esm/core/version.js)
|
141040
|
-
* Version: 24.2.
|
141041
|
-
* Build date:
|
141058
|
+
* Version: 24.2.6-build-25050-1935
|
141059
|
+
* Build date: Wed Feb 19 2025
|
141042
141060
|
*
|
141043
141061
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141044
141062
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
141045
141063
|
*/
|
141046
|
-
const version = "24.2.
|
141047
|
-
const fullVersion = "24.2.
|
141064
|
+
const version = "24.2.5";
|
141065
|
+
const fullVersion = "24.2.5.25050-1935";
|
141048
141066
|
|
141049
141067
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_console.js
|
141050
141068
|
/**
|
141051
141069
|
* DevExtreme (esm/__internal/core/utils/m_console.js)
|
141052
|
-
* Version: 24.2.
|
141053
|
-
* Build date:
|
141070
|
+
* Version: 24.2.6-build-25050-1935
|
141071
|
+
* Build date: Wed Feb 19 2025
|
141054
141072
|
*
|
141055
141073
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141056
141074
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141090,8 +141108,8 @@ const debug = function() {
|
|
141090
141108
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_error.js
|
141091
141109
|
/**
|
141092
141110
|
* DevExtreme (esm/__internal/core/utils/m_error.js)
|
141093
|
-
* Version: 24.2.
|
141094
|
-
* Build date:
|
141111
|
+
* Version: 24.2.6-build-25050-1935
|
141112
|
+
* Build date: Wed Feb 19 2025
|
141095
141113
|
*
|
141096
141114
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141097
141115
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141162,8 +141180,8 @@ function error(baseErrors, errors) {
|
|
141162
141180
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/error.js
|
141163
141181
|
/**
|
141164
141182
|
* DevExtreme (esm/core/utils/error.js)
|
141165
|
-
* Version: 24.2.
|
141166
|
-
* Build date:
|
141183
|
+
* Version: 24.2.6-build-25050-1935
|
141184
|
+
* Build date: Wed Feb 19 2025
|
141167
141185
|
*
|
141168
141186
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141169
141187
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141174,8 +141192,8 @@ function error(baseErrors, errors) {
|
|
141174
141192
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_errors.js
|
141175
141193
|
/**
|
141176
141194
|
* DevExtreme (esm/__internal/core/m_errors.js)
|
141177
|
-
* Version: 24.2.
|
141178
|
-
* Build date:
|
141195
|
+
* Version: 24.2.6-build-25050-1935
|
141196
|
+
* Build date: Wed Feb 19 2025
|
141179
141197
|
*
|
141180
141198
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141181
141199
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141241,8 +141259,8 @@ function error(baseErrors, errors) {
|
|
141241
141259
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/errors.js
|
141242
141260
|
/**
|
141243
141261
|
* DevExtreme (esm/core/errors.js)
|
141244
|
-
* Version: 24.2.
|
141245
|
-
* Build date:
|
141262
|
+
* Version: 24.2.6-build-25050-1935
|
141263
|
+
* Build date: Wed Feb 19 2025
|
141246
141264
|
*
|
141247
141265
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141248
141266
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141253,8 +141271,8 @@ function error(baseErrors, errors) {
|
|
141253
141271
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_class.js
|
141254
141272
|
/**
|
141255
141273
|
* DevExtreme (esm/__internal/core/m_class.js)
|
141256
|
-
* Version: 24.2.
|
141257
|
-
* Build date:
|
141274
|
+
* Version: 24.2.6-build-25050-1935
|
141275
|
+
* Build date: Wed Feb 19 2025
|
141258
141276
|
*
|
141259
141277
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141260
141278
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141387,8 +141405,8 @@ classImpl.abstract = m_class_abstract;
|
|
141387
141405
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/class.js
|
141388
141406
|
/**
|
141389
141407
|
* DevExtreme (esm/core/class.js)
|
141390
|
-
* Version: 24.2.
|
141391
|
-
* Build date:
|
141408
|
+
* Version: 24.2.6-build-25050-1935
|
141409
|
+
* Build date: Wed Feb 19 2025
|
141392
141410
|
*
|
141393
141411
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141394
141412
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141399,8 +141417,8 @@ classImpl.abstract = m_class_abstract;
|
|
141399
141417
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_iterator.js
|
141400
141418
|
/**
|
141401
141419
|
* DevExtreme (esm/__internal/core/utils/m_iterator.js)
|
141402
|
-
* Version: 24.2.
|
141403
|
-
* Build date:
|
141420
|
+
* Version: 24.2.6-build-25050-1935
|
141421
|
+
* Build date: Wed Feb 19 2025
|
141404
141422
|
*
|
141405
141423
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141406
141424
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141449,8 +141467,8 @@ const reverseEach = (array, callback) => {
|
|
141449
141467
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_dependency_injector.js
|
141450
141468
|
/**
|
141451
141469
|
* DevExtreme (esm/__internal/core/utils/m_dependency_injector.js)
|
141452
|
-
* Version: 24.2.
|
141453
|
-
* Build date:
|
141470
|
+
* Version: 24.2.6-build-25050-1935
|
141471
|
+
* Build date: Wed Feb 19 2025
|
141454
141472
|
*
|
141455
141473
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141456
141474
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141499,8 +141517,8 @@ function injector(object) {
|
|
141499
141517
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/dependency_injector.js
|
141500
141518
|
/**
|
141501
141519
|
* DevExtreme (esm/core/utils/dependency_injector.js)
|
141502
|
-
* Version: 24.2.
|
141503
|
-
* Build date:
|
141520
|
+
* Version: 24.2.6-build-25050-1935
|
141521
|
+
* Build date: Wed Feb 19 2025
|
141504
141522
|
*
|
141505
141523
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141506
141524
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141511,8 +141529,8 @@ function injector(object) {
|
|
141511
141529
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.formatter.js
|
141512
141530
|
/**
|
141513
141531
|
* DevExtreme (esm/common/core/localization/ldml/date.formatter.js)
|
141514
|
-
* Version: 24.2.
|
141515
|
-
* Build date:
|
141532
|
+
* Version: 24.2.6-build-25050-1935
|
141533
|
+
* Build date: Wed Feb 19 2025
|
141516
141534
|
*
|
141517
141535
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141518
141536
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141665,8 +141683,8 @@ function _extends() {
|
|
141665
141683
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_config.js
|
141666
141684
|
/**
|
141667
141685
|
* DevExtreme (esm/__internal/core/m_config.js)
|
141668
|
-
* Version: 24.2.
|
141669
|
-
* Build date:
|
141686
|
+
* Version: 24.2.6-build-25050-1935
|
141687
|
+
* Build date: Wed Feb 19 2025
|
141670
141688
|
*
|
141671
141689
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141672
141690
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141741,8 +141759,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
141741
141759
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/config.js
|
141742
141760
|
/**
|
141743
141761
|
* DevExtreme (esm/common/config.js)
|
141744
|
-
* Version: 24.2.
|
141745
|
-
* Build date:
|
141762
|
+
* Version: 24.2.6-build-25050-1935
|
141763
|
+
* Build date: Wed Feb 19 2025
|
141746
141764
|
*
|
141747
141765
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141748
141766
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141753,8 +141771,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
141753
141771
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_guid.js
|
141754
141772
|
/**
|
141755
141773
|
* DevExtreme (esm/__internal/core/m_guid.js)
|
141756
|
-
* Version: 24.2.
|
141757
|
-
* Build date:
|
141774
|
+
* Version: 24.2.6-build-25050-1935
|
141775
|
+
* Build date: Wed Feb 19 2025
|
141758
141776
|
*
|
141759
141777
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141760
141778
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141796,8 +141814,8 @@ const Guid = core_class.inherit({
|
|
141796
141814
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/guid.js
|
141797
141815
|
/**
|
141798
141816
|
* DevExtreme (esm/common/guid.js)
|
141799
|
-
* Version: 24.2.
|
141800
|
-
* Build date:
|
141817
|
+
* Version: 24.2.6-build-25050-1935
|
141818
|
+
* Build date: Wed Feb 19 2025
|
141801
141819
|
*
|
141802
141820
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141803
141821
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141808,8 +141826,8 @@ const Guid = core_class.inherit({
|
|
141808
141826
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/templates/m_template_engine_registry.js
|
141809
141827
|
/**
|
141810
141828
|
* DevExtreme (esm/__internal/core/templates/m_template_engine_registry.js)
|
141811
|
-
* Version: 24.2.
|
141812
|
-
* Build date:
|
141829
|
+
* Version: 24.2.6-build-25050-1935
|
141830
|
+
* Build date: Wed Feb 19 2025
|
141813
141831
|
*
|
141814
141832
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141815
141833
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141838,8 +141856,8 @@ function getCurrentTemplateEngine() {
|
|
141838
141856
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/templates/template_engine_registry.js
|
141839
141857
|
/**
|
141840
141858
|
* DevExtreme (esm/core/templates/template_engine_registry.js)
|
141841
|
-
* Version: 24.2.
|
141842
|
-
* Build date:
|
141859
|
+
* Version: 24.2.6-build-25050-1935
|
141860
|
+
* Build date: Wed Feb 19 2025
|
141843
141861
|
*
|
141844
141862
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141845
141863
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141849,8 +141867,8 @@ function getCurrentTemplateEngine() {
|
|
141849
141867
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_set_template_engine.js
|
141850
141868
|
/**
|
141851
141869
|
* DevExtreme (esm/__internal/core/m_set_template_engine.js)
|
141852
|
-
* Version: 24.2.
|
141853
|
-
* Build date:
|
141870
|
+
* Version: 24.2.6-build-25050-1935
|
141871
|
+
* Build date: Wed Feb 19 2025
|
141854
141872
|
*
|
141855
141873
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141856
141874
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141860,8 +141878,8 @@ function getCurrentTemplateEngine() {
|
|
141860
141878
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/set_template_engine.js
|
141861
141879
|
/**
|
141862
141880
|
* DevExtreme (esm/common/set_template_engine.js)
|
141863
|
-
* Version: 24.2.
|
141864
|
-
* Build date:
|
141881
|
+
* Version: 24.2.6-build-25050-1935
|
141882
|
+
* Build date: Wed Feb 19 2025
|
141865
141883
|
*
|
141866
141884
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141867
141885
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141872,8 +141890,8 @@ function getCurrentTemplateEngine() {
|
|
141872
141890
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common.js
|
141873
141891
|
/**
|
141874
141892
|
* DevExtreme (esm/common.js)
|
141875
|
-
* Version: 24.2.
|
141876
|
-
* Build date:
|
141893
|
+
* Version: 24.2.6-build-25050-1935
|
141894
|
+
* Build date: Wed Feb 19 2025
|
141877
141895
|
*
|
141878
141896
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141879
141897
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141886,8 +141904,8 @@ function getCurrentTemplateEngine() {
|
|
141886
141904
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/config.js
|
141887
141905
|
/**
|
141888
141906
|
* DevExtreme (esm/core/config.js)
|
141889
|
-
* Version: 24.2.
|
141890
|
-
* Build date:
|
141907
|
+
* Version: 24.2.6-build-25050-1935
|
141908
|
+
* Build date: Wed Feb 19 2025
|
141891
141909
|
*
|
141892
141910
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141893
141911
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141898,8 +141916,8 @@ function getCurrentTemplateEngine() {
|
|
141898
141916
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/guid.js
|
141899
141917
|
/**
|
141900
141918
|
* DevExtreme (esm/core/guid.js)
|
141901
|
-
* Version: 24.2.
|
141902
|
-
* Build date:
|
141919
|
+
* Version: 24.2.6-build-25050-1935
|
141920
|
+
* Build date: Wed Feb 19 2025
|
141903
141921
|
*
|
141904
141922
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141905
141923
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141910,8 +141928,8 @@ function getCurrentTemplateEngine() {
|
|
141910
141928
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/console.js
|
141911
141929
|
/**
|
141912
141930
|
* DevExtreme (esm/core/utils/console.js)
|
141913
|
-
* Version: 24.2.
|
141914
|
-
* Build date:
|
141931
|
+
* Version: 24.2.6-build-25050-1935
|
141932
|
+
* Build date: Wed Feb 19 2025
|
141915
141933
|
*
|
141916
141934
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141917
141935
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141921,8 +141939,8 @@ function getCurrentTemplateEngine() {
|
|
141921
141939
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_variable_wrapper.js
|
141922
141940
|
/**
|
141923
141941
|
* DevExtreme (esm/__internal/core/utils/m_variable_wrapper.js)
|
141924
|
-
* Version: 24.2.
|
141925
|
-
* Build date:
|
141942
|
+
* Version: 24.2.6-build-25050-1935
|
141943
|
+
* Build date: Wed Feb 19 2025
|
141926
141944
|
*
|
141927
141945
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141928
141946
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141951,8 +141969,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
141951
141969
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/variable_wrapper.js
|
141952
141970
|
/**
|
141953
141971
|
* DevExtreme (esm/core/utils/variable_wrapper.js)
|
141954
|
-
* Version: 24.2.
|
141955
|
-
* Build date:
|
141972
|
+
* Version: 24.2.6-build-25050-1935
|
141973
|
+
* Build date: Wed Feb 19 2025
|
141956
141974
|
*
|
141957
141975
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141958
141976
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141963,8 +141981,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
141963
141981
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_object.js
|
141964
141982
|
/**
|
141965
141983
|
* DevExtreme (esm/__internal/core/utils/m_object.js)
|
141966
|
-
* Version: 24.2.
|
141967
|
-
* Build date:
|
141984
|
+
* Version: 24.2.6-build-25050-1935
|
141985
|
+
* Build date: Wed Feb 19 2025
|
141968
141986
|
*
|
141969
141987
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141970
141988
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142064,8 +142082,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142064
142082
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/object.js
|
142065
142083
|
/**
|
142066
142084
|
* DevExtreme (esm/core/utils/object.js)
|
142067
|
-
* Version: 24.2.
|
142068
|
-
* Build date:
|
142085
|
+
* Version: 24.2.6-build-25050-1935
|
142086
|
+
* Build date: Wed Feb 19 2025
|
142069
142087
|
*
|
142070
142088
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142071
142089
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142075,8 +142093,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142075
142093
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_data.js
|
142076
142094
|
/**
|
142077
142095
|
* DevExtreme (esm/__internal/core/utils/m_data.js)
|
142078
|
-
* Version: 24.2.
|
142079
|
-
* Build date:
|
142096
|
+
* Version: 24.2.6-build-25050-1935
|
142097
|
+
* Build date: Wed Feb 19 2025
|
142080
142098
|
*
|
142081
142099
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142082
142100
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142272,8 +142290,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142272
142290
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/data.js
|
142273
142291
|
/**
|
142274
142292
|
* DevExtreme (esm/core/utils/data.js)
|
142275
|
-
* Version: 24.2.
|
142276
|
-
* Build date:
|
142293
|
+
* Version: 24.2.6-build-25050-1935
|
142294
|
+
* Build date: Wed Feb 19 2025
|
142277
142295
|
*
|
142278
142296
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142279
142297
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142283,8 +142301,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142283
142301
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_callbacks.js
|
142284
142302
|
/**
|
142285
142303
|
* DevExtreme (esm/__internal/core/utils/m_callbacks.js)
|
142286
|
-
* Version: 24.2.
|
142287
|
-
* Build date:
|
142304
|
+
* Version: 24.2.6-build-25050-1935
|
142305
|
+
* Build date: Wed Feb 19 2025
|
142288
142306
|
*
|
142289
142307
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142290
142308
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142379,8 +142397,8 @@ const Callbacks = function(options) {
|
|
142379
142397
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/callbacks.js
|
142380
142398
|
/**
|
142381
142399
|
* DevExtreme (esm/core/utils/callbacks.js)
|
142382
|
-
* Version: 24.2.
|
142383
|
-
* Build date:
|
142400
|
+
* Version: 24.2.6-build-25050-1935
|
142401
|
+
* Build date: Wed Feb 19 2025
|
142384
142402
|
*
|
142385
142403
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142386
142404
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142391,8 +142409,8 @@ const Callbacks = function(options) {
|
|
142391
142409
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_deferred.js
|
142392
142410
|
/**
|
142393
142411
|
* DevExtreme (esm/__internal/core/utils/m_deferred.js)
|
142394
|
-
* Version: 24.2.
|
142395
|
-
* Build date:
|
142412
|
+
* Version: 24.2.6-build-25050-1935
|
142413
|
+
* Build date: Wed Feb 19 2025
|
142396
142414
|
*
|
142397
142415
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142398
142416
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142557,8 +142575,8 @@ function when() {
|
|
142557
142575
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/deferred.js
|
142558
142576
|
/**
|
142559
142577
|
* DevExtreme (esm/core/utils/deferred.js)
|
142560
|
-
* Version: 24.2.
|
142561
|
-
* Build date:
|
142578
|
+
* Version: 24.2.6-build-25050-1935
|
142579
|
+
* Build date: Wed Feb 19 2025
|
142562
142580
|
*
|
142563
142581
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142564
142582
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142568,8 +142586,8 @@ function when() {
|
|
142568
142586
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_common.js
|
142569
142587
|
/**
|
142570
142588
|
* DevExtreme (esm/__internal/core/utils/m_common.js)
|
142571
|
-
* Version: 24.2.
|
142572
|
-
* Build date:
|
142589
|
+
* Version: 24.2.6-build-25050-1935
|
142590
|
+
* Build date: Wed Feb 19 2025
|
142573
142591
|
*
|
142574
142592
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142575
142593
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142863,8 +142881,8 @@ const equalByValue = function(value1, value2) {
|
|
142863
142881
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/common.js
|
142864
142882
|
/**
|
142865
142883
|
* DevExtreme (esm/core/utils/common.js)
|
142866
|
-
* Version: 24.2.
|
142867
|
-
* Build date:
|
142884
|
+
* Version: 24.2.6-build-25050-1935
|
142885
|
+
* Build date: Wed Feb 19 2025
|
142868
142886
|
*
|
142869
142887
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142870
142888
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142874,8 +142892,8 @@ const equalByValue = function(value1, value2) {
|
|
142874
142892
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_math.js
|
142875
142893
|
/**
|
142876
142894
|
* DevExtreme (esm/__internal/core/utils/m_math.js)
|
142877
|
-
* Version: 24.2.
|
142878
|
-
* Build date:
|
142895
|
+
* Version: 24.2.6-build-25050-1935
|
142896
|
+
* Build date: Wed Feb 19 2025
|
142879
142897
|
*
|
142880
142898
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142881
142899
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143044,8 +143062,8 @@ function roundFloatPart(value) {
|
|
143044
143062
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/math.js
|
143045
143063
|
/**
|
143046
143064
|
* DevExtreme (esm/core/utils/math.js)
|
143047
|
-
* Version: 24.2.
|
143048
|
-
* Build date:
|
143065
|
+
* Version: 24.2.6-build-25050-1935
|
143066
|
+
* Build date: Wed Feb 19 2025
|
143049
143067
|
*
|
143050
143068
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143051
143069
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143055,8 +143073,8 @@ function roundFloatPart(value) {
|
|
143055
143073
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/utils.js
|
143056
143074
|
/**
|
143057
143075
|
* DevExtreme (esm/common/core/localization/utils.js)
|
143058
|
-
* Version: 24.2.
|
143059
|
-
* Build date:
|
143076
|
+
* Version: 24.2.6-build-25050-1935
|
143077
|
+
* Build date: Wed Feb 19 2025
|
143060
143078
|
*
|
143061
143079
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143062
143080
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143083,8 +143101,8 @@ function toFixed(value, precision) {
|
|
143083
143101
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/number.js
|
143084
143102
|
/**
|
143085
143103
|
* DevExtreme (esm/common/core/localization/ldml/number.js)
|
143086
|
-
* Version: 24.2.
|
143087
|
-
* Build date:
|
143104
|
+
* Version: 24.2.6-build-25050-1935
|
143105
|
+
* Build date: Wed Feb 19 2025
|
143088
143106
|
*
|
143089
143107
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143090
143108
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143111,8 +143129,35 @@ function getGroupSizes(formatString) {
|
|
143111
143129
|
}))
|
143112
143130
|
}
|
143113
143131
|
|
143132
|
+
function splitSignParts(format) {
|
143133
|
+
let separatorChar = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : ";";
|
143134
|
+
let escapingChar = arguments.length > 2 && void 0 !== arguments[2] ? arguments[2] : "'";
|
143135
|
+
const parts = [];
|
143136
|
+
let currentPart = "";
|
143137
|
+
let state = "searchingSeparator";
|
143138
|
+
for (let i = 0; i < format.length; i++) {
|
143139
|
+
const char = format[i];
|
143140
|
+
if ("searchingSeparator" === state && char === escapingChar) {
|
143141
|
+
state = "skippingSeparationInsideEscaping"
|
143142
|
+
} else if ("skippingSeparationInsideEscaping" === state && char === escapingChar) {
|
143143
|
+
state = "searchingSeparator"
|
143144
|
+
} else if ("searchingSeparator" === state && char === separatorChar) {
|
143145
|
+
state = "separating";
|
143146
|
+
parts.push(currentPart);
|
143147
|
+
currentPart = ""
|
143148
|
+
}
|
143149
|
+
if ("separating" !== state) {
|
143150
|
+
currentPart += char
|
143151
|
+
} else {
|
143152
|
+
state = "searchingSeparator"
|
143153
|
+
}
|
143154
|
+
}
|
143155
|
+
parts.push(currentPart);
|
143156
|
+
return parts
|
143157
|
+
}
|
143158
|
+
|
143114
143159
|
function getSignParts(format) {
|
143115
|
-
const signParts = format
|
143160
|
+
const signParts = splitSignParts(format);
|
143116
143161
|
if (1 === signParts.length) {
|
143117
143162
|
signParts.push("-" + signParts[0])
|
143118
143163
|
}
|
@@ -143128,7 +143173,7 @@ function isPercentFormat(format) {
|
|
143128
143173
|
}
|
143129
143174
|
|
143130
143175
|
function removeStubs(str) {
|
143131
|
-
return str.replace(/'
|
143176
|
+
return str.replace(/'[^']*'/g, "")
|
143132
143177
|
}
|
143133
143178
|
|
143134
143179
|
function getNonRequiredDigitCount(floatFormat) {
|
@@ -143298,8 +143343,8 @@ function getFormat(formatter) {
|
|
143298
143343
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/currency.js
|
143299
143344
|
/**
|
143300
143345
|
* DevExtreme (esm/common/core/localization/currency.js)
|
143301
|
-
* Version: 24.2.
|
143302
|
-
* Build date:
|
143346
|
+
* Version: 24.2.6-build-25050-1935
|
143347
|
+
* Build date: Wed Feb 19 2025
|
143303
143348
|
*
|
143304
143349
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143305
143350
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143331,8 +143376,8 @@ function getFormat(formatter) {
|
|
143331
143376
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/parent_locales.js
|
143332
143377
|
/**
|
143333
143378
|
* DevExtreme (esm/common/core/localization/cldr-data/parent_locales.js)
|
143334
|
-
* Version: 24.2.
|
143335
|
-
* Build date:
|
143379
|
+
* Version: 24.2.6-build-25050-1935
|
143380
|
+
* Build date: Wed Feb 19 2025
|
143336
143381
|
*
|
143337
143382
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143338
143383
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143517,8 +143562,8 @@ function getFormat(formatter) {
|
|
143517
143562
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/parentLocale.js
|
143518
143563
|
/**
|
143519
143564
|
* DevExtreme (esm/common/core/localization/parentLocale.js)
|
143520
|
-
* Version: 24.2.
|
143521
|
-
* Build date:
|
143565
|
+
* Version: 24.2.6-build-25050-1935
|
143566
|
+
* Build date: Wed Feb 19 2025
|
143522
143567
|
*
|
143523
143568
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143524
143569
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143535,8 +143580,8 @@ const PARENT_LOCALE_SEPARATOR = "-";
|
|
143535
143580
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/core.js
|
143536
143581
|
/**
|
143537
143582
|
* DevExtreme (esm/common/core/localization/core.js)
|
143538
|
-
* Version: 24.2.
|
143539
|
-
* Build date:
|
143583
|
+
* Version: 24.2.6-build-25050-1935
|
143584
|
+
* Build date: Wed Feb 19 2025
|
143540
143585
|
*
|
143541
143586
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143542
143587
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143577,8 +143622,8 @@ const DEFAULT_LOCALE = "en";
|
|
143577
143622
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/open_xml_currency_format.js
|
143578
143623
|
/**
|
143579
143624
|
* DevExtreme (esm/common/core/localization/open_xml_currency_format.js)
|
143580
|
-
* Version: 24.2.
|
143581
|
-
* Build date:
|
143625
|
+
* Version: 24.2.6-build-25050-1935
|
143626
|
+
* Build date: Wed Feb 19 2025
|
143582
143627
|
*
|
143583
143628
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143584
143629
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143620,8 +143665,8 @@ const DEFAULT_LOCALE = "en";
|
|
143620
143665
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/accounting_formats.js
|
143621
143666
|
/**
|
143622
143667
|
* DevExtreme (esm/common/core/localization/cldr-data/accounting_formats.js)
|
143623
|
-
* Version: 24.2.
|
143624
|
-
* Build date:
|
143668
|
+
* Version: 24.2.6-build-25050-1935
|
143669
|
+
* Build date: Wed Feb 19 2025
|
143625
143670
|
*
|
143626
143671
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143627
143672
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144207,8 +144252,8 @@ const DEFAULT_LOCALE = "en";
|
|
144207
144252
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/number.js
|
144208
144253
|
/**
|
144209
144254
|
* DevExtreme (esm/common/core/localization/intl/number.js)
|
144210
|
-
* Version: 24.2.
|
144211
|
-
* Build date:
|
144255
|
+
* Version: 24.2.6-build-25050-1935
|
144256
|
+
* Build date: Wed Feb 19 2025
|
144212
144257
|
*
|
144213
144258
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144214
144259
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144328,8 +144373,8 @@ const getCurrencyFormatter = currency => new Intl.NumberFormat(core.locale(), {
|
|
144328
144373
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/number.js
|
144329
144374
|
/**
|
144330
144375
|
* DevExtreme (esm/common/core/localization/number.js)
|
144331
|
-
* Version: 24.2.
|
144332
|
-
* Build date:
|
144376
|
+
* Version: 24.2.6-build-25050-1935
|
144377
|
+
* Build date: Wed Feb 19 2025
|
144333
144378
|
*
|
144334
144379
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144335
144380
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144634,8 +144679,8 @@ if (hasIntl) {
|
|
144634
144679
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.format.js
|
144635
144680
|
/**
|
144636
144681
|
* DevExtreme (esm/common/core/localization/ldml/date.format.js)
|
144637
|
-
* Version: 24.2.
|
144638
|
-
* Build date:
|
144682
|
+
* Version: 24.2.6-build-25050-1935
|
144683
|
+
* Build date: Wed Feb 19 2025
|
144639
144684
|
*
|
144640
144685
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144641
144686
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144832,8 +144877,8 @@ const date_format_getFormat = function(formatter) {
|
|
144832
144877
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.parser.js
|
144833
144878
|
/**
|
144834
144879
|
* DevExtreme (esm/common/core/localization/ldml/date.parser.js)
|
144835
|
-
* Version: 24.2.
|
144836
|
-
* Build date:
|
144880
|
+
* Version: 24.2.6-build-25050-1935
|
144881
|
+
* Build date: Wed Feb 19 2025
|
144837
144882
|
*
|
144838
144883
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144839
144884
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145151,8 +145196,8 @@ const getParser = function(format, dateParts) {
|
|
145151
145196
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/default_date_names.js
|
145152
145197
|
/**
|
145153
145198
|
* DevExtreme (esm/common/core/localization/default_date_names.js)
|
145154
|
-
* Version: 24.2.
|
145155
|
-
* Build date:
|
145199
|
+
* Version: 24.2.6-build-25050-1935
|
145200
|
+
* Build date: Wed Feb 19 2025
|
145156
145201
|
*
|
145157
145202
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145158
145203
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145188,8 +145233,8 @@ const cutCaptions = (captions, format) => {
|
|
145188
145233
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/first_day_of_week_data.js
|
145189
145234
|
/**
|
145190
145235
|
* DevExtreme (esm/common/core/localization/cldr-data/first_day_of_week_data.js)
|
145191
|
-
* Version: 24.2.
|
145192
|
-
* Build date:
|
145236
|
+
* Version: 24.2.6-build-25050-1935
|
145237
|
+
* Build date: Wed Feb 19 2025
|
145193
145238
|
*
|
145194
145239
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145195
145240
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145388,8 +145433,8 @@ const cutCaptions = (captions, format) => {
|
|
145388
145433
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/date.js
|
145389
145434
|
/**
|
145390
145435
|
* DevExtreme (esm/common/core/localization/intl/date.js)
|
145391
|
-
* Version: 24.2.
|
145392
|
-
* Build date:
|
145436
|
+
* Version: 24.2.6-build-25050-1935
|
145437
|
+
* Build date: Wed Feb 19 2025
|
145393
145438
|
*
|
145394
145439
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145395
145440
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145706,8 +145751,8 @@ const monthNameStrategies = {
|
|
145706
145751
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/date.js
|
145707
145752
|
/**
|
145708
145753
|
* DevExtreme (esm/common/core/localization/date.js)
|
145709
|
-
* Version: 24.2.
|
145710
|
-
* Build date:
|
145754
|
+
* Version: 24.2.6-build-25050-1935
|
145755
|
+
* Build date: Wed Feb 19 2025
|
145711
145756
|
*
|
145712
145757
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145713
145758
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|