devexpress-richedit 25.1.3 → 25.1.4-build-25191-0102
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/gulpfile.js +1 -1
- package/bin/index-custom.js +1 -1
- package/bin/localization-builder.js +1 -1
- package/bin/nspell-index.js +1 -1
- package/bin/nspell.webpack.config.js +1 -1
- package/bin/webpack-externals.js +1 -1
- package/bin/webpack.config.js +1 -1
- package/dist/dx.richedit.d.ts +1 -1
- package/dist/dx.richedit.js +253 -218
- package/dist/dx.richedit.min.js +2 -2
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/lib/client/commands/mail-merge-command.js +3 -2
- package/lib/client/commands/open-document-command.js +4 -0
- package/lib/client/formats/docx/export/exporters/relations/base.js +2 -2
- package/lib/client/formats/docx/import/destination/numbering/numberings-destination.js +1 -1
- package/lib/client/formats/docx/import/destination/runs/text-destination.js +1 -1
- package/lib/client/model-api/images/image-enums.js +1 -0
- package/lib/client/model-api/table/enums.js +4 -0
- package/lib/client/public/commands/enum.js +1 -0
- package/lib/client/public/ribbon/item-ids.js +1 -0
- package/lib/client/public/rich-edit.d.ts +5 -5
- package/lib/client/ribbon/toolbar-items/index.d.ts +1 -1
- package/lib/client/ribbon/toolbar-items/toolbar-item-template-creators/index.d.ts +7 -7
- package/lib/common/canvas/canvas-scroll-manager.js +1 -1
- package/lib/common/commands/dialogs/dialog-layout-options-command.js +0 -3
- package/lib/common/commands/floating-objects/floating-object-drag-drop-change-position-command.js +0 -3
- package/lib/common/commands/layout/toggle-show-hidden-symbols-command.js +0 -3
- package/lib/common/formats/html/export/html-export.d.ts +8 -0
- package/lib/common/formats/html/export/html-export.js +49 -26
- package/lib/common/formats/html/import/containers/runs.d.ts +2 -1
- package/lib/common/formats/html/import/containers/runs.js +2 -1
- package/lib/common/formats/html/import/html-importer.d.ts +0 -1
- package/lib/common/formats/html/import/html-importer.js +2 -3
- package/lib/common/formats/html/import/html-model-inserter.js +4 -0
- package/lib/common/formats/html/import/importers/list-base.js +2 -1
- package/lib/common/formats/rtf/utils/list-level-display-text-helper.js +2 -2
- package/lib/common/input-controller.js +1 -1
- package/lib/common/layout/main-structures/layout-row.d.ts +1 -2
- package/lib/common/layout/main-structures/layout-row.js +0 -1
- package/lib/common/layout-formatter/row/result.js +1 -1
- package/lib/common/layout-formatter/row/size-engine/row-formatting-info.d.ts +1 -0
- package/lib/common/layout-formatter/row/size-engine/row-formatting-info.js +2 -2
- package/lib/common/layout-formatter/row/size-engine/row-sizes-manager.d.ts +2 -0
- package/lib/common/layout-formatter/row/size-engine/row-sizes-manager.js +2 -0
- package/lib/common/layout-formatter/row/states.js +1 -1
- package/lib/common/layout-formatter/row/tab-info.d.ts +2 -1
- package/lib/common/layout-formatter/row/tab-info.js +40 -40
- package/lib/common/model/fields/parsers/field-code-parser-doc-variable.d.ts +1 -1
- package/lib/common/model/fields/parsers/field-code-parser.d.ts +1 -1
- package/lib/common/model/paragraph/paragraph-style.d.ts +1 -0
- package/lib/common/model/paragraph/paragraph-style.js +3 -0
- package/lib/common/scroll/canvas-states.d.ts +4 -4
- package/lib/common/scroll/model-states.d.ts +5 -5
- package/package.json +3 -3
- package/lib/client/formats/docx/import/destination/field/field-data-destination.d.ts +0 -0
- package/lib/client/formats/docx/import/destination/field/field-data-destination.js +0 -0
- package/lib/client/formats/docx/import/destination/field/form-field-destination.d.ts +0 -0
- package/lib/client/formats/docx/import/destination/field/form-field-destination.js +0 -0
- package/lib/client/formats/docx/import/destination/paragraph-properties/paragraph-mark-run-properties-destination.d.ts +0 -0
- package/lib/client/formats/docx/import/destination/paragraph-properties/paragraph-mark-run-properties-destination.js +0 -0
- package/lib/common/formats/rtf/import/properties-normalization/tmp.d.ts +0 -0
- package/lib/common/formats/rtf/import/properties-normalization/tmp.js +0 -0
- package/lib/common/layout-formatter/box/generator/multi-dimension-iterator.d.ts +0 -0
- package/lib/common/layout-formatter/box/generator/multi-dimension-iterator.js +0 -0
- package/lib/common/layout-formatter/table/layout-row-index-helper.d.ts +0 -0
- package/lib/common/layout-formatter/table/layout-row-index-helper.js +0 -0
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.4
|
4
4
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
5
5
|
* License: https://www.devexpress.com/Support/EULAs
|
6
6
|
*/
|
@@ -19616,6 +19616,8 @@ class StyleBase {
|
|
19616
19616
|
|
19617
19617
|
|
19618
19618
|
|
19619
|
+
|
19620
|
+
|
19619
19621
|
class ParagraphStyle extends StyleBase {
|
19620
19622
|
constructor(styleName, localizedName, deleted, hidden, semihidden, isDefault, maskedCharacterProperties, maskedParagraphProperties, tabs, autoUpdate, numberingListIndex, listLevelIndex, base64EncodedImage, id) {
|
19621
19623
|
super(styleName, localizedName, deleted, hidden, semihidden, isDefault, base64EncodedImage, id);
|
@@ -19727,6 +19729,7 @@ class TabInfoBase {
|
|
19727
19729
|
this.deleted = deleted;
|
19728
19730
|
this.isDefault = isDefault;
|
19729
19731
|
}
|
19732
|
+
get isLeftAlignment() { return utils_enum/* EnumUtils */.Y.isAnyOf(this.alignment, TabAlign.Left, TabAlign.Numbering); }
|
19730
19733
|
equals(obj) {
|
19731
19734
|
if (!obj)
|
19732
19735
|
return false;
|
@@ -54166,8 +54169,8 @@ class ListLevelDisplayTextHelper {
|
|
54166
54169
|
static getTextRange(placeholderIndices, startPlaceHolderIndex, text) {
|
54167
54170
|
var index = placeholderIndices[startPlaceHolderIndex] + 1;
|
54168
54171
|
var result = text.substr(index, placeholderIndices[startPlaceHolderIndex + 1] - index);
|
54169
|
-
result = result.replace(
|
54170
|
-
result = result.replace(
|
54172
|
+
result = result.replace(/{/g, "{{");
|
54173
|
+
result = result.replace(/}/g, "}}");
|
54171
54174
|
return result;
|
54172
54175
|
}
|
54173
54176
|
}
|
@@ -65692,13 +65695,14 @@ class ImportedTextRunInfo extends RunInfo {
|
|
65692
65695
|
}
|
65693
65696
|
ImportedTextRunInfo.tabRegex = new RegExp(RichUtils.specialCharacters.NonBreakingSpace + "{1,}", "gi");
|
65694
65697
|
class ImportedParagraphListInfo {
|
65695
|
-
constructor(listIndex, listLevel, listFormat, listType, displayFormatString, maskedCharacterProperties) {
|
65698
|
+
constructor(listIndex, listLevel, listFormat, listType, displayFormatString, maskedCharacterProperties, newStart = 1) {
|
65696
65699
|
this.listIndex = listIndex;
|
65697
65700
|
this.listLevel = listLevel;
|
65698
65701
|
this.listFormat = listFormat;
|
65699
65702
|
this.listType = listType;
|
65700
65703
|
this.displayFormatString = displayFormatString;
|
65701
65704
|
this.maskedCharacterProperties = maskedCharacterProperties;
|
65705
|
+
this.newStart = newStart;
|
65702
65706
|
}
|
65703
65707
|
}
|
65704
65708
|
class ImportedParagraphRunInfo extends RunInfo {
|
@@ -66076,6 +66080,10 @@ class HtmlModelInserter {
|
|
66076
66080
|
if (listInfo.displayFormatString) {
|
66077
66081
|
modelManipulator.numberingList.listLevelProperties.displayFormatString.setValue(model, false, targetListIndex, listLevelIndex, listInfo.displayFormatString);
|
66078
66082
|
}
|
66083
|
+
if (listInfo.newStart) {
|
66084
|
+
modelManipulator.numberingList.setIOverrideListLevelNewStart(numberingListIndex, listLevelIndex, listInfo.newStart);
|
66085
|
+
modelManipulator.numberingList.setIOverrideListLevelOverrideStart(numberingListIndex, listLevelIndex, true);
|
66086
|
+
}
|
66079
66087
|
if (listInfo.maskedCharacterProperties) {
|
66080
66088
|
listLevel.setCharacterProperties(listInfo.maskedCharacterProperties);
|
66081
66089
|
listLevel.onCharacterPropertiesChanged();
|
@@ -66653,7 +66661,8 @@ class HtmlListTagImporterBase extends HtmlTagImporterBase {
|
|
66653
66661
|
}
|
66654
66662
|
const listFormat = ParagraphListPropertiesUtils.getListType(this.element);
|
66655
66663
|
const displayFormat = ParagraphListPropertiesUtils.importDisplayFormatStringByParentListFormat(listFormat, parentList === null || parentList === void 0 ? void 0 : parentList.listFormat, listLevel);
|
66656
|
-
|
66664
|
+
const startIndex = parseInt(this.element.getAttribute('start'));
|
66665
|
+
this.importer.listInfos.push(new ImportedParagraphListInfo(listIndex, listLevel, listFormat, listFormat == NumberingFormat.Bullet ? numbering_list_NumberingType.Bullet : numbering_list_NumberingType.MultiLevel, displayFormat, null, startIndex));
|
66657
66666
|
}
|
66658
66667
|
isImportChildren() {
|
66659
66668
|
return true;
|
@@ -67748,7 +67757,6 @@ class HtmlImporter {
|
|
67748
67757
|
;
|
67749
67758
|
get currElementChildren() { return utils_list.ListUtils.last(this.levelInfo).childElements; }
|
67750
67759
|
;
|
67751
|
-
get prevLevelInfo() { return this.levelInfo[this.levelInfo.length - 2]; }
|
67752
67760
|
get currLevelInfo() { return utils_list.ListUtils.last(this.levelInfo); }
|
67753
67761
|
get currListItemLevelInfo() { return utils_list.ListUtils.reverseElementBy(this.levelInfo, (levelInfo) => { var _a; return ((_a = levelInfo.tagImporter) === null || _a === void 0 ? void 0 : _a.elementTag()) === 'LI'; }); }
|
67754
67762
|
get currListInfo() {
|
@@ -67981,7 +67989,7 @@ class HtmlImporter {
|
|
67981
67989
|
html = html.replace(/<o:[pP][^>]*>\s*<\/o:[pP]>/gi, '');
|
67982
67990
|
html = html.replace(/<o:[pP][^>]*>.*?<\/o:[pP]>/gi, ' ');
|
67983
67991
|
html = html.replace(/<st1:.*?>/gi, '');
|
67984
|
-
html = html.replace(
|
67992
|
+
html = html.replace(/<!--[\s\S]*?(-->|$)/g, '');
|
67985
67993
|
html = html.replace(/\s*style="\s*"/gi, '');
|
67986
67994
|
html = html.replace(/style=""/ig, "");
|
67987
67995
|
html = html.replace(/style=''/ig, "");
|
@@ -68022,7 +68030,7 @@ class HtmlImporter {
|
|
68022
68030
|
html = html.replace(/\n/gi, RichUtils.specialCharacters.LineBreak);
|
68023
68031
|
html = html.replace(/(<\/(?!(p)+)(\s*[^>]*)?>)<\/td>/gi, '$1<p> </p></td>');
|
68024
68032
|
html = html.replace(/(<\/(?!(p)+)(\s*[^>]*)?>)<\/th>/gi, '$1<p> </p></th>');
|
68025
|
-
html = html.replace(/<script
|
68033
|
+
html = html.replace(/<script\b[^>]*>[\s\S]*?(<\/script\b[^>]*>|$)/gi, '');
|
68026
68034
|
html = html.replace(/<u>([\s\S]*?)<\/u>/gi, '<span style="text-decoration: underline">$1</span>');
|
68027
68035
|
html = html.replace(/<s>([\s\S]*?)<\/s>/gi, '<span style="text-decoration: line-through">$1</span>');
|
68028
68036
|
html = html.replace(/<\/([^\s>]+)(\s[^>]*)?><br><\/([^\s>]+)(\s[^>]*)?>/gi, '');
|
@@ -68645,7 +68653,7 @@ class HtmlExporter {
|
|
68645
68653
|
.configure((el) => {
|
68646
68654
|
el.setAttribute('border', '1');
|
68647
68655
|
el.style.cssText = 'border-width: 0px; border-collapse: collapse; border-spacing: 0px;';
|
68648
|
-
el.setAttribute('id', guidLabel.replace(
|
68656
|
+
el.setAttribute('id', guidLabel.replace(/id="/g, "").replace(/"/g, ""));
|
68649
68657
|
})
|
68650
68658
|
.startChild('tbody')
|
68651
68659
|
.startChild('tr')
|
@@ -68842,17 +68850,26 @@ class HtmlExporter {
|
|
68842
68850
|
});
|
68843
68851
|
if (!list) {
|
68844
68852
|
const parentList = (previousList === null || previousList === void 0 ? void 0 : previousList.numberingListIndex) === numberingListIndex ? previousList : null;
|
68845
|
-
list = { parentList, numberingListIndex, listLevelIndex, start, end };
|
68853
|
+
list = { parentList, numberingListIndex, listLevelIndex, start, end, intervals: [], paragraphsCount: 0 };
|
68846
68854
|
listsInInterval.push(list);
|
68847
68855
|
}
|
68856
|
+
list.paragraphsCount++;
|
68848
68857
|
previousList = list;
|
68849
|
-
|
68850
|
-
list.end = end;
|
68851
|
-
} while (list = list.parentList);
|
68858
|
+
this.updateListIntervals(list, start, end);
|
68852
68859
|
}
|
68853
68860
|
}
|
68854
68861
|
return listsInInterval;
|
68855
68862
|
}
|
68863
|
+
updateListIntervals(list, start, end) {
|
68864
|
+
list.end = end;
|
68865
|
+
const lastInterval = list.intervals.at(-1);
|
68866
|
+
if (lastInterval && lastInterval.end === start)
|
68867
|
+
lastInterval.end = end;
|
68868
|
+
else
|
68869
|
+
list.intervals.push({ start, end, listStartValue: list.paragraphsCount });
|
68870
|
+
if (list.parentList)
|
68871
|
+
this.updateListIntervals(list.parentList, start, end);
|
68872
|
+
}
|
68856
68873
|
addParentTableRecursively(model, builder, parentCell, paragraphStartPosition) {
|
68857
68874
|
const parentRow = parentCell.parentRow;
|
68858
68875
|
const parentTable = parentRow.parentTable;
|
@@ -68890,51 +68907,65 @@ class HtmlExporter {
|
|
68890
68907
|
startList(model, subDocument, interval, builder, lists, position) {
|
68891
68908
|
if (!lists.length)
|
68892
68909
|
return;
|
68893
|
-
|
68894
|
-
if (
|
68910
|
+
const listsToStart = lists.filter(list => list.intervals.some(interval => interval.start === position));
|
68911
|
+
if (!listsToStart.length && position === interval.start) {
|
68895
68912
|
const firstParagraph = subDocument.getParagraphByPosition(position);
|
68896
68913
|
if (firstParagraph.getNumberingListIndex() === lists[0].numberingListIndex)
|
68897
|
-
|
68898
|
-
}
|
68899
|
-
|
68900
|
-
const numberingList = model.numberingLists[
|
68901
|
-
const
|
68902
|
-
const
|
68903
|
-
|
68904
|
-
|
68914
|
+
listsToStart.push(lists[0]);
|
68915
|
+
}
|
68916
|
+
for (const list of listsToStart) {
|
68917
|
+
const numberingList = model.numberingLists[list.numberingListIndex];
|
68918
|
+
const level = numberingList.levels[list.listLevelIndex];
|
68919
|
+
const format = level.getListLevelProperties().format;
|
68920
|
+
const listType = numberingList.getListType();
|
68921
|
+
const levelStart = level.getNewStart();
|
68922
|
+
const intervalStart = list.intervals.find(interval => interval.start === position).listStartValue;
|
68923
|
+
const listStart = Math.max(levelStart, intervalStart);
|
68924
|
+
let listStyleType = "";
|
68925
|
+
switch (format) {
|
68905
68926
|
case NumberingFormat.Bullet:
|
68906
|
-
|
68927
|
+
listStyleType = "disc";
|
68907
68928
|
break;
|
68908
68929
|
case NumberingFormat.Decimal:
|
68909
|
-
|
68930
|
+
listStyleType = "decimal";
|
68910
68931
|
break;
|
68911
68932
|
case NumberingFormat.LowerLetter:
|
68912
|
-
|
68933
|
+
listStyleType = "lower-alpha";
|
68913
68934
|
break;
|
68914
68935
|
case NumberingFormat.UpperLetter:
|
68915
|
-
|
68936
|
+
listStyleType = "upper-alpha";
|
68916
68937
|
break;
|
68917
68938
|
case NumberingFormat.LowerRoman:
|
68918
|
-
|
68939
|
+
listStyleType = "lower-roman";
|
68919
68940
|
break;
|
68920
68941
|
case NumberingFormat.UpperRoman:
|
68921
|
-
|
68942
|
+
listStyleType = "upper-roman";
|
68922
68943
|
break;
|
68923
68944
|
default:
|
68924
68945
|
break;
|
68925
68946
|
}
|
68926
68947
|
builder
|
68927
|
-
.startChild(
|
68928
|
-
.configure((e) =>
|
68948
|
+
.startChild(listType !== numbering_list_NumberingType.Bullet ? "ol" : "ul")
|
68949
|
+
.configure((e) => {
|
68950
|
+
e.style.cssText = "list-style-type:" + listStyleType;
|
68951
|
+
if (listStart > 1)
|
68952
|
+
e.setAttribute("start", listStart.toString());
|
68953
|
+
});
|
68929
68954
|
}
|
68930
68955
|
}
|
68931
68956
|
endList(model, builder, lists, endPosition) {
|
68932
68957
|
for (let i = lists.length - 1; i >= 0; i--) {
|
68933
|
-
|
68934
|
-
|
68935
|
-
|
68936
|
-
|
68958
|
+
const list = lists[i];
|
68959
|
+
for (let j = list.intervals.length - 1; j >= 0; j--) {
|
68960
|
+
const interval = list.intervals[j];
|
68961
|
+
if (interval.end === endPosition) {
|
68962
|
+
const listType = model.numberingLists[list.numberingListIndex].getListType();
|
68963
|
+
builder.endChild(listType !== numbering_list_NumberingType.Bullet ? "ol" : "ul");
|
68964
|
+
list.intervals.splice(j, 1);
|
68965
|
+
}
|
68937
68966
|
}
|
68967
|
+
if (list.intervals.length === 0)
|
68968
|
+
lists.splice(i, 1);
|
68938
68969
|
}
|
68939
68970
|
}
|
68940
68971
|
getHtmlText(text) {
|
@@ -70945,6 +70976,10 @@ class DocumentLayout {
|
|
70945
70976
|
}
|
70946
70977
|
|
70947
70978
|
;// CONCATENATED MODULE: ./src/client/model-api/table/enums.ts
|
70979
|
+
|
70980
|
+
|
70981
|
+
|
70982
|
+
|
70948
70983
|
var BorderLineStyleApi;
|
70949
70984
|
(function (BorderLineStyleApi) {
|
70950
70985
|
BorderLineStyleApi[BorderLineStyleApi["Nil"] = -1] = "Nil";
|
@@ -79970,7 +80005,7 @@ class TextDestination extends ElementDestination {
|
|
79970
80005
|
return true;
|
79971
80006
|
}
|
79972
80007
|
replaceLineBreakOnSpace(text) {
|
79973
|
-
return text.replace(
|
80008
|
+
return text.replace(/\n/g, ' ');
|
79974
80009
|
}
|
79975
80010
|
}
|
79976
80011
|
|
@@ -82792,7 +82827,7 @@ class ListLevelFormatStringDestination extends ListLevelElementDestination {
|
|
82792
82827
|
}
|
82793
82828
|
convertFormatString(value) {
|
82794
82829
|
const regex = new RegExp(/%\d/);
|
82795
|
-
let result = value.replace(
|
82830
|
+
let result = value.replace(/{/g, '{{').replace(/}/g, '}}');
|
82796
82831
|
let match = result.match(regex);
|
82797
82832
|
if (match) {
|
82798
82833
|
do {
|
@@ -84327,6 +84362,7 @@ class ChangeRectangularObjectLockAspectRatioHistoryItem extends interval_based_h
|
|
84327
84362
|
}
|
84328
84363
|
|
84329
84364
|
;// CONCATENATED MODULE: ./src/client/model-api/images/image-enums.ts
|
84365
|
+
|
84330
84366
|
var FloatingObjectHorizontalPositionTypeApi;
|
84331
84367
|
(function (FloatingObjectHorizontalPositionTypeApi) {
|
84332
84368
|
FloatingObjectHorizontalPositionTypeApi[FloatingObjectHorizontalPositionTypeApi["Aligned"] = 0] = "Aligned";
|
@@ -91611,9 +91647,9 @@ class RelationsBaseExporter extends ExporterBaseWithRootElement {
|
|
91611
91647
|
urlEncodeAsciiSpecialSymbols(url) {
|
91612
91648
|
if (url) {
|
91613
91649
|
if (url.indexOf(' ') >= 0)
|
91614
|
-
url = url.replace(
|
91650
|
+
url = url.replace(/ /g, '%20');
|
91615
91651
|
if (url.indexOf('\'') >= 0)
|
91616
|
-
url = url.replace(
|
91652
|
+
url = url.replace(/'/g, '%27');
|
91617
91653
|
}
|
91618
91654
|
return url;
|
91619
91655
|
}
|
@@ -93246,7 +93282,6 @@ var LayoutRowStateFlags;
|
|
93246
93282
|
LayoutRowStateFlags[LayoutRowStateFlags["DocumentEnd"] = 16] = "DocumentEnd";
|
93247
93283
|
LayoutRowStateFlags[LayoutRowStateFlags["CellTableEnd"] = 64] = "CellTableEnd";
|
93248
93284
|
LayoutRowStateFlags[LayoutRowStateFlags["PageBreakBefore"] = 128] = "PageBreakBefore";
|
93249
|
-
LayoutRowStateFlags[LayoutRowStateFlags["InfinityWidth"] = 256] = "InfinityWidth";
|
93250
93285
|
})(LayoutRowStateFlags || (LayoutRowStateFlags = {}));
|
93251
93286
|
class layout_row_LayoutRow extends rectangle.Rectangle {
|
93252
93287
|
get hasEffectToPageHeight() { return this.boxes.length != 1 || !this.boxes[0].isSectionBreakBox; }
|
@@ -94466,7 +94501,7 @@ class RowFormatterResult {
|
|
94466
94501
|
return;
|
94467
94502
|
this.rowFormatter.tabInfo.shiftBoxesAfterLastTab();
|
94468
94503
|
const dontJustifyLinesEndingInSoftLineBreak = this.rowFormatter.manager.model.compatibilitySettings.dontJustifyLinesEndingInSoftLineBreak;
|
94469
|
-
if (!this.
|
94504
|
+
if (!this.rowFormatter.rowSizesManager.isInfinityWidth)
|
94470
94505
|
BoxAligner.align(this.row, this.rowFormatter.paragraphProps.alignment, currLogicRowEndPos, this.rowBoxIndexStart, dontJustifyLinesEndingInSoftLineBreak);
|
94471
94506
|
this.rowBoxIndexStart = this.row.boxes.length;
|
94472
94507
|
}
|
@@ -95496,7 +95531,7 @@ class RowFormattingInfo {
|
|
95496
95531
|
let index = 0;
|
95497
95532
|
while (index < this.intervals.length) {
|
95498
95533
|
const interval = this.intervals[index];
|
95499
|
-
if (interval.start <= position && position < interval.end
|
95534
|
+
if (position < interval.start || interval.start <= position && position < interval.end)
|
95500
95535
|
break;
|
95501
95536
|
index++;
|
95502
95537
|
}
|
@@ -95521,7 +95556,7 @@ class RowFormattingInfo {
|
|
95521
95556
|
calcIntersectObjects(height) {
|
95522
95557
|
const initRect = new rectangle.Rectangle(this.outerHorizontalRowContentBounds.start, this.minY, this.outerHorizontalRowContentBounds.length, height);
|
95523
95558
|
return utils_list.ListUtils.reducedMap(this.boundsOfAnchoredOblectsOnThisColumn, (objInfo) => {
|
95524
|
-
if (this.tableCell !== objInfo.cell)
|
95559
|
+
if (this.tableCell !== objInfo.cell || this.isInfinityWidth)
|
95525
95560
|
return null;
|
95526
95561
|
const rect = rectangle.Rectangle.getNonCollapsedIntersection(initRect, objInfo.bounds);
|
95527
95562
|
if (!rect)
|
@@ -95824,6 +95859,8 @@ class RowSizesManager {
|
|
95824
95859
|
this.rowFormattingInfo = new RowFormattingInfo(minY, this.heightCalculator.currState.getFullRowHeight(), outerHorizontalRowContentBounds, boundsOfAnchoredOblectsOnThisColumn, tableCell);
|
95825
95860
|
this.rowFormattingInfo.calculate();
|
95826
95861
|
}
|
95862
|
+
get isInfinityWidth() { return this.rowFormattingInfo.isInfinityWidth; }
|
95863
|
+
set isInfinityWidth(value) { this.rowFormattingInfo.isInfinityWidth = value; }
|
95827
95864
|
addNumberingListBoxes() {
|
95828
95865
|
const { paragraph, result: { paragraphIndex }, numberingListCountersManager, manager: formatterManager } = this.rowFormatter;
|
95829
95866
|
const counters = numberingListCountersManager.calculateCounters(paragraphIndex);
|
@@ -96116,7 +96153,7 @@ class RowBaseFormatterState {
|
|
96116
96153
|
return;
|
96117
96154
|
if (!this.rowFormatter.rowSizesManager.addNumberingBoxes())
|
96118
96155
|
return;
|
96119
|
-
if (this.rowFormatter.tabInfo.
|
96156
|
+
if (this.rowFormatter.tabInfo.tryAddTabBox())
|
96120
96157
|
this.rowFormatter.setState(TextRowFormatterState.Base);
|
96121
96158
|
else
|
96122
96159
|
this.rowFormatter.finishRow();
|
@@ -96199,7 +96236,6 @@ class RowEndedWithPageBreakState extends RowEndedWithParagraphMarkFormatterState
|
|
96199
96236
|
|
96200
96237
|
|
96201
96238
|
|
96202
|
-
|
96203
96239
|
class RowTabInfo {
|
96204
96240
|
get row() {
|
96205
96241
|
return this.rowFormatter.row;
|
@@ -96245,52 +96281,46 @@ class RowTabInfo {
|
|
96245
96281
|
}
|
96246
96282
|
this.restart();
|
96247
96283
|
}
|
96248
|
-
|
96249
|
-
const box = this.rowFormatter.currBox;
|
96284
|
+
tryAddTabBox() {
|
96250
96285
|
this.shiftBoxesAfterLastTab();
|
96251
96286
|
let tabPosition = this.getNextCustomTabPosition(this.currInterval.startOfFreeSpace);
|
96252
|
-
const isCustomNonLeftTabPosition = tabPosition && !
|
96287
|
+
const isCustomNonLeftTabPosition = tabPosition && !tabPosition.isLeftAlignment;
|
96253
96288
|
let tabXPosRelativePage = tabPosition ? tabPosition.position : this.getNextDefaultTabPosition(this.currInterval.startOfFreeSpace);
|
96254
96289
|
if (tabXPosRelativePage > this.currInterval.end) {
|
96255
|
-
|
96256
|
-
|
96257
|
-
|
96258
|
-
|
96259
|
-
|
96260
|
-
|
96261
|
-
|
96262
|
-
tabXPosRelativePage = tabPosition ? tabPosition.position : this.getNextDefaultTabPosition(this.currInterval.startOfFreeSpace);
|
96263
|
-
}
|
96290
|
+
if (this.rowFormatter.manager.model.compatibilitySettings.compatibilityMode < CompatibilityMode.Word2013 && tabPosition && !tabPosition.isParagraphIndent) {
|
96291
|
+
const interval = this.rowFormatter.rowSizesManager.rowFormattingInfo.outerHorizontalRowContentBounds;
|
96292
|
+
interval.length = Number.MAX_SAFE_INTEGER - interval.start;
|
96293
|
+
this.rowFormatter.rowSizesManager.isInfinityWidth = true;
|
96294
|
+
this.rowFormatter.rowSizesManager.rowFormattingInfo.recalculate(interval);
|
96295
|
+
this.row.width = Number.MAX_SAFE_INTEGER;
|
96296
|
+
return this.tryAddTabBox();
|
96264
96297
|
}
|
96265
|
-
|
96266
|
-
|
96267
|
-
|
96268
|
-
|
96269
|
-
|
96270
|
-
|
96271
|
-
if (lastInterval.end < this.rowFormatter.paragraphHorizontalBounds.end) {
|
96272
|
-
if (this.rowFormatter.manager.model.compatibilitySettings.compatibilityMode < CompatibilityMode.Word2013 && tabPosition && !tabPosition.isParagraphIndent) {
|
96273
|
-
const interval = this.rowFormatter.rowSizesManager.rowFormattingInfo.outerHorizontalRowContentBounds;
|
96274
|
-
interval.length = Number.MAX_SAFE_INTEGER - interval.start;
|
96275
|
-
this.rowFormatter.rowSizesManager.rowFormattingInfo.recalculate(interval);
|
96276
|
-
this.row.width = Number.MAX_SAFE_INTEGER;
|
96277
|
-
this.row.flags.set(LayoutRowStateFlags.InfinityWidth, true);
|
96278
|
-
return this.addTabBox();
|
96279
|
-
}
|
96280
|
-
else if (tabBox.right < this.rowFormatter.paragraphHorizontalBounds.end) {
|
96281
|
-
const delta = this.rowFormatter.paragraphHorizontalBounds.end - lastInterval.end;
|
96282
|
-
let canIncrease = !isCustomNonLeftTabPosition;
|
96283
|
-
if (canIncrease && this.rowFormatter.rowSizesManager.rowFormattingInfo.isFloatingIntersectRow) {
|
96284
|
-
canIncrease = !algorithms.IntervalAlgorithms.getIntersection(new fixed.FixedInterval(lastInterval.end, delta), utils_list.ListUtils.last(this.rowFormatter.rowSizesManager.rowFormattingInfo.busyIntervals));
|
96298
|
+
else {
|
96299
|
+
let ind = this.rowFormatter.rowSizesManager.rowFormattingInfo.indexOfIntervalContainsPositon(tabXPosRelativePage);
|
96300
|
+
if (ind != this.rowFormatter.rowSizesManager.rowFormattingInfo.currIndex) {
|
96301
|
+
if (isCustomNonLeftTabPosition) {
|
96302
|
+
this.addTabBox(tabPosition, this.currInterval.end);
|
96303
|
+
return true;
|
96285
96304
|
}
|
96286
|
-
|
96287
|
-
|
96288
|
-
|
96289
|
-
this.
|
96290
|
-
return this.addTabBox();
|
96305
|
+
else {
|
96306
|
+
this.rowFormatter.rowSizesManager.finishLogicalRow(ind, this.currInterval.end);
|
96307
|
+
tabPosition = this.getNextCustomTabPosition(this.currInterval.startOfFreeSpace);
|
96308
|
+
return this.tryAddTabBox();
|
96291
96309
|
}
|
96292
96310
|
}
|
96293
96311
|
}
|
96312
|
+
const extraSpace = this.rowFormatter.paragraphHorizontalBounds.end - this.currInterval.end;
|
96313
|
+
if (extraSpace > 0) {
|
96314
|
+
let canIncrease = !isCustomNonLeftTabPosition;
|
96315
|
+
if (canIncrease && this.rowFormatter.rowSizesManager.rowFormattingInfo.isFloatingIntersectRow)
|
96316
|
+
canIncrease = !algorithms.IntervalAlgorithms.getIntersection(new fixed.FixedInterval(this.currInterval.end, extraSpace), utils_list.ListUtils.last(this.rowFormatter.rowSizesManager.rowFormattingInfo.busyIntervals));
|
96317
|
+
if (canIncrease) {
|
96318
|
+
this.currInterval.end = this.rowFormatter.paragraphHorizontalBounds.end;
|
96319
|
+
this.currInterval.avaliableWidth += extraSpace;
|
96320
|
+
this.row.width += extraSpace;
|
96321
|
+
return this.tryAddTabBox();
|
96322
|
+
}
|
96323
|
+
}
|
96294
96324
|
if (!this.row.isEmpty() && !isCustomNonLeftTabPosition)
|
96295
96325
|
return false;
|
96296
96326
|
if (this.rowFormatter.rowSizesManager.rowFormattingInfo.isFloatingIntersectRow && !isCustomNonLeftTabPosition) {
|
@@ -96298,13 +96328,20 @@ class RowTabInfo {
|
|
96298
96328
|
this.rowFormatter.rowSizesManager.restartAllRow(false);
|
96299
96329
|
while (utils_enum/* EnumUtils */.Y.isAnyOf(this.rowFormatter.currBox.getType(), LayoutBoxType.AnchorPicture, LayoutBoxType.AnchorTextBox))
|
96300
96330
|
this.rowFormatter.setBoxInfo(true);
|
96301
|
-
return this.
|
96331
|
+
return this.tryAddTabBox();
|
96302
96332
|
}
|
96303
96333
|
}
|
96334
|
+
this.addTabBox(tabPosition, tabXPosRelativePage);
|
96335
|
+
return true;
|
96336
|
+
}
|
96337
|
+
addTabBox(tabPosition, tabXPosRelativePage) {
|
96338
|
+
const box = this.rowFormatter.currBox;
|
96339
|
+
box.x = this.currInterval.startOfFreeSpace;
|
96340
|
+
box.width = (!tabPosition || tabPosition.isLeftAlignment) ? tabXPosRelativePage - box.x : 0;
|
96341
|
+
const tabBox = box.getLayoutTabBox(tabPosition ? tabPosition.leader : TabLeaderType.None);
|
96304
96342
|
this.rowFormatter.rowSizesManager.addTabBox(tabBox);
|
96305
96343
|
this.lastTabPosition = tabPosition ? tabPosition : new TabInfo(tabXPosRelativePage, TabAlign.Left, TabLeaderType.None, false, false);
|
96306
96344
|
this.lastTabBoxIndex = this.row.boxes.length - 1;
|
96307
|
-
return true;
|
96308
96345
|
}
|
96309
96346
|
calculateActualTabWidth(prevTabBox) {
|
96310
96347
|
const prevTabBoxXPos = prevTabBox.x;
|
@@ -105843,7 +105880,6 @@ class SwitchTextBoxSubDocumentsStateHistoryItem extends history_item_HistoryItem
|
|
105843
105880
|
|
105844
105881
|
|
105845
105882
|
|
105846
|
-
|
105847
105883
|
class FloatingObjectMovedArgumentInner {
|
105848
105884
|
constructor(subDocumentId, newPosition, pageIntervals, pageIndex, objectX, objectY) {
|
105849
105885
|
this.newPosition = newPosition;
|
@@ -105872,7 +105908,6 @@ class FloatingObjectDragDropChangePositionCommand extends CommandBase {
|
|
105872
105908
|
this.getFloatingObjectParentSubDocument().isEditable([new fixed.FixedInterval(specialRunInfo.getPosition(), 1)]);
|
105873
105909
|
}
|
105874
105910
|
executeCore(_state, options) {
|
105875
|
-
const topInfo = this.control.viewManager.canvasManager.getScrollTopInfo();
|
105876
105911
|
const runInfo = this.activeSubDocument.getRunAndIndexesByPosition(this.selection.specialRunInfo.getPosition());
|
105877
105912
|
const oldRun = runInfo.run.clone();
|
105878
105913
|
const oldRunPos = runInfo.getAbsoluteRunPosition();
|
@@ -105887,7 +105922,6 @@ class FloatingObjectDragDropChangePositionCommand extends CommandBase {
|
|
105887
105922
|
this.changeActiveSubDocument(initialHtr, finalClickPoint);
|
105888
105923
|
this.move(oldRun, oldRunPos, initialHtr, options.endPageIndex, options.finalPoint);
|
105889
105924
|
this.history.endTransaction();
|
105890
|
-
this.selection.scrollManager.setScroll(new ScrollState().byScrollInfo.setPageInfo(topInfo));
|
105891
105925
|
return true;
|
105892
105926
|
}
|
105893
105927
|
changeActiveSubDocument(htr, point) {
|
@@ -108950,7 +108984,7 @@ class CanvasScrollManager {
|
|
108950
108984
|
height.clear().addLayoutSize(position.page.height);
|
108951
108985
|
if (relativePosition === RelativePosition.Bottom)
|
108952
108986
|
y.subtractUISize(this.sizes.getVisibleAreaHeight(false));
|
108953
|
-
y.
|
108987
|
+
y.addLayoutSize(canvasState.getVerticalOffset(this.sizes));
|
108954
108988
|
if (relativePosition === RelativePosition.Inside) {
|
108955
108989
|
let scrollTop = this.canvas.scrollTop;
|
108956
108990
|
const scrollVisibleAreaHeight = this.sizes.getVisibleAreaHeight(false);
|
@@ -111872,7 +111906,7 @@ class InputController {
|
|
111872
111906
|
}
|
111873
111907
|
static getCopyPasteHtmlContentForEditable(html, guidLabel) {
|
111874
111908
|
const builder = new HtmlBuilder();
|
111875
|
-
const id = guidLabel.replace(
|
111909
|
+
const id = guidLabel.replace(/id="/g, "").replace(/"/g, "");
|
111876
111910
|
builder
|
111877
111911
|
.startChild('a')
|
111878
111912
|
.configure((el) => {
|
@@ -117975,6 +118009,7 @@ class DxtUtils {
|
|
117975
118009
|
}
|
117976
118010
|
|
117977
118011
|
;// CONCATENATED MODULE: ./src/client/public/commands/enum.ts
|
118012
|
+
|
117978
118013
|
var FileTabCommandId;
|
117979
118014
|
(function (FileTabCommandId) {
|
117980
118015
|
FileTabCommandId[FileTabCommandId["CreateDocument"] = 412] = "CreateDocument";
|
@@ -127319,7 +127354,6 @@ class DialogLayoutOptionsCommand extends ShowDialogCommandBase {
|
|
127319
127354
|
let run = subDocument.getRunByPosition(position);
|
127320
127355
|
let modelManipulator = this.modelManipulator;
|
127321
127356
|
let anchorInfoManipulator = modelManipulator.floatingObject.anchorInfo;
|
127322
|
-
const topInfo = this.control.viewManager.canvasManager.getScrollTopInfo();
|
127323
127357
|
let history = this.history;
|
127324
127358
|
history.beginTransaction();
|
127325
127359
|
let changed = false;
|
@@ -127485,8 +127519,6 @@ class DialogLayoutOptionsCommand extends ShowDialogCommandBase {
|
|
127485
127519
|
changed = true;
|
127486
127520
|
}
|
127487
127521
|
history.endTransaction();
|
127488
|
-
if (topInfo)
|
127489
|
-
this.selection.scrollManager.setScroll(new ScrollState().byScrollInfo.setPageInfo(topInfo));
|
127490
127522
|
return changed;
|
127491
127523
|
}
|
127492
127524
|
getDialogName() {
|
@@ -130652,7 +130684,6 @@ class ToggleFullScreenCommand extends CommandBase {
|
|
130652
130684
|
;// CONCATENATED MODULE: ./src/common/commands/layout/toggle-show-hidden-symbols-command.ts
|
130653
130685
|
|
130654
130686
|
|
130655
|
-
|
130656
130687
|
class ToggleShowHiddenSymbolsCommand extends CommandBase {
|
130657
130688
|
getState() {
|
130658
130689
|
return new SimpleCommandState(this.isEnabled(), this.control.innerClientProperties.showHiddenSymbols);
|
@@ -130664,9 +130695,7 @@ class ToggleShowHiddenSymbolsCommand extends CommandBase {
|
|
130664
130695
|
let newValue = options.param;
|
130665
130696
|
if (newValue !== this.control.innerClientProperties.showHiddenSymbols) {
|
130666
130697
|
this.control.innerClientProperties.showHiddenSymbols = newValue;
|
130667
|
-
const topInfo = this.control.viewManager.canvasManager.getScrollTopInfo();
|
130668
130698
|
this.control.layoutFormatterManager.invalidator.onChangedAllLayout();
|
130669
|
-
this.selection.scrollManager.setScroll(new ScrollState().byScrollInfo.setPageInfo(topInfo));
|
130670
130699
|
return true;
|
130671
130700
|
}
|
130672
130701
|
return false;
|
@@ -137881,7 +137910,6 @@ class InsertPictureCommand extends CommandBase {
|
|
137881
137910
|
|
137882
137911
|
|
137883
137912
|
|
137884
|
-
|
137885
137913
|
|
137886
137914
|
|
137887
137915
|
class MailMergeCommand extends CommandBase {
|
@@ -137984,8 +138012,10 @@ class MailMergeCommand extends CommandBase {
|
|
137984
138012
|
replaceMergeFieldsInSubDocument(modelManager, record, lastProcessedPositionInMainSubDocument, subDoc) {
|
137985
138013
|
const processField = (parser) => {
|
137986
138014
|
if (parser instanceof FieldCodeParserMailMerge) {
|
138015
|
+
parser.update(null);
|
137987
138016
|
const fieldName = parser.getMergeFieldName();
|
137988
|
-
|
138017
|
+
const simpleText = this.getResultByFieldName(record, fieldName);
|
138018
|
+
return parser.getFormattedResult(simpleText);
|
137989
138019
|
}
|
137990
138020
|
return null;
|
137991
138021
|
};
|
@@ -138189,6 +138219,8 @@ class OpenDocumentCommand extends CommandBase {
|
|
138189
138219
|
return false;
|
138190
138220
|
this.beforeOpen();
|
138191
138221
|
core.activeDocumentImporter.importFromFile(file, this.control.modelManager.richOptions, (documentModel, formatImagesImporter) => {
|
138222
|
+
if (core.isDisposed)
|
138223
|
+
return;
|
138192
138224
|
core.activeDocumentImporter = null;
|
138193
138225
|
this.openCore(fileName, format, documentModel, formatImagesImporter, extension);
|
138194
138226
|
if (!this.suppressUpdateFields)
|
@@ -138196,6 +138228,8 @@ class OpenDocumentCommand extends CommandBase {
|
|
138196
138228
|
if (callback)
|
138197
138229
|
callback(true, null);
|
138198
138230
|
}, (reason) => {
|
138231
|
+
if (core.isDisposed)
|
138232
|
+
return;
|
138199
138233
|
core.activeDocumentImporter = null;
|
138200
138234
|
this.control.loadingPanelManager.loadingPanel.setVisible(false);
|
138201
138235
|
NewDocumentCommand.newDocumentInner.call(this);
|
@@ -141464,8 +141498,8 @@ class DialogManager {
|
|
141464
141498
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_type.js
|
141465
141499
|
/**
|
141466
141500
|
* DevExtreme (esm/__internal/core/utils/m_type.js)
|
141467
|
-
* Version: 25.1.
|
141468
|
-
* Build date:
|
141501
|
+
* Version: 25.1.4-build-25189-0901
|
141502
|
+
* Build date: Tue Jul 08 2025
|
141469
141503
|
*
|
141470
141504
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141471
141505
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141567,8 +141601,8 @@ const isEvent = function(object) {
|
|
141567
141601
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/type.js
|
141568
141602
|
/**
|
141569
141603
|
* DevExtreme (esm/core/utils/type.js)
|
141570
|
-
* Version: 25.1.
|
141571
|
-
* Build date:
|
141604
|
+
* Version: 25.1.4-build-25189-0901
|
141605
|
+
* Build date: Tue Jul 08 2025
|
141572
141606
|
*
|
141573
141607
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141574
141608
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141578,8 +141612,8 @@ const isEvent = function(object) {
|
|
141578
141612
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_extend.js
|
141579
141613
|
/**
|
141580
141614
|
* DevExtreme (esm/__internal/core/utils/m_extend.js)
|
141581
|
-
* Version: 25.1.
|
141582
|
-
* Build date:
|
141615
|
+
* Version: 25.1.4-build-25189-0901
|
141616
|
+
* Build date: Tue Jul 08 2025
|
141583
141617
|
*
|
141584
141618
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141585
141619
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141637,8 +141671,8 @@ const extend = function(target) {
|
|
141637
141671
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/extend.js
|
141638
141672
|
/**
|
141639
141673
|
* DevExtreme (esm/core/utils/extend.js)
|
141640
|
-
* Version: 25.1.
|
141641
|
-
* Build date:
|
141674
|
+
* Version: 25.1.4-build-25189-0901
|
141675
|
+
* Build date: Tue Jul 08 2025
|
141642
141676
|
*
|
141643
141677
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141644
141678
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141648,8 +141682,8 @@ const extend = function(target) {
|
|
141648
141682
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_string.js
|
141649
141683
|
/**
|
141650
141684
|
* DevExtreme (esm/__internal/core/utils/m_string.js)
|
141651
|
-
* Version: 25.1.
|
141652
|
-
* Build date:
|
141685
|
+
* Version: 25.1.4-build-25189-0901
|
141686
|
+
* Build date: Tue Jul 08 2025
|
141653
141687
|
*
|
141654
141688
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141655
141689
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141724,8 +141758,8 @@ const isEmpty = function() {
|
|
141724
141758
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/string.js
|
141725
141759
|
/**
|
141726
141760
|
* DevExtreme (esm/core/utils/string.js)
|
141727
|
-
* Version: 25.1.
|
141728
|
-
* Build date:
|
141761
|
+
* Version: 25.1.4-build-25189-0901
|
141762
|
+
* Build date: Tue Jul 08 2025
|
141729
141763
|
*
|
141730
141764
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141731
141765
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141735,20 +141769,20 @@ const isEmpty = function() {
|
|
141735
141769
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/version.js
|
141736
141770
|
/**
|
141737
141771
|
* DevExtreme (esm/core/version.js)
|
141738
|
-
* Version: 25.1.
|
141739
|
-
* Build date:
|
141772
|
+
* Version: 25.1.4-build-25189-0901
|
141773
|
+
* Build date: Tue Jul 08 2025
|
141740
141774
|
*
|
141741
141775
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141742
141776
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
141743
141777
|
*/
|
141744
141778
|
const version = "25.1.3";
|
141745
|
-
const fullVersion = "25.1.3";
|
141779
|
+
const fullVersion = "25.1.3.25189-0901";
|
141746
141780
|
|
141747
141781
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_console.js
|
141748
141782
|
/**
|
141749
141783
|
* DevExtreme (esm/__internal/core/utils/m_console.js)
|
141750
|
-
* Version: 25.1.
|
141751
|
-
* Build date:
|
141784
|
+
* Version: 25.1.4-build-25189-0901
|
141785
|
+
* Build date: Tue Jul 08 2025
|
141752
141786
|
*
|
141753
141787
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141754
141788
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141788,8 +141822,8 @@ const debug = function() {
|
|
141788
141822
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_error.js
|
141789
141823
|
/**
|
141790
141824
|
* DevExtreme (esm/__internal/core/utils/m_error.js)
|
141791
|
-
* Version: 25.1.
|
141792
|
-
* Build date:
|
141825
|
+
* Version: 25.1.4-build-25189-0901
|
141826
|
+
* Build date: Tue Jul 08 2025
|
141793
141827
|
*
|
141794
141828
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141795
141829
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141860,8 +141894,8 @@ function error(baseErrors, errors) {
|
|
141860
141894
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/error.js
|
141861
141895
|
/**
|
141862
141896
|
* DevExtreme (esm/core/utils/error.js)
|
141863
|
-
* Version: 25.1.
|
141864
|
-
* Build date:
|
141897
|
+
* Version: 25.1.4-build-25189-0901
|
141898
|
+
* Build date: Tue Jul 08 2025
|
141865
141899
|
*
|
141866
141900
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141867
141901
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141872,8 +141906,8 @@ function error(baseErrors, errors) {
|
|
141872
141906
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_errors.js
|
141873
141907
|
/**
|
141874
141908
|
* DevExtreme (esm/__internal/core/m_errors.js)
|
141875
|
-
* Version: 25.1.
|
141876
|
-
* Build date:
|
141909
|
+
* Version: 25.1.4-build-25189-0901
|
141910
|
+
* Build date: Tue Jul 08 2025
|
141877
141911
|
*
|
141878
141912
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141879
141913
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141940,8 +141974,8 @@ function error(baseErrors, errors) {
|
|
141940
141974
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/errors.js
|
141941
141975
|
/**
|
141942
141976
|
* DevExtreme (esm/core/errors.js)
|
141943
|
-
* Version: 25.1.
|
141944
|
-
* Build date:
|
141977
|
+
* Version: 25.1.4-build-25189-0901
|
141978
|
+
* Build date: Tue Jul 08 2025
|
141945
141979
|
*
|
141946
141980
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141947
141981
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141952,8 +141986,8 @@ function error(baseErrors, errors) {
|
|
141952
141986
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_class.js
|
141953
141987
|
/**
|
141954
141988
|
* DevExtreme (esm/__internal/core/m_class.js)
|
141955
|
-
* Version: 25.1.
|
141956
|
-
* Build date:
|
141989
|
+
* Version: 25.1.4-build-25189-0901
|
141990
|
+
* Build date: Tue Jul 08 2025
|
141957
141991
|
*
|
141958
141992
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141959
141993
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142086,8 +142120,8 @@ classImpl.abstract = m_class_abstract;
|
|
142086
142120
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/class.js
|
142087
142121
|
/**
|
142088
142122
|
* DevExtreme (esm/core/class.js)
|
142089
|
-
* Version: 25.1.
|
142090
|
-
* Build date:
|
142123
|
+
* Version: 25.1.4-build-25189-0901
|
142124
|
+
* Build date: Tue Jul 08 2025
|
142091
142125
|
*
|
142092
142126
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142093
142127
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142098,8 +142132,8 @@ classImpl.abstract = m_class_abstract;
|
|
142098
142132
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_iterator.js
|
142099
142133
|
/**
|
142100
142134
|
* DevExtreme (esm/__internal/core/utils/m_iterator.js)
|
142101
|
-
* Version: 25.1.
|
142102
|
-
* Build date:
|
142135
|
+
* Version: 25.1.4-build-25189-0901
|
142136
|
+
* Build date: Tue Jul 08 2025
|
142103
142137
|
*
|
142104
142138
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142105
142139
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142148,8 +142182,8 @@ const reverseEach = (array, callback) => {
|
|
142148
142182
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_dependency_injector.js
|
142149
142183
|
/**
|
142150
142184
|
* DevExtreme (esm/__internal/core/utils/m_dependency_injector.js)
|
142151
|
-
* Version: 25.1.
|
142152
|
-
* Build date:
|
142185
|
+
* Version: 25.1.4-build-25189-0901
|
142186
|
+
* Build date: Tue Jul 08 2025
|
142153
142187
|
*
|
142154
142188
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142155
142189
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142198,8 +142232,8 @@ function injector(object) {
|
|
142198
142232
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/dependency_injector.js
|
142199
142233
|
/**
|
142200
142234
|
* DevExtreme (esm/core/utils/dependency_injector.js)
|
142201
|
-
* Version: 25.1.
|
142202
|
-
* Build date:
|
142235
|
+
* Version: 25.1.4-build-25189-0901
|
142236
|
+
* Build date: Tue Jul 08 2025
|
142203
142237
|
*
|
142204
142238
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142205
142239
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142210,8 +142244,8 @@ function injector(object) {
|
|
142210
142244
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.formatter.js
|
142211
142245
|
/**
|
142212
142246
|
* DevExtreme (esm/common/core/localization/ldml/date.formatter.js)
|
142213
|
-
* Version: 25.1.
|
142214
|
-
* Build date:
|
142247
|
+
* Version: 25.1.4-build-25189-0901
|
142248
|
+
* Build date: Tue Jul 08 2025
|
142215
142249
|
*
|
142216
142250
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142217
142251
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142364,8 +142398,8 @@ function _extends() {
|
|
142364
142398
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_config.js
|
142365
142399
|
/**
|
142366
142400
|
* DevExtreme (esm/__internal/core/m_config.js)
|
142367
|
-
* Version: 25.1.
|
142368
|
-
* Build date:
|
142401
|
+
* Version: 25.1.4-build-25189-0901
|
142402
|
+
* Build date: Tue Jul 08 2025
|
142369
142403
|
*
|
142370
142404
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142371
142405
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142440,8 +142474,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
142440
142474
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/config.js
|
142441
142475
|
/**
|
142442
142476
|
* DevExtreme (esm/common/config.js)
|
142443
|
-
* Version: 25.1.
|
142444
|
-
* Build date:
|
142477
|
+
* Version: 25.1.4-build-25189-0901
|
142478
|
+
* Build date: Tue Jul 08 2025
|
142445
142479
|
*
|
142446
142480
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142447
142481
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142452,8 +142486,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
142452
142486
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_guid.js
|
142453
142487
|
/**
|
142454
142488
|
* DevExtreme (esm/__internal/core/m_guid.js)
|
142455
|
-
* Version: 25.1.
|
142456
|
-
* Build date:
|
142489
|
+
* Version: 25.1.4-build-25189-0901
|
142490
|
+
* Build date: Tue Jul 08 2025
|
142457
142491
|
*
|
142458
142492
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142459
142493
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142495,8 +142529,8 @@ const Guid = core_class.inherit({
|
|
142495
142529
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/guid.js
|
142496
142530
|
/**
|
142497
142531
|
* DevExtreme (esm/common/guid.js)
|
142498
|
-
* Version: 25.1.
|
142499
|
-
* Build date:
|
142532
|
+
* Version: 25.1.4-build-25189-0901
|
142533
|
+
* Build date: Tue Jul 08 2025
|
142500
142534
|
*
|
142501
142535
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142502
142536
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142507,8 +142541,8 @@ const Guid = core_class.inherit({
|
|
142507
142541
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/templates/m_template_engine_registry.js
|
142508
142542
|
/**
|
142509
142543
|
* DevExtreme (esm/__internal/core/templates/m_template_engine_registry.js)
|
142510
|
-
* Version: 25.1.
|
142511
|
-
* Build date:
|
142544
|
+
* Version: 25.1.4-build-25189-0901
|
142545
|
+
* Build date: Tue Jul 08 2025
|
142512
142546
|
*
|
142513
142547
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142514
142548
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142537,8 +142571,8 @@ function getCurrentTemplateEngine() {
|
|
142537
142571
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/templates/template_engine_registry.js
|
142538
142572
|
/**
|
142539
142573
|
* DevExtreme (esm/core/templates/template_engine_registry.js)
|
142540
|
-
* Version: 25.1.
|
142541
|
-
* Build date:
|
142574
|
+
* Version: 25.1.4-build-25189-0901
|
142575
|
+
* Build date: Tue Jul 08 2025
|
142542
142576
|
*
|
142543
142577
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142544
142578
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142548,8 +142582,8 @@ function getCurrentTemplateEngine() {
|
|
142548
142582
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_set_template_engine.js
|
142549
142583
|
/**
|
142550
142584
|
* DevExtreme (esm/__internal/core/m_set_template_engine.js)
|
142551
|
-
* Version: 25.1.
|
142552
|
-
* Build date:
|
142585
|
+
* Version: 25.1.4-build-25189-0901
|
142586
|
+
* Build date: Tue Jul 08 2025
|
142553
142587
|
*
|
142554
142588
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142555
142589
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142559,8 +142593,8 @@ function getCurrentTemplateEngine() {
|
|
142559
142593
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/set_template_engine.js
|
142560
142594
|
/**
|
142561
142595
|
* DevExtreme (esm/common/set_template_engine.js)
|
142562
|
-
* Version: 25.1.
|
142563
|
-
* Build date:
|
142596
|
+
* Version: 25.1.4-build-25189-0901
|
142597
|
+
* Build date: Tue Jul 08 2025
|
142564
142598
|
*
|
142565
142599
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142566
142600
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142571,8 +142605,8 @@ function getCurrentTemplateEngine() {
|
|
142571
142605
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common.js
|
142572
142606
|
/**
|
142573
142607
|
* DevExtreme (esm/common.js)
|
142574
|
-
* Version: 25.1.
|
142575
|
-
* Build date:
|
142608
|
+
* Version: 25.1.4-build-25189-0901
|
142609
|
+
* Build date: Tue Jul 08 2025
|
142576
142610
|
*
|
142577
142611
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142578
142612
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142585,8 +142619,8 @@ function getCurrentTemplateEngine() {
|
|
142585
142619
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/config.js
|
142586
142620
|
/**
|
142587
142621
|
* DevExtreme (esm/core/config.js)
|
142588
|
-
* Version: 25.1.
|
142589
|
-
* Build date:
|
142622
|
+
* Version: 25.1.4-build-25189-0901
|
142623
|
+
* Build date: Tue Jul 08 2025
|
142590
142624
|
*
|
142591
142625
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142592
142626
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142597,8 +142631,8 @@ function getCurrentTemplateEngine() {
|
|
142597
142631
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/guid.js
|
142598
142632
|
/**
|
142599
142633
|
* DevExtreme (esm/core/guid.js)
|
142600
|
-
* Version: 25.1.
|
142601
|
-
* Build date:
|
142634
|
+
* Version: 25.1.4-build-25189-0901
|
142635
|
+
* Build date: Tue Jul 08 2025
|
142602
142636
|
*
|
142603
142637
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142604
142638
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142609,8 +142643,8 @@ function getCurrentTemplateEngine() {
|
|
142609
142643
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/console.js
|
142610
142644
|
/**
|
142611
142645
|
* DevExtreme (esm/core/utils/console.js)
|
142612
|
-
* Version: 25.1.
|
142613
|
-
* Build date:
|
142646
|
+
* Version: 25.1.4-build-25189-0901
|
142647
|
+
* Build date: Tue Jul 08 2025
|
142614
142648
|
*
|
142615
142649
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142616
142650
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142620,8 +142654,8 @@ function getCurrentTemplateEngine() {
|
|
142620
142654
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_variable_wrapper.js
|
142621
142655
|
/**
|
142622
142656
|
* DevExtreme (esm/__internal/core/utils/m_variable_wrapper.js)
|
142623
|
-
* Version: 25.1.
|
142624
|
-
* Build date:
|
142657
|
+
* Version: 25.1.4-build-25189-0901
|
142658
|
+
* Build date: Tue Jul 08 2025
|
142625
142659
|
*
|
142626
142660
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142627
142661
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142650,8 +142684,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
142650
142684
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/variable_wrapper.js
|
142651
142685
|
/**
|
142652
142686
|
* DevExtreme (esm/core/utils/variable_wrapper.js)
|
142653
|
-
* Version: 25.1.
|
142654
|
-
* Build date:
|
142687
|
+
* Version: 25.1.4-build-25189-0901
|
142688
|
+
* Build date: Tue Jul 08 2025
|
142655
142689
|
*
|
142656
142690
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142657
142691
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142662,8 +142696,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
142662
142696
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_object.js
|
142663
142697
|
/**
|
142664
142698
|
* DevExtreme (esm/__internal/core/utils/m_object.js)
|
142665
|
-
* Version: 25.1.
|
142666
|
-
* Build date:
|
142699
|
+
* Version: 25.1.4-build-25189-0901
|
142700
|
+
* Build date: Tue Jul 08 2025
|
142667
142701
|
*
|
142668
142702
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142669
142703
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142763,8 +142797,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142763
142797
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/object.js
|
142764
142798
|
/**
|
142765
142799
|
* DevExtreme (esm/core/utils/object.js)
|
142766
|
-
* Version: 25.1.
|
142767
|
-
* Build date:
|
142800
|
+
* Version: 25.1.4-build-25189-0901
|
142801
|
+
* Build date: Tue Jul 08 2025
|
142768
142802
|
*
|
142769
142803
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142770
142804
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142774,8 +142808,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142774
142808
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_data.js
|
142775
142809
|
/**
|
142776
142810
|
* DevExtreme (esm/__internal/core/utils/m_data.js)
|
142777
|
-
* Version: 25.1.
|
142778
|
-
* Build date:
|
142811
|
+
* Version: 25.1.4-build-25189-0901
|
142812
|
+
* Build date: Tue Jul 08 2025
|
142779
142813
|
*
|
142780
142814
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142781
142815
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142971,8 +143005,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142971
143005
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/data.js
|
142972
143006
|
/**
|
142973
143007
|
* DevExtreme (esm/core/utils/data.js)
|
142974
|
-
* Version: 25.1.
|
142975
|
-
* Build date:
|
143008
|
+
* Version: 25.1.4-build-25189-0901
|
143009
|
+
* Build date: Tue Jul 08 2025
|
142976
143010
|
*
|
142977
143011
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142978
143012
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142982,8 +143016,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142982
143016
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_callbacks.js
|
142983
143017
|
/**
|
142984
143018
|
* DevExtreme (esm/__internal/core/utils/m_callbacks.js)
|
142985
|
-
* Version: 25.1.
|
142986
|
-
* Build date:
|
143019
|
+
* Version: 25.1.4-build-25189-0901
|
143020
|
+
* Build date: Tue Jul 08 2025
|
142987
143021
|
*
|
142988
143022
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142989
143023
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143078,8 +143112,8 @@ const Callbacks = function(options) {
|
|
143078
143112
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/callbacks.js
|
143079
143113
|
/**
|
143080
143114
|
* DevExtreme (esm/core/utils/callbacks.js)
|
143081
|
-
* Version: 25.1.
|
143082
|
-
* Build date:
|
143115
|
+
* Version: 25.1.4-build-25189-0901
|
143116
|
+
* Build date: Tue Jul 08 2025
|
143083
143117
|
*
|
143084
143118
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143085
143119
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143090,8 +143124,8 @@ const Callbacks = function(options) {
|
|
143090
143124
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_deferred.js
|
143091
143125
|
/**
|
143092
143126
|
* DevExtreme (esm/__internal/core/utils/m_deferred.js)
|
143093
|
-
* Version: 25.1.
|
143094
|
-
* Build date:
|
143127
|
+
* Version: 25.1.4-build-25189-0901
|
143128
|
+
* Build date: Tue Jul 08 2025
|
143095
143129
|
*
|
143096
143130
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143097
143131
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143256,8 +143290,8 @@ function when() {
|
|
143256
143290
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/deferred.js
|
143257
143291
|
/**
|
143258
143292
|
* DevExtreme (esm/core/utils/deferred.js)
|
143259
|
-
* Version: 25.1.
|
143260
|
-
* Build date:
|
143293
|
+
* Version: 25.1.4-build-25189-0901
|
143294
|
+
* Build date: Tue Jul 08 2025
|
143261
143295
|
*
|
143262
143296
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143263
143297
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143267,8 +143301,8 @@ function when() {
|
|
143267
143301
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_common.js
|
143268
143302
|
/**
|
143269
143303
|
* DevExtreme (esm/__internal/core/utils/m_common.js)
|
143270
|
-
* Version: 25.1.
|
143271
|
-
* Build date:
|
143304
|
+
* Version: 25.1.4-build-25189-0901
|
143305
|
+
* Build date: Tue Jul 08 2025
|
143272
143306
|
*
|
143273
143307
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143274
143308
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143563,8 +143597,8 @@ const equalByValue = function(value1, value2) {
|
|
143563
143597
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/common.js
|
143564
143598
|
/**
|
143565
143599
|
* DevExtreme (esm/core/utils/common.js)
|
143566
|
-
* Version: 25.1.
|
143567
|
-
* Build date:
|
143600
|
+
* Version: 25.1.4-build-25189-0901
|
143601
|
+
* Build date: Tue Jul 08 2025
|
143568
143602
|
*
|
143569
143603
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143570
143604
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143574,8 +143608,8 @@ const equalByValue = function(value1, value2) {
|
|
143574
143608
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_math.js
|
143575
143609
|
/**
|
143576
143610
|
* DevExtreme (esm/__internal/core/utils/m_math.js)
|
143577
|
-
* Version: 25.1.
|
143578
|
-
* Build date:
|
143611
|
+
* Version: 25.1.4-build-25189-0901
|
143612
|
+
* Build date: Tue Jul 08 2025
|
143579
143613
|
*
|
143580
143614
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143581
143615
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143744,8 +143778,8 @@ function roundFloatPart(value) {
|
|
143744
143778
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/math.js
|
143745
143779
|
/**
|
143746
143780
|
* DevExtreme (esm/core/utils/math.js)
|
143747
|
-
* Version: 25.1.
|
143748
|
-
* Build date:
|
143781
|
+
* Version: 25.1.4-build-25189-0901
|
143782
|
+
* Build date: Tue Jul 08 2025
|
143749
143783
|
*
|
143750
143784
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143751
143785
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143755,8 +143789,8 @@ function roundFloatPart(value) {
|
|
143755
143789
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/utils.js
|
143756
143790
|
/**
|
143757
143791
|
* DevExtreme (esm/common/core/localization/utils.js)
|
143758
|
-
* Version: 25.1.
|
143759
|
-
* Build date:
|
143792
|
+
* Version: 25.1.4-build-25189-0901
|
143793
|
+
* Build date: Tue Jul 08 2025
|
143760
143794
|
*
|
143761
143795
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143762
143796
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143783,8 +143817,8 @@ function toFixed(value, precision) {
|
|
143783
143817
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/number.js
|
143784
143818
|
/**
|
143785
143819
|
* DevExtreme (esm/common/core/localization/ldml/number.js)
|
143786
|
-
* Version: 25.1.
|
143787
|
-
* Build date:
|
143820
|
+
* Version: 25.1.4-build-25189-0901
|
143821
|
+
* Build date: Tue Jul 08 2025
|
143788
143822
|
*
|
143789
143823
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143790
143824
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144025,8 +144059,8 @@ function getFormat(formatter) {
|
|
144025
144059
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/currency.js
|
144026
144060
|
/**
|
144027
144061
|
* DevExtreme (esm/common/core/localization/currency.js)
|
144028
|
-
* Version: 25.1.
|
144029
|
-
* Build date:
|
144062
|
+
* Version: 25.1.4-build-25189-0901
|
144063
|
+
* Build date: Tue Jul 08 2025
|
144030
144064
|
*
|
144031
144065
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144032
144066
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144058,8 +144092,8 @@ function getFormat(formatter) {
|
|
144058
144092
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/parent_locales.js
|
144059
144093
|
/**
|
144060
144094
|
* DevExtreme (esm/common/core/localization/cldr-data/parent_locales.js)
|
144061
|
-
* Version: 25.1.
|
144062
|
-
* Build date:
|
144095
|
+
* Version: 25.1.4-build-25189-0901
|
144096
|
+
* Build date: Tue Jul 08 2025
|
144063
144097
|
*
|
144064
144098
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144065
144099
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144244,8 +144278,8 @@ function getFormat(formatter) {
|
|
144244
144278
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/parentLocale.js
|
144245
144279
|
/**
|
144246
144280
|
* DevExtreme (esm/common/core/localization/parentLocale.js)
|
144247
|
-
* Version: 25.1.
|
144248
|
-
* Build date:
|
144281
|
+
* Version: 25.1.4-build-25189-0901
|
144282
|
+
* Build date: Tue Jul 08 2025
|
144249
144283
|
*
|
144250
144284
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144251
144285
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144262,8 +144296,8 @@ const PARENT_LOCALE_SEPARATOR = "-";
|
|
144262
144296
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/core.js
|
144263
144297
|
/**
|
144264
144298
|
* DevExtreme (esm/common/core/localization/core.js)
|
144265
|
-
* Version: 25.1.
|
144266
|
-
* Build date:
|
144299
|
+
* Version: 25.1.4-build-25189-0901
|
144300
|
+
* Build date: Tue Jul 08 2025
|
144267
144301
|
*
|
144268
144302
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144269
144303
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144304,8 +144338,8 @@ const DEFAULT_LOCALE = "en";
|
|
144304
144338
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/open_xml_currency_format.js
|
144305
144339
|
/**
|
144306
144340
|
* DevExtreme (esm/common/core/localization/open_xml_currency_format.js)
|
144307
|
-
* Version: 25.1.
|
144308
|
-
* Build date:
|
144341
|
+
* Version: 25.1.4-build-25189-0901
|
144342
|
+
* Build date: Tue Jul 08 2025
|
144309
144343
|
*
|
144310
144344
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144311
144345
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144347,8 +144381,8 @@ const DEFAULT_LOCALE = "en";
|
|
144347
144381
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/accounting_formats.js
|
144348
144382
|
/**
|
144349
144383
|
* DevExtreme (esm/common/core/localization/cldr-data/accounting_formats.js)
|
144350
|
-
* Version: 25.1.
|
144351
|
-
* Build date:
|
144384
|
+
* Version: 25.1.4-build-25189-0901
|
144385
|
+
* Build date: Tue Jul 08 2025
|
144352
144386
|
*
|
144353
144387
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144354
144388
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144934,8 +144968,8 @@ const DEFAULT_LOCALE = "en";
|
|
144934
144968
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/number.js
|
144935
144969
|
/**
|
144936
144970
|
* DevExtreme (esm/common/core/localization/intl/number.js)
|
144937
|
-
* Version: 25.1.
|
144938
|
-
* Build date:
|
144971
|
+
* Version: 25.1.4-build-25189-0901
|
144972
|
+
* Build date: Tue Jul 08 2025
|
144939
144973
|
*
|
144940
144974
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144941
144975
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145056,8 +145090,8 @@ const getCurrencyFormatter = currency => new Intl.NumberFormat(core.locale(), {
|
|
145056
145090
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/number.js
|
145057
145091
|
/**
|
145058
145092
|
* DevExtreme (esm/common/core/localization/number.js)
|
145059
|
-
* Version: 25.1.
|
145060
|
-
* Build date:
|
145093
|
+
* Version: 25.1.4-build-25189-0901
|
145094
|
+
* Build date: Tue Jul 08 2025
|
145061
145095
|
*
|
145062
145096
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145063
145097
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145364,8 +145398,8 @@ if (hasIntl) {
|
|
145364
145398
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.format.js
|
145365
145399
|
/**
|
145366
145400
|
* DevExtreme (esm/common/core/localization/ldml/date.format.js)
|
145367
|
-
* Version: 25.1.
|
145368
|
-
* Build date:
|
145401
|
+
* Version: 25.1.4-build-25189-0901
|
145402
|
+
* Build date: Tue Jul 08 2025
|
145369
145403
|
*
|
145370
145404
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145371
145405
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145562,8 +145596,8 @@ const date_format_getFormat = function(formatter) {
|
|
145562
145596
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.parser.js
|
145563
145597
|
/**
|
145564
145598
|
* DevExtreme (esm/common/core/localization/ldml/date.parser.js)
|
145565
|
-
* Version: 25.1.
|
145566
|
-
* Build date:
|
145599
|
+
* Version: 25.1.4-build-25189-0901
|
145600
|
+
* Build date: Tue Jul 08 2025
|
145567
145601
|
*
|
145568
145602
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145569
145603
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145881,8 +145915,8 @@ const getParser = function(format, dateParts) {
|
|
145881
145915
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/default_date_names.js
|
145882
145916
|
/**
|
145883
145917
|
* DevExtreme (esm/common/core/localization/default_date_names.js)
|
145884
|
-
* Version: 25.1.
|
145885
|
-
* Build date:
|
145918
|
+
* Version: 25.1.4-build-25189-0901
|
145919
|
+
* Build date: Tue Jul 08 2025
|
145886
145920
|
*
|
145887
145921
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145888
145922
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145918,8 +145952,8 @@ const cutCaptions = (captions, format) => {
|
|
145918
145952
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/first_day_of_week_data.js
|
145919
145953
|
/**
|
145920
145954
|
* DevExtreme (esm/common/core/localization/cldr-data/first_day_of_week_data.js)
|
145921
|
-
* Version: 25.1.
|
145922
|
-
* Build date:
|
145955
|
+
* Version: 25.1.4-build-25189-0901
|
145956
|
+
* Build date: Tue Jul 08 2025
|
145923
145957
|
*
|
145924
145958
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145925
145959
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -146118,8 +146152,8 @@ const cutCaptions = (captions, format) => {
|
|
146118
146152
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/date.js
|
146119
146153
|
/**
|
146120
146154
|
* DevExtreme (esm/common/core/localization/intl/date.js)
|
146121
|
-
* Version: 25.1.
|
146122
|
-
* Build date:
|
146155
|
+
* Version: 25.1.4-build-25189-0901
|
146156
|
+
* Build date: Tue Jul 08 2025
|
146123
146157
|
*
|
146124
146158
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
146125
146159
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -146436,8 +146470,8 @@ const monthNameStrategies = {
|
|
146436
146470
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/date.js
|
146437
146471
|
/**
|
146438
146472
|
* DevExtreme (esm/common/core/localization/date.js)
|
146439
|
-
* Version: 25.1.
|
146440
|
-
* Build date:
|
146473
|
+
* Version: 25.1.4-build-25189-0901
|
146474
|
+
* Build date: Tue Jul 08 2025
|
146441
146475
|
*
|
146442
146476
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
146443
146477
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -150394,6 +150428,7 @@ var PrintModeApi;
|
|
150394
150428
|
|
150395
150429
|
|
150396
150430
|
;// CONCATENATED MODULE: ./src/client/public/ribbon/item-ids.ts
|
150431
|
+
|
150397
150432
|
var FileTabItemId;
|
150398
150433
|
(function (FileTabItemId) {
|
150399
150434
|
FileTabItemId[FileTabItemId["CreateNewDocument"] = 412] = "CreateNewDocument";
|