devexpress-richedit 24.2.7-build-25107-0104 → 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 +286 -229
- package/dist/dx.richedit.min.js +2 -2
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/lib/client/client-rich-edit.js +2 -2
- package/lib/client/commands/mail-merge-command.js +2 -1
- package/lib/client/formats/docx/export/data.d.ts +5 -1
- package/lib/client/formats/docx/export/data.js +3 -2
- package/lib/client/formats/docx/export/exporter.d.ts +2 -3
- package/lib/client/formats/docx/export/exporter.js +3 -3
- 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/formats/docx/export/exporters/base/table/table.d.ts +1 -1
- package/lib/client/formats/docx/export/exporters/base/table/table.js +4 -4
- package/lib/client/formats/docx/import/destination/paragraph-properties/properties/paragraph-spacing-destination.js +6 -4
- package/lib/client/model-api/formats/exporter.js +2 -2
- package/lib/client/model-api/sub-document.js +1 -1
- package/lib/common/formats/i-document-exporter.d.ts +3 -0
- 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/document-layout.d.ts +3 -0
- package/lib/common/layout/document-layout.js +6 -0
- package/lib/common/layout/main-structures/layout-page-area.d.ts +3 -0
- package/lib/common/layout/main-structures/layout-page-area.js +6 -0
- package/lib/common/layout/main-structures/layout-page.d.ts +3 -0
- package/lib/common/layout/main-structures/layout-page.js +8 -0
- package/lib/common/layout/main-structures/layout-row.js +1 -2
- package/lib/common/layout-formatter/floating/position-calculators/horizontal.d.ts +1 -0
- package/lib/common/layout-formatter/floating/position-calculators/horizontal.js +16 -12
- 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/states.js +0 -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/lib/common/rich-edit-core.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
|
|
@@ -32150,6 +32151,14 @@ class LayoutOtherPageAreasInfo {
|
|
32150
32151
|
}
|
32151
32152
|
}
|
32152
32153
|
class LayoutPage extends rectangle.Rectangle {
|
32154
|
+
get grids() {
|
32155
|
+
const result = new Map();
|
32156
|
+
for (let pageArea of this.mainSubDocumentPageAreas)
|
32157
|
+
pageArea.grids.forEach((grid, table) => result.set(table, grid));
|
32158
|
+
for (let pageArea of Object.values(this.otherPageAreas))
|
32159
|
+
pageArea.grids.forEach((grid, table) => result.set(table, grid));
|
32160
|
+
return result;
|
32161
|
+
}
|
32153
32162
|
constructor() {
|
32154
32163
|
super(0, 0, 0, 0);
|
32155
32164
|
this.mainSubDocumentPageAreas = [];
|
@@ -50027,11 +50036,13 @@ class RtfStyleExporter {
|
|
50027
50036
|
|
50028
50037
|
|
50029
50038
|
|
50039
|
+
|
50030
50040
|
class RtfTableExporterStateBase {
|
50031
|
-
constructor(rtfExporter, table, nestingLevel) {
|
50041
|
+
constructor(rtfExporter, table, grid, nestingLevel) {
|
50032
50042
|
this.rtfExporter = rtfExporter;
|
50033
50043
|
this._nestingLevel = nestingLevel;
|
50034
50044
|
this.table = table;
|
50045
|
+
this.grid = grid;
|
50035
50046
|
this.tableRowPropertiesExporter = new RtfTableRowPropertiesExporter(rtfExporter.documentModel, rtfExporter.rtfExportHelper, rtfExporter.rtfBuilder);
|
50036
50047
|
this.tableCellPropertiesExporter = new RtfTableCellPropertiesExporter(rtfExporter.documentModel, rtfExporter.rtfExportHelper, rtfExporter.rtfBuilder);
|
50037
50048
|
this.tablePropertiesExporter = new RtfTablePropertiesExporter(rtfExporter.documentModel, rtfExporter.rtfExportHelper, rtfExporter.rtfBuilder);
|
@@ -50106,7 +50117,7 @@ class RtfTableExporterStateBase {
|
|
50106
50117
|
while (parentCell !== nestedTable.parentCell) {
|
50107
50118
|
nestedTable = nestedTable.parentCell.parentRow.parentTable;
|
50108
50119
|
}
|
50109
|
-
return RtfTableExporter.exportNestedTable(this.rtfExporter, nestedTable, this.nestingLevel + 1);
|
50120
|
+
return RtfTableExporter.exportNestedTable(this.rtfExporter, nestedTable, this.grid, this.nestingLevel + 1);
|
50110
50121
|
}
|
50111
50122
|
exportRowProperties(row, rowIndex) {
|
50112
50123
|
const rowLeft = this.calculateRowLeft(row, row.parentTable.getActualTableIndent(this.documentModel.defaultTableProperties));
|
@@ -50114,20 +50125,25 @@ class RtfTableExporterStateBase {
|
|
50114
50125
|
let cellRightVirtualColInd = row.gridBefore;
|
50115
50126
|
for (const cell of row.cells) {
|
50116
50127
|
cellRightVirtualColInd += cell.columnSpan;
|
50117
|
-
const
|
50128
|
+
const cellWidth = this.getCellWidth(row.gridBefore, cellRightVirtualColInd);
|
50129
|
+
const cellRight = unit_converter/* UnitConverter */.u.pixelsToTwips(rowLeft + cellWidth);
|
50118
50130
|
this.exportCellProperties(cell, cellRight);
|
50119
50131
|
}
|
50120
50132
|
}
|
50121
|
-
getCellWidth(
|
50122
|
-
if (
|
50133
|
+
getCellWidth(leftSideIndex, columnSpan) {
|
50134
|
+
if (leftSideIndex < 0 || columnSpan < 0)
|
50123
50135
|
throw new Error(lib_errors/* Errors */.D.InternalException);
|
50124
|
-
|
50125
|
-
|
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;
|
50126
50140
|
}
|
50127
50141
|
calculateRowLeft(row, indent) {
|
50128
|
-
|
50142
|
+
var _a;
|
50143
|
+
const widthBefore = row.gridBefore > 0 ? this.getCellWidth(0, row.gridBefore) : 0;
|
50129
50144
|
const offset = this.getActualWidth(indent) + widthBefore;
|
50130
|
-
|
50145
|
+
const rowLeftOffset = (_a = this.rowLeftOffset) !== null && _a !== void 0 ? _a : this.calculateRowLeftOffset(row);
|
50146
|
+
return offset - rowLeftOffset;
|
50131
50147
|
}
|
50132
50148
|
calculateRowLeftOffset(row) {
|
50133
50149
|
const borderWidth = row.cells[0].properties.borders.left.width;
|
@@ -50237,8 +50253,8 @@ class RtfTableExporterStateBase {
|
|
50237
50253
|
|
50238
50254
|
|
50239
50255
|
class RtfNestedTableExporterState extends RtfTableExporterStateBase {
|
50240
|
-
constructor(rtfExporter, table, nestingLevel) {
|
50241
|
-
super(rtfExporter, table, nestingLevel);
|
50256
|
+
constructor(rtfExporter, table, grid, nestingLevel) {
|
50257
|
+
super(rtfExporter, table, grid, nestingLevel);
|
50242
50258
|
}
|
50243
50259
|
export() {
|
50244
50260
|
super.exportBase();
|
@@ -50267,8 +50283,8 @@ class RtfNestedTableExporterState extends RtfTableExporterStateBase {
|
|
50267
50283
|
|
50268
50284
|
|
50269
50285
|
class RtfTableExporterState extends RtfTableExporterStateBase {
|
50270
|
-
constructor(rtfExporter, table) {
|
50271
|
-
super(rtfExporter, table, 1);
|
50286
|
+
constructor(rtfExporter, table, grid) {
|
50287
|
+
super(rtfExporter, table, grid, 1);
|
50272
50288
|
}
|
50273
50289
|
export() {
|
50274
50290
|
super.exportBase();
|
@@ -50287,13 +50303,13 @@ class RtfTableExporterState extends RtfTableExporterStateBase {
|
|
50287
50303
|
|
50288
50304
|
|
50289
50305
|
class RtfTableExporter {
|
50290
|
-
static exportTable(rtfContentExporter, table) {
|
50291
|
-
new RtfTableExporterState(rtfContentExporter, table).export();
|
50306
|
+
static exportTable(rtfContentExporter, table, grid) {
|
50307
|
+
new RtfTableExporterState(rtfContentExporter, table, grid).export();
|
50292
50308
|
rtfContentExporter.tableIterator.update(table.getEndPosition());
|
50293
50309
|
return rtfContentExporter.subDocument.getParagraphIndexByPosition(table.getEndPosition() - 1);
|
50294
50310
|
}
|
50295
|
-
static exportNestedTable(rtfContentExporter, table, nestingLevel) {
|
50296
|
-
new RtfNestedTableExporterState(rtfContentExporter, table, nestingLevel).export();
|
50311
|
+
static exportNestedTable(rtfContentExporter, table, grid, nestingLevel) {
|
50312
|
+
new RtfNestedTableExporterState(rtfContentExporter, table, grid, nestingLevel).export();
|
50297
50313
|
rtfContentExporter.tableIterator.update(table.getEndPosition());
|
50298
50314
|
return rtfContentExporter.subDocument.getParagraphIndexByPosition(table.getEndPosition() - 1);
|
50299
50315
|
}
|
@@ -50339,17 +50355,18 @@ class RtfTableExporter {
|
|
50339
50355
|
class RtfContentExporter {
|
50340
50356
|
get shouldExportHiddenText() { return true; }
|
50341
50357
|
;
|
50342
|
-
|
50358
|
+
get documentModel() { return this.exportModelOptions.modelManager.modelManipulator.model; }
|
50359
|
+
constructor(exportModelOptions, options, rtfExportHelper) {
|
50343
50360
|
this.shouldFourceUpdateIterators = false;
|
50344
|
-
this.
|
50361
|
+
this.exportModelOptions = exportModelOptions;
|
50345
50362
|
this.subDocument = this.documentModel.mainSubDocument;
|
50346
50363
|
this.pieceTableNumberingListCounters = new PieceTableNumberingListCountersManager();
|
50347
50364
|
this.rtfExportHelper = rtfExportHelper;
|
50348
50365
|
this.options = options;
|
50349
50366
|
this.rtfBuilder = this.createRtfBuilder();
|
50350
|
-
this.paragraphPropertiesExporter = new RtfParagraphPropertiesExporter(documentModel, rtfExportHelper, this.rtfBuilder);
|
50351
|
-
this.characterPropertiesExporter = new RtfCharacterPropertiesExporter(documentModel, rtfExportHelper, this.rtfBuilder, options);
|
50352
|
-
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);
|
50353
50370
|
this.runHandlerMap = new MapCreator()
|
50354
50371
|
.add(RunType.TextRun, this.exportTextRun)
|
50355
50372
|
.add(RunType.FieldCodeStartRun, this.fieldCodeStartRunHandler)
|
@@ -50559,7 +50576,7 @@ class RtfContentExporter {
|
|
50559
50576
|
value = "00000000";
|
50560
50577
|
}
|
50561
50578
|
else {
|
50562
|
-
const view = new DataView(hash, 0);
|
50579
|
+
const view = new DataView(hash.buffer, 0);
|
50563
50580
|
const hashValue = view.getInt32(0);
|
50564
50581
|
value = this.documentModel.simpleFormattersManager.formatString("{0:x8}", hashValue);
|
50565
50582
|
}
|
@@ -50735,11 +50752,14 @@ class RtfContentExporter {
|
|
50735
50752
|
this.exportSingleParagraph(paragraph);
|
50736
50753
|
return paragraphIndex;
|
50737
50754
|
}
|
50738
|
-
else
|
50739
|
-
|
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
|
+
}
|
50740
50760
|
}
|
50741
50761
|
exportSingleParagraph(paragraph) {
|
50742
|
-
this.exportParagraphCore(paragraph, 0,
|
50762
|
+
this.exportParagraphCore(paragraph, 0, ConditionalTableStyleFormatting.None, -1);
|
50743
50763
|
this.finishParagraph(paragraph);
|
50744
50764
|
}
|
50745
50765
|
finishParagraph(paragraph) {
|
@@ -51269,11 +51289,11 @@ class RtfExportHelper {
|
|
51269
51289
|
|
51270
51290
|
class RtfExporter {
|
51271
51291
|
get documentModel() { return this.modelManipulator.model; }
|
51272
|
-
constructor(
|
51273
|
-
this.modelManipulator = modelManipulator;
|
51292
|
+
constructor(exportModelOptions, options) {
|
51293
|
+
this.modelManipulator = exportModelOptions.modelManager.modelManipulator;
|
51274
51294
|
this.options = options;
|
51275
51295
|
this.rtfExportHelper = new RtfExportHelper();
|
51276
|
-
this.contentExporter = new RtfContentExporter(
|
51296
|
+
this.contentExporter = new RtfContentExporter(exportModelOptions, options, this.rtfExportHelper);
|
51277
51297
|
this.rtfBuilder = this.contentExporter.createRtfBuilder();
|
51278
51298
|
}
|
51279
51299
|
exportToBlob(callback) {
|
@@ -65392,10 +65412,11 @@ function getAfterInsertReject(callback) {
|
|
65392
65412
|
|
65393
65413
|
|
65394
65414
|
|
65395
|
-
function getRtfFromSubDocumentPublic(
|
65415
|
+
function getRtfFromSubDocumentPublic(processor, subDocument, coreInterval) {
|
65396
65416
|
const rangeCopy = RangeCopy.create(new SubDocumentIntervals(subDocument, [coreInterval]));
|
65397
|
-
const newModelManager = new ClientModelManager(rangeCopy.model, richOptions, new batch_updatable/* EmptyBatchUpdatableObject */.m1());
|
65398
|
-
|
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();
|
65399
65420
|
}
|
65400
65421
|
function insertRtfInSubDocumentPublic(processor, subDocument, position, rtf, callback) {
|
65401
65422
|
const options = new RtfImporterOptions(() => { });
|
@@ -70660,6 +70681,12 @@ class AnchorObjectsPositionInfo {
|
|
70660
70681
|
}
|
70661
70682
|
}
|
70662
70683
|
class DocumentLayout {
|
70684
|
+
get grids() {
|
70685
|
+
return this.pages.reduce((res, page) => {
|
70686
|
+
page.grids.forEach((grid, table) => res.set(table, grid));
|
70687
|
+
return res;
|
70688
|
+
}, new Map());
|
70689
|
+
}
|
70663
70690
|
constructor(anchorObjectsPositionInfo) {
|
70664
70691
|
this.anchorObjectsPositionInfo = anchorObjectsPositionInfo;
|
70665
70692
|
this.setEmptyLayout(ColorHelper.NO_COLOR);
|
@@ -81660,10 +81687,12 @@ class ParagraphSpacingDestination extends ParagraphFormattingLeafElementDestinat
|
|
81660
81687
|
const spacingBefore = this.data.readerHelper.getWpSTIntegerValue(reader, 'before', constants.Constants.MIN_SAFE_INTEGER);
|
81661
81688
|
if (spacingBefore >= 0)
|
81662
81689
|
this.paragraphProperties.setValue(ParagraphPropertyDescriptor.spacingBefore, spacingBefore);
|
81663
|
-
this.
|
81664
|
-
|
81665
|
-
|
81666
|
-
|
81690
|
+
const beforeAutoSpacing = this.data.readerHelper.getWpSTOnOffValue(reader, 'beforeAutospacing', null);
|
81691
|
+
if (spacingBefore == -1 || beforeAutoSpacing != null)
|
81692
|
+
this.paragraphProperties.setValue(ParagraphPropertyDescriptor.beforeAutoSpacing, spacingBefore == -1 || beforeAutoSpacing);
|
81693
|
+
const afterAutoSpacing = this.data.readerHelper.getWpSTOnOffValue(reader, 'afterAutospacing', null);
|
81694
|
+
if (spacingAfter == -1 || afterAutoSpacing != null)
|
81695
|
+
this.paragraphProperties.setValue(ParagraphPropertyDescriptor.afterAutoSpacing, spacingAfter == -1 || afterAutoSpacing);
|
81667
81696
|
const lineSpacing = this.data.readerHelper.getWpSTIntegerValue(reader, 'line', constants.Constants.MIN_SAFE_INTEGER);
|
81668
81697
|
if (lineSpacing != constants.Constants.MIN_SAFE_INTEGER && lineSpacing > 0) {
|
81669
81698
|
const attribute = new WordProcessingMLValue('lineRule', 'line-rule');
|
@@ -85275,7 +85304,7 @@ class SubDocumentApi {
|
|
85275
85304
|
}
|
85276
85305
|
getRtf(interval) {
|
85277
85306
|
const coreInterval = this._checkInterval(interval);
|
85278
|
-
return getRtfFromSubDocumentPublic(this._processor
|
85307
|
+
return getRtfFromSubDocumentPublic(this._processor, this._subDocument, coreInterval);
|
85279
85308
|
}
|
85280
85309
|
insertContent(position, content, documentFormat, callback) {
|
85281
85310
|
position = ApiParametersChecker.check(position, 1, false, [
|
@@ -88703,21 +88732,13 @@ class SectionExporter extends BaseExporter {
|
|
88703
88732
|
this.exportSectionGeneralSettings(props);
|
88704
88733
|
}
|
88705
88734
|
exportSectionPage(props) {
|
88706
|
-
if (!this.shouldExportSectionPage(props))
|
88707
|
-
return;
|
88708
88735
|
this.writer.writeWpStartElement('pgSz');
|
88709
|
-
|
88710
|
-
|
88711
|
-
if (props.pageSize.height != SectionExporter.defaultProps.pageSize.height)
|
88712
|
-
this.writer.writeWpIntAttr('h', props.pageSize.height);
|
88736
|
+
this.writer.writeWpIntAttr('w', props.pageSize.width);
|
88737
|
+
this.writer.writeWpIntAttr('h', props.pageSize.height);
|
88713
88738
|
if (props.landscape)
|
88714
88739
|
this.writer.writeWpStringAttr('orient', props.landscape ? 'landscape' : 'portrait');
|
88715
88740
|
this.writer.endElement();
|
88716
88741
|
}
|
88717
|
-
shouldExportSectionPage(props) {
|
88718
|
-
return !props.pageSize.equals(SectionExporter.defaultProps.pageSize) ||
|
88719
|
-
props.landscape != SectionExporter.defaultProps.landscape;
|
88720
|
-
}
|
88721
88742
|
exportSectionMargins(props) {
|
88722
88743
|
this.writer.writeWpStartElement('pgMar');
|
88723
88744
|
this.writer.writeWpIntAttr('left', props.marginLeft);
|
@@ -90504,6 +90525,7 @@ class EffectExtent {
|
|
90504
90525
|
|
90505
90526
|
|
90506
90527
|
|
90528
|
+
|
90507
90529
|
class TableExporter extends BaseExporter {
|
90508
90530
|
constructor() {
|
90509
90531
|
super(...arguments);
|
@@ -90533,10 +90555,9 @@ class TableExporter extends BaseExporter {
|
|
90533
90555
|
}
|
90534
90556
|
}
|
90535
90557
|
getTableGrid(table) {
|
90536
|
-
|
90537
|
-
|
90538
|
-
|
90539
|
-
return colGrid;
|
90558
|
+
var _a, _b;
|
90559
|
+
const grid = this.data.grids.get(table);
|
90560
|
+
return ((_b = (_a = grid === null || grid === void 0 ? void 0 : grid.columns) === null || _a === void 0 ? void 0 : _a.width) === null || _b === void 0 ? void 0 : _b.map(unit_converter/* UnitConverter */.u.pixelsToTwips)) || [];
|
90540
90561
|
}
|
90541
90562
|
initNewTables(newIndexes, allowInitNextTable) {
|
90542
90563
|
for (let levelIndex = this.tableIndexes.length; levelIndex < newIndexes.length; levelIndex++) {
|
@@ -91046,11 +91067,12 @@ class data_Data {
|
|
91046
91067
|
get subDocumentExporter() { return this.subDocumentExporterStack.last; }
|
91047
91068
|
get relationExporter() { return utils_list.ListUtils.last(this.relationExporters); }
|
91048
91069
|
get mainSubDocumentRelations() { return this.relationExporters[0]; }
|
91049
|
-
constructor(
|
91070
|
+
constructor(exportModelOptions, options) {
|
91050
91071
|
this.drawingElementId = 1;
|
91051
91072
|
this.exportSubDocumentsList = [];
|
91052
91073
|
this.relationExporters = [];
|
91053
|
-
this.model = model;
|
91074
|
+
this.model = exportModelOptions.modelManager.model;
|
91075
|
+
this.grids = exportModelOptions.grids;
|
91054
91076
|
this.options = options;
|
91055
91077
|
this.constants = new DocxConstants();
|
91056
91078
|
this.writerStack = new stack/* Stack */.K();
|
@@ -91834,10 +91856,10 @@ class EndNoteExporter extends NoteExporter {
|
|
91834
91856
|
|
91835
91857
|
|
91836
91858
|
class DocxExporter {
|
91837
|
-
constructor(
|
91838
|
-
this.modelManipulator = modelManipulator;
|
91859
|
+
constructor(exportModelOptions, options) {
|
91860
|
+
this.modelManipulator = exportModelOptions.modelManager.modelManipulator;
|
91839
91861
|
this.options = options;
|
91840
|
-
this.data = new data_Data(
|
91862
|
+
this.data = new data_Data(exportModelOptions, options);
|
91841
91863
|
}
|
91842
91864
|
exportToBlob(callback) {
|
91843
91865
|
this.modelManipulator.picture.loader.ensureAllPicturesLoaded(this.options.ensurePictureLoadedTimeout, (_loaded) => {
|
@@ -91944,8 +91966,8 @@ function exportModelToBlob(exportModelOptions, callback) {
|
|
91944
91966
|
function getExporter(exportModelOptions) {
|
91945
91967
|
const { modelManipulator } = exportModelOptions.modelManager;
|
91946
91968
|
switch (exportModelOptions.documentFormat) {
|
91947
|
-
case DocumentFormat.OpenXml: return new DocxExporter(
|
91948
|
-
case DocumentFormat.Rtf: return new RtfExporter(
|
91969
|
+
case DocumentFormat.OpenXml: return new DocxExporter(exportModelOptions, new DocxExportOptions());
|
91970
|
+
case DocumentFormat.Rtf: return new RtfExporter(exportModelOptions, new RtfDocumentExporterOptions());
|
91949
91971
|
case DocumentFormat.PlainText: return new TxtExporter(modelManipulator, new DocumentExporterOptions());
|
91950
91972
|
case DocumentFormat.Html: return new HtmlDocumentExporter(exportModelOptions, new DocumentExporterOptions());
|
91951
91973
|
default:
|
@@ -92456,7 +92478,7 @@ class AnchorObjectHorizontalPositionCalculator extends AnchorObjectPositionCalcu
|
|
92456
92478
|
alignment(type, alignment) {
|
92457
92479
|
switch (type) {
|
92458
92480
|
case AnchorObjectHorizontalPositionType.Character:
|
92459
|
-
return this.getAlignPosition(alignment, 0);
|
92481
|
+
return this.getAnchorXPosition() + this.getAlignPosition(alignment, 0);
|
92460
92482
|
case AnchorObjectHorizontalPositionType.Column:
|
92461
92483
|
return this.isRelativeCell ?
|
92462
92484
|
this.relativeColumnPos() + this.lp.row.tableCellInfo.x +
|
@@ -92505,17 +92527,8 @@ class AnchorObjectHorizontalPositionCalculator extends AnchorObjectPositionCalcu
|
|
92505
92527
|
return this.isRelativeCell ? this.relativeColumnPos() + this.lp.row.tableCellInfo.x : 0;
|
92506
92528
|
case AnchorObjectHorizontalPositionType.Column:
|
92507
92529
|
return this.isRelativeCell ? this.relativeColumnPos() + this.lp.row.tableCellInfo.x + this.leftCellMargin : this.relativeColumnPos();
|
92508
|
-
case AnchorObjectHorizontalPositionType.Character:
|
92509
|
-
|
92510
|
-
const ancBoxAbsPos = this.obj.rowOffset;
|
92511
|
-
const boxIndex = search.SearchUtils.normedInterpolationIndexOf(this.lp.row.boxes, (box) => rowAbsPos + box.rowOffset, ancBoxAbsPos);
|
92512
|
-
const box = this.lp.row.boxes[boxIndex];
|
92513
|
-
if (!box)
|
92514
|
-
return this.lp.getLayoutX(null, DocumentLayoutDetailsLevel.Row);
|
92515
|
-
const symbolCount = Math.max(0, ancBoxAbsPos - rowAbsPos - box.rowOffset);
|
92516
|
-
return this.lp.getLayoutX(null, DocumentLayoutDetailsLevel.Row) + box.x +
|
92517
|
-
box.getCharOffsetXInPixels(this.manager.measurer, symbolCount);
|
92518
|
-
}
|
92530
|
+
case AnchorObjectHorizontalPositionType.Character:
|
92531
|
+
return this.getAnchorXPosition();
|
92519
92532
|
case AnchorObjectHorizontalPositionType.Margin:
|
92520
92533
|
return this.isRelativeCell ? this.relativeColumnPos() + this.lp.row.tableCellInfo.x + this.leftCellMargin :
|
92521
92534
|
this.manager.boundsCalculator.marginLeft;
|
@@ -92532,6 +92545,19 @@ class AnchorObjectHorizontalPositionCalculator extends AnchorObjectPositionCalcu
|
|
92532
92545
|
throw new Error(lib_errors/* Errors */.D.InternalException);
|
92533
92546
|
}
|
92534
92547
|
}
|
92548
|
+
getAnchorXPosition() {
|
92549
|
+
const rowAbsPos = this.lp.getLogPosition(DocumentLayoutDetailsLevel.Row);
|
92550
|
+
const ancBoxAbsPos = this.obj.rowOffset;
|
92551
|
+
let boxIndex = search.SearchUtils.normedInterpolationIndexOf(this.lp.row.boxes, (box) => rowAbsPos + box.rowOffset, ancBoxAbsPos);
|
92552
|
+
if (boxIndex < 0)
|
92553
|
+
boxIndex = 0;
|
92554
|
+
const box = this.lp.row.boxes[boxIndex];
|
92555
|
+
if (!box)
|
92556
|
+
return this.lp.getLayoutX(null, DocumentLayoutDetailsLevel.Row);
|
92557
|
+
const symbolCount = Math.max(0, ancBoxAbsPos - rowAbsPos - box.rowOffset);
|
92558
|
+
return this.lp.getLayoutX(null, DocumentLayoutDetailsLevel.Row) + box.x +
|
92559
|
+
box.getCharOffsetXInPixels(this.manager.measurer, symbolCount);
|
92560
|
+
}
|
92535
92561
|
bookLayout() {
|
92536
92562
|
return this.alignment(this.anchorInfo.horizontalPositionType, AnchorObjectHorizontalPositionCalculator.mapBookLayoutALignmentType[this.anchorInfo.horizontalPositionAlignment]);
|
92537
92563
|
}
|
@@ -92757,6 +92783,12 @@ class AnchoredTextBoxContextSizeCalculator {
|
|
92757
92783
|
|
92758
92784
|
|
92759
92785
|
class LayoutPageArea extends rectangle.Rectangle {
|
92786
|
+
get grids() {
|
92787
|
+
return this.columns.reduce((res, column) => {
|
92788
|
+
column.tablesInfo.forEach(tableInfo => res.set(tableInfo.logicInfo.grid.table, tableInfo.logicInfo.grid));
|
92789
|
+
return res;
|
92790
|
+
}, new Map());
|
92791
|
+
}
|
92760
92792
|
constructor(subDocument) {
|
92761
92793
|
super(0, 0, 0, 0);
|
92762
92794
|
this.columns = [];
|
@@ -92782,7 +92814,6 @@ class LayoutPageArea extends rectangle.Rectangle {
|
|
92782
92814
|
|
92783
92815
|
|
92784
92816
|
|
92785
|
-
|
92786
92817
|
var LayoutRowStateFlags;
|
92787
92818
|
(function (LayoutRowStateFlags) {
|
92788
92819
|
LayoutRowStateFlags[LayoutRowStateFlags["NormallyEnd"] = 0] = "NormallyEnd";
|
@@ -92909,7 +92940,7 @@ class layout_row_LayoutRow extends rectangle.Rectangle {
|
|
92909
92940
|
return lastBoxIndexWhatCanStrikeoutAndUnderline;
|
92910
92941
|
}
|
92911
92942
|
containsSpacesOnly() {
|
92912
|
-
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());
|
92913
92944
|
}
|
92914
92945
|
}
|
92915
92946
|
class LayoutRowWithIndex extends (/* unused pure expression or super */ null && (layout_row_LayoutRow)) {
|
@@ -95004,10 +95035,10 @@ class RowFormattingInfo {
|
|
95004
95035
|
const ind = utils_list.ListUtils.indexBy(this.intervals, (curr) => curr.start > pos || pos < curr.end, this.currIndex + 1);
|
95005
95036
|
return ind < 0 ? this.intervals.length - 1 : ind;
|
95006
95037
|
}
|
95007
|
-
calculate() {
|
95038
|
+
calculate(outerHorizontalRowContentBounds) {
|
95008
95039
|
this.setIntersectObjects();
|
95009
95040
|
this.busyIntervals = algorithms.IntervalAlgorithms.getMergedIntervals(utils_list.ListUtils.map(this.intersectsObjects, (objBnds) => new fixed.FixedInterval(objBnds.x, objBnds.width)), true);
|
95010
|
-
const freeIntervals =
|
95041
|
+
const freeIntervals = this.calculateFreeIntervals(this.busyIntervals, outerHorizontalRowContentBounds !== null && outerHorizontalRowContentBounds !== void 0 ? outerHorizontalRowContentBounds : this.outerHorizontalRowContentBounds);
|
95011
95042
|
if (freeIntervals.length) {
|
95012
95043
|
this.intervals = utils_list.ListUtils.map(freeIntervals, (curr) => new RowIntervalInfo(curr.start, curr.length));
|
95013
95044
|
return;
|
@@ -95015,6 +95046,40 @@ class RowFormattingInfo {
|
|
95015
95046
|
this.resetMinY(utils_list.ListUtils.min);
|
95016
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)))}`);
|
95017
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
|
+
}
|
95018
95083
|
canIncrementHeightTo(newHeight) {
|
95019
95084
|
const contentBounds = utils_list.ListUtils.map(this.intervals, (c) => new rectangle.Rectangle(c.start, this.minY, c.busyWidth, newHeight));
|
95020
95085
|
const intersectedObjects = this.calcIntersectObjects(newHeight);
|
@@ -95605,8 +95670,6 @@ class RowBaseFormatterState {
|
|
95605
95670
|
this.rowFormatter.finishRow();
|
95606
95671
|
}
|
95607
95672
|
addAnchorObject() {
|
95608
|
-
if (!this.rowFormatter.wordHolder.pushBoxes())
|
95609
|
-
return;
|
95610
95673
|
this.rowFormatter.addAnchorObject();
|
95611
95674
|
}
|
95612
95675
|
addTextBox() {
|
@@ -95738,7 +95801,7 @@ class RowTabInfo {
|
|
95738
95801
|
const tab = this.tabPositions[ind];
|
95739
95802
|
const oldTabPos = tab ? tab.position : Number.MAX_VALUE;
|
95740
95803
|
if (oldTabPos != pos)
|
95741
|
-
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));
|
95742
95805
|
}
|
95743
95806
|
for (let pos of this.tabPositions)
|
95744
95807
|
pos.position += this.paragraphHorizontalBoundsStart;
|
@@ -95784,9 +95847,10 @@ class RowTabInfo {
|
|
95784
95847
|
const lastInterval = utils_list.ListUtils.last(this.rowFormatter.rowSizesManager.rowFormattingInfo.intervals);
|
95785
95848
|
if (tabXPosRelativePage > lastInterval.end) {
|
95786
95849
|
if (lastInterval.end < this.rowFormatter.paragraphHorizontalBounds.end) {
|
95787
|
-
if (this.rowFormatter.manager.model.compatibilitySettings.compatibilityMode < CompatibilityMode.Word2013 && tabPosition
|
95788
|
-
|
95789
|
-
|
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);
|
95790
95854
|
this.row.width = Number.MAX_SAFE_INTEGER;
|
95791
95855
|
this.row.flags.set(LayoutRowStateFlags.InfinityWidth, true);
|
95792
95856
|
return this.addTabBox();
|
@@ -98148,25 +98212,9 @@ class table_info_TableInfo {
|
|
98148
98212
|
tableIndent.value = 0;
|
98149
98213
|
}
|
98150
98214
|
const tableIndentInPixels = tableIndent.asNumberNoPercentType(unit_converter/* UnitConverter */.u.twipsToPixels);
|
98151
|
-
this.xPositionStart = xPosition + tableIndentInPixels + (diff.xDiff ? diff.xDiff : -firstCellLeftMargin)
|
98152
|
-
this.getShiftHorizontalPosition(xPosition);
|
98215
|
+
this.xPositionStart = xPosition + tableIndentInPixels + (diff.xDiff ? diff.xDiff : -firstCellLeftMargin);
|
98153
98216
|
this.yPositionStart = yOffset + diff.yDiff;
|
98154
98217
|
}
|
98155
|
-
getShiftHorizontalPosition(xPosition) {
|
98156
|
-
const freeSpaceFromTable = this.columnWidth - this.grid.commonWidth;
|
98157
|
-
if (freeSpaceFromTable >= 0)
|
98158
|
-
return 0;
|
98159
|
-
const tableAlignment = this.table.getActualTableAlignment();
|
98160
|
-
if (tableAlignment == TableRowAlignment.Center) {
|
98161
|
-
let result = freeSpaceFromTable / 2 - xPosition;
|
98162
|
-
if (result < 0 && this.isSimpleView)
|
98163
|
-
result = 0;
|
98164
|
-
return result;
|
98165
|
-
}
|
98166
|
-
else if (tableAlignment == TableRowAlignment.Right)
|
98167
|
-
return freeSpaceFromTable - xPosition;
|
98168
|
-
return 0;
|
98169
|
-
}
|
98170
98218
|
static getEstimatedTableWidth(table, maxWidth) {
|
98171
98219
|
const preferredWidth = table.preferredWidth;
|
98172
98220
|
const minWidth = 3 * table.rows[0].getTotalCellsInRowConsiderGrid();
|
@@ -98249,6 +98297,12 @@ class LayoutTableSizeCompressor {
|
|
98249
98297
|
LayoutTableSizeCompressor.cellCompress(cell, cell.createRectangle());
|
98250
98298
|
}
|
98251
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
|
+
}
|
98252
98306
|
LayoutTableSizeCompressor.compress(tableInfo, boundsRelativeColumn, true, false);
|
98253
98307
|
const boundsRelativeTable = tableInfo.clone().moveRectangle(-tableInfo.x, -tableInfo.y);
|
98254
98308
|
for (let row of tableInfo.tableRows)
|
@@ -98317,8 +98371,9 @@ class LayoutTableSizeCompressor {
|
|
98317
98371
|
}
|
98318
98372
|
border.length = Math.min(border.yPos + border.length, bounds.bottom) - border.yPos;
|
98319
98373
|
if (border.xPos < bounds.x)
|
98320
|
-
|
98321
|
-
|
98374
|
+
border.xPos = bounds.x;
|
98375
|
+
else
|
98376
|
+
border.xPos = bounds.right;
|
98322
98377
|
border.borderInfo.width = 0;
|
98323
98378
|
return false;
|
98324
98379
|
}
|
@@ -115777,6 +115832,7 @@ class RichEditCore {
|
|
115777
115832
|
pictureRenderer: this.viewManager.renderer,
|
115778
115833
|
uiUnitConverter: this.uiUnitConverter,
|
115779
115834
|
lastMaxNumPages: this.layout.lastMaxNumPages,
|
115835
|
+
grids: this.layout.grids,
|
115780
115836
|
pageIndex: this.selection.pageIndex,
|
115781
115837
|
sessionGuid: this.sessionGuid,
|
115782
115838
|
clientGuid: this.clientGuid,
|
@@ -137151,7 +137207,8 @@ class MailMergeCommand extends CommandBase {
|
|
137151
137207
|
return true;
|
137152
137208
|
}
|
137153
137209
|
executeCore(_state, options) {
|
137154
|
-
const
|
137210
|
+
const exportModelOptions = this.control.getExportModelOptions();
|
137211
|
+
const docxExporter = new DocxExporter(exportModelOptions, new DocxExportOptions());
|
137155
137212
|
docxExporter.exportToBlob((blob) => {
|
137156
137213
|
const docxImporter = new Importer(new ImporterOptions());
|
137157
137214
|
docxImporter.importFromFile(blob, this.control.modelManager.richOptions, (documentModel, formatImagesImporter) => {
|
@@ -140896,8 +140953,8 @@ class DialogManager {
|
|
140896
140953
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_type.js
|
140897
140954
|
/**
|
140898
140955
|
* DevExtreme (esm/__internal/core/utils/m_type.js)
|
140899
|
-
* Version: 24.2.
|
140900
|
-
* Build date: Tue
|
140956
|
+
* Version: 24.2.8-build-25133-1935
|
140957
|
+
* Build date: Tue May 13 2025
|
140901
140958
|
*
|
140902
140959
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140903
140960
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -140999,8 +141056,8 @@ const isEvent = function(object) {
|
|
140999
141056
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/type.js
|
141000
141057
|
/**
|
141001
141058
|
* DevExtreme (esm/core/utils/type.js)
|
141002
|
-
* Version: 24.2.
|
141003
|
-
* Build date: Tue
|
141059
|
+
* Version: 24.2.8-build-25133-1935
|
141060
|
+
* Build date: Tue May 13 2025
|
141004
141061
|
*
|
141005
141062
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141006
141063
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141010,8 +141067,8 @@ const isEvent = function(object) {
|
|
141010
141067
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_extend.js
|
141011
141068
|
/**
|
141012
141069
|
* DevExtreme (esm/__internal/core/utils/m_extend.js)
|
141013
|
-
* Version: 24.2.
|
141014
|
-
* Build date: Tue
|
141070
|
+
* Version: 24.2.8-build-25133-1935
|
141071
|
+
* Build date: Tue May 13 2025
|
141015
141072
|
*
|
141016
141073
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141017
141074
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141069,8 +141126,8 @@ const extend = function(target) {
|
|
141069
141126
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/extend.js
|
141070
141127
|
/**
|
141071
141128
|
* DevExtreme (esm/core/utils/extend.js)
|
141072
|
-
* Version: 24.2.
|
141073
|
-
* Build date: Tue
|
141129
|
+
* Version: 24.2.8-build-25133-1935
|
141130
|
+
* Build date: Tue May 13 2025
|
141074
141131
|
*
|
141075
141132
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141076
141133
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141080,8 +141137,8 @@ const extend = function(target) {
|
|
141080
141137
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_string.js
|
141081
141138
|
/**
|
141082
141139
|
* DevExtreme (esm/__internal/core/utils/m_string.js)
|
141083
|
-
* Version: 24.2.
|
141084
|
-
* Build date: Tue
|
141140
|
+
* Version: 24.2.8-build-25133-1935
|
141141
|
+
* Build date: Tue May 13 2025
|
141085
141142
|
*
|
141086
141143
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141087
141144
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141156,8 +141213,8 @@ const isEmpty = function() {
|
|
141156
141213
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/string.js
|
141157
141214
|
/**
|
141158
141215
|
* DevExtreme (esm/core/utils/string.js)
|
141159
|
-
* Version: 24.2.
|
141160
|
-
* Build date: Tue
|
141216
|
+
* Version: 24.2.8-build-25133-1935
|
141217
|
+
* Build date: Tue May 13 2025
|
141161
141218
|
*
|
141162
141219
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141163
141220
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141167,20 +141224,20 @@ const isEmpty = function() {
|
|
141167
141224
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/version.js
|
141168
141225
|
/**
|
141169
141226
|
* DevExtreme (esm/core/version.js)
|
141170
|
-
* Version: 24.2.
|
141171
|
-
* Build date: Tue
|
141227
|
+
* Version: 24.2.8-build-25133-1935
|
141228
|
+
* Build date: Tue May 13 2025
|
141172
141229
|
*
|
141173
141230
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141174
141231
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
141175
141232
|
*/
|
141176
|
-
const version = "24.2.
|
141177
|
-
const fullVersion = "24.2.
|
141233
|
+
const version = "24.2.7";
|
141234
|
+
const fullVersion = "24.2.7.25133-1935";
|
141178
141235
|
|
141179
141236
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_console.js
|
141180
141237
|
/**
|
141181
141238
|
* DevExtreme (esm/__internal/core/utils/m_console.js)
|
141182
|
-
* Version: 24.2.
|
141183
|
-
* Build date: Tue
|
141239
|
+
* Version: 24.2.8-build-25133-1935
|
141240
|
+
* Build date: Tue May 13 2025
|
141184
141241
|
*
|
141185
141242
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141186
141243
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141220,8 +141277,8 @@ const debug = function() {
|
|
141220
141277
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_error.js
|
141221
141278
|
/**
|
141222
141279
|
* DevExtreme (esm/__internal/core/utils/m_error.js)
|
141223
|
-
* Version: 24.2.
|
141224
|
-
* Build date: Tue
|
141280
|
+
* Version: 24.2.8-build-25133-1935
|
141281
|
+
* Build date: Tue May 13 2025
|
141225
141282
|
*
|
141226
141283
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141227
141284
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141292,8 +141349,8 @@ function error(baseErrors, errors) {
|
|
141292
141349
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/error.js
|
141293
141350
|
/**
|
141294
141351
|
* DevExtreme (esm/core/utils/error.js)
|
141295
|
-
* Version: 24.2.
|
141296
|
-
* Build date: Tue
|
141352
|
+
* Version: 24.2.8-build-25133-1935
|
141353
|
+
* Build date: Tue May 13 2025
|
141297
141354
|
*
|
141298
141355
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141299
141356
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141304,8 +141361,8 @@ function error(baseErrors, errors) {
|
|
141304
141361
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_errors.js
|
141305
141362
|
/**
|
141306
141363
|
* DevExtreme (esm/__internal/core/m_errors.js)
|
141307
|
-
* Version: 24.2.
|
141308
|
-
* Build date: Tue
|
141364
|
+
* Version: 24.2.8-build-25133-1935
|
141365
|
+
* Build date: Tue May 13 2025
|
141309
141366
|
*
|
141310
141367
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141311
141368
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141371,8 +141428,8 @@ function error(baseErrors, errors) {
|
|
141371
141428
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/errors.js
|
141372
141429
|
/**
|
141373
141430
|
* DevExtreme (esm/core/errors.js)
|
141374
|
-
* Version: 24.2.
|
141375
|
-
* Build date: Tue
|
141431
|
+
* Version: 24.2.8-build-25133-1935
|
141432
|
+
* Build date: Tue May 13 2025
|
141376
141433
|
*
|
141377
141434
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141378
141435
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141383,8 +141440,8 @@ function error(baseErrors, errors) {
|
|
141383
141440
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_class.js
|
141384
141441
|
/**
|
141385
141442
|
* DevExtreme (esm/__internal/core/m_class.js)
|
141386
|
-
* Version: 24.2.
|
141387
|
-
* Build date: Tue
|
141443
|
+
* Version: 24.2.8-build-25133-1935
|
141444
|
+
* Build date: Tue May 13 2025
|
141388
141445
|
*
|
141389
141446
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141390
141447
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141517,8 +141574,8 @@ classImpl.abstract = m_class_abstract;
|
|
141517
141574
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/class.js
|
141518
141575
|
/**
|
141519
141576
|
* DevExtreme (esm/core/class.js)
|
141520
|
-
* Version: 24.2.
|
141521
|
-
* Build date: Tue
|
141577
|
+
* Version: 24.2.8-build-25133-1935
|
141578
|
+
* Build date: Tue May 13 2025
|
141522
141579
|
*
|
141523
141580
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141524
141581
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141529,8 +141586,8 @@ classImpl.abstract = m_class_abstract;
|
|
141529
141586
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_iterator.js
|
141530
141587
|
/**
|
141531
141588
|
* DevExtreme (esm/__internal/core/utils/m_iterator.js)
|
141532
|
-
* Version: 24.2.
|
141533
|
-
* Build date: Tue
|
141589
|
+
* Version: 24.2.8-build-25133-1935
|
141590
|
+
* Build date: Tue May 13 2025
|
141534
141591
|
*
|
141535
141592
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141536
141593
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141579,8 +141636,8 @@ const reverseEach = (array, callback) => {
|
|
141579
141636
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_dependency_injector.js
|
141580
141637
|
/**
|
141581
141638
|
* DevExtreme (esm/__internal/core/utils/m_dependency_injector.js)
|
141582
|
-
* Version: 24.2.
|
141583
|
-
* Build date: Tue
|
141639
|
+
* Version: 24.2.8-build-25133-1935
|
141640
|
+
* Build date: Tue May 13 2025
|
141584
141641
|
*
|
141585
141642
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141586
141643
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141629,8 +141686,8 @@ function injector(object) {
|
|
141629
141686
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/dependency_injector.js
|
141630
141687
|
/**
|
141631
141688
|
* DevExtreme (esm/core/utils/dependency_injector.js)
|
141632
|
-
* Version: 24.2.
|
141633
|
-
* Build date: Tue
|
141689
|
+
* Version: 24.2.8-build-25133-1935
|
141690
|
+
* Build date: Tue May 13 2025
|
141634
141691
|
*
|
141635
141692
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141636
141693
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141641,8 +141698,8 @@ function injector(object) {
|
|
141641
141698
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.formatter.js
|
141642
141699
|
/**
|
141643
141700
|
* DevExtreme (esm/common/core/localization/ldml/date.formatter.js)
|
141644
|
-
* Version: 24.2.
|
141645
|
-
* Build date: Tue
|
141701
|
+
* Version: 24.2.8-build-25133-1935
|
141702
|
+
* Build date: Tue May 13 2025
|
141646
141703
|
*
|
141647
141704
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141648
141705
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141795,8 +141852,8 @@ function _extends() {
|
|
141795
141852
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_config.js
|
141796
141853
|
/**
|
141797
141854
|
* DevExtreme (esm/__internal/core/m_config.js)
|
141798
|
-
* Version: 24.2.
|
141799
|
-
* Build date: Tue
|
141855
|
+
* Version: 24.2.8-build-25133-1935
|
141856
|
+
* Build date: Tue May 13 2025
|
141800
141857
|
*
|
141801
141858
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141802
141859
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141871,8 +141928,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
141871
141928
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/config.js
|
141872
141929
|
/**
|
141873
141930
|
* DevExtreme (esm/common/config.js)
|
141874
|
-
* Version: 24.2.
|
141875
|
-
* Build date: Tue
|
141931
|
+
* Version: 24.2.8-build-25133-1935
|
141932
|
+
* Build date: Tue May 13 2025
|
141876
141933
|
*
|
141877
141934
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141878
141935
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141883,8 +141940,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
141883
141940
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_guid.js
|
141884
141941
|
/**
|
141885
141942
|
* DevExtreme (esm/__internal/core/m_guid.js)
|
141886
|
-
* Version: 24.2.
|
141887
|
-
* Build date: Tue
|
141943
|
+
* Version: 24.2.8-build-25133-1935
|
141944
|
+
* Build date: Tue May 13 2025
|
141888
141945
|
*
|
141889
141946
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141890
141947
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141926,8 +141983,8 @@ const Guid = core_class.inherit({
|
|
141926
141983
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/guid.js
|
141927
141984
|
/**
|
141928
141985
|
* DevExtreme (esm/common/guid.js)
|
141929
|
-
* Version: 24.2.
|
141930
|
-
* Build date: Tue
|
141986
|
+
* Version: 24.2.8-build-25133-1935
|
141987
|
+
* Build date: Tue May 13 2025
|
141931
141988
|
*
|
141932
141989
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141933
141990
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141938,8 +141995,8 @@ const Guid = core_class.inherit({
|
|
141938
141995
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/templates/m_template_engine_registry.js
|
141939
141996
|
/**
|
141940
141997
|
* DevExtreme (esm/__internal/core/templates/m_template_engine_registry.js)
|
141941
|
-
* Version: 24.2.
|
141942
|
-
* Build date: Tue
|
141998
|
+
* Version: 24.2.8-build-25133-1935
|
141999
|
+
* Build date: Tue May 13 2025
|
141943
142000
|
*
|
141944
142001
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141945
142002
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141968,8 +142025,8 @@ function getCurrentTemplateEngine() {
|
|
141968
142025
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/templates/template_engine_registry.js
|
141969
142026
|
/**
|
141970
142027
|
* DevExtreme (esm/core/templates/template_engine_registry.js)
|
141971
|
-
* Version: 24.2.
|
141972
|
-
* Build date: Tue
|
142028
|
+
* Version: 24.2.8-build-25133-1935
|
142029
|
+
* Build date: Tue May 13 2025
|
141973
142030
|
*
|
141974
142031
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141975
142032
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141979,8 +142036,8 @@ function getCurrentTemplateEngine() {
|
|
141979
142036
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_set_template_engine.js
|
141980
142037
|
/**
|
141981
142038
|
* DevExtreme (esm/__internal/core/m_set_template_engine.js)
|
141982
|
-
* Version: 24.2.
|
141983
|
-
* Build date: Tue
|
142039
|
+
* Version: 24.2.8-build-25133-1935
|
142040
|
+
* Build date: Tue May 13 2025
|
141984
142041
|
*
|
141985
142042
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141986
142043
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141990,8 +142047,8 @@ function getCurrentTemplateEngine() {
|
|
141990
142047
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/set_template_engine.js
|
141991
142048
|
/**
|
141992
142049
|
* DevExtreme (esm/common/set_template_engine.js)
|
141993
|
-
* Version: 24.2.
|
141994
|
-
* Build date: Tue
|
142050
|
+
* Version: 24.2.8-build-25133-1935
|
142051
|
+
* Build date: Tue May 13 2025
|
141995
142052
|
*
|
141996
142053
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141997
142054
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142002,8 +142059,8 @@ function getCurrentTemplateEngine() {
|
|
142002
142059
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common.js
|
142003
142060
|
/**
|
142004
142061
|
* DevExtreme (esm/common.js)
|
142005
|
-
* Version: 24.2.
|
142006
|
-
* Build date: Tue
|
142062
|
+
* Version: 24.2.8-build-25133-1935
|
142063
|
+
* Build date: Tue May 13 2025
|
142007
142064
|
*
|
142008
142065
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142009
142066
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142016,8 +142073,8 @@ function getCurrentTemplateEngine() {
|
|
142016
142073
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/config.js
|
142017
142074
|
/**
|
142018
142075
|
* DevExtreme (esm/core/config.js)
|
142019
|
-
* Version: 24.2.
|
142020
|
-
* Build date: Tue
|
142076
|
+
* Version: 24.2.8-build-25133-1935
|
142077
|
+
* Build date: Tue May 13 2025
|
142021
142078
|
*
|
142022
142079
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142023
142080
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142028,8 +142085,8 @@ function getCurrentTemplateEngine() {
|
|
142028
142085
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/guid.js
|
142029
142086
|
/**
|
142030
142087
|
* DevExtreme (esm/core/guid.js)
|
142031
|
-
* Version: 24.2.
|
142032
|
-
* Build date: Tue
|
142088
|
+
* Version: 24.2.8-build-25133-1935
|
142089
|
+
* Build date: Tue May 13 2025
|
142033
142090
|
*
|
142034
142091
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142035
142092
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142040,8 +142097,8 @@ function getCurrentTemplateEngine() {
|
|
142040
142097
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/console.js
|
142041
142098
|
/**
|
142042
142099
|
* DevExtreme (esm/core/utils/console.js)
|
142043
|
-
* Version: 24.2.
|
142044
|
-
* Build date: Tue
|
142100
|
+
* Version: 24.2.8-build-25133-1935
|
142101
|
+
* Build date: Tue May 13 2025
|
142045
142102
|
*
|
142046
142103
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142047
142104
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142051,8 +142108,8 @@ function getCurrentTemplateEngine() {
|
|
142051
142108
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_variable_wrapper.js
|
142052
142109
|
/**
|
142053
142110
|
* DevExtreme (esm/__internal/core/utils/m_variable_wrapper.js)
|
142054
|
-
* Version: 24.2.
|
142055
|
-
* Build date: Tue
|
142111
|
+
* Version: 24.2.8-build-25133-1935
|
142112
|
+
* Build date: Tue May 13 2025
|
142056
142113
|
*
|
142057
142114
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142058
142115
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142081,8 +142138,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
142081
142138
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/variable_wrapper.js
|
142082
142139
|
/**
|
142083
142140
|
* DevExtreme (esm/core/utils/variable_wrapper.js)
|
142084
|
-
* Version: 24.2.
|
142085
|
-
* Build date: Tue
|
142141
|
+
* Version: 24.2.8-build-25133-1935
|
142142
|
+
* Build date: Tue May 13 2025
|
142086
142143
|
*
|
142087
142144
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142088
142145
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142093,8 +142150,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
142093
142150
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_object.js
|
142094
142151
|
/**
|
142095
142152
|
* DevExtreme (esm/__internal/core/utils/m_object.js)
|
142096
|
-
* Version: 24.2.
|
142097
|
-
* Build date: Tue
|
142153
|
+
* Version: 24.2.8-build-25133-1935
|
142154
|
+
* Build date: Tue May 13 2025
|
142098
142155
|
*
|
142099
142156
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142100
142157
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142194,8 +142251,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142194
142251
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/object.js
|
142195
142252
|
/**
|
142196
142253
|
* DevExtreme (esm/core/utils/object.js)
|
142197
|
-
* Version: 24.2.
|
142198
|
-
* Build date: Tue
|
142254
|
+
* Version: 24.2.8-build-25133-1935
|
142255
|
+
* Build date: Tue May 13 2025
|
142199
142256
|
*
|
142200
142257
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142201
142258
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142205,8 +142262,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142205
142262
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_data.js
|
142206
142263
|
/**
|
142207
142264
|
* DevExtreme (esm/__internal/core/utils/m_data.js)
|
142208
|
-
* Version: 24.2.
|
142209
|
-
* Build date: Tue
|
142265
|
+
* Version: 24.2.8-build-25133-1935
|
142266
|
+
* Build date: Tue May 13 2025
|
142210
142267
|
*
|
142211
142268
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142212
142269
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142402,8 +142459,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142402
142459
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/data.js
|
142403
142460
|
/**
|
142404
142461
|
* DevExtreme (esm/core/utils/data.js)
|
142405
|
-
* Version: 24.2.
|
142406
|
-
* Build date: Tue
|
142462
|
+
* Version: 24.2.8-build-25133-1935
|
142463
|
+
* Build date: Tue May 13 2025
|
142407
142464
|
*
|
142408
142465
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142409
142466
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142413,8 +142470,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142413
142470
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_callbacks.js
|
142414
142471
|
/**
|
142415
142472
|
* DevExtreme (esm/__internal/core/utils/m_callbacks.js)
|
142416
|
-
* Version: 24.2.
|
142417
|
-
* Build date: Tue
|
142473
|
+
* Version: 24.2.8-build-25133-1935
|
142474
|
+
* Build date: Tue May 13 2025
|
142418
142475
|
*
|
142419
142476
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142420
142477
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142509,8 +142566,8 @@ const Callbacks = function(options) {
|
|
142509
142566
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/callbacks.js
|
142510
142567
|
/**
|
142511
142568
|
* DevExtreme (esm/core/utils/callbacks.js)
|
142512
|
-
* Version: 24.2.
|
142513
|
-
* Build date: Tue
|
142569
|
+
* Version: 24.2.8-build-25133-1935
|
142570
|
+
* Build date: Tue May 13 2025
|
142514
142571
|
*
|
142515
142572
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142516
142573
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142521,8 +142578,8 @@ const Callbacks = function(options) {
|
|
142521
142578
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_deferred.js
|
142522
142579
|
/**
|
142523
142580
|
* DevExtreme (esm/__internal/core/utils/m_deferred.js)
|
142524
|
-
* Version: 24.2.
|
142525
|
-
* Build date: Tue
|
142581
|
+
* Version: 24.2.8-build-25133-1935
|
142582
|
+
* Build date: Tue May 13 2025
|
142526
142583
|
*
|
142527
142584
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142528
142585
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142687,8 +142744,8 @@ function when() {
|
|
142687
142744
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/deferred.js
|
142688
142745
|
/**
|
142689
142746
|
* DevExtreme (esm/core/utils/deferred.js)
|
142690
|
-
* Version: 24.2.
|
142691
|
-
* Build date: Tue
|
142747
|
+
* Version: 24.2.8-build-25133-1935
|
142748
|
+
* Build date: Tue May 13 2025
|
142692
142749
|
*
|
142693
142750
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142694
142751
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142698,8 +142755,8 @@ function when() {
|
|
142698
142755
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_common.js
|
142699
142756
|
/**
|
142700
142757
|
* DevExtreme (esm/__internal/core/utils/m_common.js)
|
142701
|
-
* Version: 24.2.
|
142702
|
-
* Build date: Tue
|
142758
|
+
* Version: 24.2.8-build-25133-1935
|
142759
|
+
* Build date: Tue May 13 2025
|
142703
142760
|
*
|
142704
142761
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142705
142762
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142994,8 +143051,8 @@ const equalByValue = function(value1, value2) {
|
|
142994
143051
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/common.js
|
142995
143052
|
/**
|
142996
143053
|
* DevExtreme (esm/core/utils/common.js)
|
142997
|
-
* Version: 24.2.
|
142998
|
-
* Build date: Tue
|
143054
|
+
* Version: 24.2.8-build-25133-1935
|
143055
|
+
* Build date: Tue May 13 2025
|
142999
143056
|
*
|
143000
143057
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143001
143058
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143005,8 +143062,8 @@ const equalByValue = function(value1, value2) {
|
|
143005
143062
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_math.js
|
143006
143063
|
/**
|
143007
143064
|
* DevExtreme (esm/__internal/core/utils/m_math.js)
|
143008
|
-
* Version: 24.2.
|
143009
|
-
* Build date: Tue
|
143065
|
+
* Version: 24.2.8-build-25133-1935
|
143066
|
+
* Build date: Tue May 13 2025
|
143010
143067
|
*
|
143011
143068
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143012
143069
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143175,8 +143232,8 @@ function roundFloatPart(value) {
|
|
143175
143232
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/math.js
|
143176
143233
|
/**
|
143177
143234
|
* DevExtreme (esm/core/utils/math.js)
|
143178
|
-
* Version: 24.2.
|
143179
|
-
* Build date: Tue
|
143235
|
+
* Version: 24.2.8-build-25133-1935
|
143236
|
+
* Build date: Tue May 13 2025
|
143180
143237
|
*
|
143181
143238
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143182
143239
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143186,8 +143243,8 @@ function roundFloatPart(value) {
|
|
143186
143243
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/utils.js
|
143187
143244
|
/**
|
143188
143245
|
* DevExtreme (esm/common/core/localization/utils.js)
|
143189
|
-
* Version: 24.2.
|
143190
|
-
* Build date: Tue
|
143246
|
+
* Version: 24.2.8-build-25133-1935
|
143247
|
+
* Build date: Tue May 13 2025
|
143191
143248
|
*
|
143192
143249
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143193
143250
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143214,8 +143271,8 @@ function toFixed(value, precision) {
|
|
143214
143271
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/number.js
|
143215
143272
|
/**
|
143216
143273
|
* DevExtreme (esm/common/core/localization/ldml/number.js)
|
143217
|
-
* Version: 24.2.
|
143218
|
-
* Build date: Tue
|
143274
|
+
* Version: 24.2.8-build-25133-1935
|
143275
|
+
* Build date: Tue May 13 2025
|
143219
143276
|
*
|
143220
143277
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143221
143278
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143456,8 +143513,8 @@ function getFormat(formatter) {
|
|
143456
143513
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/currency.js
|
143457
143514
|
/**
|
143458
143515
|
* DevExtreme (esm/common/core/localization/currency.js)
|
143459
|
-
* Version: 24.2.
|
143460
|
-
* Build date: Tue
|
143516
|
+
* Version: 24.2.8-build-25133-1935
|
143517
|
+
* Build date: Tue May 13 2025
|
143461
143518
|
*
|
143462
143519
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143463
143520
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143489,8 +143546,8 @@ function getFormat(formatter) {
|
|
143489
143546
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/parent_locales.js
|
143490
143547
|
/**
|
143491
143548
|
* DevExtreme (esm/common/core/localization/cldr-data/parent_locales.js)
|
143492
|
-
* Version: 24.2.
|
143493
|
-
* Build date: Tue
|
143549
|
+
* Version: 24.2.8-build-25133-1935
|
143550
|
+
* Build date: Tue May 13 2025
|
143494
143551
|
*
|
143495
143552
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143496
143553
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143675,8 +143732,8 @@ function getFormat(formatter) {
|
|
143675
143732
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/parentLocale.js
|
143676
143733
|
/**
|
143677
143734
|
* DevExtreme (esm/common/core/localization/parentLocale.js)
|
143678
|
-
* Version: 24.2.
|
143679
|
-
* Build date: Tue
|
143735
|
+
* Version: 24.2.8-build-25133-1935
|
143736
|
+
* Build date: Tue May 13 2025
|
143680
143737
|
*
|
143681
143738
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143682
143739
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143693,8 +143750,8 @@ const PARENT_LOCALE_SEPARATOR = "-";
|
|
143693
143750
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/core.js
|
143694
143751
|
/**
|
143695
143752
|
* DevExtreme (esm/common/core/localization/core.js)
|
143696
|
-
* Version: 24.2.
|
143697
|
-
* Build date: Tue
|
143753
|
+
* Version: 24.2.8-build-25133-1935
|
143754
|
+
* Build date: Tue May 13 2025
|
143698
143755
|
*
|
143699
143756
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143700
143757
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143735,8 +143792,8 @@ const DEFAULT_LOCALE = "en";
|
|
143735
143792
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/open_xml_currency_format.js
|
143736
143793
|
/**
|
143737
143794
|
* DevExtreme (esm/common/core/localization/open_xml_currency_format.js)
|
143738
|
-
* Version: 24.2.
|
143739
|
-
* Build date: Tue
|
143795
|
+
* Version: 24.2.8-build-25133-1935
|
143796
|
+
* Build date: Tue May 13 2025
|
143740
143797
|
*
|
143741
143798
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143742
143799
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143778,8 +143835,8 @@ const DEFAULT_LOCALE = "en";
|
|
143778
143835
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/accounting_formats.js
|
143779
143836
|
/**
|
143780
143837
|
* DevExtreme (esm/common/core/localization/cldr-data/accounting_formats.js)
|
143781
|
-
* Version: 24.2.
|
143782
|
-
* Build date: Tue
|
143838
|
+
* Version: 24.2.8-build-25133-1935
|
143839
|
+
* Build date: Tue May 13 2025
|
143783
143840
|
*
|
143784
143841
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143785
143842
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144365,8 +144422,8 @@ const DEFAULT_LOCALE = "en";
|
|
144365
144422
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/number.js
|
144366
144423
|
/**
|
144367
144424
|
* DevExtreme (esm/common/core/localization/intl/number.js)
|
144368
|
-
* Version: 24.2.
|
144369
|
-
* Build date: Tue
|
144425
|
+
* Version: 24.2.8-build-25133-1935
|
144426
|
+
* Build date: Tue May 13 2025
|
144370
144427
|
*
|
144371
144428
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144372
144429
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144486,8 +144543,8 @@ const getCurrencyFormatter = currency => new Intl.NumberFormat(core.locale(), {
|
|
144486
144543
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/number.js
|
144487
144544
|
/**
|
144488
144545
|
* DevExtreme (esm/common/core/localization/number.js)
|
144489
|
-
* Version: 24.2.
|
144490
|
-
* Build date: Tue
|
144546
|
+
* Version: 24.2.8-build-25133-1935
|
144547
|
+
* Build date: Tue May 13 2025
|
144491
144548
|
*
|
144492
144549
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144493
144550
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144792,8 +144849,8 @@ if (hasIntl) {
|
|
144792
144849
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.format.js
|
144793
144850
|
/**
|
144794
144851
|
* DevExtreme (esm/common/core/localization/ldml/date.format.js)
|
144795
|
-
* Version: 24.2.
|
144796
|
-
* Build date: Tue
|
144852
|
+
* Version: 24.2.8-build-25133-1935
|
144853
|
+
* Build date: Tue May 13 2025
|
144797
144854
|
*
|
144798
144855
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144799
144856
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144990,8 +145047,8 @@ const date_format_getFormat = function(formatter) {
|
|
144990
145047
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.parser.js
|
144991
145048
|
/**
|
144992
145049
|
* DevExtreme (esm/common/core/localization/ldml/date.parser.js)
|
144993
|
-
* Version: 24.2.
|
144994
|
-
* Build date: Tue
|
145050
|
+
* Version: 24.2.8-build-25133-1935
|
145051
|
+
* Build date: Tue May 13 2025
|
144995
145052
|
*
|
144996
145053
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144997
145054
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145309,8 +145366,8 @@ const getParser = function(format, dateParts) {
|
|
145309
145366
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/default_date_names.js
|
145310
145367
|
/**
|
145311
145368
|
* DevExtreme (esm/common/core/localization/default_date_names.js)
|
145312
|
-
* Version: 24.2.
|
145313
|
-
* Build date: Tue
|
145369
|
+
* Version: 24.2.8-build-25133-1935
|
145370
|
+
* Build date: Tue May 13 2025
|
145314
145371
|
*
|
145315
145372
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145316
145373
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145346,8 +145403,8 @@ const cutCaptions = (captions, format) => {
|
|
145346
145403
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/first_day_of_week_data.js
|
145347
145404
|
/**
|
145348
145405
|
* DevExtreme (esm/common/core/localization/cldr-data/first_day_of_week_data.js)
|
145349
|
-
* Version: 24.2.
|
145350
|
-
* Build date: Tue
|
145406
|
+
* Version: 24.2.8-build-25133-1935
|
145407
|
+
* Build date: Tue May 13 2025
|
145351
145408
|
*
|
145352
145409
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145353
145410
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145546,8 +145603,8 @@ const cutCaptions = (captions, format) => {
|
|
145546
145603
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/date.js
|
145547
145604
|
/**
|
145548
145605
|
* DevExtreme (esm/common/core/localization/intl/date.js)
|
145549
|
-
* Version: 24.2.
|
145550
|
-
* Build date: Tue
|
145606
|
+
* Version: 24.2.8-build-25133-1935
|
145607
|
+
* Build date: Tue May 13 2025
|
145551
145608
|
*
|
145552
145609
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145553
145610
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145864,8 +145921,8 @@ const monthNameStrategies = {
|
|
145864
145921
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/date.js
|
145865
145922
|
/**
|
145866
145923
|
* DevExtreme (esm/common/core/localization/date.js)
|
145867
|
-
* Version: 24.2.
|
145868
|
-
* Build date: Tue
|
145924
|
+
* Version: 24.2.8-build-25133-1935
|
145925
|
+
* Build date: Tue May 13 2025
|
145869
145926
|
*
|
145870
145927
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145871
145928
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -147102,7 +147159,7 @@ class ClientRichEdit {
|
|
147102
147159
|
this.contextMenuSettings = settings.contextMenuSettings;
|
147103
147160
|
this.fullScreenHelper = new FullScreenHelper(element);
|
147104
147161
|
if (true)
|
147105
|
-
external_DevExpress_config_default()(JSON.parse(atob('
|
147162
|
+
external_DevExpress_config_default()(JSON.parse(atob('eyJsaWNlbnNlS2V5IjoiZXdvZ0lDSm1iM0p0WVhRaU9pQXhMQW9nSUNKcGJuUmxjbTVoYkZWellXZGxTV1FpT2lBaVVUTmhiM0ZJYzFKRU0zWllaVlZOVUdSWVNEZHhOU0lLZlE9PS5rMTA4KzRjbVFYSU96S1F1bUlqUE5oQkw0ejc5N0VSNlByVkkxcTB3V1QwbnkwUTVNZnkzRkJONlV5Zk9PV2p1eUJwaDR1ZllMM0llb0g4UHhNUU5wQUhUb3VUTTFFOHZaM01CM0lac2c1L1ZoOXhUNkg4TFJQSGZoQk00Rk5HUE5zNkY0dz09In0=')));
|
147106
147163
|
this.prepareElement(element, settings);
|
147107
147164
|
this.initDefaultFontsAndStyles();
|
147108
147165
|
this.initBars(settings.ribbon, settings.fonts);
|