devexpress-richedit 24.2.5 → 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 +197 -150
- 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/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
|
*/
|
@@ -31264,6 +31264,7 @@ ApplyFieldHyperlinkStyleHistoryItem.mask = CharacterPropertiesMask.UseAll & ~(Ch
|
|
31264
31264
|
|
31265
31265
|
|
31266
31266
|
|
31267
|
+
|
31267
31268
|
class FieldCodeParserHyperlink extends FieldCodeParserClientUpdatingBase {
|
31268
31269
|
get name() { return FieldName.Hyperlink; }
|
31269
31270
|
parseCodeCurrentFieldInternal(_responce) {
|
@@ -31280,15 +31281,14 @@ class FieldCodeParserHyperlink extends FieldCodeParserClientUpdatingBase {
|
|
31280
31281
|
const text = (_b = (_a = this.parameterInfoList[0]) === null || _a === void 0 ? void 0 : _a.text) !== null && _b !== void 0 ? _b : "";
|
31281
31282
|
const newHyperlinkInfo = this.updateHyperlinkInfo(text);
|
31282
31283
|
if (!newHyperlinkInfo) {
|
31283
|
-
if (!this.modelManager.richOptions.fields.keepHyperlinkResultForInvalidReference)
|
31284
|
+
if (!this.modelManager.richOptions.fields.keepHyperlinkResultForInvalidReference)
|
31284
31285
|
this.removeInterval(this.getTopField().getResultInterval());
|
31285
|
-
}
|
31286
31286
|
return true;
|
31287
31287
|
}
|
31288
31288
|
const modelManipulator = this.modelManager.modelManipulator;
|
31289
31289
|
const resultInterval = field.getResultInterval();
|
31290
31290
|
if (resultInterval.length === 0) {
|
31291
|
-
const resultText = text
|
31291
|
+
const resultText = utils_string.StringUtils.isNullOrEmpty(text) ? `#${newHyperlinkInfo.anchor}` : text;
|
31292
31292
|
const newResultInterval = new fixed.FixedInterval(resultInterval.start, resultText.length);
|
31293
31293
|
this.setInputPositionState();
|
31294
31294
|
this.replaceTextByInterval(resultInterval, resultText);
|
@@ -107224,12 +107224,11 @@ class TouchHandlerPopupMenuState extends TouchHandlerStateBase {
|
|
107224
107224
|
return new TouchHandlerBeginTapProcessingState(this.handler, evt);
|
107225
107225
|
}
|
107226
107226
|
canExtendSelection(mousePoint, lpStart) {
|
107227
|
-
return this.handler.control.
|
107228
|
-
this.handler.control.selection.isCollapsed() &&
|
107227
|
+
return this.handler.control.selection.isCollapsed() &&
|
107229
107228
|
this.isHitPoints(mousePoint, lpStart.getPositionRelativePage(this.handler.control.measurer), lpStart.row.height);
|
107230
107229
|
}
|
107231
107230
|
canExtendSelectionOnOneSide(mousePoint, selectionInterval) {
|
107232
|
-
return this.
|
107231
|
+
return this.isLeftOrRightEdge(mousePoint, selectionInterval);
|
107233
107232
|
}
|
107234
107233
|
getLayoutPosition(logPosition) {
|
107235
107234
|
var subDocument = this.handler.control.selection.activeSubDocument;
|
@@ -135028,7 +135027,14 @@ class ClipboardCommand extends CommandBase {
|
|
135028
135027
|
this.control.endUpdate();
|
135029
135028
|
}
|
135030
135029
|
tryWriteToClipboard() {
|
135031
|
-
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
|
+
});
|
135032
135038
|
}
|
135033
135039
|
isVisible() {
|
135034
135040
|
return true;
|
@@ -135225,15 +135231,17 @@ class ClipboardHelper {
|
|
135225
135231
|
return Promise.reject(ClipboardHelper.noDataInClipboardMessage);
|
135226
135232
|
}
|
135227
135233
|
insertClipboardItem(item, type, insert) {
|
135228
|
-
return
|
135229
|
-
|
135230
|
-
|
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
|
+
});
|
135231
135239
|
}
|
135232
135240
|
insertPlainText(text) {
|
135233
135241
|
return new Promise((resolve, reject) => {
|
135234
|
-
if (ClipboardHelper.
|
135242
|
+
if (ClipboardHelper.lastWrittenTextHash === this.calculateHash(text))
|
135235
135243
|
reject();
|
135236
|
-
ClipboardHelper.
|
135244
|
+
ClipboardHelper.lastWrittenTextHash = -1;
|
135237
135245
|
const command = new InsertPlainTextCommand(this.control);
|
135238
135246
|
if (command.execute(false, new CommandSimpleOptions(this.control, text)))
|
135239
135247
|
resolve();
|
@@ -135255,30 +135263,43 @@ class ClipboardHelper {
|
|
135255
135263
|
}
|
135256
135264
|
});
|
135257
135265
|
}
|
135266
|
+
tryWriteToClipboard(clipboardData) {
|
135267
|
+
return __awaiter(this, void 0, void 0, function* () {
|
135268
|
+
if (this.canWriteToClipboard())
|
135269
|
+
yield this.writeToClipboard(clipboardData);
|
135270
|
+
});
|
135271
|
+
}
|
135258
135272
|
canWriteToClipboard() {
|
135259
135273
|
var _a;
|
135260
|
-
return !!((_a = this.clipboard) === null || _a === void 0 ? void 0 : _a.
|
135274
|
+
return !!((_a = this.clipboard) === null || _a === void 0 ? void 0 : _a.write);
|
135261
135275
|
}
|
135262
135276
|
writeToClipboard(clipboardData) {
|
135263
|
-
ClipboardHelper.
|
135277
|
+
ClipboardHelper.lastWrittenTextHash = -1;
|
135264
135278
|
return new Promise((resolve, reject) => {
|
135265
135279
|
const modelManager = this.createModelManager(clipboardData.model);
|
135266
135280
|
const exporter = new TxtExporter(modelManager.modelManipulator, new DocumentExporterOptions());
|
135267
135281
|
exporter.exportToBlob((blob) => __awaiter(this, void 0, void 0, function* () {
|
135268
|
-
|
135269
|
-
|
135270
|
-
|
135271
|
-
|
135272
|
-
|
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);
|
135273
135296
|
else
|
135274
|
-
|
135297
|
+
resolve();
|
135275
135298
|
}));
|
135276
135299
|
});
|
135277
135300
|
}
|
135278
|
-
|
135279
|
-
|
135280
|
-
return this.writeToClipboard(clipboardData);
|
135281
|
-
return Promise.resolve();
|
135301
|
+
createClipboardItem(blob) {
|
135302
|
+
return new ClipboardItem({ 'text/plain': blob });
|
135282
135303
|
}
|
135283
135304
|
calculateHash(text) {
|
135284
135305
|
let hash = 0;
|
@@ -135298,10 +135319,9 @@ class ClipboardHelper {
|
|
135298
135319
|
}
|
135299
135320
|
}
|
135300
135321
|
ClipboardHelper.browserDoesNotSupportReadingFromClipboard = 'The browser does not support reading from the clipboard.';
|
135301
|
-
ClipboardHelper.browserDoesNotSupportWritingToClipboard = 'The browser does not support writing to the clipboard.';
|
135302
135322
|
ClipboardHelper.noDataInClipboardMessage = 'There is no any supported data in the clipboard.';
|
135303
135323
|
ClipboardHelper.clipboardItemCannotBeInsertedMessage = 'The clipboard item cannot be inserted.';
|
135304
|
-
ClipboardHelper.
|
135324
|
+
ClipboardHelper.lastWrittenTextHash = -1;
|
135305
135325
|
class InsertHtmlCommand extends CommandBase {
|
135306
135326
|
getState() {
|
135307
135327
|
return new SimpleCommandState(this.isEnabled());
|
@@ -140764,8 +140784,8 @@ class DialogManager {
|
|
140764
140784
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_type.js
|
140765
140785
|
/**
|
140766
140786
|
* DevExtreme (esm/__internal/core/utils/m_type.js)
|
140767
|
-
* Version: 24.2.
|
140768
|
-
* Build date:
|
140787
|
+
* Version: 24.2.6-build-25050-1935
|
140788
|
+
* Build date: Wed Feb 19 2025
|
140769
140789
|
*
|
140770
140790
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140771
140791
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140867,8 +140887,8 @@ const isEvent = function(object) {
|
|
140867
140887
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/type.js
|
140868
140888
|
/**
|
140869
140889
|
* DevExtreme (esm/core/utils/type.js)
|
140870
|
-
* Version: 24.2.
|
140871
|
-
* Build date:
|
140890
|
+
* Version: 24.2.6-build-25050-1935
|
140891
|
+
* Build date: Wed Feb 19 2025
|
140872
140892
|
*
|
140873
140893
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140874
140894
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140878,8 +140898,8 @@ const isEvent = function(object) {
|
|
140878
140898
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_extend.js
|
140879
140899
|
/**
|
140880
140900
|
* DevExtreme (esm/__internal/core/utils/m_extend.js)
|
140881
|
-
* Version: 24.2.
|
140882
|
-
* Build date:
|
140901
|
+
* Version: 24.2.6-build-25050-1935
|
140902
|
+
* Build date: Wed Feb 19 2025
|
140883
140903
|
*
|
140884
140904
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140885
140905
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140937,8 +140957,8 @@ const extend = function(target) {
|
|
140937
140957
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/extend.js
|
140938
140958
|
/**
|
140939
140959
|
* DevExtreme (esm/core/utils/extend.js)
|
140940
|
-
* Version: 24.2.
|
140941
|
-
* Build date:
|
140960
|
+
* Version: 24.2.6-build-25050-1935
|
140961
|
+
* Build date: Wed Feb 19 2025
|
140942
140962
|
*
|
140943
140963
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140944
140964
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140948,8 +140968,8 @@ const extend = function(target) {
|
|
140948
140968
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_string.js
|
140949
140969
|
/**
|
140950
140970
|
* DevExtreme (esm/__internal/core/utils/m_string.js)
|
140951
|
-
* Version: 24.2.
|
140952
|
-
* Build date:
|
140971
|
+
* Version: 24.2.6-build-25050-1935
|
140972
|
+
* Build date: Wed Feb 19 2025
|
140953
140973
|
*
|
140954
140974
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140955
140975
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141024,8 +141044,8 @@ const isEmpty = function() {
|
|
141024
141044
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/string.js
|
141025
141045
|
/**
|
141026
141046
|
* DevExtreme (esm/core/utils/string.js)
|
141027
|
-
* Version: 24.2.
|
141028
|
-
* Build date:
|
141047
|
+
* Version: 24.2.6-build-25050-1935
|
141048
|
+
* Build date: Wed Feb 19 2025
|
141029
141049
|
*
|
141030
141050
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141031
141051
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141035,20 +141055,20 @@ const isEmpty = function() {
|
|
141035
141055
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/version.js
|
141036
141056
|
/**
|
141037
141057
|
* DevExtreme (esm/core/version.js)
|
141038
|
-
* Version: 24.2.
|
141039
|
-
* Build date:
|
141058
|
+
* Version: 24.2.6-build-25050-1935
|
141059
|
+
* Build date: Wed Feb 19 2025
|
141040
141060
|
*
|
141041
141061
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141042
141062
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
141043
141063
|
*/
|
141044
141064
|
const version = "24.2.5";
|
141045
|
-
const fullVersion = "24.2.5";
|
141065
|
+
const fullVersion = "24.2.5.25050-1935";
|
141046
141066
|
|
141047
141067
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_console.js
|
141048
141068
|
/**
|
141049
141069
|
* DevExtreme (esm/__internal/core/utils/m_console.js)
|
141050
|
-
* Version: 24.2.
|
141051
|
-
* Build date:
|
141070
|
+
* Version: 24.2.6-build-25050-1935
|
141071
|
+
* Build date: Wed Feb 19 2025
|
141052
141072
|
*
|
141053
141073
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141054
141074
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141088,8 +141108,8 @@ const debug = function() {
|
|
141088
141108
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_error.js
|
141089
141109
|
/**
|
141090
141110
|
* DevExtreme (esm/__internal/core/utils/m_error.js)
|
141091
|
-
* Version: 24.2.
|
141092
|
-
* Build date:
|
141111
|
+
* Version: 24.2.6-build-25050-1935
|
141112
|
+
* Build date: Wed Feb 19 2025
|
141093
141113
|
*
|
141094
141114
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141095
141115
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141160,8 +141180,8 @@ function error(baseErrors, errors) {
|
|
141160
141180
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/error.js
|
141161
141181
|
/**
|
141162
141182
|
* DevExtreme (esm/core/utils/error.js)
|
141163
|
-
* Version: 24.2.
|
141164
|
-
* Build date:
|
141183
|
+
* Version: 24.2.6-build-25050-1935
|
141184
|
+
* Build date: Wed Feb 19 2025
|
141165
141185
|
*
|
141166
141186
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141167
141187
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141172,8 +141192,8 @@ function error(baseErrors, errors) {
|
|
141172
141192
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_errors.js
|
141173
141193
|
/**
|
141174
141194
|
* DevExtreme (esm/__internal/core/m_errors.js)
|
141175
|
-
* Version: 24.2.
|
141176
|
-
* Build date:
|
141195
|
+
* Version: 24.2.6-build-25050-1935
|
141196
|
+
* Build date: Wed Feb 19 2025
|
141177
141197
|
*
|
141178
141198
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141179
141199
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141239,8 +141259,8 @@ function error(baseErrors, errors) {
|
|
141239
141259
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/errors.js
|
141240
141260
|
/**
|
141241
141261
|
* DevExtreme (esm/core/errors.js)
|
141242
|
-
* Version: 24.2.
|
141243
|
-
* Build date:
|
141262
|
+
* Version: 24.2.6-build-25050-1935
|
141263
|
+
* Build date: Wed Feb 19 2025
|
141244
141264
|
*
|
141245
141265
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141246
141266
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141251,8 +141271,8 @@ function error(baseErrors, errors) {
|
|
141251
141271
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_class.js
|
141252
141272
|
/**
|
141253
141273
|
* DevExtreme (esm/__internal/core/m_class.js)
|
141254
|
-
* Version: 24.2.
|
141255
|
-
* Build date:
|
141274
|
+
* Version: 24.2.6-build-25050-1935
|
141275
|
+
* Build date: Wed Feb 19 2025
|
141256
141276
|
*
|
141257
141277
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141258
141278
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141385,8 +141405,8 @@ classImpl.abstract = m_class_abstract;
|
|
141385
141405
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/class.js
|
141386
141406
|
/**
|
141387
141407
|
* DevExtreme (esm/core/class.js)
|
141388
|
-
* Version: 24.2.
|
141389
|
-
* Build date:
|
141408
|
+
* Version: 24.2.6-build-25050-1935
|
141409
|
+
* Build date: Wed Feb 19 2025
|
141390
141410
|
*
|
141391
141411
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141392
141412
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141397,8 +141417,8 @@ classImpl.abstract = m_class_abstract;
|
|
141397
141417
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_iterator.js
|
141398
141418
|
/**
|
141399
141419
|
* DevExtreme (esm/__internal/core/utils/m_iterator.js)
|
141400
|
-
* Version: 24.2.
|
141401
|
-
* Build date:
|
141420
|
+
* Version: 24.2.6-build-25050-1935
|
141421
|
+
* Build date: Wed Feb 19 2025
|
141402
141422
|
*
|
141403
141423
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141404
141424
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141447,8 +141467,8 @@ const reverseEach = (array, callback) => {
|
|
141447
141467
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_dependency_injector.js
|
141448
141468
|
/**
|
141449
141469
|
* DevExtreme (esm/__internal/core/utils/m_dependency_injector.js)
|
141450
|
-
* Version: 24.2.
|
141451
|
-
* Build date:
|
141470
|
+
* Version: 24.2.6-build-25050-1935
|
141471
|
+
* Build date: Wed Feb 19 2025
|
141452
141472
|
*
|
141453
141473
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141454
141474
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141497,8 +141517,8 @@ function injector(object) {
|
|
141497
141517
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/dependency_injector.js
|
141498
141518
|
/**
|
141499
141519
|
* DevExtreme (esm/core/utils/dependency_injector.js)
|
141500
|
-
* Version: 24.2.
|
141501
|
-
* Build date:
|
141520
|
+
* Version: 24.2.6-build-25050-1935
|
141521
|
+
* Build date: Wed Feb 19 2025
|
141502
141522
|
*
|
141503
141523
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141504
141524
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141509,8 +141529,8 @@ function injector(object) {
|
|
141509
141529
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.formatter.js
|
141510
141530
|
/**
|
141511
141531
|
* DevExtreme (esm/common/core/localization/ldml/date.formatter.js)
|
141512
|
-
* Version: 24.2.
|
141513
|
-
* Build date:
|
141532
|
+
* Version: 24.2.6-build-25050-1935
|
141533
|
+
* Build date: Wed Feb 19 2025
|
141514
141534
|
*
|
141515
141535
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141516
141536
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141663,8 +141683,8 @@ function _extends() {
|
|
141663
141683
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_config.js
|
141664
141684
|
/**
|
141665
141685
|
* DevExtreme (esm/__internal/core/m_config.js)
|
141666
|
-
* Version: 24.2.
|
141667
|
-
* Build date:
|
141686
|
+
* Version: 24.2.6-build-25050-1935
|
141687
|
+
* Build date: Wed Feb 19 2025
|
141668
141688
|
*
|
141669
141689
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141670
141690
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141739,8 +141759,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
141739
141759
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/config.js
|
141740
141760
|
/**
|
141741
141761
|
* DevExtreme (esm/common/config.js)
|
141742
|
-
* Version: 24.2.
|
141743
|
-
* Build date:
|
141762
|
+
* Version: 24.2.6-build-25050-1935
|
141763
|
+
* Build date: Wed Feb 19 2025
|
141744
141764
|
*
|
141745
141765
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141746
141766
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141751,8 +141771,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
141751
141771
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_guid.js
|
141752
141772
|
/**
|
141753
141773
|
* DevExtreme (esm/__internal/core/m_guid.js)
|
141754
|
-
* Version: 24.2.
|
141755
|
-
* Build date:
|
141774
|
+
* Version: 24.2.6-build-25050-1935
|
141775
|
+
* Build date: Wed Feb 19 2025
|
141756
141776
|
*
|
141757
141777
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141758
141778
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141794,8 +141814,8 @@ const Guid = core_class.inherit({
|
|
141794
141814
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/guid.js
|
141795
141815
|
/**
|
141796
141816
|
* DevExtreme (esm/common/guid.js)
|
141797
|
-
* Version: 24.2.
|
141798
|
-
* Build date:
|
141817
|
+
* Version: 24.2.6-build-25050-1935
|
141818
|
+
* Build date: Wed Feb 19 2025
|
141799
141819
|
*
|
141800
141820
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141801
141821
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141806,8 +141826,8 @@ const Guid = core_class.inherit({
|
|
141806
141826
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/templates/m_template_engine_registry.js
|
141807
141827
|
/**
|
141808
141828
|
* DevExtreme (esm/__internal/core/templates/m_template_engine_registry.js)
|
141809
|
-
* Version: 24.2.
|
141810
|
-
* Build date:
|
141829
|
+
* Version: 24.2.6-build-25050-1935
|
141830
|
+
* Build date: Wed Feb 19 2025
|
141811
141831
|
*
|
141812
141832
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141813
141833
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141836,8 +141856,8 @@ function getCurrentTemplateEngine() {
|
|
141836
141856
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/templates/template_engine_registry.js
|
141837
141857
|
/**
|
141838
141858
|
* DevExtreme (esm/core/templates/template_engine_registry.js)
|
141839
|
-
* Version: 24.2.
|
141840
|
-
* Build date:
|
141859
|
+
* Version: 24.2.6-build-25050-1935
|
141860
|
+
* Build date: Wed Feb 19 2025
|
141841
141861
|
*
|
141842
141862
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141843
141863
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141847,8 +141867,8 @@ function getCurrentTemplateEngine() {
|
|
141847
141867
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_set_template_engine.js
|
141848
141868
|
/**
|
141849
141869
|
* DevExtreme (esm/__internal/core/m_set_template_engine.js)
|
141850
|
-
* Version: 24.2.
|
141851
|
-
* Build date:
|
141870
|
+
* Version: 24.2.6-build-25050-1935
|
141871
|
+
* Build date: Wed Feb 19 2025
|
141852
141872
|
*
|
141853
141873
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141854
141874
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141858,8 +141878,8 @@ function getCurrentTemplateEngine() {
|
|
141858
141878
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/set_template_engine.js
|
141859
141879
|
/**
|
141860
141880
|
* DevExtreme (esm/common/set_template_engine.js)
|
141861
|
-
* Version: 24.2.
|
141862
|
-
* Build date:
|
141881
|
+
* Version: 24.2.6-build-25050-1935
|
141882
|
+
* Build date: Wed Feb 19 2025
|
141863
141883
|
*
|
141864
141884
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141865
141885
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141870,8 +141890,8 @@ function getCurrentTemplateEngine() {
|
|
141870
141890
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common.js
|
141871
141891
|
/**
|
141872
141892
|
* DevExtreme (esm/common.js)
|
141873
|
-
* Version: 24.2.
|
141874
|
-
* Build date:
|
141893
|
+
* Version: 24.2.6-build-25050-1935
|
141894
|
+
* Build date: Wed Feb 19 2025
|
141875
141895
|
*
|
141876
141896
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141877
141897
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141884,8 +141904,8 @@ function getCurrentTemplateEngine() {
|
|
141884
141904
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/config.js
|
141885
141905
|
/**
|
141886
141906
|
* DevExtreme (esm/core/config.js)
|
141887
|
-
* Version: 24.2.
|
141888
|
-
* Build date:
|
141907
|
+
* Version: 24.2.6-build-25050-1935
|
141908
|
+
* Build date: Wed Feb 19 2025
|
141889
141909
|
*
|
141890
141910
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141891
141911
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141896,8 +141916,8 @@ function getCurrentTemplateEngine() {
|
|
141896
141916
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/guid.js
|
141897
141917
|
/**
|
141898
141918
|
* DevExtreme (esm/core/guid.js)
|
141899
|
-
* Version: 24.2.
|
141900
|
-
* Build date:
|
141919
|
+
* Version: 24.2.6-build-25050-1935
|
141920
|
+
* Build date: Wed Feb 19 2025
|
141901
141921
|
*
|
141902
141922
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141903
141923
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141908,8 +141928,8 @@ function getCurrentTemplateEngine() {
|
|
141908
141928
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/console.js
|
141909
141929
|
/**
|
141910
141930
|
* DevExtreme (esm/core/utils/console.js)
|
141911
|
-
* Version: 24.2.
|
141912
|
-
* Build date:
|
141931
|
+
* Version: 24.2.6-build-25050-1935
|
141932
|
+
* Build date: Wed Feb 19 2025
|
141913
141933
|
*
|
141914
141934
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141915
141935
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141919,8 +141939,8 @@ function getCurrentTemplateEngine() {
|
|
141919
141939
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_variable_wrapper.js
|
141920
141940
|
/**
|
141921
141941
|
* DevExtreme (esm/__internal/core/utils/m_variable_wrapper.js)
|
141922
|
-
* Version: 24.2.
|
141923
|
-
* Build date:
|
141942
|
+
* Version: 24.2.6-build-25050-1935
|
141943
|
+
* Build date: Wed Feb 19 2025
|
141924
141944
|
*
|
141925
141945
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141926
141946
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141949,8 +141969,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
141949
141969
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/variable_wrapper.js
|
141950
141970
|
/**
|
141951
141971
|
* DevExtreme (esm/core/utils/variable_wrapper.js)
|
141952
|
-
* Version: 24.2.
|
141953
|
-
* Build date:
|
141972
|
+
* Version: 24.2.6-build-25050-1935
|
141973
|
+
* Build date: Wed Feb 19 2025
|
141954
141974
|
*
|
141955
141975
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141956
141976
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141961,8 +141981,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
141961
141981
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_object.js
|
141962
141982
|
/**
|
141963
141983
|
* DevExtreme (esm/__internal/core/utils/m_object.js)
|
141964
|
-
* Version: 24.2.
|
141965
|
-
* Build date:
|
141984
|
+
* Version: 24.2.6-build-25050-1935
|
141985
|
+
* Build date: Wed Feb 19 2025
|
141966
141986
|
*
|
141967
141987
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141968
141988
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142062,8 +142082,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142062
142082
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/object.js
|
142063
142083
|
/**
|
142064
142084
|
* DevExtreme (esm/core/utils/object.js)
|
142065
|
-
* Version: 24.2.
|
142066
|
-
* Build date:
|
142085
|
+
* Version: 24.2.6-build-25050-1935
|
142086
|
+
* Build date: Wed Feb 19 2025
|
142067
142087
|
*
|
142068
142088
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142069
142089
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142073,8 +142093,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142073
142093
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_data.js
|
142074
142094
|
/**
|
142075
142095
|
* DevExtreme (esm/__internal/core/utils/m_data.js)
|
142076
|
-
* Version: 24.2.
|
142077
|
-
* Build date:
|
142096
|
+
* Version: 24.2.6-build-25050-1935
|
142097
|
+
* Build date: Wed Feb 19 2025
|
142078
142098
|
*
|
142079
142099
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142080
142100
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142270,8 +142290,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142270
142290
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/data.js
|
142271
142291
|
/**
|
142272
142292
|
* DevExtreme (esm/core/utils/data.js)
|
142273
|
-
* Version: 24.2.
|
142274
|
-
* Build date:
|
142293
|
+
* Version: 24.2.6-build-25050-1935
|
142294
|
+
* Build date: Wed Feb 19 2025
|
142275
142295
|
*
|
142276
142296
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142277
142297
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142281,8 +142301,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142281
142301
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_callbacks.js
|
142282
142302
|
/**
|
142283
142303
|
* DevExtreme (esm/__internal/core/utils/m_callbacks.js)
|
142284
|
-
* Version: 24.2.
|
142285
|
-
* Build date:
|
142304
|
+
* Version: 24.2.6-build-25050-1935
|
142305
|
+
* Build date: Wed Feb 19 2025
|
142286
142306
|
*
|
142287
142307
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142288
142308
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142377,8 +142397,8 @@ const Callbacks = function(options) {
|
|
142377
142397
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/callbacks.js
|
142378
142398
|
/**
|
142379
142399
|
* DevExtreme (esm/core/utils/callbacks.js)
|
142380
|
-
* Version: 24.2.
|
142381
|
-
* Build date:
|
142400
|
+
* Version: 24.2.6-build-25050-1935
|
142401
|
+
* Build date: Wed Feb 19 2025
|
142382
142402
|
*
|
142383
142403
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142384
142404
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142389,8 +142409,8 @@ const Callbacks = function(options) {
|
|
142389
142409
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_deferred.js
|
142390
142410
|
/**
|
142391
142411
|
* DevExtreme (esm/__internal/core/utils/m_deferred.js)
|
142392
|
-
* Version: 24.2.
|
142393
|
-
* Build date:
|
142412
|
+
* Version: 24.2.6-build-25050-1935
|
142413
|
+
* Build date: Wed Feb 19 2025
|
142394
142414
|
*
|
142395
142415
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142396
142416
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142555,8 +142575,8 @@ function when() {
|
|
142555
142575
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/deferred.js
|
142556
142576
|
/**
|
142557
142577
|
* DevExtreme (esm/core/utils/deferred.js)
|
142558
|
-
* Version: 24.2.
|
142559
|
-
* Build date:
|
142578
|
+
* Version: 24.2.6-build-25050-1935
|
142579
|
+
* Build date: Wed Feb 19 2025
|
142560
142580
|
*
|
142561
142581
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142562
142582
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142566,8 +142586,8 @@ function when() {
|
|
142566
142586
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_common.js
|
142567
142587
|
/**
|
142568
142588
|
* DevExtreme (esm/__internal/core/utils/m_common.js)
|
142569
|
-
* Version: 24.2.
|
142570
|
-
* Build date:
|
142589
|
+
* Version: 24.2.6-build-25050-1935
|
142590
|
+
* Build date: Wed Feb 19 2025
|
142571
142591
|
*
|
142572
142592
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142573
142593
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142861,8 +142881,8 @@ const equalByValue = function(value1, value2) {
|
|
142861
142881
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/common.js
|
142862
142882
|
/**
|
142863
142883
|
* DevExtreme (esm/core/utils/common.js)
|
142864
|
-
* Version: 24.2.
|
142865
|
-
* Build date:
|
142884
|
+
* Version: 24.2.6-build-25050-1935
|
142885
|
+
* Build date: Wed Feb 19 2025
|
142866
142886
|
*
|
142867
142887
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142868
142888
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142872,8 +142892,8 @@ const equalByValue = function(value1, value2) {
|
|
142872
142892
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_math.js
|
142873
142893
|
/**
|
142874
142894
|
* DevExtreme (esm/__internal/core/utils/m_math.js)
|
142875
|
-
* Version: 24.2.
|
142876
|
-
* Build date:
|
142895
|
+
* Version: 24.2.6-build-25050-1935
|
142896
|
+
* Build date: Wed Feb 19 2025
|
142877
142897
|
*
|
142878
142898
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142879
142899
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143042,8 +143062,8 @@ function roundFloatPart(value) {
|
|
143042
143062
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/math.js
|
143043
143063
|
/**
|
143044
143064
|
* DevExtreme (esm/core/utils/math.js)
|
143045
|
-
* Version: 24.2.
|
143046
|
-
* Build date:
|
143065
|
+
* Version: 24.2.6-build-25050-1935
|
143066
|
+
* Build date: Wed Feb 19 2025
|
143047
143067
|
*
|
143048
143068
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143049
143069
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143053,8 +143073,8 @@ function roundFloatPart(value) {
|
|
143053
143073
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/utils.js
|
143054
143074
|
/**
|
143055
143075
|
* DevExtreme (esm/common/core/localization/utils.js)
|
143056
|
-
* Version: 24.2.
|
143057
|
-
* Build date:
|
143076
|
+
* Version: 24.2.6-build-25050-1935
|
143077
|
+
* Build date: Wed Feb 19 2025
|
143058
143078
|
*
|
143059
143079
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143060
143080
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143081,8 +143101,8 @@ function toFixed(value, precision) {
|
|
143081
143101
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/number.js
|
143082
143102
|
/**
|
143083
143103
|
* DevExtreme (esm/common/core/localization/ldml/number.js)
|
143084
|
-
* Version: 24.2.
|
143085
|
-
* Build date:
|
143104
|
+
* Version: 24.2.6-build-25050-1935
|
143105
|
+
* Build date: Wed Feb 19 2025
|
143086
143106
|
*
|
143087
143107
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143088
143108
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143109,8 +143129,35 @@ function getGroupSizes(formatString) {
|
|
143109
143129
|
}))
|
143110
143130
|
}
|
143111
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
|
+
|
143112
143159
|
function getSignParts(format) {
|
143113
|
-
const signParts = format
|
143160
|
+
const signParts = splitSignParts(format);
|
143114
143161
|
if (1 === signParts.length) {
|
143115
143162
|
signParts.push("-" + signParts[0])
|
143116
143163
|
}
|
@@ -143126,7 +143173,7 @@ function isPercentFormat(format) {
|
|
143126
143173
|
}
|
143127
143174
|
|
143128
143175
|
function removeStubs(str) {
|
143129
|
-
return str.replace(/'
|
143176
|
+
return str.replace(/'[^']*'/g, "")
|
143130
143177
|
}
|
143131
143178
|
|
143132
143179
|
function getNonRequiredDigitCount(floatFormat) {
|
@@ -143296,8 +143343,8 @@ function getFormat(formatter) {
|
|
143296
143343
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/currency.js
|
143297
143344
|
/**
|
143298
143345
|
* DevExtreme (esm/common/core/localization/currency.js)
|
143299
|
-
* Version: 24.2.
|
143300
|
-
* Build date:
|
143346
|
+
* Version: 24.2.6-build-25050-1935
|
143347
|
+
* Build date: Wed Feb 19 2025
|
143301
143348
|
*
|
143302
143349
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143303
143350
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143329,8 +143376,8 @@ function getFormat(formatter) {
|
|
143329
143376
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/parent_locales.js
|
143330
143377
|
/**
|
143331
143378
|
* DevExtreme (esm/common/core/localization/cldr-data/parent_locales.js)
|
143332
|
-
* Version: 24.2.
|
143333
|
-
* Build date:
|
143379
|
+
* Version: 24.2.6-build-25050-1935
|
143380
|
+
* Build date: Wed Feb 19 2025
|
143334
143381
|
*
|
143335
143382
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143336
143383
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143515,8 +143562,8 @@ function getFormat(formatter) {
|
|
143515
143562
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/parentLocale.js
|
143516
143563
|
/**
|
143517
143564
|
* DevExtreme (esm/common/core/localization/parentLocale.js)
|
143518
|
-
* Version: 24.2.
|
143519
|
-
* Build date:
|
143565
|
+
* Version: 24.2.6-build-25050-1935
|
143566
|
+
* Build date: Wed Feb 19 2025
|
143520
143567
|
*
|
143521
143568
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143522
143569
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143533,8 +143580,8 @@ const PARENT_LOCALE_SEPARATOR = "-";
|
|
143533
143580
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/core.js
|
143534
143581
|
/**
|
143535
143582
|
* DevExtreme (esm/common/core/localization/core.js)
|
143536
|
-
* Version: 24.2.
|
143537
|
-
* Build date:
|
143583
|
+
* Version: 24.2.6-build-25050-1935
|
143584
|
+
* Build date: Wed Feb 19 2025
|
143538
143585
|
*
|
143539
143586
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143540
143587
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143575,8 +143622,8 @@ const DEFAULT_LOCALE = "en";
|
|
143575
143622
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/open_xml_currency_format.js
|
143576
143623
|
/**
|
143577
143624
|
* DevExtreme (esm/common/core/localization/open_xml_currency_format.js)
|
143578
|
-
* Version: 24.2.
|
143579
|
-
* Build date:
|
143625
|
+
* Version: 24.2.6-build-25050-1935
|
143626
|
+
* Build date: Wed Feb 19 2025
|
143580
143627
|
*
|
143581
143628
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143582
143629
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143618,8 +143665,8 @@ const DEFAULT_LOCALE = "en";
|
|
143618
143665
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/accounting_formats.js
|
143619
143666
|
/**
|
143620
143667
|
* DevExtreme (esm/common/core/localization/cldr-data/accounting_formats.js)
|
143621
|
-
* Version: 24.2.
|
143622
|
-
* Build date:
|
143668
|
+
* Version: 24.2.6-build-25050-1935
|
143669
|
+
* Build date: Wed Feb 19 2025
|
143623
143670
|
*
|
143624
143671
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143625
143672
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144205,8 +144252,8 @@ const DEFAULT_LOCALE = "en";
|
|
144205
144252
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/number.js
|
144206
144253
|
/**
|
144207
144254
|
* DevExtreme (esm/common/core/localization/intl/number.js)
|
144208
|
-
* Version: 24.2.
|
144209
|
-
* Build date:
|
144255
|
+
* Version: 24.2.6-build-25050-1935
|
144256
|
+
* Build date: Wed Feb 19 2025
|
144210
144257
|
*
|
144211
144258
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144212
144259
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144326,8 +144373,8 @@ const getCurrencyFormatter = currency => new Intl.NumberFormat(core.locale(), {
|
|
144326
144373
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/number.js
|
144327
144374
|
/**
|
144328
144375
|
* DevExtreme (esm/common/core/localization/number.js)
|
144329
|
-
* Version: 24.2.
|
144330
|
-
* Build date:
|
144376
|
+
* Version: 24.2.6-build-25050-1935
|
144377
|
+
* Build date: Wed Feb 19 2025
|
144331
144378
|
*
|
144332
144379
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144333
144380
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144632,8 +144679,8 @@ if (hasIntl) {
|
|
144632
144679
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.format.js
|
144633
144680
|
/**
|
144634
144681
|
* DevExtreme (esm/common/core/localization/ldml/date.format.js)
|
144635
|
-
* Version: 24.2.
|
144636
|
-
* Build date:
|
144682
|
+
* Version: 24.2.6-build-25050-1935
|
144683
|
+
* Build date: Wed Feb 19 2025
|
144637
144684
|
*
|
144638
144685
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144639
144686
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144830,8 +144877,8 @@ const date_format_getFormat = function(formatter) {
|
|
144830
144877
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.parser.js
|
144831
144878
|
/**
|
144832
144879
|
* DevExtreme (esm/common/core/localization/ldml/date.parser.js)
|
144833
|
-
* Version: 24.2.
|
144834
|
-
* Build date:
|
144880
|
+
* Version: 24.2.6-build-25050-1935
|
144881
|
+
* Build date: Wed Feb 19 2025
|
144835
144882
|
*
|
144836
144883
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144837
144884
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145149,8 +145196,8 @@ const getParser = function(format, dateParts) {
|
|
145149
145196
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/default_date_names.js
|
145150
145197
|
/**
|
145151
145198
|
* DevExtreme (esm/common/core/localization/default_date_names.js)
|
145152
|
-
* Version: 24.2.
|
145153
|
-
* Build date:
|
145199
|
+
* Version: 24.2.6-build-25050-1935
|
145200
|
+
* Build date: Wed Feb 19 2025
|
145154
145201
|
*
|
145155
145202
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145156
145203
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145186,8 +145233,8 @@ const cutCaptions = (captions, format) => {
|
|
145186
145233
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/first_day_of_week_data.js
|
145187
145234
|
/**
|
145188
145235
|
* DevExtreme (esm/common/core/localization/cldr-data/first_day_of_week_data.js)
|
145189
|
-
* Version: 24.2.
|
145190
|
-
* Build date:
|
145236
|
+
* Version: 24.2.6-build-25050-1935
|
145237
|
+
* Build date: Wed Feb 19 2025
|
145191
145238
|
*
|
145192
145239
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145193
145240
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145386,8 +145433,8 @@ const cutCaptions = (captions, format) => {
|
|
145386
145433
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/date.js
|
145387
145434
|
/**
|
145388
145435
|
* DevExtreme (esm/common/core/localization/intl/date.js)
|
145389
|
-
* Version: 24.2.
|
145390
|
-
* Build date:
|
145436
|
+
* Version: 24.2.6-build-25050-1935
|
145437
|
+
* Build date: Wed Feb 19 2025
|
145391
145438
|
*
|
145392
145439
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145393
145440
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145704,8 +145751,8 @@ const monthNameStrategies = {
|
|
145704
145751
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/date.js
|
145705
145752
|
/**
|
145706
145753
|
* DevExtreme (esm/common/core/localization/date.js)
|
145707
|
-
* Version: 24.2.
|
145708
|
-
* Build date:
|
145754
|
+
* Version: 24.2.6-build-25050-1935
|
145755
|
+
* Build date: Wed Feb 19 2025
|
145709
145756
|
*
|
145710
145757
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145711
145758
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|