devexpress-richedit 25.1.13 → 25.1.14
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 +177 -140
- package/dist/dx.richedit.min.js +2 -2
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/lib/client/client-rich-edit.js +2 -2
- package/lib/common/commands/text/clipboard-commands.js +11 -8
- package/lib/common/rich-utils/html-utils.d.ts +5 -2
- package/lib/common/rich-utils/html-utils.js +42 -8
- 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: 25.1.
|
|
3
|
+
* Version: 25.1.14
|
|
4
4
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
5
5
|
* License: https://www.devexpress.com/Support/EULAs",
|
|
6
6
|
*/
|
|
@@ -137157,14 +137157,48 @@ class SwitchTextCaseCommand extends ChangeTextCaseCommandBaseBase {
|
|
|
137157
137157
|
|
|
137158
137158
|
;// CONCATENATED MODULE: ./src/common/rich-utils/html-utils.ts
|
|
137159
137159
|
|
|
137160
|
-
|
|
137161
|
-
|
|
137162
|
-
|
|
137163
|
-
|
|
137164
|
-
|
|
137165
|
-
|
|
137166
|
-
const
|
|
137167
|
-
|
|
137160
|
+
let shadowRoot;
|
|
137161
|
+
if (document.readyState === 'loading')
|
|
137162
|
+
document.addEventListener('DOMContentLoaded', createShadowRoot);
|
|
137163
|
+
else
|
|
137164
|
+
createShadowRoot();
|
|
137165
|
+
function getHTMLElementsFromHtml(html) {
|
|
137166
|
+
const fragment = document.createDocumentFragment();
|
|
137167
|
+
if (typeof html === "string") {
|
|
137168
|
+
if (html !== '') {
|
|
137169
|
+
const resultHtml = HtmlImporter.convertHtml(html);
|
|
137170
|
+
const doc = new DOMParser().parseFromString(resultHtml, 'text/html');
|
|
137171
|
+
for (const node of Array.from(doc.body.childNodes))
|
|
137172
|
+
fragment.appendChild(document.importNode(node, true));
|
|
137173
|
+
}
|
|
137174
|
+
}
|
|
137175
|
+
else {
|
|
137176
|
+
for (const node of Array.from(html))
|
|
137177
|
+
fragment.appendChild(node);
|
|
137178
|
+
}
|
|
137179
|
+
shadowRoot.textContent = '';
|
|
137180
|
+
shadowRoot.appendChild(fragment);
|
|
137181
|
+
return new HTMLResult(shadowRoot);
|
|
137182
|
+
}
|
|
137183
|
+
function createShadowRoot() {
|
|
137184
|
+
const host = document.createElement('div');
|
|
137185
|
+
host.style.overflow = 'hidden';
|
|
137186
|
+
host.style.position = 'absolute';
|
|
137187
|
+
host.style.top = '-9999px';
|
|
137188
|
+
host.style.left = '-9999px';
|
|
137189
|
+
shadowRoot = host.attachShadow({ mode: 'open' });
|
|
137190
|
+
document.body.appendChild(host);
|
|
137191
|
+
}
|
|
137192
|
+
class HTMLResult {
|
|
137193
|
+
constructor(shadowRoot) {
|
|
137194
|
+
this.shadowRoot = shadowRoot;
|
|
137195
|
+
}
|
|
137196
|
+
get elements() {
|
|
137197
|
+
return Array.from(this.shadowRoot.childNodes);
|
|
137198
|
+
}
|
|
137199
|
+
dispose() {
|
|
137200
|
+
this.shadowRoot.textContent = '';
|
|
137201
|
+
}
|
|
137168
137202
|
}
|
|
137169
137203
|
|
|
137170
137204
|
;// CONCATENATED MODULE: ./src/common/commands/text/clipboard-commands.ts
|
|
@@ -137385,9 +137419,11 @@ class PasteSelectionCommand extends ClipboardCommand {
|
|
|
137385
137419
|
}
|
|
137386
137420
|
}
|
|
137387
137421
|
changeModel() {
|
|
137388
|
-
|
|
137389
|
-
|
|
137390
|
-
this.control.importHtml(elements);
|
|
137422
|
+
if (!this.control.isLoadingPictureFromClipboard) {
|
|
137423
|
+
const result = getHTMLElementsFromHtml(this.control.inputController.getEditableDocumentContent());
|
|
137424
|
+
this.control.importHtml(result.elements);
|
|
137425
|
+
result.dispose();
|
|
137426
|
+
}
|
|
137391
137427
|
}
|
|
137392
137428
|
isEnabled() {
|
|
137393
137429
|
return super.isEnabled() && ControlOptions.isEnabled(this.control.modelManager.richOptions.control.paste);
|
|
@@ -137507,8 +137543,9 @@ class ClipboardHelper {
|
|
|
137507
137543
|
return new Promise((resolve, reject) => {
|
|
137508
137544
|
try {
|
|
137509
137545
|
this.control.beginUpdate();
|
|
137510
|
-
const
|
|
137511
|
-
this.control.importHtml(elements);
|
|
137546
|
+
const result = getHTMLElementsFromHtml(html);
|
|
137547
|
+
this.control.importHtml(result.elements);
|
|
137548
|
+
result.dispose();
|
|
137512
137549
|
this.control.endUpdate();
|
|
137513
137550
|
resolve();
|
|
137514
137551
|
}
|
|
@@ -137581,13 +137618,13 @@ class InsertHtmlCommand extends CommandBase {
|
|
|
137581
137618
|
return new SimpleCommandState(this.isEnabled());
|
|
137582
137619
|
}
|
|
137583
137620
|
executeCore(_state, options) {
|
|
137584
|
-
const
|
|
137621
|
+
const result = getHTMLElementsFromHtml(options.param);
|
|
137585
137622
|
this.history.addTransaction(() => {
|
|
137586
137623
|
const charPropsBundle = this.inputPosition.charPropsBundle;
|
|
137587
137624
|
this.modelManipulator.range.removeInterval(this.selection.subDocumentInterval, true, false);
|
|
137588
|
-
new HtmlImporter(this.control.modelManager, this.control.measurer, this.selection.intervalsInfo.subDocPosition, elements, charPropsBundle).import();
|
|
137625
|
+
new HtmlImporter(this.control.modelManager, this.control.measurer, this.selection.intervalsInfo.subDocPosition, result.elements, charPropsBundle).import();
|
|
137589
137626
|
});
|
|
137590
|
-
|
|
137627
|
+
result.dispose();
|
|
137591
137628
|
return true;
|
|
137592
137629
|
}
|
|
137593
137630
|
}
|
|
@@ -142840,8 +142877,8 @@ class DialogManager {
|
|
|
142840
142877
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/localization/cldr-data/first_day_of_week_data.js
|
|
142841
142878
|
/**
|
|
142842
142879
|
* DevExtreme (esm/__internal/core/localization/cldr-data/first_day_of_week_data.js)
|
|
142843
|
-
* Version: 25.1.
|
|
142844
|
-
* Build date:
|
|
142880
|
+
* Version: 25.1.14
|
|
142881
|
+
* Build date: Fri Sep 11 2026
|
|
142845
142882
|
*
|
|
142846
142883
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
142847
142884
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -143040,8 +143077,8 @@ class DialogManager {
|
|
|
143040
143077
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/localization/cldr-data/parent_locales.js
|
|
143041
143078
|
/**
|
|
143042
143079
|
* DevExtreme (esm/__internal/core/localization/cldr-data/parent_locales.js)
|
|
143043
|
-
* Version: 25.1.
|
|
143044
|
-
* Build date:
|
|
143080
|
+
* Version: 25.1.14
|
|
143081
|
+
* Build date: Fri Sep 11 2026
|
|
143045
143082
|
*
|
|
143046
143083
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
143047
143084
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -143226,8 +143263,8 @@ class DialogManager {
|
|
|
143226
143263
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/localization/parentLocale.js
|
|
143227
143264
|
/**
|
|
143228
143265
|
* DevExtreme (esm/__internal/core/localization/parentLocale.js)
|
|
143229
|
-
* Version: 25.1.
|
|
143230
|
-
* Build date:
|
|
143266
|
+
* Version: 25.1.14
|
|
143267
|
+
* Build date: Fri Sep 11 2026
|
|
143231
143268
|
*
|
|
143232
143269
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
143233
143270
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -143244,8 +143281,8 @@ const PARENT_LOCALE_SEPARATOR = "-";
|
|
|
143244
143281
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_type.js
|
|
143245
143282
|
/**
|
|
143246
143283
|
* DevExtreme (esm/__internal/core/utils/m_type.js)
|
|
143247
|
-
* Version: 25.1.
|
|
143248
|
-
* Build date:
|
|
143284
|
+
* Version: 25.1.14
|
|
143285
|
+
* Build date: Fri Sep 11 2026
|
|
143249
143286
|
*
|
|
143250
143287
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
143251
143288
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -143347,8 +143384,8 @@ const isEvent = function(object) {
|
|
|
143347
143384
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/type.js
|
|
143348
143385
|
/**
|
|
143349
143386
|
* DevExtreme (esm/core/utils/type.js)
|
|
143350
|
-
* Version: 25.1.
|
|
143351
|
-
* Build date:
|
|
143387
|
+
* Version: 25.1.14
|
|
143388
|
+
* Build date: Fri Sep 11 2026
|
|
143352
143389
|
*
|
|
143353
143390
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
143354
143391
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -143358,8 +143395,8 @@ const isEvent = function(object) {
|
|
|
143358
143395
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_extend.js
|
|
143359
143396
|
/**
|
|
143360
143397
|
* DevExtreme (esm/__internal/core/utils/m_extend.js)
|
|
143361
|
-
* Version: 25.1.
|
|
143362
|
-
* Build date:
|
|
143398
|
+
* Version: 25.1.14
|
|
143399
|
+
* Build date: Fri Sep 11 2026
|
|
143363
143400
|
*
|
|
143364
143401
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
143365
143402
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -143417,8 +143454,8 @@ const extend = function(target) {
|
|
|
143417
143454
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/extend.js
|
|
143418
143455
|
/**
|
|
143419
143456
|
* DevExtreme (esm/core/utils/extend.js)
|
|
143420
|
-
* Version: 25.1.
|
|
143421
|
-
* Build date:
|
|
143457
|
+
* Version: 25.1.14
|
|
143458
|
+
* Build date: Fri Sep 11 2026
|
|
143422
143459
|
*
|
|
143423
143460
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
143424
143461
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -143428,8 +143465,8 @@ const extend = function(target) {
|
|
|
143428
143465
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_string.js
|
|
143429
143466
|
/**
|
|
143430
143467
|
* DevExtreme (esm/__internal/core/utils/m_string.js)
|
|
143431
|
-
* Version: 25.1.
|
|
143432
|
-
* Build date:
|
|
143468
|
+
* Version: 25.1.14
|
|
143469
|
+
* Build date: Fri Sep 11 2026
|
|
143433
143470
|
*
|
|
143434
143471
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
143435
143472
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -143504,8 +143541,8 @@ const isEmpty = function() {
|
|
|
143504
143541
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/string.js
|
|
143505
143542
|
/**
|
|
143506
143543
|
* DevExtreme (esm/core/utils/string.js)
|
|
143507
|
-
* Version: 25.1.
|
|
143508
|
-
* Build date:
|
|
143544
|
+
* Version: 25.1.14
|
|
143545
|
+
* Build date: Fri Sep 11 2026
|
|
143509
143546
|
*
|
|
143510
143547
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
143511
143548
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -143515,20 +143552,20 @@ const isEmpty = function() {
|
|
|
143515
143552
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/version.js
|
|
143516
143553
|
/**
|
|
143517
143554
|
* DevExtreme (esm/core/version.js)
|
|
143518
|
-
* Version: 25.1.
|
|
143519
|
-
* Build date:
|
|
143555
|
+
* Version: 25.1.14
|
|
143556
|
+
* Build date: Fri Sep 11 2026
|
|
143520
143557
|
*
|
|
143521
143558
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
143522
143559
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
143523
143560
|
*/
|
|
143524
|
-
const version = "25.1.
|
|
143525
|
-
const fullVersion = "25.1.
|
|
143561
|
+
const version = "25.1.14";
|
|
143562
|
+
const fullVersion = "25.1.14";
|
|
143526
143563
|
|
|
143527
143564
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_console.js
|
|
143528
143565
|
/**
|
|
143529
143566
|
* DevExtreme (esm/__internal/core/utils/m_console.js)
|
|
143530
|
-
* Version: 25.1.
|
|
143531
|
-
* Build date:
|
|
143567
|
+
* Version: 25.1.14
|
|
143568
|
+
* Build date: Fri Sep 11 2026
|
|
143532
143569
|
*
|
|
143533
143570
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
143534
143571
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -143568,8 +143605,8 @@ const debug = function() {
|
|
|
143568
143605
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_error.js
|
|
143569
143606
|
/**
|
|
143570
143607
|
* DevExtreme (esm/__internal/core/utils/m_error.js)
|
|
143571
|
-
* Version: 25.1.
|
|
143572
|
-
* Build date:
|
|
143608
|
+
* Version: 25.1.14
|
|
143609
|
+
* Build date: Fri Sep 11 2026
|
|
143573
143610
|
*
|
|
143574
143611
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
143575
143612
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -143640,8 +143677,8 @@ function error(baseErrors, errors) {
|
|
|
143640
143677
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/error.js
|
|
143641
143678
|
/**
|
|
143642
143679
|
* DevExtreme (esm/core/utils/error.js)
|
|
143643
|
-
* Version: 25.1.
|
|
143644
|
-
* Build date:
|
|
143680
|
+
* Version: 25.1.14
|
|
143681
|
+
* Build date: Fri Sep 11 2026
|
|
143645
143682
|
*
|
|
143646
143683
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
143647
143684
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -143652,8 +143689,8 @@ function error(baseErrors, errors) {
|
|
|
143652
143689
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_errors.js
|
|
143653
143690
|
/**
|
|
143654
143691
|
* DevExtreme (esm/__internal/core/m_errors.js)
|
|
143655
|
-
* Version: 25.1.
|
|
143656
|
-
* Build date:
|
|
143692
|
+
* Version: 25.1.14
|
|
143693
|
+
* Build date: Fri Sep 11 2026
|
|
143657
143694
|
*
|
|
143658
143695
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
143659
143696
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -143722,8 +143759,8 @@ function error(baseErrors, errors) {
|
|
|
143722
143759
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/errors.js
|
|
143723
143760
|
/**
|
|
143724
143761
|
* DevExtreme (esm/core/errors.js)
|
|
143725
|
-
* Version: 25.1.
|
|
143726
|
-
* Build date:
|
|
143762
|
+
* Version: 25.1.14
|
|
143763
|
+
* Build date: Fri Sep 11 2026
|
|
143727
143764
|
*
|
|
143728
143765
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
143729
143766
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -143734,8 +143771,8 @@ function error(baseErrors, errors) {
|
|
|
143734
143771
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_class.js
|
|
143735
143772
|
/**
|
|
143736
143773
|
* DevExtreme (esm/__internal/core/m_class.js)
|
|
143737
|
-
* Version: 25.1.
|
|
143738
|
-
* Build date:
|
|
143774
|
+
* Version: 25.1.14
|
|
143775
|
+
* Build date: Fri Sep 11 2026
|
|
143739
143776
|
*
|
|
143740
143777
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
143741
143778
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -143868,8 +143905,8 @@ classImpl.abstract = m_class_abstract;
|
|
|
143868
143905
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/class.js
|
|
143869
143906
|
/**
|
|
143870
143907
|
* DevExtreme (esm/core/class.js)
|
|
143871
|
-
* Version: 25.1.
|
|
143872
|
-
* Build date:
|
|
143908
|
+
* Version: 25.1.14
|
|
143909
|
+
* Build date: Fri Sep 11 2026
|
|
143873
143910
|
*
|
|
143874
143911
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
143875
143912
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -143880,8 +143917,8 @@ classImpl.abstract = m_class_abstract;
|
|
|
143880
143917
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_iterator.js
|
|
143881
143918
|
/**
|
|
143882
143919
|
* DevExtreme (esm/__internal/core/utils/m_iterator.js)
|
|
143883
|
-
* Version: 25.1.
|
|
143884
|
-
* Build date:
|
|
143920
|
+
* Version: 25.1.14
|
|
143921
|
+
* Build date: Fri Sep 11 2026
|
|
143885
143922
|
*
|
|
143886
143923
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
143887
143924
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -143930,8 +143967,8 @@ const reverseEach = (array, callback) => {
|
|
|
143930
143967
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_dependency_injector.js
|
|
143931
143968
|
/**
|
|
143932
143969
|
* DevExtreme (esm/__internal/core/utils/m_dependency_injector.js)
|
|
143933
|
-
* Version: 25.1.
|
|
143934
|
-
* Build date:
|
|
143970
|
+
* Version: 25.1.14
|
|
143971
|
+
* Build date: Fri Sep 11 2026
|
|
143935
143972
|
*
|
|
143936
143973
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
143937
143974
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -143980,8 +144017,8 @@ function injector(object) {
|
|
|
143980
144017
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/localization/core.js
|
|
143981
144018
|
/**
|
|
143982
144019
|
* DevExtreme (esm/__internal/core/localization/core.js)
|
|
143983
|
-
* Version: 25.1.
|
|
143984
|
-
* Build date:
|
|
144020
|
+
* Version: 25.1.14
|
|
144021
|
+
* Build date: Fri Sep 11 2026
|
|
143985
144022
|
*
|
|
143986
144023
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
143987
144024
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -144022,8 +144059,8 @@ const DEFAULT_LOCALE = "en";
|
|
|
144022
144059
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/localization/default_date_names.js
|
|
144023
144060
|
/**
|
|
144024
144061
|
* DevExtreme (esm/__internal/core/localization/default_date_names.js)
|
|
144025
|
-
* Version: 25.1.
|
|
144026
|
-
* Build date:
|
|
144062
|
+
* Version: 25.1.14
|
|
144063
|
+
* Build date: Fri Sep 11 2026
|
|
144027
144064
|
*
|
|
144028
144065
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
144029
144066
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -144051,8 +144088,8 @@ const cutCaptions = (captions, format) => {
|
|
|
144051
144088
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/localization/intl/date.js
|
|
144052
144089
|
/**
|
|
144053
144090
|
* DevExtreme (esm/__internal/core/localization/intl/date.js)
|
|
144054
|
-
* Version: 25.1.
|
|
144055
|
-
* Build date:
|
|
144091
|
+
* Version: 25.1.14
|
|
144092
|
+
* Build date: Fri Sep 11 2026
|
|
144056
144093
|
*
|
|
144057
144094
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
144058
144095
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -144367,8 +144404,8 @@ const monthNameStrategies = {
|
|
|
144367
144404
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_config.js
|
|
144368
144405
|
/**
|
|
144369
144406
|
* DevExtreme (esm/__internal/core/m_config.js)
|
|
144370
|
-
* Version: 25.1.
|
|
144371
|
-
* Build date:
|
|
144407
|
+
* Version: 25.1.14
|
|
144408
|
+
* Build date: Fri Sep 11 2026
|
|
144372
144409
|
*
|
|
144373
144410
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
144374
144411
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -144445,8 +144482,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
|
144445
144482
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/config.js
|
|
144446
144483
|
/**
|
|
144447
144484
|
* DevExtreme (esm/common/config.js)
|
|
144448
|
-
* Version: 25.1.
|
|
144449
|
-
* Build date:
|
|
144485
|
+
* Version: 25.1.14
|
|
144486
|
+
* Build date: Fri Sep 11 2026
|
|
144450
144487
|
*
|
|
144451
144488
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
144452
144489
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -144457,8 +144494,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
|
144457
144494
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_guid.js
|
|
144458
144495
|
/**
|
|
144459
144496
|
* DevExtreme (esm/__internal/core/m_guid.js)
|
|
144460
|
-
* Version: 25.1.
|
|
144461
|
-
* Build date:
|
|
144497
|
+
* Version: 25.1.14
|
|
144498
|
+
* Build date: Fri Sep 11 2026
|
|
144462
144499
|
*
|
|
144463
144500
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
144464
144501
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -144500,8 +144537,8 @@ const Guid = core_class.inherit({
|
|
|
144500
144537
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/guid.js
|
|
144501
144538
|
/**
|
|
144502
144539
|
* DevExtreme (esm/common/guid.js)
|
|
144503
|
-
* Version: 25.1.
|
|
144504
|
-
* Build date:
|
|
144540
|
+
* Version: 25.1.14
|
|
144541
|
+
* Build date: Fri Sep 11 2026
|
|
144505
144542
|
*
|
|
144506
144543
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
144507
144544
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -144512,8 +144549,8 @@ const Guid = core_class.inherit({
|
|
|
144512
144549
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/templates/m_template_engine_registry.js
|
|
144513
144550
|
/**
|
|
144514
144551
|
* DevExtreme (esm/__internal/core/templates/m_template_engine_registry.js)
|
|
144515
|
-
* Version: 25.1.
|
|
144516
|
-
* Build date:
|
|
144552
|
+
* Version: 25.1.14
|
|
144553
|
+
* Build date: Fri Sep 11 2026
|
|
144517
144554
|
*
|
|
144518
144555
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
144519
144556
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -144542,8 +144579,8 @@ function getCurrentTemplateEngine() {
|
|
|
144542
144579
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/templates/template_engine_registry.js
|
|
144543
144580
|
/**
|
|
144544
144581
|
* DevExtreme (esm/core/templates/template_engine_registry.js)
|
|
144545
|
-
* Version: 25.1.
|
|
144546
|
-
* Build date:
|
|
144582
|
+
* Version: 25.1.14
|
|
144583
|
+
* Build date: Fri Sep 11 2026
|
|
144547
144584
|
*
|
|
144548
144585
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
144549
144586
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -144553,8 +144590,8 @@ function getCurrentTemplateEngine() {
|
|
|
144553
144590
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_set_template_engine.js
|
|
144554
144591
|
/**
|
|
144555
144592
|
* DevExtreme (esm/__internal/core/m_set_template_engine.js)
|
|
144556
|
-
* Version: 25.1.
|
|
144557
|
-
* Build date:
|
|
144593
|
+
* Version: 25.1.14
|
|
144594
|
+
* Build date: Fri Sep 11 2026
|
|
144558
144595
|
*
|
|
144559
144596
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
144560
144597
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -144564,8 +144601,8 @@ function getCurrentTemplateEngine() {
|
|
|
144564
144601
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/set_template_engine.js
|
|
144565
144602
|
/**
|
|
144566
144603
|
* DevExtreme (esm/common/set_template_engine.js)
|
|
144567
|
-
* Version: 25.1.
|
|
144568
|
-
* Build date:
|
|
144604
|
+
* Version: 25.1.14
|
|
144605
|
+
* Build date: Fri Sep 11 2026
|
|
144569
144606
|
*
|
|
144570
144607
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
144571
144608
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -144576,8 +144613,8 @@ function getCurrentTemplateEngine() {
|
|
|
144576
144613
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common.js
|
|
144577
144614
|
/**
|
|
144578
144615
|
* DevExtreme (esm/common.js)
|
|
144579
|
-
* Version: 25.1.
|
|
144580
|
-
* Build date:
|
|
144616
|
+
* Version: 25.1.14
|
|
144617
|
+
* Build date: Fri Sep 11 2026
|
|
144581
144618
|
*
|
|
144582
144619
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
144583
144620
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -144590,8 +144627,8 @@ function getCurrentTemplateEngine() {
|
|
|
144590
144627
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/config.js
|
|
144591
144628
|
/**
|
|
144592
144629
|
* DevExtreme (esm/core/config.js)
|
|
144593
|
-
* Version: 25.1.
|
|
144594
|
-
* Build date:
|
|
144630
|
+
* Version: 25.1.14
|
|
144631
|
+
* Build date: Fri Sep 11 2026
|
|
144595
144632
|
*
|
|
144596
144633
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
144597
144634
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -144602,8 +144639,8 @@ function getCurrentTemplateEngine() {
|
|
|
144602
144639
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/localization/currency.js
|
|
144603
144640
|
/**
|
|
144604
144641
|
* DevExtreme (esm/__internal/core/localization/currency.js)
|
|
144605
|
-
* Version: 25.1.
|
|
144606
|
-
* Build date:
|
|
144642
|
+
* Version: 25.1.14
|
|
144643
|
+
* Build date: Fri Sep 11 2026
|
|
144607
144644
|
*
|
|
144608
144645
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
144609
144646
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -144630,8 +144667,8 @@ function getCurrentTemplateEngine() {
|
|
|
144630
144667
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/localization/cldr-data/accounting_formats.js
|
|
144631
144668
|
/**
|
|
144632
144669
|
* DevExtreme (esm/__internal/core/localization/cldr-data/accounting_formats.js)
|
|
144633
|
-
* Version: 25.1.
|
|
144634
|
-
* Build date:
|
|
144670
|
+
* Version: 25.1.14
|
|
144671
|
+
* Build date: Fri Sep 11 2026
|
|
144635
144672
|
*
|
|
144636
144673
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
144637
144674
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -145217,8 +145254,8 @@ function getCurrentTemplateEngine() {
|
|
|
145217
145254
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/localization/open_xml_currency_format.js
|
|
145218
145255
|
/**
|
|
145219
145256
|
* DevExtreme (esm/__internal/core/localization/open_xml_currency_format.js)
|
|
145220
|
-
* Version: 25.1.
|
|
145221
|
-
* Build date:
|
|
145257
|
+
* Version: 25.1.14
|
|
145258
|
+
* Build date: Fri Sep 11 2026
|
|
145222
145259
|
*
|
|
145223
145260
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
145224
145261
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -145260,8 +145297,8 @@ function getCurrentTemplateEngine() {
|
|
|
145260
145297
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/localization/intl/number.js
|
|
145261
145298
|
/**
|
|
145262
145299
|
* DevExtreme (esm/__internal/core/localization/intl/number.js)
|
|
145263
|
-
* Version: 25.1.
|
|
145264
|
-
* Build date:
|
|
145300
|
+
* Version: 25.1.14
|
|
145301
|
+
* Build date: Fri Sep 11 2026
|
|
145265
145302
|
*
|
|
145266
145303
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
145267
145304
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -145379,8 +145416,8 @@ const getCurrencyFormatter = currency => new Intl.NumberFormat(core.locale(), {
|
|
|
145379
145416
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_math.js
|
|
145380
145417
|
/**
|
|
145381
145418
|
* DevExtreme (esm/__internal/core/utils/m_math.js)
|
|
145382
|
-
* Version: 25.1.
|
|
145383
|
-
* Build date:
|
|
145419
|
+
* Version: 25.1.14
|
|
145420
|
+
* Build date: Fri Sep 11 2026
|
|
145384
145421
|
*
|
|
145385
145422
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
145386
145423
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -145558,8 +145595,8 @@ function roundFloatPart(value) {
|
|
|
145558
145595
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/localization/utils.js
|
|
145559
145596
|
/**
|
|
145560
145597
|
* DevExtreme (esm/__internal/core/localization/utils.js)
|
|
145561
|
-
* Version: 25.1.
|
|
145562
|
-
* Build date:
|
|
145598
|
+
* Version: 25.1.14
|
|
145599
|
+
* Build date: Fri Sep 11 2026
|
|
145563
145600
|
*
|
|
145564
145601
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
145565
145602
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -145586,8 +145623,8 @@ function toFixed(value, precision) {
|
|
|
145586
145623
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/localization/ldml/number.js
|
|
145587
145624
|
/**
|
|
145588
145625
|
* DevExtreme (esm/__internal/core/localization/ldml/number.js)
|
|
145589
|
-
* Version: 25.1.
|
|
145590
|
-
* Build date:
|
|
145626
|
+
* Version: 25.1.14
|
|
145627
|
+
* Build date: Fri Sep 11 2026
|
|
145591
145628
|
*
|
|
145592
145629
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
145593
145630
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -145827,8 +145864,8 @@ function getFormat(formatter) {
|
|
|
145827
145864
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/guid.js
|
|
145828
145865
|
/**
|
|
145829
145866
|
* DevExtreme (esm/core/guid.js)
|
|
145830
|
-
* Version: 25.1.
|
|
145831
|
-
* Build date:
|
|
145867
|
+
* Version: 25.1.14
|
|
145868
|
+
* Build date: Fri Sep 11 2026
|
|
145832
145869
|
*
|
|
145833
145870
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
145834
145871
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -145839,8 +145876,8 @@ function getFormat(formatter) {
|
|
|
145839
145876
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/console.js
|
|
145840
145877
|
/**
|
|
145841
145878
|
* DevExtreme (esm/core/utils/console.js)
|
|
145842
|
-
* Version: 25.1.
|
|
145843
|
-
* Build date:
|
|
145879
|
+
* Version: 25.1.14
|
|
145880
|
+
* Build date: Fri Sep 11 2026
|
|
145844
145881
|
*
|
|
145845
145882
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
145846
145883
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -145850,8 +145887,8 @@ function getFormat(formatter) {
|
|
|
145850
145887
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/dependency_injector.js
|
|
145851
145888
|
/**
|
|
145852
145889
|
* DevExtreme (esm/core/utils/dependency_injector.js)
|
|
145853
|
-
* Version: 25.1.
|
|
145854
|
-
* Build date:
|
|
145890
|
+
* Version: 25.1.14
|
|
145891
|
+
* Build date: Fri Sep 11 2026
|
|
145855
145892
|
*
|
|
145856
145893
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
145857
145894
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -145862,8 +145899,8 @@ function getFormat(formatter) {
|
|
|
145862
145899
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_variable_wrapper.js
|
|
145863
145900
|
/**
|
|
145864
145901
|
* DevExtreme (esm/__internal/core/utils/m_variable_wrapper.js)
|
|
145865
|
-
* Version: 25.1.
|
|
145866
|
-
* Build date:
|
|
145902
|
+
* Version: 25.1.14
|
|
145903
|
+
* Build date: Fri Sep 11 2026
|
|
145867
145904
|
*
|
|
145868
145905
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
145869
145906
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -145892,8 +145929,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
|
145892
145929
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/variable_wrapper.js
|
|
145893
145930
|
/**
|
|
145894
145931
|
* DevExtreme (esm/core/utils/variable_wrapper.js)
|
|
145895
|
-
* Version: 25.1.
|
|
145896
|
-
* Build date:
|
|
145932
|
+
* Version: 25.1.14
|
|
145933
|
+
* Build date: Fri Sep 11 2026
|
|
145897
145934
|
*
|
|
145898
145935
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
145899
145936
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -145904,8 +145941,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
|
145904
145941
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_object.js
|
|
145905
145942
|
/**
|
|
145906
145943
|
* DevExtreme (esm/__internal/core/utils/m_object.js)
|
|
145907
|
-
* Version: 25.1.
|
|
145908
|
-
* Build date:
|
|
145944
|
+
* Version: 25.1.14
|
|
145945
|
+
* Build date: Fri Sep 11 2026
|
|
145909
145946
|
*
|
|
145910
145947
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
145911
145948
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -146017,8 +146054,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
|
146017
146054
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/object.js
|
|
146018
146055
|
/**
|
|
146019
146056
|
* DevExtreme (esm/core/utils/object.js)
|
|
146020
|
-
* Version: 25.1.
|
|
146021
|
-
* Build date:
|
|
146057
|
+
* Version: 25.1.14
|
|
146058
|
+
* Build date: Fri Sep 11 2026
|
|
146022
146059
|
*
|
|
146023
146060
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
146024
146061
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -146028,8 +146065,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
|
146028
146065
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_data.js
|
|
146029
146066
|
/**
|
|
146030
146067
|
* DevExtreme (esm/__internal/core/utils/m_data.js)
|
|
146031
|
-
* Version: 25.1.
|
|
146032
|
-
* Build date:
|
|
146068
|
+
* Version: 25.1.14
|
|
146069
|
+
* Build date: Fri Sep 11 2026
|
|
146033
146070
|
*
|
|
146034
146071
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
146035
146072
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -146256,8 +146293,8 @@ const toComparable = function(value, caseSensitive) {
|
|
|
146256
146293
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/data.js
|
|
146257
146294
|
/**
|
|
146258
146295
|
* DevExtreme (esm/core/utils/data.js)
|
|
146259
|
-
* Version: 25.1.
|
|
146260
|
-
* Build date:
|
|
146296
|
+
* Version: 25.1.14
|
|
146297
|
+
* Build date: Fri Sep 11 2026
|
|
146261
146298
|
*
|
|
146262
146299
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
146263
146300
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -146267,8 +146304,8 @@ const toComparable = function(value, caseSensitive) {
|
|
|
146267
146304
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_callbacks.js
|
|
146268
146305
|
/**
|
|
146269
146306
|
* DevExtreme (esm/__internal/core/utils/m_callbacks.js)
|
|
146270
|
-
* Version: 25.1.
|
|
146271
|
-
* Build date:
|
|
146307
|
+
* Version: 25.1.14
|
|
146308
|
+
* Build date: Fri Sep 11 2026
|
|
146272
146309
|
*
|
|
146273
146310
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
146274
146311
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -146363,8 +146400,8 @@ const Callbacks = function(options) {
|
|
|
146363
146400
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/callbacks.js
|
|
146364
146401
|
/**
|
|
146365
146402
|
* DevExtreme (esm/core/utils/callbacks.js)
|
|
146366
|
-
* Version: 25.1.
|
|
146367
|
-
* Build date:
|
|
146403
|
+
* Version: 25.1.14
|
|
146404
|
+
* Build date: Fri Sep 11 2026
|
|
146368
146405
|
*
|
|
146369
146406
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
146370
146407
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -146375,8 +146412,8 @@ const Callbacks = function(options) {
|
|
|
146375
146412
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_deferred.js
|
|
146376
146413
|
/**
|
|
146377
146414
|
* DevExtreme (esm/__internal/core/utils/m_deferred.js)
|
|
146378
|
-
* Version: 25.1.
|
|
146379
|
-
* Build date:
|
|
146415
|
+
* Version: 25.1.14
|
|
146416
|
+
* Build date: Fri Sep 11 2026
|
|
146380
146417
|
*
|
|
146381
146418
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
146382
146419
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -146541,8 +146578,8 @@ function when() {
|
|
|
146541
146578
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/deferred.js
|
|
146542
146579
|
/**
|
|
146543
146580
|
* DevExtreme (esm/core/utils/deferred.js)
|
|
146544
|
-
* Version: 25.1.
|
|
146545
|
-
* Build date:
|
|
146581
|
+
* Version: 25.1.14
|
|
146582
|
+
* Build date: Fri Sep 11 2026
|
|
146546
146583
|
*
|
|
146547
146584
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
146548
146585
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -146552,8 +146589,8 @@ function when() {
|
|
|
146552
146589
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_common.js
|
|
146553
146590
|
/**
|
|
146554
146591
|
* DevExtreme (esm/__internal/core/utils/m_common.js)
|
|
146555
|
-
* Version: 25.1.
|
|
146556
|
-
* Build date:
|
|
146592
|
+
* Version: 25.1.14
|
|
146593
|
+
* Build date: Fri Sep 11 2026
|
|
146557
146594
|
*
|
|
146558
146595
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
146559
146596
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -146847,8 +146884,8 @@ const equalByValue = function(value1, value2) {
|
|
|
146847
146884
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/localization/number.js
|
|
146848
146885
|
/**
|
|
146849
146886
|
* DevExtreme (esm/__internal/core/localization/number.js)
|
|
146850
|
-
* Version: 25.1.
|
|
146851
|
-
* Build date:
|
|
146887
|
+
* Version: 25.1.14
|
|
146888
|
+
* Build date: Fri Sep 11 2026
|
|
146852
146889
|
*
|
|
146853
146890
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
146854
146891
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -147157,8 +147194,8 @@ if (hasIntl) {
|
|
|
147157
147194
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/localization/ldml/date.format.js
|
|
147158
147195
|
/**
|
|
147159
147196
|
* DevExtreme (esm/__internal/core/localization/ldml/date.format.js)
|
|
147160
|
-
* Version: 25.1.
|
|
147161
|
-
* Build date:
|
|
147197
|
+
* Version: 25.1.14
|
|
147198
|
+
* Build date: Fri Sep 11 2026
|
|
147162
147199
|
*
|
|
147163
147200
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
147164
147201
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -147351,8 +147388,8 @@ const date_format_getFormat = formatter => {
|
|
|
147351
147388
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/localization/ldml/date.formatter.js
|
|
147352
147389
|
/**
|
|
147353
147390
|
* DevExtreme (esm/__internal/core/localization/ldml/date.formatter.js)
|
|
147354
|
-
* Version: 25.1.
|
|
147355
|
-
* Build date:
|
|
147391
|
+
* Version: 25.1.14
|
|
147392
|
+
* Build date: Fri Sep 11 2026
|
|
147356
147393
|
*
|
|
147357
147394
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
147358
147395
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -147480,8 +147517,8 @@ const date_formatter_getFormatter = (format, dateParts) => date => {
|
|
|
147480
147517
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/localization/ldml/date.parser.js
|
|
147481
147518
|
/**
|
|
147482
147519
|
* DevExtreme (esm/__internal/core/localization/ldml/date.parser.js)
|
|
147483
|
-
* Version: 25.1.
|
|
147484
|
-
* Build date:
|
|
147520
|
+
* Version: 25.1.14
|
|
147521
|
+
* Build date: Fri Sep 11 2026
|
|
147485
147522
|
*
|
|
147486
147523
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
147487
147524
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -147759,8 +147796,8 @@ const getParser = (format, dateParts) => {
|
|
|
147759
147796
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/localization/date.js
|
|
147760
147797
|
/**
|
|
147761
147798
|
* DevExtreme (esm/__internal/core/localization/date.js)
|
|
147762
|
-
* Version: 25.1.
|
|
147763
|
-
* Build date:
|
|
147799
|
+
* Version: 25.1.14
|
|
147800
|
+
* Build date: Fri Sep 11 2026
|
|
147764
147801
|
*
|
|
147765
147802
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
147766
147803
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -147923,8 +147960,8 @@ if (date_hasIntl) {
|
|
|
147923
147960
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/date.js
|
|
147924
147961
|
/**
|
|
147925
147962
|
* DevExtreme (esm/common/core/localization/date.js)
|
|
147926
|
-
* Version: 25.1.
|
|
147927
|
-
* Build date:
|
|
147963
|
+
* Version: 25.1.14
|
|
147964
|
+
* Build date: Fri Sep 11 2026
|
|
147928
147965
|
*
|
|
147929
147966
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
147930
147967
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -147935,8 +147972,8 @@ if (date_hasIntl) {
|
|
|
147935
147972
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/number.js
|
|
147936
147973
|
/**
|
|
147937
147974
|
* DevExtreme (esm/common/core/localization/number.js)
|
|
147938
|
-
* Version: 25.1.
|
|
147939
|
-
* Build date:
|
|
147975
|
+
* Version: 25.1.14
|
|
147976
|
+
* Build date: Fri Sep 11 2026
|
|
147940
147977
|
*
|
|
147941
147978
|
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
|
|
147942
147979
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
|
@@ -149021,7 +149058,7 @@ class ClientRichEdit {
|
|
|
149021
149058
|
this.contextMenuSettings = settings.contextMenuSettings;
|
|
149022
149059
|
this.fullScreenHelper = new FullScreenHelper(element);
|
|
149023
149060
|
if (true)
|
|
149024
|
-
external_DevExpress_config_default()(JSON.parse(atob('
|
|
149061
|
+
external_DevExpress_config_default()(JSON.parse(atob('eyJsaWNlbnNlS2V5IjoiZXdvZ0lDSm1iM0p0WVhRaU9pQXhMQW9nSUNKcGJuUmxjbTVoYkZWellXZGxTV1FpT2lBaWRubDViekJaZUhseGRHWjVUakJGYjNsR2RWZDRjaUlLZlE9PS5vcDA0VmtJbFI3VnUvbit4WVVPZENPOGhNUmJvaE1TZGJqVXBIdDR1TWk1T2V5NHB1b0ZJcmhjTkdUWk5RcmJyeHRMSXd6Wk9ZckJ1UTU2aEdkc05QaWZTcnQ2R3YvL0xjMXE4VFNrLzNDMjFVTHJ2REVSWVZiYnRhMUZkRmczSXFIeVdmdz09In0=')));
|
|
149025
149062
|
this.prepareElement(element, settings);
|
|
149026
149063
|
this.initDefaultFontsAndStyles();
|
|
149027
149064
|
this.initBars(settings.ribbon, settings.fonts);
|