devexpress-richedit 24.2.7 → 24.2.8-build-25135-0103
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 +228 -198
- package/dist/dx.richedit.min.js +2 -2
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/lib/client/formats/docx/export/exporters/base/sections.d.ts +0 -1
- package/lib/client/formats/docx/export/exporters/base/sections.js +2 -10
- package/lib/client/model-api/formats/exporter.js +1 -1
- package/lib/client/model-api/sub-document.js +1 -1
- package/lib/common/formats/rtf/export/exporter.d.ts +2 -3
- package/lib/common/formats/rtf/export/exporter.js +3 -3
- package/lib/common/formats/rtf/export/exporters/rtf-content-exporter.d.ts +4 -2
- package/lib/common/formats/rtf/export/exporters/rtf-content-exporter.js +13 -9
- package/lib/common/formats/rtf/export/exporters/table/rtf-table-exporter.d.ts +3 -2
- package/lib/common/formats/rtf/export/exporters/table/rtf-table-exporter.js +4 -4
- package/lib/common/formats/rtf/export/exporters/table/states/rtf-nested-table-exporter-state.d.ts +2 -1
- package/lib/common/formats/rtf/export/exporters/table/states/rtf-nested-table-exporter-state.js +2 -2
- package/lib/common/formats/rtf/export/exporters/table/states/rtf-table-exporter-state-base.d.ts +4 -2
- package/lib/common/formats/rtf/export/exporters/table/states/rtf-table-exporter-state-base.js +16 -9
- package/lib/common/formats/rtf/export/exporters/table/states/rtf-table-exporter-state.d.ts +2 -1
- package/lib/common/formats/rtf/export/exporters/table/states/rtf-table-exporter-state.js +2 -2
- package/lib/common/formats/rtf/importer-in-subdocument.d.ts +1 -2
- package/lib/common/formats/rtf/importer-in-subdocument.js +4 -3
- package/lib/common/layout/main-structures/layout-row.js +1 -2
- package/lib/common/layout-formatter/row/size-engine/row-formatting-info.d.ts +4 -1
- package/lib/common/layout-formatter/row/size-engine/row-formatting-info.js +36 -2
- package/lib/common/layout-formatter/row/tab-info.js +5 -4
- package/lib/common/layout-formatter/table/info/table-info.d.ts +0 -1
- package/lib/common/layout-formatter/table/info/table-info.js +2 -18
- package/lib/common/layout-formatter/table/size-compressor.js +9 -2
- package/lib/common/layout-formatter/table/table-alignment-applier.js +0 -2
- package/lib/common/model/paragraph/paragraph-style.d.ts +2 -1
- package/lib/common/model/paragraph/paragraph-style.js +5 -3
- package/lib/common/model/tables/secondary-structures/table-base-structures.d.ts +2 -1
- package/lib/common/model/tables/secondary-structures/table-base-structures.js +1 -0
- package/package.json +3 -3
package/dist/dx.richedit.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/**
|
2
2
|
* DevExpress WebRichEdit (dx.richedit.js)
|
3
|
-
* Version: 24.2.
|
3
|
+
* Version: 24.2.8
|
4
4
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
5
5
|
* License: https://www.devexpress.com/Support/EULAs
|
6
6
|
*/
|
@@ -12329,6 +12329,7 @@ var ConditionalTableStyleFormatting;
|
|
12329
12329
|
ConditionalTableStyleFormatting[ConditionalTableStyleFormatting["TopLeftCell"] = 4] = "TopLeftCell";
|
12330
12330
|
ConditionalTableStyleFormatting[ConditionalTableStyleFormatting["BottomRightCell"] = 2] = "BottomRightCell";
|
12331
12331
|
ConditionalTableStyleFormatting[ConditionalTableStyleFormatting["BottomLeftCell"] = 1] = "BottomLeftCell";
|
12332
|
+
ConditionalTableStyleFormatting[ConditionalTableStyleFormatting["None"] = 0] = "None";
|
12332
12333
|
})(ConditionalTableStyleFormatting || (ConditionalTableStyleFormatting = {}));
|
12333
12334
|
|
12334
12335
|
;// CONCATENATED MODULE: ./src/common/model/tables/secondary-structures/table-units.ts
|
@@ -19208,8 +19209,6 @@ class TableAlignmentApplier {
|
|
19208
19209
|
offset = 0;
|
19209
19210
|
break;
|
19210
19211
|
}
|
19211
|
-
if (offset <= 0)
|
19212
|
-
return;
|
19213
19212
|
TableAlignmentApplier.moveAllTable(currTableColumnInfo, (rect) => rect.x += offset);
|
19214
19213
|
}
|
19215
19214
|
static applyCellsVerticalAlignment(defaultTableCellProps, grid, currTableColumnInfo, rowInfo) {
|
@@ -19703,15 +19702,16 @@ class TabProperties {
|
|
19703
19702
|
}
|
19704
19703
|
}
|
19705
19704
|
class TabInfo {
|
19706
|
-
constructor(position, alignment, leader, deleted, isDefault) {
|
19705
|
+
constructor(position, alignment, leader, deleted, isDefault, isParagraphIndent = false) {
|
19707
19706
|
this.position = position;
|
19708
19707
|
this.alignment = alignment;
|
19709
19708
|
this.leader = leader;
|
19710
19709
|
this.isDefault = isDefault;
|
19711
19710
|
this.deleted = deleted;
|
19711
|
+
this.isParagraphIndent = isParagraphIndent;
|
19712
19712
|
}
|
19713
19713
|
clone() {
|
19714
|
-
return new TabInfo(this.position, this.alignment, this.leader, this.deleted, this.isDefault);
|
19714
|
+
return new TabInfo(this.position, this.alignment, this.leader, this.deleted, this.isDefault, this.isParagraphIndent);
|
19715
19715
|
}
|
19716
19716
|
equals(obj) {
|
19717
19717
|
if (!obj)
|
@@ -19720,7 +19720,8 @@ class TabInfo {
|
|
19720
19720
|
this.leader == obj.leader &&
|
19721
19721
|
this.position == obj.position &&
|
19722
19722
|
this.deleted == obj.deleted &&
|
19723
|
-
this.isDefault == obj.isDefault
|
19723
|
+
this.isDefault == obj.isDefault &&
|
19724
|
+
this.isParagraphIndent == obj.isParagraphIndent;
|
19724
19725
|
}
|
19725
19726
|
}
|
19726
19727
|
|
@@ -50035,11 +50036,13 @@ class RtfStyleExporter {
|
|
50035
50036
|
|
50036
50037
|
|
50037
50038
|
|
50039
|
+
|
50038
50040
|
class RtfTableExporterStateBase {
|
50039
|
-
constructor(rtfExporter, table, nestingLevel) {
|
50041
|
+
constructor(rtfExporter, table, grid, nestingLevel) {
|
50040
50042
|
this.rtfExporter = rtfExporter;
|
50041
50043
|
this._nestingLevel = nestingLevel;
|
50042
50044
|
this.table = table;
|
50045
|
+
this.grid = grid;
|
50043
50046
|
this.tableRowPropertiesExporter = new RtfTableRowPropertiesExporter(rtfExporter.documentModel, rtfExporter.rtfExportHelper, rtfExporter.rtfBuilder);
|
50044
50047
|
this.tableCellPropertiesExporter = new RtfTableCellPropertiesExporter(rtfExporter.documentModel, rtfExporter.rtfExportHelper, rtfExporter.rtfBuilder);
|
50045
50048
|
this.tablePropertiesExporter = new RtfTablePropertiesExporter(rtfExporter.documentModel, rtfExporter.rtfExportHelper, rtfExporter.rtfBuilder);
|
@@ -50114,7 +50117,7 @@ class RtfTableExporterStateBase {
|
|
50114
50117
|
while (parentCell !== nestedTable.parentCell) {
|
50115
50118
|
nestedTable = nestedTable.parentCell.parentRow.parentTable;
|
50116
50119
|
}
|
50117
|
-
return RtfTableExporter.exportNestedTable(this.rtfExporter, nestedTable, this.nestingLevel + 1);
|
50120
|
+
return RtfTableExporter.exportNestedTable(this.rtfExporter, nestedTable, this.grid, this.nestingLevel + 1);
|
50118
50121
|
}
|
50119
50122
|
exportRowProperties(row, rowIndex) {
|
50120
50123
|
const rowLeft = this.calculateRowLeft(row, row.parentTable.getActualTableIndent(this.documentModel.defaultTableProperties));
|
@@ -50122,20 +50125,25 @@ class RtfTableExporterStateBase {
|
|
50122
50125
|
let cellRightVirtualColInd = row.gridBefore;
|
50123
50126
|
for (const cell of row.cells) {
|
50124
50127
|
cellRightVirtualColInd += cell.columnSpan;
|
50125
|
-
const
|
50128
|
+
const cellWidth = this.getCellWidth(row.gridBefore, cellRightVirtualColInd);
|
50129
|
+
const cellRight = unit_converter/* UnitConverter */.u.pixelsToTwips(rowLeft + cellWidth);
|
50126
50130
|
this.exportCellProperties(cell, cellRight);
|
50127
50131
|
}
|
50128
50132
|
}
|
50129
|
-
getCellWidth(
|
50130
|
-
if (
|
50133
|
+
getCellWidth(leftSideIndex, columnSpan) {
|
50134
|
+
if (leftSideIndex < 0 || columnSpan < 0)
|
50131
50135
|
throw new Error(lib_errors/* Errors */.D.InternalException);
|
50132
|
-
|
50133
|
-
|
50136
|
+
let result = 0;
|
50137
|
+
for (let i = 0; i < columnSpan; i++)
|
50138
|
+
result += Math.max(this.grid.columns.width[i + leftSideIndex], 1);
|
50139
|
+
return result;
|
50134
50140
|
}
|
50135
50141
|
calculateRowLeft(row, indent) {
|
50136
|
-
|
50142
|
+
var _a;
|
50143
|
+
const widthBefore = row.gridBefore > 0 ? this.getCellWidth(0, row.gridBefore) : 0;
|
50137
50144
|
const offset = this.getActualWidth(indent) + widthBefore;
|
50138
|
-
|
50145
|
+
const rowLeftOffset = (_a = this.rowLeftOffset) !== null && _a !== void 0 ? _a : this.calculateRowLeftOffset(row);
|
50146
|
+
return offset - rowLeftOffset;
|
50139
50147
|
}
|
50140
50148
|
calculateRowLeftOffset(row) {
|
50141
50149
|
const borderWidth = row.cells[0].properties.borders.left.width;
|
@@ -50245,8 +50253,8 @@ class RtfTableExporterStateBase {
|
|
50245
50253
|
|
50246
50254
|
|
50247
50255
|
class RtfNestedTableExporterState extends RtfTableExporterStateBase {
|
50248
|
-
constructor(rtfExporter, table, nestingLevel) {
|
50249
|
-
super(rtfExporter, table, nestingLevel);
|
50256
|
+
constructor(rtfExporter, table, grid, nestingLevel) {
|
50257
|
+
super(rtfExporter, table, grid, nestingLevel);
|
50250
50258
|
}
|
50251
50259
|
export() {
|
50252
50260
|
super.exportBase();
|
@@ -50275,8 +50283,8 @@ class RtfNestedTableExporterState extends RtfTableExporterStateBase {
|
|
50275
50283
|
|
50276
50284
|
|
50277
50285
|
class RtfTableExporterState extends RtfTableExporterStateBase {
|
50278
|
-
constructor(rtfExporter, table) {
|
50279
|
-
super(rtfExporter, table, 1);
|
50286
|
+
constructor(rtfExporter, table, grid) {
|
50287
|
+
super(rtfExporter, table, grid, 1);
|
50280
50288
|
}
|
50281
50289
|
export() {
|
50282
50290
|
super.exportBase();
|
@@ -50295,13 +50303,13 @@ class RtfTableExporterState extends RtfTableExporterStateBase {
|
|
50295
50303
|
|
50296
50304
|
|
50297
50305
|
class RtfTableExporter {
|
50298
|
-
static exportTable(rtfContentExporter, table) {
|
50299
|
-
new RtfTableExporterState(rtfContentExporter, table).export();
|
50306
|
+
static exportTable(rtfContentExporter, table, grid) {
|
50307
|
+
new RtfTableExporterState(rtfContentExporter, table, grid).export();
|
50300
50308
|
rtfContentExporter.tableIterator.update(table.getEndPosition());
|
50301
50309
|
return rtfContentExporter.subDocument.getParagraphIndexByPosition(table.getEndPosition() - 1);
|
50302
50310
|
}
|
50303
|
-
static exportNestedTable(rtfContentExporter, table, nestingLevel) {
|
50304
|
-
new RtfNestedTableExporterState(rtfContentExporter, table, nestingLevel).export();
|
50311
|
+
static exportNestedTable(rtfContentExporter, table, grid, nestingLevel) {
|
50312
|
+
new RtfNestedTableExporterState(rtfContentExporter, table, grid, nestingLevel).export();
|
50305
50313
|
rtfContentExporter.tableIterator.update(table.getEndPosition());
|
50306
50314
|
return rtfContentExporter.subDocument.getParagraphIndexByPosition(table.getEndPosition() - 1);
|
50307
50315
|
}
|
@@ -50347,17 +50355,18 @@ class RtfTableExporter {
|
|
50347
50355
|
class RtfContentExporter {
|
50348
50356
|
get shouldExportHiddenText() { return true; }
|
50349
50357
|
;
|
50350
|
-
|
50358
|
+
get documentModel() { return this.exportModelOptions.modelManager.modelManipulator.model; }
|
50359
|
+
constructor(exportModelOptions, options, rtfExportHelper) {
|
50351
50360
|
this.shouldFourceUpdateIterators = false;
|
50352
|
-
this.
|
50361
|
+
this.exportModelOptions = exportModelOptions;
|
50353
50362
|
this.subDocument = this.documentModel.mainSubDocument;
|
50354
50363
|
this.pieceTableNumberingListCounters = new PieceTableNumberingListCountersManager();
|
50355
50364
|
this.rtfExportHelper = rtfExportHelper;
|
50356
50365
|
this.options = options;
|
50357
50366
|
this.rtfBuilder = this.createRtfBuilder();
|
50358
|
-
this.paragraphPropertiesExporter = new RtfParagraphPropertiesExporter(documentModel, rtfExportHelper, this.rtfBuilder);
|
50359
|
-
this.characterPropertiesExporter = new RtfCharacterPropertiesExporter(documentModel, rtfExportHelper, this.rtfBuilder, options);
|
50360
|
-
this.sectionPropertiesExporter = new RtfSectionPropertiesExporter(documentModel, rtfExportHelper, this.rtfBuilder);
|
50367
|
+
this.paragraphPropertiesExporter = new RtfParagraphPropertiesExporter(this.documentModel, rtfExportHelper, this.rtfBuilder);
|
50368
|
+
this.characterPropertiesExporter = new RtfCharacterPropertiesExporter(this.documentModel, rtfExportHelper, this.rtfBuilder, options);
|
50369
|
+
this.sectionPropertiesExporter = new RtfSectionPropertiesExporter(this.documentModel, rtfExportHelper, this.rtfBuilder);
|
50361
50370
|
this.runHandlerMap = new MapCreator()
|
50362
50371
|
.add(RunType.TextRun, this.exportTextRun)
|
50363
50372
|
.add(RunType.FieldCodeStartRun, this.fieldCodeStartRunHandler)
|
@@ -50567,7 +50576,7 @@ class RtfContentExporter {
|
|
50567
50576
|
value = "00000000";
|
50568
50577
|
}
|
50569
50578
|
else {
|
50570
|
-
const view = new DataView(hash, 0);
|
50579
|
+
const view = new DataView(hash.buffer, 0);
|
50571
50580
|
const hashValue = view.getInt32(0);
|
50572
50581
|
value = this.documentModel.simpleFormattersManager.formatString("{0:x8}", hashValue);
|
50573
50582
|
}
|
@@ -50743,11 +50752,14 @@ class RtfContentExporter {
|
|
50743
50752
|
this.exportSingleParagraph(paragraph);
|
50744
50753
|
return paragraphIndex;
|
50745
50754
|
}
|
50746
|
-
else
|
50747
|
-
|
50755
|
+
else {
|
50756
|
+
const table = tablesInfo[0].table.getTopLevelParent();
|
50757
|
+
const grid = this.exportModelOptions.grids.get(table);
|
50758
|
+
return RtfTableExporter.exportTable(this, table, grid) - this.startSectionParagraphIndex;
|
50759
|
+
}
|
50748
50760
|
}
|
50749
50761
|
exportSingleParagraph(paragraph) {
|
50750
|
-
this.exportParagraphCore(paragraph, 0,
|
50762
|
+
this.exportParagraphCore(paragraph, 0, ConditionalTableStyleFormatting.None, -1);
|
50751
50763
|
this.finishParagraph(paragraph);
|
50752
50764
|
}
|
50753
50765
|
finishParagraph(paragraph) {
|
@@ -51277,11 +51289,11 @@ class RtfExportHelper {
|
|
51277
51289
|
|
51278
51290
|
class RtfExporter {
|
51279
51291
|
get documentModel() { return this.modelManipulator.model; }
|
51280
|
-
constructor(
|
51281
|
-
this.modelManipulator = modelManipulator;
|
51292
|
+
constructor(exportModelOptions, options) {
|
51293
|
+
this.modelManipulator = exportModelOptions.modelManager.modelManipulator;
|
51282
51294
|
this.options = options;
|
51283
51295
|
this.rtfExportHelper = new RtfExportHelper();
|
51284
|
-
this.contentExporter = new RtfContentExporter(
|
51296
|
+
this.contentExporter = new RtfContentExporter(exportModelOptions, options, this.rtfExportHelper);
|
51285
51297
|
this.rtfBuilder = this.contentExporter.createRtfBuilder();
|
51286
51298
|
}
|
51287
51299
|
exportToBlob(callback) {
|
@@ -65400,10 +65412,11 @@ function getAfterInsertReject(callback) {
|
|
65400
65412
|
|
65401
65413
|
|
65402
65414
|
|
65403
|
-
function getRtfFromSubDocumentPublic(
|
65415
|
+
function getRtfFromSubDocumentPublic(processor, subDocument, coreInterval) {
|
65404
65416
|
const rangeCopy = RangeCopy.create(new SubDocumentIntervals(subDocument, [coreInterval]));
|
65405
|
-
const newModelManager = new ClientModelManager(rangeCopy.model, richOptions, new batch_updatable/* EmptyBatchUpdatableObject */.m1());
|
65406
|
-
|
65417
|
+
const newModelManager = new ClientModelManager(rangeCopy.model, processor.modelManager.richOptions, new batch_updatable/* EmptyBatchUpdatableObject */.m1());
|
65418
|
+
const exportModelOptions = processor.getExportModelOptions({ modelManager: newModelManager });
|
65419
|
+
return new RtfExporter(exportModelOptions, new RtfDocumentExporterOptions()).exportAsString();
|
65407
65420
|
}
|
65408
65421
|
function insertRtfInSubDocumentPublic(processor, subDocument, position, rtf, callback) {
|
65409
65422
|
const options = new RtfImporterOptions(() => { });
|
@@ -85291,7 +85304,7 @@ class SubDocumentApi {
|
|
85291
85304
|
}
|
85292
85305
|
getRtf(interval) {
|
85293
85306
|
const coreInterval = this._checkInterval(interval);
|
85294
|
-
return getRtfFromSubDocumentPublic(this._processor
|
85307
|
+
return getRtfFromSubDocumentPublic(this._processor, this._subDocument, coreInterval);
|
85295
85308
|
}
|
85296
85309
|
insertContent(position, content, documentFormat, callback) {
|
85297
85310
|
position = ApiParametersChecker.check(position, 1, false, [
|
@@ -88719,21 +88732,13 @@ class SectionExporter extends BaseExporter {
|
|
88719
88732
|
this.exportSectionGeneralSettings(props);
|
88720
88733
|
}
|
88721
88734
|
exportSectionPage(props) {
|
88722
|
-
if (!this.shouldExportSectionPage(props))
|
88723
|
-
return;
|
88724
88735
|
this.writer.writeWpStartElement('pgSz');
|
88725
|
-
|
88726
|
-
|
88727
|
-
if (props.pageSize.height != SectionExporter.defaultProps.pageSize.height)
|
88728
|
-
this.writer.writeWpIntAttr('h', props.pageSize.height);
|
88736
|
+
this.writer.writeWpIntAttr('w', props.pageSize.width);
|
88737
|
+
this.writer.writeWpIntAttr('h', props.pageSize.height);
|
88729
88738
|
if (props.landscape)
|
88730
88739
|
this.writer.writeWpStringAttr('orient', props.landscape ? 'landscape' : 'portrait');
|
88731
88740
|
this.writer.endElement();
|
88732
88741
|
}
|
88733
|
-
shouldExportSectionPage(props) {
|
88734
|
-
return !props.pageSize.equals(SectionExporter.defaultProps.pageSize) ||
|
88735
|
-
props.landscape != SectionExporter.defaultProps.landscape;
|
88736
|
-
}
|
88737
88742
|
exportSectionMargins(props) {
|
88738
88743
|
this.writer.writeWpStartElement('pgMar');
|
88739
88744
|
this.writer.writeWpIntAttr('left', props.marginLeft);
|
@@ -91962,7 +91967,7 @@ function getExporter(exportModelOptions) {
|
|
91962
91967
|
const { modelManipulator } = exportModelOptions.modelManager;
|
91963
91968
|
switch (exportModelOptions.documentFormat) {
|
91964
91969
|
case DocumentFormat.OpenXml: return new DocxExporter(exportModelOptions, new DocxExportOptions());
|
91965
|
-
case DocumentFormat.Rtf: return new RtfExporter(
|
91970
|
+
case DocumentFormat.Rtf: return new RtfExporter(exportModelOptions, new RtfDocumentExporterOptions());
|
91966
91971
|
case DocumentFormat.PlainText: return new TxtExporter(modelManipulator, new DocumentExporterOptions());
|
91967
91972
|
case DocumentFormat.Html: return new HtmlDocumentExporter(exportModelOptions, new DocumentExporterOptions());
|
91968
91973
|
default:
|
@@ -92809,7 +92814,6 @@ class LayoutPageArea extends rectangle.Rectangle {
|
|
92809
92814
|
|
92810
92815
|
|
92811
92816
|
|
92812
|
-
|
92813
92817
|
var LayoutRowStateFlags;
|
92814
92818
|
(function (LayoutRowStateFlags) {
|
92815
92819
|
LayoutRowStateFlags[LayoutRowStateFlags["NormallyEnd"] = 0] = "NormallyEnd";
|
@@ -92936,7 +92940,7 @@ class layout_row_LayoutRow extends rectangle.Rectangle {
|
|
92936
92940
|
return lastBoxIndexWhatCanStrikeoutAndUnderline;
|
92937
92941
|
}
|
92938
92942
|
containsSpacesOnly() {
|
92939
|
-
return this.boxes.length > 0 && utils_list.ListUtils.allOf(this.boxes, val => val.isWhitespace()
|
92943
|
+
return this.boxes.length > 0 && utils_list.ListUtils.allOf(this.boxes, val => val.isWhitespace());
|
92940
92944
|
}
|
92941
92945
|
}
|
92942
92946
|
class LayoutRowWithIndex extends (/* unused pure expression or super */ null && (layout_row_LayoutRow)) {
|
@@ -95031,10 +95035,10 @@ class RowFormattingInfo {
|
|
95031
95035
|
const ind = utils_list.ListUtils.indexBy(this.intervals, (curr) => curr.start > pos || pos < curr.end, this.currIndex + 1);
|
95032
95036
|
return ind < 0 ? this.intervals.length - 1 : ind;
|
95033
95037
|
}
|
95034
|
-
calculate() {
|
95038
|
+
calculate(outerHorizontalRowContentBounds) {
|
95035
95039
|
this.setIntersectObjects();
|
95036
95040
|
this.busyIntervals = algorithms.IntervalAlgorithms.getMergedIntervals(utils_list.ListUtils.map(this.intersectsObjects, (objBnds) => new fixed.FixedInterval(objBnds.x, objBnds.width)), true);
|
95037
|
-
const freeIntervals =
|
95041
|
+
const freeIntervals = this.calculateFreeIntervals(this.busyIntervals, outerHorizontalRowContentBounds !== null && outerHorizontalRowContentBounds !== void 0 ? outerHorizontalRowContentBounds : this.outerHorizontalRowContentBounds);
|
95038
95042
|
if (freeIntervals.length) {
|
95039
95043
|
this.intervals = utils_list.ListUtils.map(freeIntervals, (curr) => new RowIntervalInfo(curr.start, curr.length));
|
95040
95044
|
return;
|
@@ -95042,6 +95046,40 @@ class RowFormattingInfo {
|
|
95042
95046
|
this.resetMinY(utils_list.ListUtils.min);
|
95043
95047
|
Log.print(LogSource.RowFormatter, "RowFormattingInfo.calculate ", `minY:${this.minY}, height:${this.height}, currIndex: ${this.currIndex} intervals:\n${Log.join("\n", utils_list.ListUtils.map(this.intervals, (curr) => LogObjToStr.fixedInterval(curr)))}`);
|
95044
95048
|
}
|
95049
|
+
calculateFreeIntervals(busyIntervals, outerHorizontalRowContentBounds) {
|
95050
|
+
const intervals = utils_list.ListUtils.reducedMap(busyIntervals, val => algorithms.IntervalAlgorithms.getIntersectionNonNullLength(val, outerHorizontalRowContentBounds));
|
95051
|
+
if (!intervals.length)
|
95052
|
+
return [outerHorizontalRowContentBounds.clone()];
|
95053
|
+
const lastIntervalEnd = utils_list.ListUtils.last(intervals).end;
|
95054
|
+
const result = utils_list.ListUtils.reducedMap(intervals, (curr, i) => fixed.FixedInterval.fromPositions(busyIntervals[i - 1].end, curr.start), 1);
|
95055
|
+
if (outerHorizontalRowContentBounds.start < busyIntervals[0].start)
|
95056
|
+
result.unshift(fixed.FixedInterval.fromPositions(outerHorizontalRowContentBounds.start, busyIntervals[0].start));
|
95057
|
+
if (outerHorizontalRowContentBounds.end > lastIntervalEnd)
|
95058
|
+
result.push(fixed.FixedInterval.fromPositions(lastIntervalEnd, outerHorizontalRowContentBounds.end));
|
95059
|
+
return result;
|
95060
|
+
}
|
95061
|
+
recalculate(outerHorizontalRowContentBounds) {
|
95062
|
+
const currInterval = this.currInterval;
|
95063
|
+
this.calculate(outerHorizontalRowContentBounds);
|
95064
|
+
const pos = currInterval.start + currInterval.busyWidth;
|
95065
|
+
const index = this.findIntervalIndexByPosition(pos);
|
95066
|
+
const interval = this.intervals[index];
|
95067
|
+
if (interval && interval.start < pos) {
|
95068
|
+
const avaliableWidth = interval.length - (pos - interval.start);
|
95069
|
+
interval.avaliableWidth = avaliableWidth;
|
95070
|
+
}
|
95071
|
+
this.currIndex = index;
|
95072
|
+
}
|
95073
|
+
findIntervalIndexByPosition(position) {
|
95074
|
+
let index = 0;
|
95075
|
+
while (index < this.intervals.length) {
|
95076
|
+
const interval = this.intervals[index];
|
95077
|
+
if (interval.start <= position && position < interval.end || position < interval.start)
|
95078
|
+
break;
|
95079
|
+
index++;
|
95080
|
+
}
|
95081
|
+
return index;
|
95082
|
+
}
|
95045
95083
|
canIncrementHeightTo(newHeight) {
|
95046
95084
|
const contentBounds = utils_list.ListUtils.map(this.intervals, (c) => new rectangle.Rectangle(c.start, this.minY, c.busyWidth, newHeight));
|
95047
95085
|
const intersectedObjects = this.calcIntersectObjects(newHeight);
|
@@ -95763,7 +95801,7 @@ class RowTabInfo {
|
|
95763
95801
|
const tab = this.tabPositions[ind];
|
95764
95802
|
const oldTabPos = tab ? tab.position : Number.MAX_VALUE;
|
95765
95803
|
if (oldTabPos != pos)
|
95766
|
-
this.tabPositions.splice(pos > oldTabPos ? ind + 1 : ind, 0, new TabInfo(pos, TabAlign.Left, TabLeaderType.None, false, false));
|
95804
|
+
this.tabPositions.splice(pos > oldTabPos ? ind + 1 : ind, 0, new TabInfo(pos, TabAlign.Left, TabLeaderType.None, false, false, true));
|
95767
95805
|
}
|
95768
95806
|
for (let pos of this.tabPositions)
|
95769
95807
|
pos.position += this.paragraphHorizontalBoundsStart;
|
@@ -95809,9 +95847,10 @@ class RowTabInfo {
|
|
95809
95847
|
const lastInterval = utils_list.ListUtils.last(this.rowFormatter.rowSizesManager.rowFormattingInfo.intervals);
|
95810
95848
|
if (tabXPosRelativePage > lastInterval.end) {
|
95811
95849
|
if (lastInterval.end < this.rowFormatter.paragraphHorizontalBounds.end) {
|
95812
|
-
if (this.rowFormatter.manager.model.compatibilitySettings.compatibilityMode < CompatibilityMode.Word2013 && tabPosition
|
95813
|
-
|
95814
|
-
|
95850
|
+
if (this.rowFormatter.manager.model.compatibilitySettings.compatibilityMode < CompatibilityMode.Word2013 && tabPosition && !tabPosition.isParagraphIndent) {
|
95851
|
+
const interval = this.rowFormatter.rowSizesManager.rowFormattingInfo.outerHorizontalRowContentBounds;
|
95852
|
+
interval.length = Number.MAX_SAFE_INTEGER - interval.start;
|
95853
|
+
this.rowFormatter.rowSizesManager.rowFormattingInfo.recalculate(interval);
|
95815
95854
|
this.row.width = Number.MAX_SAFE_INTEGER;
|
95816
95855
|
this.row.flags.set(LayoutRowStateFlags.InfinityWidth, true);
|
95817
95856
|
return this.addTabBox();
|
@@ -98173,25 +98212,9 @@ class table_info_TableInfo {
|
|
98173
98212
|
tableIndent.value = 0;
|
98174
98213
|
}
|
98175
98214
|
const tableIndentInPixels = tableIndent.asNumberNoPercentType(unit_converter/* UnitConverter */.u.twipsToPixels);
|
98176
|
-
this.xPositionStart = xPosition + tableIndentInPixels + (diff.xDiff ? diff.xDiff : -firstCellLeftMargin)
|
98177
|
-
this.getShiftHorizontalPosition(xPosition);
|
98215
|
+
this.xPositionStart = xPosition + tableIndentInPixels + (diff.xDiff ? diff.xDiff : -firstCellLeftMargin);
|
98178
98216
|
this.yPositionStart = yOffset + diff.yDiff;
|
98179
98217
|
}
|
98180
|
-
getShiftHorizontalPosition(xPosition) {
|
98181
|
-
const freeSpaceFromTable = this.columnWidth - this.grid.commonWidth;
|
98182
|
-
if (freeSpaceFromTable >= 0)
|
98183
|
-
return 0;
|
98184
|
-
const tableAlignment = this.table.getActualTableAlignment();
|
98185
|
-
if (tableAlignment == TableRowAlignment.Center) {
|
98186
|
-
let result = freeSpaceFromTable / 2 - xPosition;
|
98187
|
-
if (result < 0 && this.isSimpleView)
|
98188
|
-
result = 0;
|
98189
|
-
return result;
|
98190
|
-
}
|
98191
|
-
else if (tableAlignment == TableRowAlignment.Right)
|
98192
|
-
return freeSpaceFromTable - xPosition;
|
98193
|
-
return 0;
|
98194
|
-
}
|
98195
98218
|
static getEstimatedTableWidth(table, maxWidth) {
|
98196
98219
|
const preferredWidth = table.preferredWidth;
|
98197
98220
|
const minWidth = 3 * table.rows[0].getTotalCellsInRowConsiderGrid();
|
@@ -98274,6 +98297,12 @@ class LayoutTableSizeCompressor {
|
|
98274
98297
|
LayoutTableSizeCompressor.cellCompress(cell, cell.createRectangle());
|
98275
98298
|
}
|
98276
98299
|
static tableCompress(tableInfo, boundsRelativeColumn) {
|
98300
|
+
const intersection = rectangle.Rectangle.getIntersection(tableInfo, boundsRelativeColumn);
|
98301
|
+
const headOffset = intersection.x - tableInfo.x;
|
98302
|
+
if (headOffset > 0) {
|
98303
|
+
tableInfo.verticalBorders.forEach(b => b.xPos -= headOffset);
|
98304
|
+
tableInfo.verticalCursorBorders.forEach(b => b.xPos -= headOffset);
|
98305
|
+
}
|
98277
98306
|
LayoutTableSizeCompressor.compress(tableInfo, boundsRelativeColumn, true, false);
|
98278
98307
|
const boundsRelativeTable = tableInfo.clone().moveRectangle(-tableInfo.x, -tableInfo.y);
|
98279
98308
|
for (let row of tableInfo.tableRows)
|
@@ -98342,8 +98371,9 @@ class LayoutTableSizeCompressor {
|
|
98342
98371
|
}
|
98343
98372
|
border.length = Math.min(border.yPos + border.length, bounds.bottom) - border.yPos;
|
98344
98373
|
if (border.xPos < bounds.x)
|
98345
|
-
|
98346
|
-
|
98374
|
+
border.xPos = bounds.x;
|
98375
|
+
else
|
98376
|
+
border.xPos = bounds.right;
|
98347
98377
|
border.borderInfo.width = 0;
|
98348
98378
|
return false;
|
98349
98379
|
}
|
@@ -140923,8 +140953,8 @@ class DialogManager {
|
|
140923
140953
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_type.js
|
140924
140954
|
/**
|
140925
140955
|
* DevExtreme (esm/__internal/core/utils/m_type.js)
|
140926
|
-
* Version: 24.2.
|
140927
|
-
* Build date:
|
140956
|
+
* Version: 24.2.8-build-25133-1935
|
140957
|
+
* Build date: Tue May 13 2025
|
140928
140958
|
*
|
140929
140959
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140930
140960
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141026,8 +141056,8 @@ const isEvent = function(object) {
|
|
141026
141056
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/type.js
|
141027
141057
|
/**
|
141028
141058
|
* DevExtreme (esm/core/utils/type.js)
|
141029
|
-
* Version: 24.2.
|
141030
|
-
* Build date:
|
141059
|
+
* Version: 24.2.8-build-25133-1935
|
141060
|
+
* Build date: Tue May 13 2025
|
141031
141061
|
*
|
141032
141062
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141033
141063
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141037,8 +141067,8 @@ const isEvent = function(object) {
|
|
141037
141067
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_extend.js
|
141038
141068
|
/**
|
141039
141069
|
* DevExtreme (esm/__internal/core/utils/m_extend.js)
|
141040
|
-
* Version: 24.2.
|
141041
|
-
* Build date:
|
141070
|
+
* Version: 24.2.8-build-25133-1935
|
141071
|
+
* Build date: Tue May 13 2025
|
141042
141072
|
*
|
141043
141073
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141044
141074
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141096,8 +141126,8 @@ const extend = function(target) {
|
|
141096
141126
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/extend.js
|
141097
141127
|
/**
|
141098
141128
|
* DevExtreme (esm/core/utils/extend.js)
|
141099
|
-
* Version: 24.2.
|
141100
|
-
* Build date:
|
141129
|
+
* Version: 24.2.8-build-25133-1935
|
141130
|
+
* Build date: Tue May 13 2025
|
141101
141131
|
*
|
141102
141132
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141103
141133
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141107,8 +141137,8 @@ const extend = function(target) {
|
|
141107
141137
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_string.js
|
141108
141138
|
/**
|
141109
141139
|
* DevExtreme (esm/__internal/core/utils/m_string.js)
|
141110
|
-
* Version: 24.2.
|
141111
|
-
* Build date:
|
141140
|
+
* Version: 24.2.8-build-25133-1935
|
141141
|
+
* Build date: Tue May 13 2025
|
141112
141142
|
*
|
141113
141143
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141114
141144
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141183,8 +141213,8 @@ const isEmpty = function() {
|
|
141183
141213
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/string.js
|
141184
141214
|
/**
|
141185
141215
|
* DevExtreme (esm/core/utils/string.js)
|
141186
|
-
* Version: 24.2.
|
141187
|
-
* Build date:
|
141216
|
+
* Version: 24.2.8-build-25133-1935
|
141217
|
+
* Build date: Tue May 13 2025
|
141188
141218
|
*
|
141189
141219
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141190
141220
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141194,20 +141224,20 @@ const isEmpty = function() {
|
|
141194
141224
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/version.js
|
141195
141225
|
/**
|
141196
141226
|
* DevExtreme (esm/core/version.js)
|
141197
|
-
* Version: 24.2.
|
141198
|
-
* Build date:
|
141227
|
+
* Version: 24.2.8-build-25133-1935
|
141228
|
+
* Build date: Tue May 13 2025
|
141199
141229
|
*
|
141200
141230
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141201
141231
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
141202
141232
|
*/
|
141203
141233
|
const version = "24.2.7";
|
141204
|
-
const fullVersion = "24.2.7";
|
141234
|
+
const fullVersion = "24.2.7.25133-1935";
|
141205
141235
|
|
141206
141236
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_console.js
|
141207
141237
|
/**
|
141208
141238
|
* DevExtreme (esm/__internal/core/utils/m_console.js)
|
141209
|
-
* Version: 24.2.
|
141210
|
-
* Build date:
|
141239
|
+
* Version: 24.2.8-build-25133-1935
|
141240
|
+
* Build date: Tue May 13 2025
|
141211
141241
|
*
|
141212
141242
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141213
141243
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141247,8 +141277,8 @@ const debug = function() {
|
|
141247
141277
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_error.js
|
141248
141278
|
/**
|
141249
141279
|
* DevExtreme (esm/__internal/core/utils/m_error.js)
|
141250
|
-
* Version: 24.2.
|
141251
|
-
* Build date:
|
141280
|
+
* Version: 24.2.8-build-25133-1935
|
141281
|
+
* Build date: Tue May 13 2025
|
141252
141282
|
*
|
141253
141283
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141254
141284
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141319,8 +141349,8 @@ function error(baseErrors, errors) {
|
|
141319
141349
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/error.js
|
141320
141350
|
/**
|
141321
141351
|
* DevExtreme (esm/core/utils/error.js)
|
141322
|
-
* Version: 24.2.
|
141323
|
-
* Build date:
|
141352
|
+
* Version: 24.2.8-build-25133-1935
|
141353
|
+
* Build date: Tue May 13 2025
|
141324
141354
|
*
|
141325
141355
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141326
141356
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141331,8 +141361,8 @@ function error(baseErrors, errors) {
|
|
141331
141361
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_errors.js
|
141332
141362
|
/**
|
141333
141363
|
* DevExtreme (esm/__internal/core/m_errors.js)
|
141334
|
-
* Version: 24.2.
|
141335
|
-
* Build date:
|
141364
|
+
* Version: 24.2.8-build-25133-1935
|
141365
|
+
* Build date: Tue May 13 2025
|
141336
141366
|
*
|
141337
141367
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141338
141368
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141398,8 +141428,8 @@ function error(baseErrors, errors) {
|
|
141398
141428
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/errors.js
|
141399
141429
|
/**
|
141400
141430
|
* DevExtreme (esm/core/errors.js)
|
141401
|
-
* Version: 24.2.
|
141402
|
-
* Build date:
|
141431
|
+
* Version: 24.2.8-build-25133-1935
|
141432
|
+
* Build date: Tue May 13 2025
|
141403
141433
|
*
|
141404
141434
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141405
141435
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141410,8 +141440,8 @@ function error(baseErrors, errors) {
|
|
141410
141440
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_class.js
|
141411
141441
|
/**
|
141412
141442
|
* DevExtreme (esm/__internal/core/m_class.js)
|
141413
|
-
* Version: 24.2.
|
141414
|
-
* Build date:
|
141443
|
+
* Version: 24.2.8-build-25133-1935
|
141444
|
+
* Build date: Tue May 13 2025
|
141415
141445
|
*
|
141416
141446
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141417
141447
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141544,8 +141574,8 @@ classImpl.abstract = m_class_abstract;
|
|
141544
141574
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/class.js
|
141545
141575
|
/**
|
141546
141576
|
* DevExtreme (esm/core/class.js)
|
141547
|
-
* Version: 24.2.
|
141548
|
-
* Build date:
|
141577
|
+
* Version: 24.2.8-build-25133-1935
|
141578
|
+
* Build date: Tue May 13 2025
|
141549
141579
|
*
|
141550
141580
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141551
141581
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141556,8 +141586,8 @@ classImpl.abstract = m_class_abstract;
|
|
141556
141586
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_iterator.js
|
141557
141587
|
/**
|
141558
141588
|
* DevExtreme (esm/__internal/core/utils/m_iterator.js)
|
141559
|
-
* Version: 24.2.
|
141560
|
-
* Build date:
|
141589
|
+
* Version: 24.2.8-build-25133-1935
|
141590
|
+
* Build date: Tue May 13 2025
|
141561
141591
|
*
|
141562
141592
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141563
141593
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141606,8 +141636,8 @@ const reverseEach = (array, callback) => {
|
|
141606
141636
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_dependency_injector.js
|
141607
141637
|
/**
|
141608
141638
|
* DevExtreme (esm/__internal/core/utils/m_dependency_injector.js)
|
141609
|
-
* Version: 24.2.
|
141610
|
-
* Build date:
|
141639
|
+
* Version: 24.2.8-build-25133-1935
|
141640
|
+
* Build date: Tue May 13 2025
|
141611
141641
|
*
|
141612
141642
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141613
141643
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141656,8 +141686,8 @@ function injector(object) {
|
|
141656
141686
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/dependency_injector.js
|
141657
141687
|
/**
|
141658
141688
|
* DevExtreme (esm/core/utils/dependency_injector.js)
|
141659
|
-
* Version: 24.2.
|
141660
|
-
* Build date:
|
141689
|
+
* Version: 24.2.8-build-25133-1935
|
141690
|
+
* Build date: Tue May 13 2025
|
141661
141691
|
*
|
141662
141692
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141663
141693
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141668,8 +141698,8 @@ function injector(object) {
|
|
141668
141698
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.formatter.js
|
141669
141699
|
/**
|
141670
141700
|
* DevExtreme (esm/common/core/localization/ldml/date.formatter.js)
|
141671
|
-
* Version: 24.2.
|
141672
|
-
* Build date:
|
141701
|
+
* Version: 24.2.8-build-25133-1935
|
141702
|
+
* Build date: Tue May 13 2025
|
141673
141703
|
*
|
141674
141704
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141675
141705
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141822,8 +141852,8 @@ function _extends() {
|
|
141822
141852
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_config.js
|
141823
141853
|
/**
|
141824
141854
|
* DevExtreme (esm/__internal/core/m_config.js)
|
141825
|
-
* Version: 24.2.
|
141826
|
-
* Build date:
|
141855
|
+
* Version: 24.2.8-build-25133-1935
|
141856
|
+
* Build date: Tue May 13 2025
|
141827
141857
|
*
|
141828
141858
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141829
141859
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141898,8 +141928,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
141898
141928
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/config.js
|
141899
141929
|
/**
|
141900
141930
|
* DevExtreme (esm/common/config.js)
|
141901
|
-
* Version: 24.2.
|
141902
|
-
* Build date:
|
141931
|
+
* Version: 24.2.8-build-25133-1935
|
141932
|
+
* Build date: Tue May 13 2025
|
141903
141933
|
*
|
141904
141934
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141905
141935
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141910,8 +141940,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
141910
141940
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_guid.js
|
141911
141941
|
/**
|
141912
141942
|
* DevExtreme (esm/__internal/core/m_guid.js)
|
141913
|
-
* Version: 24.2.
|
141914
|
-
* Build date:
|
141943
|
+
* Version: 24.2.8-build-25133-1935
|
141944
|
+
* Build date: Tue May 13 2025
|
141915
141945
|
*
|
141916
141946
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141917
141947
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141953,8 +141983,8 @@ const Guid = core_class.inherit({
|
|
141953
141983
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/guid.js
|
141954
141984
|
/**
|
141955
141985
|
* DevExtreme (esm/common/guid.js)
|
141956
|
-
* Version: 24.2.
|
141957
|
-
* Build date:
|
141986
|
+
* Version: 24.2.8-build-25133-1935
|
141987
|
+
* Build date: Tue May 13 2025
|
141958
141988
|
*
|
141959
141989
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141960
141990
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141965,8 +141995,8 @@ const Guid = core_class.inherit({
|
|
141965
141995
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/templates/m_template_engine_registry.js
|
141966
141996
|
/**
|
141967
141997
|
* DevExtreme (esm/__internal/core/templates/m_template_engine_registry.js)
|
141968
|
-
* Version: 24.2.
|
141969
|
-
* Build date:
|
141998
|
+
* Version: 24.2.8-build-25133-1935
|
141999
|
+
* Build date: Tue May 13 2025
|
141970
142000
|
*
|
141971
142001
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141972
142002
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141995,8 +142025,8 @@ function getCurrentTemplateEngine() {
|
|
141995
142025
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/templates/template_engine_registry.js
|
141996
142026
|
/**
|
141997
142027
|
* DevExtreme (esm/core/templates/template_engine_registry.js)
|
141998
|
-
* Version: 24.2.
|
141999
|
-
* Build date:
|
142028
|
+
* Version: 24.2.8-build-25133-1935
|
142029
|
+
* Build date: Tue May 13 2025
|
142000
142030
|
*
|
142001
142031
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142002
142032
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142006,8 +142036,8 @@ function getCurrentTemplateEngine() {
|
|
142006
142036
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_set_template_engine.js
|
142007
142037
|
/**
|
142008
142038
|
* DevExtreme (esm/__internal/core/m_set_template_engine.js)
|
142009
|
-
* Version: 24.2.
|
142010
|
-
* Build date:
|
142039
|
+
* Version: 24.2.8-build-25133-1935
|
142040
|
+
* Build date: Tue May 13 2025
|
142011
142041
|
*
|
142012
142042
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142013
142043
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142017,8 +142047,8 @@ function getCurrentTemplateEngine() {
|
|
142017
142047
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/set_template_engine.js
|
142018
142048
|
/**
|
142019
142049
|
* DevExtreme (esm/common/set_template_engine.js)
|
142020
|
-
* Version: 24.2.
|
142021
|
-
* Build date:
|
142050
|
+
* Version: 24.2.8-build-25133-1935
|
142051
|
+
* Build date: Tue May 13 2025
|
142022
142052
|
*
|
142023
142053
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142024
142054
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142029,8 +142059,8 @@ function getCurrentTemplateEngine() {
|
|
142029
142059
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common.js
|
142030
142060
|
/**
|
142031
142061
|
* DevExtreme (esm/common.js)
|
142032
|
-
* Version: 24.2.
|
142033
|
-
* Build date:
|
142062
|
+
* Version: 24.2.8-build-25133-1935
|
142063
|
+
* Build date: Tue May 13 2025
|
142034
142064
|
*
|
142035
142065
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142036
142066
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142043,8 +142073,8 @@ function getCurrentTemplateEngine() {
|
|
142043
142073
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/config.js
|
142044
142074
|
/**
|
142045
142075
|
* DevExtreme (esm/core/config.js)
|
142046
|
-
* Version: 24.2.
|
142047
|
-
* Build date:
|
142076
|
+
* Version: 24.2.8-build-25133-1935
|
142077
|
+
* Build date: Tue May 13 2025
|
142048
142078
|
*
|
142049
142079
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142050
142080
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142055,8 +142085,8 @@ function getCurrentTemplateEngine() {
|
|
142055
142085
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/guid.js
|
142056
142086
|
/**
|
142057
142087
|
* DevExtreme (esm/core/guid.js)
|
142058
|
-
* Version: 24.2.
|
142059
|
-
* Build date:
|
142088
|
+
* Version: 24.2.8-build-25133-1935
|
142089
|
+
* Build date: Tue May 13 2025
|
142060
142090
|
*
|
142061
142091
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142062
142092
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142067,8 +142097,8 @@ function getCurrentTemplateEngine() {
|
|
142067
142097
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/console.js
|
142068
142098
|
/**
|
142069
142099
|
* DevExtreme (esm/core/utils/console.js)
|
142070
|
-
* Version: 24.2.
|
142071
|
-
* Build date:
|
142100
|
+
* Version: 24.2.8-build-25133-1935
|
142101
|
+
* Build date: Tue May 13 2025
|
142072
142102
|
*
|
142073
142103
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142074
142104
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142078,8 +142108,8 @@ function getCurrentTemplateEngine() {
|
|
142078
142108
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_variable_wrapper.js
|
142079
142109
|
/**
|
142080
142110
|
* DevExtreme (esm/__internal/core/utils/m_variable_wrapper.js)
|
142081
|
-
* Version: 24.2.
|
142082
|
-
* Build date:
|
142111
|
+
* Version: 24.2.8-build-25133-1935
|
142112
|
+
* Build date: Tue May 13 2025
|
142083
142113
|
*
|
142084
142114
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142085
142115
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142108,8 +142138,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
142108
142138
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/variable_wrapper.js
|
142109
142139
|
/**
|
142110
142140
|
* DevExtreme (esm/core/utils/variable_wrapper.js)
|
142111
|
-
* Version: 24.2.
|
142112
|
-
* Build date:
|
142141
|
+
* Version: 24.2.8-build-25133-1935
|
142142
|
+
* Build date: Tue May 13 2025
|
142113
142143
|
*
|
142114
142144
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142115
142145
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142120,8 +142150,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
142120
142150
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_object.js
|
142121
142151
|
/**
|
142122
142152
|
* DevExtreme (esm/__internal/core/utils/m_object.js)
|
142123
|
-
* Version: 24.2.
|
142124
|
-
* Build date:
|
142153
|
+
* Version: 24.2.8-build-25133-1935
|
142154
|
+
* Build date: Tue May 13 2025
|
142125
142155
|
*
|
142126
142156
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142127
142157
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142221,8 +142251,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142221
142251
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/object.js
|
142222
142252
|
/**
|
142223
142253
|
* DevExtreme (esm/core/utils/object.js)
|
142224
|
-
* Version: 24.2.
|
142225
|
-
* Build date:
|
142254
|
+
* Version: 24.2.8-build-25133-1935
|
142255
|
+
* Build date: Tue May 13 2025
|
142226
142256
|
*
|
142227
142257
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142228
142258
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142232,8 +142262,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142232
142262
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_data.js
|
142233
142263
|
/**
|
142234
142264
|
* DevExtreme (esm/__internal/core/utils/m_data.js)
|
142235
|
-
* Version: 24.2.
|
142236
|
-
* Build date:
|
142265
|
+
* Version: 24.2.8-build-25133-1935
|
142266
|
+
* Build date: Tue May 13 2025
|
142237
142267
|
*
|
142238
142268
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142239
142269
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142429,8 +142459,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142429
142459
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/data.js
|
142430
142460
|
/**
|
142431
142461
|
* DevExtreme (esm/core/utils/data.js)
|
142432
|
-
* Version: 24.2.
|
142433
|
-
* Build date:
|
142462
|
+
* Version: 24.2.8-build-25133-1935
|
142463
|
+
* Build date: Tue May 13 2025
|
142434
142464
|
*
|
142435
142465
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142436
142466
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142440,8 +142470,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142440
142470
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_callbacks.js
|
142441
142471
|
/**
|
142442
142472
|
* DevExtreme (esm/__internal/core/utils/m_callbacks.js)
|
142443
|
-
* Version: 24.2.
|
142444
|
-
* Build date:
|
142473
|
+
* Version: 24.2.8-build-25133-1935
|
142474
|
+
* Build date: Tue May 13 2025
|
142445
142475
|
*
|
142446
142476
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142447
142477
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142536,8 +142566,8 @@ const Callbacks = function(options) {
|
|
142536
142566
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/callbacks.js
|
142537
142567
|
/**
|
142538
142568
|
* DevExtreme (esm/core/utils/callbacks.js)
|
142539
|
-
* Version: 24.2.
|
142540
|
-
* Build date:
|
142569
|
+
* Version: 24.2.8-build-25133-1935
|
142570
|
+
* Build date: Tue May 13 2025
|
142541
142571
|
*
|
142542
142572
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142543
142573
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142548,8 +142578,8 @@ const Callbacks = function(options) {
|
|
142548
142578
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_deferred.js
|
142549
142579
|
/**
|
142550
142580
|
* DevExtreme (esm/__internal/core/utils/m_deferred.js)
|
142551
|
-
* Version: 24.2.
|
142552
|
-
* Build date:
|
142581
|
+
* Version: 24.2.8-build-25133-1935
|
142582
|
+
* Build date: Tue May 13 2025
|
142553
142583
|
*
|
142554
142584
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142555
142585
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142714,8 +142744,8 @@ function when() {
|
|
142714
142744
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/deferred.js
|
142715
142745
|
/**
|
142716
142746
|
* DevExtreme (esm/core/utils/deferred.js)
|
142717
|
-
* Version: 24.2.
|
142718
|
-
* Build date:
|
142747
|
+
* Version: 24.2.8-build-25133-1935
|
142748
|
+
* Build date: Tue May 13 2025
|
142719
142749
|
*
|
142720
142750
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142721
142751
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142725,8 +142755,8 @@ function when() {
|
|
142725
142755
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_common.js
|
142726
142756
|
/**
|
142727
142757
|
* DevExtreme (esm/__internal/core/utils/m_common.js)
|
142728
|
-
* Version: 24.2.
|
142729
|
-
* Build date:
|
142758
|
+
* Version: 24.2.8-build-25133-1935
|
142759
|
+
* Build date: Tue May 13 2025
|
142730
142760
|
*
|
142731
142761
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142732
142762
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143021,8 +143051,8 @@ const equalByValue = function(value1, value2) {
|
|
143021
143051
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/common.js
|
143022
143052
|
/**
|
143023
143053
|
* DevExtreme (esm/core/utils/common.js)
|
143024
|
-
* Version: 24.2.
|
143025
|
-
* Build date:
|
143054
|
+
* Version: 24.2.8-build-25133-1935
|
143055
|
+
* Build date: Tue May 13 2025
|
143026
143056
|
*
|
143027
143057
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143028
143058
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143032,8 +143062,8 @@ const equalByValue = function(value1, value2) {
|
|
143032
143062
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_math.js
|
143033
143063
|
/**
|
143034
143064
|
* DevExtreme (esm/__internal/core/utils/m_math.js)
|
143035
|
-
* Version: 24.2.
|
143036
|
-
* Build date:
|
143065
|
+
* Version: 24.2.8-build-25133-1935
|
143066
|
+
* Build date: Tue May 13 2025
|
143037
143067
|
*
|
143038
143068
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143039
143069
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143202,8 +143232,8 @@ function roundFloatPart(value) {
|
|
143202
143232
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/math.js
|
143203
143233
|
/**
|
143204
143234
|
* DevExtreme (esm/core/utils/math.js)
|
143205
|
-
* Version: 24.2.
|
143206
|
-
* Build date:
|
143235
|
+
* Version: 24.2.8-build-25133-1935
|
143236
|
+
* Build date: Tue May 13 2025
|
143207
143237
|
*
|
143208
143238
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143209
143239
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143213,8 +143243,8 @@ function roundFloatPart(value) {
|
|
143213
143243
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/utils.js
|
143214
143244
|
/**
|
143215
143245
|
* DevExtreme (esm/common/core/localization/utils.js)
|
143216
|
-
* Version: 24.2.
|
143217
|
-
* Build date:
|
143246
|
+
* Version: 24.2.8-build-25133-1935
|
143247
|
+
* Build date: Tue May 13 2025
|
143218
143248
|
*
|
143219
143249
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143220
143250
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143241,8 +143271,8 @@ function toFixed(value, precision) {
|
|
143241
143271
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/number.js
|
143242
143272
|
/**
|
143243
143273
|
* DevExtreme (esm/common/core/localization/ldml/number.js)
|
143244
|
-
* Version: 24.2.
|
143245
|
-
* Build date:
|
143274
|
+
* Version: 24.2.8-build-25133-1935
|
143275
|
+
* Build date: Tue May 13 2025
|
143246
143276
|
*
|
143247
143277
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143248
143278
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143483,8 +143513,8 @@ function getFormat(formatter) {
|
|
143483
143513
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/currency.js
|
143484
143514
|
/**
|
143485
143515
|
* DevExtreme (esm/common/core/localization/currency.js)
|
143486
|
-
* Version: 24.2.
|
143487
|
-
* Build date:
|
143516
|
+
* Version: 24.2.8-build-25133-1935
|
143517
|
+
* Build date: Tue May 13 2025
|
143488
143518
|
*
|
143489
143519
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143490
143520
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143516,8 +143546,8 @@ function getFormat(formatter) {
|
|
143516
143546
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/parent_locales.js
|
143517
143547
|
/**
|
143518
143548
|
* DevExtreme (esm/common/core/localization/cldr-data/parent_locales.js)
|
143519
|
-
* Version: 24.2.
|
143520
|
-
* Build date:
|
143549
|
+
* Version: 24.2.8-build-25133-1935
|
143550
|
+
* Build date: Tue May 13 2025
|
143521
143551
|
*
|
143522
143552
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143523
143553
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143702,8 +143732,8 @@ function getFormat(formatter) {
|
|
143702
143732
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/parentLocale.js
|
143703
143733
|
/**
|
143704
143734
|
* DevExtreme (esm/common/core/localization/parentLocale.js)
|
143705
|
-
* Version: 24.2.
|
143706
|
-
* Build date:
|
143735
|
+
* Version: 24.2.8-build-25133-1935
|
143736
|
+
* Build date: Tue May 13 2025
|
143707
143737
|
*
|
143708
143738
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143709
143739
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143720,8 +143750,8 @@ const PARENT_LOCALE_SEPARATOR = "-";
|
|
143720
143750
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/core.js
|
143721
143751
|
/**
|
143722
143752
|
* DevExtreme (esm/common/core/localization/core.js)
|
143723
|
-
* Version: 24.2.
|
143724
|
-
* Build date:
|
143753
|
+
* Version: 24.2.8-build-25133-1935
|
143754
|
+
* Build date: Tue May 13 2025
|
143725
143755
|
*
|
143726
143756
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143727
143757
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143762,8 +143792,8 @@ const DEFAULT_LOCALE = "en";
|
|
143762
143792
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/open_xml_currency_format.js
|
143763
143793
|
/**
|
143764
143794
|
* DevExtreme (esm/common/core/localization/open_xml_currency_format.js)
|
143765
|
-
* Version: 24.2.
|
143766
|
-
* Build date:
|
143795
|
+
* Version: 24.2.8-build-25133-1935
|
143796
|
+
* Build date: Tue May 13 2025
|
143767
143797
|
*
|
143768
143798
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143769
143799
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143805,8 +143835,8 @@ const DEFAULT_LOCALE = "en";
|
|
143805
143835
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/accounting_formats.js
|
143806
143836
|
/**
|
143807
143837
|
* DevExtreme (esm/common/core/localization/cldr-data/accounting_formats.js)
|
143808
|
-
* Version: 24.2.
|
143809
|
-
* Build date:
|
143838
|
+
* Version: 24.2.8-build-25133-1935
|
143839
|
+
* Build date: Tue May 13 2025
|
143810
143840
|
*
|
143811
143841
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143812
143842
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144392,8 +144422,8 @@ const DEFAULT_LOCALE = "en";
|
|
144392
144422
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/number.js
|
144393
144423
|
/**
|
144394
144424
|
* DevExtreme (esm/common/core/localization/intl/number.js)
|
144395
|
-
* Version: 24.2.
|
144396
|
-
* Build date:
|
144425
|
+
* Version: 24.2.8-build-25133-1935
|
144426
|
+
* Build date: Tue May 13 2025
|
144397
144427
|
*
|
144398
144428
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144399
144429
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144513,8 +144543,8 @@ const getCurrencyFormatter = currency => new Intl.NumberFormat(core.locale(), {
|
|
144513
144543
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/number.js
|
144514
144544
|
/**
|
144515
144545
|
* DevExtreme (esm/common/core/localization/number.js)
|
144516
|
-
* Version: 24.2.
|
144517
|
-
* Build date:
|
144546
|
+
* Version: 24.2.8-build-25133-1935
|
144547
|
+
* Build date: Tue May 13 2025
|
144518
144548
|
*
|
144519
144549
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144520
144550
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144819,8 +144849,8 @@ if (hasIntl) {
|
|
144819
144849
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.format.js
|
144820
144850
|
/**
|
144821
144851
|
* DevExtreme (esm/common/core/localization/ldml/date.format.js)
|
144822
|
-
* Version: 24.2.
|
144823
|
-
* Build date:
|
144852
|
+
* Version: 24.2.8-build-25133-1935
|
144853
|
+
* Build date: Tue May 13 2025
|
144824
144854
|
*
|
144825
144855
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144826
144856
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145017,8 +145047,8 @@ const date_format_getFormat = function(formatter) {
|
|
145017
145047
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.parser.js
|
145018
145048
|
/**
|
145019
145049
|
* DevExtreme (esm/common/core/localization/ldml/date.parser.js)
|
145020
|
-
* Version: 24.2.
|
145021
|
-
* Build date:
|
145050
|
+
* Version: 24.2.8-build-25133-1935
|
145051
|
+
* Build date: Tue May 13 2025
|
145022
145052
|
*
|
145023
145053
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145024
145054
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145336,8 +145366,8 @@ const getParser = function(format, dateParts) {
|
|
145336
145366
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/default_date_names.js
|
145337
145367
|
/**
|
145338
145368
|
* DevExtreme (esm/common/core/localization/default_date_names.js)
|
145339
|
-
* Version: 24.2.
|
145340
|
-
* Build date:
|
145369
|
+
* Version: 24.2.8-build-25133-1935
|
145370
|
+
* Build date: Tue May 13 2025
|
145341
145371
|
*
|
145342
145372
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145343
145373
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145373,8 +145403,8 @@ const cutCaptions = (captions, format) => {
|
|
145373
145403
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/first_day_of_week_data.js
|
145374
145404
|
/**
|
145375
145405
|
* DevExtreme (esm/common/core/localization/cldr-data/first_day_of_week_data.js)
|
145376
|
-
* Version: 24.2.
|
145377
|
-
* Build date:
|
145406
|
+
* Version: 24.2.8-build-25133-1935
|
145407
|
+
* Build date: Tue May 13 2025
|
145378
145408
|
*
|
145379
145409
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145380
145410
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145573,8 +145603,8 @@ const cutCaptions = (captions, format) => {
|
|
145573
145603
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/date.js
|
145574
145604
|
/**
|
145575
145605
|
* DevExtreme (esm/common/core/localization/intl/date.js)
|
145576
|
-
* Version: 24.2.
|
145577
|
-
* Build date:
|
145606
|
+
* Version: 24.2.8-build-25133-1935
|
145607
|
+
* Build date: Tue May 13 2025
|
145578
145608
|
*
|
145579
145609
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145580
145610
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145891,8 +145921,8 @@ const monthNameStrategies = {
|
|
145891
145921
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/date.js
|
145892
145922
|
/**
|
145893
145923
|
* DevExtreme (esm/common/core/localization/date.js)
|
145894
|
-
* Version: 24.2.
|
145895
|
-
* Build date:
|
145924
|
+
* Version: 24.2.8-build-25133-1935
|
145925
|
+
* Build date: Tue May 13 2025
|
145896
145926
|
*
|
145897
145927
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145898
145928
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|