devexpress-richedit 24.2.7 → 24.2.8-build-25142-0115
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.css +1 -1
- package/dist/dx.richedit.d.ts +1 -1
- package/dist/dx.richedit.js +981 -925
- 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/client/utils/focus-helper.js +22 -5
- package/lib/common/commands/layout/apply-style-command.d.ts +2 -2
- package/lib/common/commands/layout/apply-style-command.js +3 -4
- package/lib/common/commands/toc/set-paragraph-level-command.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/borders/border-info.js +1 -1
- package/lib/common/model/character/character-properties.d.ts +1 -1
- package/lib/common/model/character/character-properties.js +14 -2
- package/lib/common/model/history/items/character-properties-history-items.d.ts +2 -1
- package/lib/common/model/history/items/character-properties-history-items.js +3 -2
- package/lib/common/model/manipulators/character-properties-manipulator.js +2 -2
- package/lib/common/model/manipulators/i-properties-manipulator.d.ts +1 -1
- 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/ui/ruler/controls/ruler.js +3 -7
- package/lib/common/ui/ruler/controls/vertical-line.js +2 -1
- 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
|
*/
|
@@ -9486,6 +9486,219 @@ class ShadingInfo {
|
|
9486
9486
|
}
|
9487
9487
|
}
|
9488
9488
|
|
9489
|
+
// EXTERNAL MODULE: ./node_modules/@devexpress/utils/lib/utils/comparers.js
|
9490
|
+
var comparers = __webpack_require__(4170);
|
9491
|
+
;// CONCATENATED MODULE: ./src/common/model/history/base/history-item.ts
|
9492
|
+
|
9493
|
+
class history_item_HistoryItem {
|
9494
|
+
canBeMerged() {
|
9495
|
+
return false;
|
9496
|
+
}
|
9497
|
+
constructor(modelManipulator) {
|
9498
|
+
this.uniqueId = -1;
|
9499
|
+
this.modelManipulator = modelManipulator;
|
9500
|
+
}
|
9501
|
+
changeModified() {
|
9502
|
+
return true;
|
9503
|
+
}
|
9504
|
+
}
|
9505
|
+
class CompositionHistoryItem extends history_item_HistoryItem {
|
9506
|
+
canBeMerged() {
|
9507
|
+
return true;
|
9508
|
+
}
|
9509
|
+
constructor() {
|
9510
|
+
super(null);
|
9511
|
+
this.historyItems = [];
|
9512
|
+
}
|
9513
|
+
changeModified() {
|
9514
|
+
var item;
|
9515
|
+
for (var i = 0; item = this.historyItems[i]; i++) {
|
9516
|
+
if (item.changeModified())
|
9517
|
+
return true;
|
9518
|
+
}
|
9519
|
+
return false;
|
9520
|
+
}
|
9521
|
+
redo() {
|
9522
|
+
var item;
|
9523
|
+
for (var i = 0; item = this.historyItems[i]; i++)
|
9524
|
+
item.redo();
|
9525
|
+
}
|
9526
|
+
undo() {
|
9527
|
+
var item;
|
9528
|
+
for (var i = this.historyItems.length - 1; item = this.historyItems[i]; i--)
|
9529
|
+
item.undo();
|
9530
|
+
}
|
9531
|
+
add(historyItem) {
|
9532
|
+
if (historyItem == null)
|
9533
|
+
throw new Error(lib_errors/* Errors */.D.ValueCannotBeNull);
|
9534
|
+
this.historyItems.push(historyItem);
|
9535
|
+
}
|
9536
|
+
}
|
9537
|
+
|
9538
|
+
;// CONCATENATED MODULE: ./src/common/model/history/base/interval-based-history-item.ts
|
9539
|
+
|
9540
|
+
class interval_based_history_item_IntervalBasedHistoryItem extends history_item_HistoryItem {
|
9541
|
+
get boundSubDocument() { return this.subDocInterval.subDocument; }
|
9542
|
+
get interval() { return this.subDocInterval.interval; }
|
9543
|
+
constructor(modelManipulator, subDocInterval) {
|
9544
|
+
super(modelManipulator);
|
9545
|
+
this.subDocInterval = subDocInterval;
|
9546
|
+
}
|
9547
|
+
}
|
9548
|
+
|
9549
|
+
;// CONCATENATED MODULE: ./src/common/model/history/items/character-properties-history-items.ts
|
9550
|
+
|
9551
|
+
|
9552
|
+
class FontUseValueHistoryItem extends interval_based_history_item_IntervalBasedHistoryItem {
|
9553
|
+
constructor(modelManipulator, subDocInterval, newValue, keepCustomFormatting = false) {
|
9554
|
+
super(modelManipulator, subDocInterval);
|
9555
|
+
this.newValue = newValue;
|
9556
|
+
this.keepCustomFormatting = keepCustomFormatting;
|
9557
|
+
}
|
9558
|
+
redo() {
|
9559
|
+
this.oldState = this.modelManipulator.characterProperties.useValue.setValue(this.boundSubDocument, this.interval, this.newValue, this.keepCustomFormatting);
|
9560
|
+
}
|
9561
|
+
undo() {
|
9562
|
+
this.modelManipulator.characterProperties.useValue.restoreValue(this.boundSubDocument, this.oldState);
|
9563
|
+
}
|
9564
|
+
}
|
9565
|
+
class CharacterPropertiesHistoryItem extends interval_based_history_item_IntervalBasedHistoryItem {
|
9566
|
+
constructor(modelManipulator, subDocInterval, newValue) {
|
9567
|
+
super(modelManipulator, subDocInterval);
|
9568
|
+
this.newValue = newValue;
|
9569
|
+
}
|
9570
|
+
redo() {
|
9571
|
+
this.oldState = this.modelManipulator.characterProperties.setValue(this.boundSubDocument, this.interval, this.newValue);
|
9572
|
+
}
|
9573
|
+
undo() {
|
9574
|
+
this.modelManipulator.characterProperties.restoreValue(this.boundSubDocument, this.oldState);
|
9575
|
+
}
|
9576
|
+
}
|
9577
|
+
class CharacterPropertiesHistoryItemBase extends interval_based_history_item_IntervalBasedHistoryItem {
|
9578
|
+
constructor(modelManipulator, subDocInterval, newValue, newUse) {
|
9579
|
+
super(modelManipulator, subDocInterval);
|
9580
|
+
this.newValue = newValue;
|
9581
|
+
this.newUse = newUse;
|
9582
|
+
}
|
9583
|
+
redo() {
|
9584
|
+
this.oldState = this.getPropertiesManipulator().setValue(this.boundSubDocument, this.interval, this.newValue, this.newUse);
|
9585
|
+
}
|
9586
|
+
undo() {
|
9587
|
+
this.getPropertiesManipulator().restoreValue(this.boundSubDocument, this.oldState);
|
9588
|
+
}
|
9589
|
+
getPropertiesManipulator() {
|
9590
|
+
throw new Error(lib_errors/* Errors */.D.NotImplemented);
|
9591
|
+
}
|
9592
|
+
}
|
9593
|
+
class FontBoldHistoryItem extends CharacterPropertiesHistoryItemBase {
|
9594
|
+
getPropertiesManipulator() {
|
9595
|
+
return this.modelManipulator.characterProperties.fontBold;
|
9596
|
+
}
|
9597
|
+
}
|
9598
|
+
class FontCapsHistoryItem extends CharacterPropertiesHistoryItemBase {
|
9599
|
+
getPropertiesManipulator() {
|
9600
|
+
return this.modelManipulator.characterProperties.fontCaps;
|
9601
|
+
}
|
9602
|
+
}
|
9603
|
+
class FontSmallCapsHistoryItem extends CharacterPropertiesHistoryItemBase {
|
9604
|
+
getPropertiesManipulator() {
|
9605
|
+
return this.modelManipulator.characterProperties.fontSmallCaps;
|
9606
|
+
}
|
9607
|
+
}
|
9608
|
+
class FontUnderlineTypeHistoryItem extends CharacterPropertiesHistoryItemBase {
|
9609
|
+
getPropertiesManipulator() {
|
9610
|
+
return this.modelManipulator.characterProperties.fontUnderlineType;
|
9611
|
+
}
|
9612
|
+
}
|
9613
|
+
class FontTextColorHistoryItem extends CharacterPropertiesHistoryItemBase {
|
9614
|
+
getPropertiesManipulator() {
|
9615
|
+
return this.modelManipulator.characterProperties.textColor;
|
9616
|
+
}
|
9617
|
+
}
|
9618
|
+
class FontShadingInfoHistoryItem extends CharacterPropertiesHistoryItemBase {
|
9619
|
+
getPropertiesManipulator() {
|
9620
|
+
return this.modelManipulator.characterProperties.shadingInfo;
|
9621
|
+
}
|
9622
|
+
}
|
9623
|
+
class FontHiddenHistoryItem extends CharacterPropertiesHistoryItemBase {
|
9624
|
+
getPropertiesManipulator() {
|
9625
|
+
return this.modelManipulator.characterProperties.fontHidden;
|
9626
|
+
}
|
9627
|
+
}
|
9628
|
+
class FontItalicHistoryItem extends CharacterPropertiesHistoryItemBase {
|
9629
|
+
getPropertiesManipulator() {
|
9630
|
+
return this.modelManipulator.characterProperties.fontItalic;
|
9631
|
+
}
|
9632
|
+
}
|
9633
|
+
class FontNameHistoryItem extends CharacterPropertiesHistoryItemBase {
|
9634
|
+
getPropertiesManipulator() {
|
9635
|
+
return this.modelManipulator.characterProperties.fontName;
|
9636
|
+
}
|
9637
|
+
}
|
9638
|
+
class FontScriptHistoryItem extends CharacterPropertiesHistoryItemBase {
|
9639
|
+
getPropertiesManipulator() {
|
9640
|
+
return this.modelManipulator.characterProperties.script;
|
9641
|
+
}
|
9642
|
+
}
|
9643
|
+
class FontSizeHistoryItem extends CharacterPropertiesHistoryItemBase {
|
9644
|
+
getPropertiesManipulator() {
|
9645
|
+
return this.modelManipulator.characterProperties.fontSize;
|
9646
|
+
}
|
9647
|
+
}
|
9648
|
+
class FontStrikeoutTypeHistoryItem extends CharacterPropertiesHistoryItemBase {
|
9649
|
+
getPropertiesManipulator() {
|
9650
|
+
return this.modelManipulator.characterProperties.fontStrikeoutType;
|
9651
|
+
}
|
9652
|
+
}
|
9653
|
+
class FontStrikeoutWordsOnlyHistoryItem extends CharacterPropertiesHistoryItemBase {
|
9654
|
+
getPropertiesManipulator() {
|
9655
|
+
return this.modelManipulator.characterProperties.fontStrikeoutWordsOnly;
|
9656
|
+
}
|
9657
|
+
}
|
9658
|
+
class FontStrikeoutColorHistoryItem extends CharacterPropertiesHistoryItemBase {
|
9659
|
+
getPropertiesManipulator() {
|
9660
|
+
return this.modelManipulator.characterProperties.fontStrikeoutColor;
|
9661
|
+
}
|
9662
|
+
}
|
9663
|
+
class FontUnderlineColorHistoryItem extends CharacterPropertiesHistoryItemBase {
|
9664
|
+
getPropertiesManipulator() {
|
9665
|
+
return this.modelManipulator.characterProperties.fontUnderlineColor;
|
9666
|
+
}
|
9667
|
+
}
|
9668
|
+
class FontHighlightColorHistoryItem extends CharacterPropertiesHistoryItemBase {
|
9669
|
+
getPropertiesManipulator() {
|
9670
|
+
return this.modelManipulator.characterProperties.fontHighlightColor;
|
9671
|
+
}
|
9672
|
+
}
|
9673
|
+
class FontUnderlineWordsOnlyHistoryItem extends CharacterPropertiesHistoryItemBase {
|
9674
|
+
getPropertiesManipulator() {
|
9675
|
+
return this.modelManipulator.characterProperties.fontUnderlineWordsOnly;
|
9676
|
+
}
|
9677
|
+
}
|
9678
|
+
class FontNoProofHistoryItem extends CharacterPropertiesHistoryItemBase {
|
9679
|
+
getPropertiesManipulator() {
|
9680
|
+
return this.modelManipulator.characterProperties.fontNoProof;
|
9681
|
+
}
|
9682
|
+
}
|
9683
|
+
class FontLangInfoHistoryItem extends CharacterPropertiesHistoryItemBase {
|
9684
|
+
getPropertiesManipulator() {
|
9685
|
+
return this.modelManipulator.characterProperties.langInfo;
|
9686
|
+
}
|
9687
|
+
}
|
9688
|
+
class FontCompositeFontInfoHistoryItem extends CharacterPropertiesHistoryItemBase {
|
9689
|
+
getPropertiesManipulator() {
|
9690
|
+
return this.modelManipulator.characterProperties.compositeFontInfo;
|
9691
|
+
}
|
9692
|
+
}
|
9693
|
+
class ResetCharacterPropertiesUseValuesHistoryItem extends (/* unused pure expression or super */ null && (IntervalBasedHistoryItem)) {
|
9694
|
+
redo() {
|
9695
|
+
this.state = this.modelManipulator.characterProperties.useValue.setValue(this.boundSubDocument, this.interval, 0);
|
9696
|
+
}
|
9697
|
+
undo() {
|
9698
|
+
this.modelManipulator.characterProperties.useValue.restoreValue(this.boundSubDocument, this.state);
|
9699
|
+
}
|
9700
|
+
}
|
9701
|
+
|
9489
9702
|
;// CONCATENATED MODULE: ./src/common/model/character/enums.ts
|
9490
9703
|
var CharacterPropertiesMask;
|
9491
9704
|
(function (CharacterPropertiesMask) {
|
@@ -9643,6 +9856,498 @@ class LangInfo {
|
|
9643
9856
|
}
|
9644
9857
|
}
|
9645
9858
|
|
9859
|
+
;// CONCATENATED MODULE: ./src/common/model/character/character-property-descriptor.ts
|
9860
|
+
|
9861
|
+
|
9862
|
+
|
9863
|
+
|
9864
|
+
|
9865
|
+
|
9866
|
+
|
9867
|
+
|
9868
|
+
class CharacterPropertiesAllCapsDescriptor {
|
9869
|
+
constructor() {
|
9870
|
+
this.binaryEquals = comparers.Equals.simpleType;
|
9871
|
+
this.defaultValue = false;
|
9872
|
+
}
|
9873
|
+
setProp(props, newValue) {
|
9874
|
+
props.allCaps = newValue;
|
9875
|
+
}
|
9876
|
+
getProp(props) {
|
9877
|
+
return props.allCaps;
|
9878
|
+
}
|
9879
|
+
maskValue() {
|
9880
|
+
return CharacterPropertiesMask.UseAllCaps;
|
9881
|
+
}
|
9882
|
+
getHistoryItemConstructor() {
|
9883
|
+
return FontCapsHistoryItem;
|
9884
|
+
}
|
9885
|
+
getJSONProperty() {
|
9886
|
+
return JSONCharacterFormattingProperty.AllCaps;
|
9887
|
+
}
|
9888
|
+
}
|
9889
|
+
class CharacterPropertiesSmallCapsDescriptor {
|
9890
|
+
constructor() {
|
9891
|
+
this.binaryEquals = comparers.Equals.simpleType;
|
9892
|
+
this.defaultValue = false;
|
9893
|
+
}
|
9894
|
+
setProp(props, newValue) {
|
9895
|
+
props.smallCaps = newValue;
|
9896
|
+
}
|
9897
|
+
getProp(props) {
|
9898
|
+
return props.smallCaps;
|
9899
|
+
}
|
9900
|
+
maskValue() {
|
9901
|
+
return CharacterPropertiesMask.UseSmallCaps;
|
9902
|
+
}
|
9903
|
+
getHistoryItemConstructor() {
|
9904
|
+
return FontSmallCapsHistoryItem;
|
9905
|
+
}
|
9906
|
+
getJSONProperty() {
|
9907
|
+
return JSONCharacterFormattingProperty.SmallCaps;
|
9908
|
+
}
|
9909
|
+
}
|
9910
|
+
class CharacterPropertiesFontSizeDescriptor {
|
9911
|
+
constructor() {
|
9912
|
+
this.binaryEquals = comparers.Equals.simpleType;
|
9913
|
+
this.defaultValue = 11;
|
9914
|
+
}
|
9915
|
+
setProp(props, newValue) {
|
9916
|
+
props.fontSize = newValue;
|
9917
|
+
}
|
9918
|
+
getProp(props) {
|
9919
|
+
return props.fontSize;
|
9920
|
+
}
|
9921
|
+
maskValue() {
|
9922
|
+
return CharacterPropertiesMask.UseDoubleFontSize;
|
9923
|
+
}
|
9924
|
+
getHistoryItemConstructor() {
|
9925
|
+
return FontSizeHistoryItem;
|
9926
|
+
}
|
9927
|
+
getJSONProperty() {
|
9928
|
+
return JSONCharacterFormattingProperty.Size;
|
9929
|
+
}
|
9930
|
+
}
|
9931
|
+
class CharacterPropertiesFontBoldDescriptor {
|
9932
|
+
constructor() {
|
9933
|
+
this.binaryEquals = comparers.Equals.simpleType;
|
9934
|
+
this.defaultValue = false;
|
9935
|
+
}
|
9936
|
+
setProp(props, newValue) {
|
9937
|
+
props.fontBold = newValue;
|
9938
|
+
}
|
9939
|
+
getProp(props) {
|
9940
|
+
return props.fontBold;
|
9941
|
+
}
|
9942
|
+
maskValue() {
|
9943
|
+
return CharacterPropertiesMask.UseFontBold;
|
9944
|
+
}
|
9945
|
+
getHistoryItemConstructor() {
|
9946
|
+
return FontBoldHistoryItem;
|
9947
|
+
}
|
9948
|
+
getJSONProperty() {
|
9949
|
+
return JSONCharacterFormattingProperty.Bold;
|
9950
|
+
}
|
9951
|
+
}
|
9952
|
+
class CharacterPropertiesFontItalicDescriptor {
|
9953
|
+
constructor() {
|
9954
|
+
this.binaryEquals = comparers.Equals.simpleType;
|
9955
|
+
this.defaultValue = false;
|
9956
|
+
}
|
9957
|
+
setProp(props, newValue) {
|
9958
|
+
props.fontItalic = newValue;
|
9959
|
+
}
|
9960
|
+
getProp(props) {
|
9961
|
+
return props.fontItalic;
|
9962
|
+
}
|
9963
|
+
maskValue() {
|
9964
|
+
return CharacterPropertiesMask.UseFontItalic;
|
9965
|
+
}
|
9966
|
+
getHistoryItemConstructor() {
|
9967
|
+
return FontItalicHistoryItem;
|
9968
|
+
}
|
9969
|
+
getJSONProperty() {
|
9970
|
+
return JSONCharacterFormattingProperty.Italic;
|
9971
|
+
}
|
9972
|
+
}
|
9973
|
+
class CharacterPropertiesFontInfoDescriptor {
|
9974
|
+
constructor() {
|
9975
|
+
this.binaryEquals = comparers.Equals.object;
|
9976
|
+
this.defaultValue = undefined;
|
9977
|
+
}
|
9978
|
+
setProp(props, newValue) {
|
9979
|
+
props.fontInfo = newValue;
|
9980
|
+
}
|
9981
|
+
getProp(props) {
|
9982
|
+
return props.fontInfo;
|
9983
|
+
}
|
9984
|
+
maskValue() {
|
9985
|
+
return CharacterPropertiesMask.UseFontName;
|
9986
|
+
}
|
9987
|
+
getHistoryItemConstructor() {
|
9988
|
+
return FontNameHistoryItem;
|
9989
|
+
}
|
9990
|
+
getJSONProperty() {
|
9991
|
+
return JSONCharacterFormattingProperty.FontName;
|
9992
|
+
}
|
9993
|
+
}
|
9994
|
+
class CharacterPropertiesScriptDescriptor {
|
9995
|
+
constructor() {
|
9996
|
+
this.binaryEquals = comparers.Equals.simpleType;
|
9997
|
+
this.defaultValue = CharacterFormattingScript.Normal;
|
9998
|
+
}
|
9999
|
+
setProp(props, newValue) {
|
10000
|
+
props.script = newValue;
|
10001
|
+
}
|
10002
|
+
getProp(props) {
|
10003
|
+
return props.script;
|
10004
|
+
}
|
10005
|
+
maskValue() {
|
10006
|
+
return CharacterPropertiesMask.UseScript;
|
10007
|
+
}
|
10008
|
+
getHistoryItemConstructor() {
|
10009
|
+
return FontScriptHistoryItem;
|
10010
|
+
}
|
10011
|
+
getJSONProperty() {
|
10012
|
+
return JSONCharacterFormattingProperty.Script;
|
10013
|
+
}
|
10014
|
+
}
|
10015
|
+
class CharacterPropertiesStrikeoutTypeDescriptor {
|
10016
|
+
constructor() {
|
10017
|
+
this.binaryEquals = comparers.Equals.simpleType;
|
10018
|
+
this.defaultValue = StrikeoutType.None;
|
10019
|
+
}
|
10020
|
+
setProp(props, newValue) {
|
10021
|
+
props.fontStrikeoutType = newValue;
|
10022
|
+
}
|
10023
|
+
getProp(props) {
|
10024
|
+
return props.fontStrikeoutType;
|
10025
|
+
}
|
10026
|
+
maskValue() {
|
10027
|
+
return CharacterPropertiesMask.UseFontStrikeoutType;
|
10028
|
+
}
|
10029
|
+
getHistoryItemConstructor() {
|
10030
|
+
return FontStrikeoutTypeHistoryItem;
|
10031
|
+
}
|
10032
|
+
getJSONProperty() {
|
10033
|
+
return JSONCharacterFormattingProperty.StrikeoutType;
|
10034
|
+
}
|
10035
|
+
}
|
10036
|
+
class CharacterPropertiesUnderlineTypeDescriptor {
|
10037
|
+
constructor() {
|
10038
|
+
this.binaryEquals = comparers.Equals.simpleType;
|
10039
|
+
this.defaultValue = UnderlineType.None;
|
10040
|
+
}
|
10041
|
+
setProp(props, newValue) {
|
10042
|
+
props.fontUnderlineType = newValue;
|
10043
|
+
}
|
10044
|
+
getProp(props) {
|
10045
|
+
return props.fontUnderlineType;
|
10046
|
+
}
|
10047
|
+
maskValue() {
|
10048
|
+
return CharacterPropertiesMask.UseFontUnderlineType;
|
10049
|
+
}
|
10050
|
+
getHistoryItemConstructor() {
|
10051
|
+
return FontUnderlineTypeHistoryItem;
|
10052
|
+
}
|
10053
|
+
getJSONProperty() {
|
10054
|
+
return JSONCharacterFormattingProperty.UnderlineType;
|
10055
|
+
}
|
10056
|
+
}
|
10057
|
+
class CharacterPropertiesUnderlineWordsOnlyDescriptor {
|
10058
|
+
constructor() {
|
10059
|
+
this.binaryEquals = comparers.Equals.simpleType;
|
10060
|
+
this.defaultValue = false;
|
10061
|
+
}
|
10062
|
+
setProp(props, newValue) {
|
10063
|
+
props.underlineWordsOnly = newValue;
|
10064
|
+
}
|
10065
|
+
getProp(props) {
|
10066
|
+
return props.underlineWordsOnly;
|
10067
|
+
}
|
10068
|
+
maskValue() {
|
10069
|
+
return CharacterPropertiesMask.UseUnderlineWordsOnly;
|
10070
|
+
}
|
10071
|
+
getHistoryItemConstructor() {
|
10072
|
+
return FontUnderlineWordsOnlyHistoryItem;
|
10073
|
+
}
|
10074
|
+
getJSONProperty() {
|
10075
|
+
return JSONCharacterFormattingProperty.UnderlineWordsOnly;
|
10076
|
+
}
|
10077
|
+
}
|
10078
|
+
class CharacterPropertiesStrikeoutWordsOnlyDescriptor {
|
10079
|
+
constructor() {
|
10080
|
+
this.binaryEquals = comparers.Equals.simpleType;
|
10081
|
+
this.defaultValue = false;
|
10082
|
+
}
|
10083
|
+
setProp(props, newValue) {
|
10084
|
+
props.strikeoutWordsOnly = newValue;
|
10085
|
+
}
|
10086
|
+
getProp(props) {
|
10087
|
+
return props.strikeoutWordsOnly;
|
10088
|
+
}
|
10089
|
+
maskValue() {
|
10090
|
+
return CharacterPropertiesMask.UseStrikeoutWordsOnly;
|
10091
|
+
}
|
10092
|
+
getHistoryItemConstructor() {
|
10093
|
+
return FontStrikeoutWordsOnlyHistoryItem;
|
10094
|
+
}
|
10095
|
+
getJSONProperty() {
|
10096
|
+
return JSONCharacterFormattingProperty.StrikeoutWordsOnly;
|
10097
|
+
}
|
10098
|
+
}
|
10099
|
+
class CharacterPropertiesNoProofDescriptor {
|
10100
|
+
constructor() {
|
10101
|
+
this.binaryEquals = comparers.Equals.simpleType;
|
10102
|
+
this.defaultValue = false;
|
10103
|
+
}
|
10104
|
+
setProp(props, newValue) {
|
10105
|
+
props.noProof = newValue;
|
10106
|
+
}
|
10107
|
+
getProp(props) {
|
10108
|
+
return props.noProof;
|
10109
|
+
}
|
10110
|
+
maskValue() {
|
10111
|
+
return CharacterPropertiesMask.UseNoProof;
|
10112
|
+
}
|
10113
|
+
getHistoryItemConstructor() {
|
10114
|
+
return FontNoProofHistoryItem;
|
10115
|
+
}
|
10116
|
+
getJSONProperty() {
|
10117
|
+
return JSONCharacterFormattingProperty.NoProof;
|
10118
|
+
}
|
10119
|
+
}
|
10120
|
+
class CharacterPropertiesHiddenDescriptor {
|
10121
|
+
constructor() {
|
10122
|
+
this.binaryEquals = comparers.Equals.simpleType;
|
10123
|
+
this.defaultValue = false;
|
10124
|
+
}
|
10125
|
+
setProp(props, newValue) {
|
10126
|
+
props.hidden = newValue;
|
10127
|
+
}
|
10128
|
+
getProp(props) {
|
10129
|
+
return props.hidden;
|
10130
|
+
}
|
10131
|
+
maskValue() {
|
10132
|
+
return CharacterPropertiesMask.UseHidden;
|
10133
|
+
}
|
10134
|
+
getHistoryItemConstructor() {
|
10135
|
+
return FontHiddenHistoryItem;
|
10136
|
+
}
|
10137
|
+
getJSONProperty() {
|
10138
|
+
return JSONCharacterFormattingProperty.Hidden;
|
10139
|
+
}
|
10140
|
+
}
|
10141
|
+
class CharacterPropertiesTextColorDescriptor {
|
10142
|
+
constructor() {
|
10143
|
+
this.binaryEquals = comparers.Equals.object;
|
10144
|
+
this.defaultValue = color_model_info_ColorModelInfo.autoColor;
|
10145
|
+
}
|
10146
|
+
setProp(props, newValue) {
|
10147
|
+
props.textColor = newValue;
|
10148
|
+
}
|
10149
|
+
getProp(props) {
|
10150
|
+
return props.textColor;
|
10151
|
+
}
|
10152
|
+
maskValue() {
|
10153
|
+
return CharacterPropertiesMask.UseForeColorIndex;
|
10154
|
+
}
|
10155
|
+
getHistoryItemConstructor() {
|
10156
|
+
return FontTextColorHistoryItem;
|
10157
|
+
}
|
10158
|
+
getJSONProperty() {
|
10159
|
+
return JSONCharacterFormattingProperty.TextColor;
|
10160
|
+
}
|
10161
|
+
}
|
10162
|
+
class CharacterPropertiesShadingInfoColorDescriptor {
|
10163
|
+
constructor() {
|
10164
|
+
this.binaryEquals = comparers.Equals.object;
|
10165
|
+
this.defaultValue = ShadingInfo.noColor;
|
10166
|
+
}
|
10167
|
+
setProp(props, newValue) {
|
10168
|
+
props.shadingInfo = newValue;
|
10169
|
+
}
|
10170
|
+
getProp(props) {
|
10171
|
+
return props.shadingInfo;
|
10172
|
+
}
|
10173
|
+
maskValue() {
|
10174
|
+
return CharacterPropertiesMask.UseShadingInfoIndex;
|
10175
|
+
}
|
10176
|
+
getHistoryItemConstructor() {
|
10177
|
+
return FontShadingInfoHistoryItem;
|
10178
|
+
}
|
10179
|
+
getJSONProperty() {
|
10180
|
+
return JSONCharacterFormattingProperty.ShadingInfo;
|
10181
|
+
}
|
10182
|
+
}
|
10183
|
+
class CharacterPropertiesStrikeoutColorDescriptor {
|
10184
|
+
constructor() {
|
10185
|
+
this.binaryEquals = comparers.Equals.object;
|
10186
|
+
this.defaultValue = color_model_info_ColorModelInfo.noColor;
|
10187
|
+
}
|
10188
|
+
setProp(props, newValue) {
|
10189
|
+
props.strikeoutColor = newValue;
|
10190
|
+
}
|
10191
|
+
getProp(props) {
|
10192
|
+
return props.strikeoutColor;
|
10193
|
+
}
|
10194
|
+
maskValue() {
|
10195
|
+
return CharacterPropertiesMask.UseStrikeoutColorIndex;
|
10196
|
+
}
|
10197
|
+
getHistoryItemConstructor() {
|
10198
|
+
return FontStrikeoutColorHistoryItem;
|
10199
|
+
}
|
10200
|
+
getJSONProperty() {
|
10201
|
+
return JSONCharacterFormattingProperty.StrikeoutColor;
|
10202
|
+
}
|
10203
|
+
}
|
10204
|
+
class CharacterPropertiesUnderlineColorDescriptor {
|
10205
|
+
constructor() {
|
10206
|
+
this.binaryEquals = comparers.Equals.object;
|
10207
|
+
this.defaultValue = color_model_info_ColorModelInfo.noColor;
|
10208
|
+
}
|
10209
|
+
setProp(props, newValue) {
|
10210
|
+
props.underlineColor = newValue;
|
10211
|
+
}
|
10212
|
+
getProp(props) {
|
10213
|
+
return props.underlineColor;
|
10214
|
+
}
|
10215
|
+
maskValue() {
|
10216
|
+
return CharacterPropertiesMask.UseUnderlineColorIndex;
|
10217
|
+
}
|
10218
|
+
getHistoryItemConstructor() {
|
10219
|
+
return FontUnderlineColorHistoryItem;
|
10220
|
+
}
|
10221
|
+
getJSONProperty() {
|
10222
|
+
return JSONCharacterFormattingProperty.UnderlineColor;
|
10223
|
+
}
|
10224
|
+
}
|
10225
|
+
class CharacterPropertiesHighlightColorDescriptor {
|
10226
|
+
constructor() {
|
10227
|
+
this.binaryEquals = comparers.Equals.object;
|
10228
|
+
this.defaultValue = color_model_info_ColorModelInfo.noColor;
|
10229
|
+
}
|
10230
|
+
setProp(props, newValue) {
|
10231
|
+
props.highlightColor = newValue;
|
10232
|
+
}
|
10233
|
+
getProp(props) {
|
10234
|
+
return props.highlightColor;
|
10235
|
+
}
|
10236
|
+
maskValue() {
|
10237
|
+
return CharacterPropertiesMask.UseHighlightColorIndex;
|
10238
|
+
}
|
10239
|
+
getHistoryItemConstructor() {
|
10240
|
+
return FontHighlightColorHistoryItem;
|
10241
|
+
}
|
10242
|
+
getJSONProperty() {
|
10243
|
+
return JSONCharacterFormattingProperty.HighlightColor;
|
10244
|
+
}
|
10245
|
+
}
|
10246
|
+
class CharacterPropertiesLangInfoDescriptor {
|
10247
|
+
constructor() {
|
10248
|
+
this.binaryEquals = comparers.Equals.object;
|
10249
|
+
this.defaultValue = new LangInfo();
|
10250
|
+
}
|
10251
|
+
setProp(props, newValue) {
|
10252
|
+
props.langInfo = newValue;
|
10253
|
+
}
|
10254
|
+
getProp(props) {
|
10255
|
+
return props.langInfo;
|
10256
|
+
}
|
10257
|
+
maskValue() {
|
10258
|
+
return CharacterPropertiesMask.UseLangInfo;
|
10259
|
+
}
|
10260
|
+
getHistoryItemConstructor() {
|
10261
|
+
return FontLangInfoHistoryItem;
|
10262
|
+
}
|
10263
|
+
getJSONProperty() {
|
10264
|
+
return JSONCharacterFormattingProperty.LangInfo;
|
10265
|
+
}
|
10266
|
+
}
|
10267
|
+
class CharacterPropertiesCompositeFontInfoDescriptor {
|
10268
|
+
constructor() {
|
10269
|
+
this.binaryEquals = comparers.Equals.object;
|
10270
|
+
this.defaultValue = new CompositeFontInfo();
|
10271
|
+
}
|
10272
|
+
setProp(props, newValue) {
|
10273
|
+
props.compositeFontInfo = newValue;
|
10274
|
+
}
|
10275
|
+
getProp(props) {
|
10276
|
+
return props.compositeFontInfo;
|
10277
|
+
}
|
10278
|
+
maskValue() {
|
10279
|
+
return CharacterPropertiesMask.UseCompositeFontInfo;
|
10280
|
+
}
|
10281
|
+
getHistoryItemConstructor() {
|
10282
|
+
return FontCompositeFontInfoHistoryItem;
|
10283
|
+
}
|
10284
|
+
getJSONProperty() {
|
10285
|
+
return JSONCharacterFormattingProperty.CompositeFontInfo;
|
10286
|
+
}
|
10287
|
+
}
|
10288
|
+
class character_property_descriptor_CharacterPropertyDescriptor {
|
10289
|
+
}
|
10290
|
+
character_property_descriptor_CharacterPropertyDescriptor.allCaps = new CharacterPropertiesAllCapsDescriptor();
|
10291
|
+
character_property_descriptor_CharacterPropertyDescriptor.size = new CharacterPropertiesFontSizeDescriptor();
|
10292
|
+
character_property_descriptor_CharacterPropertyDescriptor.bold = new CharacterPropertiesFontBoldDescriptor();
|
10293
|
+
character_property_descriptor_CharacterPropertyDescriptor.italic = new CharacterPropertiesFontItalicDescriptor();
|
10294
|
+
character_property_descriptor_CharacterPropertyDescriptor.fontInfo = new CharacterPropertiesFontInfoDescriptor();
|
10295
|
+
character_property_descriptor_CharacterPropertyDescriptor.script = new CharacterPropertiesScriptDescriptor();
|
10296
|
+
character_property_descriptor_CharacterPropertyDescriptor.strikeoutType = new CharacterPropertiesStrikeoutTypeDescriptor();
|
10297
|
+
character_property_descriptor_CharacterPropertyDescriptor.underlineType = new CharacterPropertiesUnderlineTypeDescriptor();
|
10298
|
+
character_property_descriptor_CharacterPropertyDescriptor.underlineWordsOnly = new CharacterPropertiesUnderlineWordsOnlyDescriptor();
|
10299
|
+
character_property_descriptor_CharacterPropertyDescriptor.strikeoutWordsOnly = new CharacterPropertiesStrikeoutWordsOnlyDescriptor();
|
10300
|
+
character_property_descriptor_CharacterPropertyDescriptor.noProof = new CharacterPropertiesNoProofDescriptor();
|
10301
|
+
character_property_descriptor_CharacterPropertyDescriptor.hidden = new CharacterPropertiesHiddenDescriptor();
|
10302
|
+
character_property_descriptor_CharacterPropertyDescriptor.langInfo = new CharacterPropertiesLangInfoDescriptor();
|
10303
|
+
character_property_descriptor_CharacterPropertyDescriptor.compositeFontInfo = new CharacterPropertiesCompositeFontInfoDescriptor();
|
10304
|
+
character_property_descriptor_CharacterPropertyDescriptor.textColor = new CharacterPropertiesTextColorDescriptor();
|
10305
|
+
character_property_descriptor_CharacterPropertyDescriptor.shadingInfo = new CharacterPropertiesShadingInfoColorDescriptor();
|
10306
|
+
character_property_descriptor_CharacterPropertyDescriptor.highlightColor = new CharacterPropertiesHighlightColorDescriptor();
|
10307
|
+
character_property_descriptor_CharacterPropertyDescriptor.strikeoutColor = new CharacterPropertiesStrikeoutColorDescriptor();
|
10308
|
+
character_property_descriptor_CharacterPropertyDescriptor.underlineColor = new CharacterPropertiesUnderlineColorDescriptor();
|
10309
|
+
character_property_descriptor_CharacterPropertyDescriptor.smallCaps = new CharacterPropertiesSmallCapsDescriptor();
|
10310
|
+
character_property_descriptor_CharacterPropertyDescriptor.ALL_FIELDS = [
|
10311
|
+
character_property_descriptor_CharacterPropertyDescriptor.allCaps,
|
10312
|
+
character_property_descriptor_CharacterPropertyDescriptor.size,
|
10313
|
+
character_property_descriptor_CharacterPropertyDescriptor.bold,
|
10314
|
+
character_property_descriptor_CharacterPropertyDescriptor.italic,
|
10315
|
+
character_property_descriptor_CharacterPropertyDescriptor.fontInfo,
|
10316
|
+
character_property_descriptor_CharacterPropertyDescriptor.script,
|
10317
|
+
character_property_descriptor_CharacterPropertyDescriptor.strikeoutType,
|
10318
|
+
character_property_descriptor_CharacterPropertyDescriptor.underlineType,
|
10319
|
+
character_property_descriptor_CharacterPropertyDescriptor.underlineWordsOnly,
|
10320
|
+
character_property_descriptor_CharacterPropertyDescriptor.strikeoutWordsOnly,
|
10321
|
+
character_property_descriptor_CharacterPropertyDescriptor.noProof,
|
10322
|
+
character_property_descriptor_CharacterPropertyDescriptor.hidden,
|
10323
|
+
character_property_descriptor_CharacterPropertyDescriptor.langInfo,
|
10324
|
+
character_property_descriptor_CharacterPropertyDescriptor.compositeFontInfo,
|
10325
|
+
character_property_descriptor_CharacterPropertyDescriptor.textColor,
|
10326
|
+
character_property_descriptor_CharacterPropertyDescriptor.shadingInfo,
|
10327
|
+
character_property_descriptor_CharacterPropertyDescriptor.highlightColor,
|
10328
|
+
character_property_descriptor_CharacterPropertyDescriptor.strikeoutColor,
|
10329
|
+
character_property_descriptor_CharacterPropertyDescriptor.underlineColor,
|
10330
|
+
character_property_descriptor_CharacterPropertyDescriptor.smallCaps
|
10331
|
+
];
|
10332
|
+
character_property_descriptor_CharacterPropertyDescriptor.whatNeedSetWhenCreateHyperlinkField = [
|
10333
|
+
character_property_descriptor_CharacterPropertyDescriptor.size,
|
10334
|
+
character_property_descriptor_CharacterPropertyDescriptor.bold,
|
10335
|
+
character_property_descriptor_CharacterPropertyDescriptor.italic,
|
10336
|
+
character_property_descriptor_CharacterPropertyDescriptor.fontInfo,
|
10337
|
+
character_property_descriptor_CharacterPropertyDescriptor.script,
|
10338
|
+
character_property_descriptor_CharacterPropertyDescriptor.strikeoutType,
|
10339
|
+
character_property_descriptor_CharacterPropertyDescriptor.allCaps,
|
10340
|
+
character_property_descriptor_CharacterPropertyDescriptor.underlineWordsOnly,
|
10341
|
+
character_property_descriptor_CharacterPropertyDescriptor.strikeoutWordsOnly,
|
10342
|
+
character_property_descriptor_CharacterPropertyDescriptor.noProof,
|
10343
|
+
character_property_descriptor_CharacterPropertyDescriptor.hidden,
|
10344
|
+
character_property_descriptor_CharacterPropertyDescriptor.shadingInfo,
|
10345
|
+
character_property_descriptor_CharacterPropertyDescriptor.strikeoutColor,
|
10346
|
+
character_property_descriptor_CharacterPropertyDescriptor.underlineColor,
|
10347
|
+
character_property_descriptor_CharacterPropertyDescriptor.langInfo,
|
10348
|
+
character_property_descriptor_CharacterPropertyDescriptor.smallCaps
|
10349
|
+
];
|
10350
|
+
|
9646
10351
|
;// CONCATENATED MODULE: ./src/common/model/character/layout-character-properties-color-info.ts
|
9647
10352
|
class LayoutCharacterPropertiesColorInfo {
|
9648
10353
|
constructor(textColor, foregroundColor, strikeoutColor, underlineColor) {
|
@@ -9675,6 +10380,7 @@ class LayoutCharacterPropertiesColorInfo {
|
|
9675
10380
|
|
9676
10381
|
|
9677
10382
|
|
10383
|
+
|
9678
10384
|
class CharacterProperties {
|
9679
10385
|
constructor() {
|
9680
10386
|
this.measurerSizes = Object.create(null);
|
@@ -9809,8 +10515,19 @@ class MaskedCharacterProperties extends CharacterProperties {
|
|
9809
10515
|
this.useValueExt &= ~this.getHighPartUseValue(mask);
|
9810
10516
|
}
|
9811
10517
|
}
|
9812
|
-
setUseValueFull(value) {
|
9813
|
-
|
10518
|
+
setUseValueFull(value, onlyForDefault = false) {
|
10519
|
+
const lowPartUseValue = this.getLowPartUseValue(value);
|
10520
|
+
if (onlyForDefault) {
|
10521
|
+
character_property_descriptor_CharacterPropertyDescriptor.ALL_FIELDS.forEach((desc) => {
|
10522
|
+
const prop = desc.getProp(this);
|
10523
|
+
const mask = desc.maskValue();
|
10524
|
+
if (desc.binaryEquals(prop, desc.defaultValue))
|
10525
|
+
this.setUseValue(mask, !!(mask & lowPartUseValue));
|
10526
|
+
});
|
10527
|
+
}
|
10528
|
+
else {
|
10529
|
+
this.useValue = lowPartUseValue;
|
10530
|
+
}
|
9814
10531
|
this.useValueExt = this.getHighPartUseValue(value);
|
9815
10532
|
}
|
9816
10533
|
getLowPartUseValue(value) {
|
@@ -10224,7 +10941,7 @@ class LayoutBorder extends BorderBase {
|
|
10224
10941
|
|
10225
10942
|
class BorderInfo {
|
10226
10943
|
constructor() {
|
10227
|
-
this.style = BorderLineStyle.
|
10944
|
+
this.style = BorderLineStyle.Nil;
|
10228
10945
|
this.color = ColorModelInfoCache.defaultItem;
|
10229
10946
|
this.width = 0;
|
10230
10947
|
this.offset = 0;
|
@@ -10274,66 +10991,6 @@ class BorderInfo {
|
|
10274
10991
|
}
|
10275
10992
|
}
|
10276
10993
|
|
10277
|
-
// EXTERNAL MODULE: ./node_modules/@devexpress/utils/lib/utils/comparers.js
|
10278
|
-
var comparers = __webpack_require__(4170);
|
10279
|
-
;// CONCATENATED MODULE: ./src/common/model/history/base/history-item.ts
|
10280
|
-
|
10281
|
-
class history_item_HistoryItem {
|
10282
|
-
canBeMerged() {
|
10283
|
-
return false;
|
10284
|
-
}
|
10285
|
-
constructor(modelManipulator) {
|
10286
|
-
this.uniqueId = -1;
|
10287
|
-
this.modelManipulator = modelManipulator;
|
10288
|
-
}
|
10289
|
-
changeModified() {
|
10290
|
-
return true;
|
10291
|
-
}
|
10292
|
-
}
|
10293
|
-
class CompositionHistoryItem extends history_item_HistoryItem {
|
10294
|
-
canBeMerged() {
|
10295
|
-
return true;
|
10296
|
-
}
|
10297
|
-
constructor() {
|
10298
|
-
super(null);
|
10299
|
-
this.historyItems = [];
|
10300
|
-
}
|
10301
|
-
changeModified() {
|
10302
|
-
var item;
|
10303
|
-
for (var i = 0; item = this.historyItems[i]; i++) {
|
10304
|
-
if (item.changeModified())
|
10305
|
-
return true;
|
10306
|
-
}
|
10307
|
-
return false;
|
10308
|
-
}
|
10309
|
-
redo() {
|
10310
|
-
var item;
|
10311
|
-
for (var i = 0; item = this.historyItems[i]; i++)
|
10312
|
-
item.redo();
|
10313
|
-
}
|
10314
|
-
undo() {
|
10315
|
-
var item;
|
10316
|
-
for (var i = this.historyItems.length - 1; item = this.historyItems[i]; i--)
|
10317
|
-
item.undo();
|
10318
|
-
}
|
10319
|
-
add(historyItem) {
|
10320
|
-
if (historyItem == null)
|
10321
|
-
throw new Error(lib_errors/* Errors */.D.ValueCannotBeNull);
|
10322
|
-
this.historyItems.push(historyItem);
|
10323
|
-
}
|
10324
|
-
}
|
10325
|
-
|
10326
|
-
;// CONCATENATED MODULE: ./src/common/model/history/base/interval-based-history-item.ts
|
10327
|
-
|
10328
|
-
class interval_based_history_item_IntervalBasedHistoryItem extends history_item_HistoryItem {
|
10329
|
-
get boundSubDocument() { return this.subDocInterval.subDocument; }
|
10330
|
-
get interval() { return this.subDocInterval.interval; }
|
10331
|
-
constructor(modelManipulator, subDocInterval) {
|
10332
|
-
super(modelManipulator);
|
10333
|
-
this.subDocInterval = subDocInterval;
|
10334
|
-
}
|
10335
|
-
}
|
10336
|
-
|
10337
10994
|
;// CONCATENATED MODULE: ./src/common/model/history/items/paragraph-properties-history-items.ts
|
10338
10995
|
|
10339
10996
|
|
@@ -11503,650 +12160,6 @@ class LineSpacingUnit {
|
|
11503
12160
|
}
|
11504
12161
|
}
|
11505
12162
|
|
11506
|
-
;// CONCATENATED MODULE: ./src/common/model/history/items/character-properties-history-items.ts
|
11507
|
-
|
11508
|
-
|
11509
|
-
class FontUseValueHistoryItem extends interval_based_history_item_IntervalBasedHistoryItem {
|
11510
|
-
constructor(modelManipulator, subDocInterval, newValue) {
|
11511
|
-
super(modelManipulator, subDocInterval);
|
11512
|
-
this.newValue = newValue;
|
11513
|
-
}
|
11514
|
-
redo() {
|
11515
|
-
this.oldState = this.modelManipulator.characterProperties.useValue.setValue(this.boundSubDocument, this.interval, this.newValue);
|
11516
|
-
}
|
11517
|
-
undo() {
|
11518
|
-
this.modelManipulator.characterProperties.useValue.restoreValue(this.boundSubDocument, this.oldState);
|
11519
|
-
}
|
11520
|
-
}
|
11521
|
-
class CharacterPropertiesHistoryItem extends interval_based_history_item_IntervalBasedHistoryItem {
|
11522
|
-
constructor(modelManipulator, subDocInterval, newValue) {
|
11523
|
-
super(modelManipulator, subDocInterval);
|
11524
|
-
this.newValue = newValue;
|
11525
|
-
}
|
11526
|
-
redo() {
|
11527
|
-
this.oldState = this.modelManipulator.characterProperties.setValue(this.boundSubDocument, this.interval, this.newValue);
|
11528
|
-
}
|
11529
|
-
undo() {
|
11530
|
-
this.modelManipulator.characterProperties.restoreValue(this.boundSubDocument, this.oldState);
|
11531
|
-
}
|
11532
|
-
}
|
11533
|
-
class CharacterPropertiesHistoryItemBase extends interval_based_history_item_IntervalBasedHistoryItem {
|
11534
|
-
constructor(modelManipulator, subDocInterval, newValue, newUse) {
|
11535
|
-
super(modelManipulator, subDocInterval);
|
11536
|
-
this.newValue = newValue;
|
11537
|
-
this.newUse = newUse;
|
11538
|
-
}
|
11539
|
-
redo() {
|
11540
|
-
this.oldState = this.getPropertiesManipulator().setValue(this.boundSubDocument, this.interval, this.newValue, this.newUse);
|
11541
|
-
}
|
11542
|
-
undo() {
|
11543
|
-
this.getPropertiesManipulator().restoreValue(this.boundSubDocument, this.oldState);
|
11544
|
-
}
|
11545
|
-
getPropertiesManipulator() {
|
11546
|
-
throw new Error(lib_errors/* Errors */.D.NotImplemented);
|
11547
|
-
}
|
11548
|
-
}
|
11549
|
-
class FontBoldHistoryItem extends CharacterPropertiesHistoryItemBase {
|
11550
|
-
getPropertiesManipulator() {
|
11551
|
-
return this.modelManipulator.characterProperties.fontBold;
|
11552
|
-
}
|
11553
|
-
}
|
11554
|
-
class FontCapsHistoryItem extends CharacterPropertiesHistoryItemBase {
|
11555
|
-
getPropertiesManipulator() {
|
11556
|
-
return this.modelManipulator.characterProperties.fontCaps;
|
11557
|
-
}
|
11558
|
-
}
|
11559
|
-
class FontSmallCapsHistoryItem extends CharacterPropertiesHistoryItemBase {
|
11560
|
-
getPropertiesManipulator() {
|
11561
|
-
return this.modelManipulator.characterProperties.fontSmallCaps;
|
11562
|
-
}
|
11563
|
-
}
|
11564
|
-
class FontUnderlineTypeHistoryItem extends CharacterPropertiesHistoryItemBase {
|
11565
|
-
getPropertiesManipulator() {
|
11566
|
-
return this.modelManipulator.characterProperties.fontUnderlineType;
|
11567
|
-
}
|
11568
|
-
}
|
11569
|
-
class FontTextColorHistoryItem extends CharacterPropertiesHistoryItemBase {
|
11570
|
-
getPropertiesManipulator() {
|
11571
|
-
return this.modelManipulator.characterProperties.textColor;
|
11572
|
-
}
|
11573
|
-
}
|
11574
|
-
class FontShadingInfoHistoryItem extends CharacterPropertiesHistoryItemBase {
|
11575
|
-
getPropertiesManipulator() {
|
11576
|
-
return this.modelManipulator.characterProperties.shadingInfo;
|
11577
|
-
}
|
11578
|
-
}
|
11579
|
-
class FontHiddenHistoryItem extends CharacterPropertiesHistoryItemBase {
|
11580
|
-
getPropertiesManipulator() {
|
11581
|
-
return this.modelManipulator.characterProperties.fontHidden;
|
11582
|
-
}
|
11583
|
-
}
|
11584
|
-
class FontItalicHistoryItem extends CharacterPropertiesHistoryItemBase {
|
11585
|
-
getPropertiesManipulator() {
|
11586
|
-
return this.modelManipulator.characterProperties.fontItalic;
|
11587
|
-
}
|
11588
|
-
}
|
11589
|
-
class FontNameHistoryItem extends CharacterPropertiesHistoryItemBase {
|
11590
|
-
getPropertiesManipulator() {
|
11591
|
-
return this.modelManipulator.characterProperties.fontName;
|
11592
|
-
}
|
11593
|
-
}
|
11594
|
-
class FontScriptHistoryItem extends CharacterPropertiesHistoryItemBase {
|
11595
|
-
getPropertiesManipulator() {
|
11596
|
-
return this.modelManipulator.characterProperties.script;
|
11597
|
-
}
|
11598
|
-
}
|
11599
|
-
class FontSizeHistoryItem extends CharacterPropertiesHistoryItemBase {
|
11600
|
-
getPropertiesManipulator() {
|
11601
|
-
return this.modelManipulator.characterProperties.fontSize;
|
11602
|
-
}
|
11603
|
-
}
|
11604
|
-
class FontStrikeoutTypeHistoryItem extends CharacterPropertiesHistoryItemBase {
|
11605
|
-
getPropertiesManipulator() {
|
11606
|
-
return this.modelManipulator.characterProperties.fontStrikeoutType;
|
11607
|
-
}
|
11608
|
-
}
|
11609
|
-
class FontStrikeoutWordsOnlyHistoryItem extends CharacterPropertiesHistoryItemBase {
|
11610
|
-
getPropertiesManipulator() {
|
11611
|
-
return this.modelManipulator.characterProperties.fontStrikeoutWordsOnly;
|
11612
|
-
}
|
11613
|
-
}
|
11614
|
-
class FontStrikeoutColorHistoryItem extends CharacterPropertiesHistoryItemBase {
|
11615
|
-
getPropertiesManipulator() {
|
11616
|
-
return this.modelManipulator.characterProperties.fontStrikeoutColor;
|
11617
|
-
}
|
11618
|
-
}
|
11619
|
-
class FontUnderlineColorHistoryItem extends CharacterPropertiesHistoryItemBase {
|
11620
|
-
getPropertiesManipulator() {
|
11621
|
-
return this.modelManipulator.characterProperties.fontUnderlineColor;
|
11622
|
-
}
|
11623
|
-
}
|
11624
|
-
class FontHighlightColorHistoryItem extends CharacterPropertiesHistoryItemBase {
|
11625
|
-
getPropertiesManipulator() {
|
11626
|
-
return this.modelManipulator.characterProperties.fontHighlightColor;
|
11627
|
-
}
|
11628
|
-
}
|
11629
|
-
class FontUnderlineWordsOnlyHistoryItem extends CharacterPropertiesHistoryItemBase {
|
11630
|
-
getPropertiesManipulator() {
|
11631
|
-
return this.modelManipulator.characterProperties.fontUnderlineWordsOnly;
|
11632
|
-
}
|
11633
|
-
}
|
11634
|
-
class FontNoProofHistoryItem extends CharacterPropertiesHistoryItemBase {
|
11635
|
-
getPropertiesManipulator() {
|
11636
|
-
return this.modelManipulator.characterProperties.fontNoProof;
|
11637
|
-
}
|
11638
|
-
}
|
11639
|
-
class FontLangInfoHistoryItem extends CharacterPropertiesHistoryItemBase {
|
11640
|
-
getPropertiesManipulator() {
|
11641
|
-
return this.modelManipulator.characterProperties.langInfo;
|
11642
|
-
}
|
11643
|
-
}
|
11644
|
-
class FontCompositeFontInfoHistoryItem extends CharacterPropertiesHistoryItemBase {
|
11645
|
-
getPropertiesManipulator() {
|
11646
|
-
return this.modelManipulator.characterProperties.compositeFontInfo;
|
11647
|
-
}
|
11648
|
-
}
|
11649
|
-
class ResetCharacterPropertiesUseValuesHistoryItem extends (/* unused pure expression or super */ null && (IntervalBasedHistoryItem)) {
|
11650
|
-
redo() {
|
11651
|
-
this.state = this.modelManipulator.characterProperties.useValue.setValue(this.boundSubDocument, this.interval, 0);
|
11652
|
-
}
|
11653
|
-
undo() {
|
11654
|
-
this.modelManipulator.characterProperties.useValue.restoreValue(this.boundSubDocument, this.state);
|
11655
|
-
}
|
11656
|
-
}
|
11657
|
-
|
11658
|
-
;// CONCATENATED MODULE: ./src/common/model/character/character-property-descriptor.ts
|
11659
|
-
|
11660
|
-
|
11661
|
-
|
11662
|
-
|
11663
|
-
|
11664
|
-
|
11665
|
-
|
11666
|
-
|
11667
|
-
class CharacterPropertiesAllCapsDescriptor {
|
11668
|
-
constructor() {
|
11669
|
-
this.binaryEquals = comparers.Equals.simpleType;
|
11670
|
-
this.defaultValue = false;
|
11671
|
-
}
|
11672
|
-
setProp(props, newValue) {
|
11673
|
-
props.allCaps = newValue;
|
11674
|
-
}
|
11675
|
-
getProp(props) {
|
11676
|
-
return props.allCaps;
|
11677
|
-
}
|
11678
|
-
maskValue() {
|
11679
|
-
return CharacterPropertiesMask.UseAllCaps;
|
11680
|
-
}
|
11681
|
-
getHistoryItemConstructor() {
|
11682
|
-
return FontCapsHistoryItem;
|
11683
|
-
}
|
11684
|
-
getJSONProperty() {
|
11685
|
-
return JSONCharacterFormattingProperty.AllCaps;
|
11686
|
-
}
|
11687
|
-
}
|
11688
|
-
class CharacterPropertiesSmallCapsDescriptor {
|
11689
|
-
constructor() {
|
11690
|
-
this.binaryEquals = comparers.Equals.simpleType;
|
11691
|
-
this.defaultValue = false;
|
11692
|
-
}
|
11693
|
-
setProp(props, newValue) {
|
11694
|
-
props.smallCaps = newValue;
|
11695
|
-
}
|
11696
|
-
getProp(props) {
|
11697
|
-
return props.smallCaps;
|
11698
|
-
}
|
11699
|
-
maskValue() {
|
11700
|
-
return CharacterPropertiesMask.UseSmallCaps;
|
11701
|
-
}
|
11702
|
-
getHistoryItemConstructor() {
|
11703
|
-
return FontSmallCapsHistoryItem;
|
11704
|
-
}
|
11705
|
-
getJSONProperty() {
|
11706
|
-
return JSONCharacterFormattingProperty.SmallCaps;
|
11707
|
-
}
|
11708
|
-
}
|
11709
|
-
class CharacterPropertiesFontSizeDescriptor {
|
11710
|
-
constructor() {
|
11711
|
-
this.binaryEquals = comparers.Equals.simpleType;
|
11712
|
-
this.defaultValue = 11;
|
11713
|
-
}
|
11714
|
-
setProp(props, newValue) {
|
11715
|
-
props.fontSize = newValue;
|
11716
|
-
}
|
11717
|
-
getProp(props) {
|
11718
|
-
return props.fontSize;
|
11719
|
-
}
|
11720
|
-
maskValue() {
|
11721
|
-
return CharacterPropertiesMask.UseDoubleFontSize;
|
11722
|
-
}
|
11723
|
-
getHistoryItemConstructor() {
|
11724
|
-
return FontSizeHistoryItem;
|
11725
|
-
}
|
11726
|
-
getJSONProperty() {
|
11727
|
-
return JSONCharacterFormattingProperty.Size;
|
11728
|
-
}
|
11729
|
-
}
|
11730
|
-
class CharacterPropertiesFontBoldDescriptor {
|
11731
|
-
constructor() {
|
11732
|
-
this.binaryEquals = comparers.Equals.simpleType;
|
11733
|
-
this.defaultValue = false;
|
11734
|
-
}
|
11735
|
-
setProp(props, newValue) {
|
11736
|
-
props.fontBold = newValue;
|
11737
|
-
}
|
11738
|
-
getProp(props) {
|
11739
|
-
return props.fontBold;
|
11740
|
-
}
|
11741
|
-
maskValue() {
|
11742
|
-
return CharacterPropertiesMask.UseFontBold;
|
11743
|
-
}
|
11744
|
-
getHistoryItemConstructor() {
|
11745
|
-
return FontBoldHistoryItem;
|
11746
|
-
}
|
11747
|
-
getJSONProperty() {
|
11748
|
-
return JSONCharacterFormattingProperty.Bold;
|
11749
|
-
}
|
11750
|
-
}
|
11751
|
-
class CharacterPropertiesFontItalicDescriptor {
|
11752
|
-
constructor() {
|
11753
|
-
this.binaryEquals = comparers.Equals.simpleType;
|
11754
|
-
this.defaultValue = false;
|
11755
|
-
}
|
11756
|
-
setProp(props, newValue) {
|
11757
|
-
props.fontItalic = newValue;
|
11758
|
-
}
|
11759
|
-
getProp(props) {
|
11760
|
-
return props.fontItalic;
|
11761
|
-
}
|
11762
|
-
maskValue() {
|
11763
|
-
return CharacterPropertiesMask.UseFontItalic;
|
11764
|
-
}
|
11765
|
-
getHistoryItemConstructor() {
|
11766
|
-
return FontItalicHistoryItem;
|
11767
|
-
}
|
11768
|
-
getJSONProperty() {
|
11769
|
-
return JSONCharacterFormattingProperty.Italic;
|
11770
|
-
}
|
11771
|
-
}
|
11772
|
-
class CharacterPropertiesFontInfoDescriptor {
|
11773
|
-
constructor() {
|
11774
|
-
this.binaryEquals = comparers.Equals.object;
|
11775
|
-
this.defaultValue = undefined;
|
11776
|
-
}
|
11777
|
-
setProp(props, newValue) {
|
11778
|
-
props.fontInfo = newValue;
|
11779
|
-
}
|
11780
|
-
getProp(props) {
|
11781
|
-
return props.fontInfo;
|
11782
|
-
}
|
11783
|
-
maskValue() {
|
11784
|
-
return CharacterPropertiesMask.UseFontName;
|
11785
|
-
}
|
11786
|
-
getHistoryItemConstructor() {
|
11787
|
-
return FontNameHistoryItem;
|
11788
|
-
}
|
11789
|
-
getJSONProperty() {
|
11790
|
-
return JSONCharacterFormattingProperty.FontName;
|
11791
|
-
}
|
11792
|
-
}
|
11793
|
-
class CharacterPropertiesScriptDescriptor {
|
11794
|
-
constructor() {
|
11795
|
-
this.binaryEquals = comparers.Equals.simpleType;
|
11796
|
-
this.defaultValue = CharacterFormattingScript.Normal;
|
11797
|
-
}
|
11798
|
-
setProp(props, newValue) {
|
11799
|
-
props.script = newValue;
|
11800
|
-
}
|
11801
|
-
getProp(props) {
|
11802
|
-
return props.script;
|
11803
|
-
}
|
11804
|
-
maskValue() {
|
11805
|
-
return CharacterPropertiesMask.UseScript;
|
11806
|
-
}
|
11807
|
-
getHistoryItemConstructor() {
|
11808
|
-
return FontScriptHistoryItem;
|
11809
|
-
}
|
11810
|
-
getJSONProperty() {
|
11811
|
-
return JSONCharacterFormattingProperty.Script;
|
11812
|
-
}
|
11813
|
-
}
|
11814
|
-
class CharacterPropertiesStrikeoutTypeDescriptor {
|
11815
|
-
constructor() {
|
11816
|
-
this.binaryEquals = comparers.Equals.simpleType;
|
11817
|
-
this.defaultValue = StrikeoutType.None;
|
11818
|
-
}
|
11819
|
-
setProp(props, newValue) {
|
11820
|
-
props.fontStrikeoutType = newValue;
|
11821
|
-
}
|
11822
|
-
getProp(props) {
|
11823
|
-
return props.fontStrikeoutType;
|
11824
|
-
}
|
11825
|
-
maskValue() {
|
11826
|
-
return CharacterPropertiesMask.UseFontStrikeoutType;
|
11827
|
-
}
|
11828
|
-
getHistoryItemConstructor() {
|
11829
|
-
return FontStrikeoutTypeHistoryItem;
|
11830
|
-
}
|
11831
|
-
getJSONProperty() {
|
11832
|
-
return JSONCharacterFormattingProperty.StrikeoutType;
|
11833
|
-
}
|
11834
|
-
}
|
11835
|
-
class CharacterPropertiesUnderlineTypeDescriptor {
|
11836
|
-
constructor() {
|
11837
|
-
this.binaryEquals = comparers.Equals.simpleType;
|
11838
|
-
this.defaultValue = UnderlineType.None;
|
11839
|
-
}
|
11840
|
-
setProp(props, newValue) {
|
11841
|
-
props.fontUnderlineType = newValue;
|
11842
|
-
}
|
11843
|
-
getProp(props) {
|
11844
|
-
return props.fontUnderlineType;
|
11845
|
-
}
|
11846
|
-
maskValue() {
|
11847
|
-
return CharacterPropertiesMask.UseFontUnderlineType;
|
11848
|
-
}
|
11849
|
-
getHistoryItemConstructor() {
|
11850
|
-
return FontUnderlineTypeHistoryItem;
|
11851
|
-
}
|
11852
|
-
getJSONProperty() {
|
11853
|
-
return JSONCharacterFormattingProperty.UnderlineType;
|
11854
|
-
}
|
11855
|
-
}
|
11856
|
-
class CharacterPropertiesUnderlineWordsOnlyDescriptor {
|
11857
|
-
constructor() {
|
11858
|
-
this.binaryEquals = comparers.Equals.simpleType;
|
11859
|
-
this.defaultValue = false;
|
11860
|
-
}
|
11861
|
-
setProp(props, newValue) {
|
11862
|
-
props.underlineWordsOnly = newValue;
|
11863
|
-
}
|
11864
|
-
getProp(props) {
|
11865
|
-
return props.underlineWordsOnly;
|
11866
|
-
}
|
11867
|
-
maskValue() {
|
11868
|
-
return CharacterPropertiesMask.UseUnderlineWordsOnly;
|
11869
|
-
}
|
11870
|
-
getHistoryItemConstructor() {
|
11871
|
-
return FontUnderlineWordsOnlyHistoryItem;
|
11872
|
-
}
|
11873
|
-
getJSONProperty() {
|
11874
|
-
return JSONCharacterFormattingProperty.UnderlineWordsOnly;
|
11875
|
-
}
|
11876
|
-
}
|
11877
|
-
class CharacterPropertiesStrikeoutWordsOnlyDescriptor {
|
11878
|
-
constructor() {
|
11879
|
-
this.binaryEquals = comparers.Equals.simpleType;
|
11880
|
-
this.defaultValue = false;
|
11881
|
-
}
|
11882
|
-
setProp(props, newValue) {
|
11883
|
-
props.strikeoutWordsOnly = newValue;
|
11884
|
-
}
|
11885
|
-
getProp(props) {
|
11886
|
-
return props.strikeoutWordsOnly;
|
11887
|
-
}
|
11888
|
-
maskValue() {
|
11889
|
-
return CharacterPropertiesMask.UseStrikeoutWordsOnly;
|
11890
|
-
}
|
11891
|
-
getHistoryItemConstructor() {
|
11892
|
-
return FontStrikeoutWordsOnlyHistoryItem;
|
11893
|
-
}
|
11894
|
-
getJSONProperty() {
|
11895
|
-
return JSONCharacterFormattingProperty.StrikeoutWordsOnly;
|
11896
|
-
}
|
11897
|
-
}
|
11898
|
-
class CharacterPropertiesNoProofDescriptor {
|
11899
|
-
constructor() {
|
11900
|
-
this.binaryEquals = comparers.Equals.simpleType;
|
11901
|
-
this.defaultValue = false;
|
11902
|
-
}
|
11903
|
-
setProp(props, newValue) {
|
11904
|
-
props.noProof = newValue;
|
11905
|
-
}
|
11906
|
-
getProp(props) {
|
11907
|
-
return props.noProof;
|
11908
|
-
}
|
11909
|
-
maskValue() {
|
11910
|
-
return CharacterPropertiesMask.UseNoProof;
|
11911
|
-
}
|
11912
|
-
getHistoryItemConstructor() {
|
11913
|
-
return FontNoProofHistoryItem;
|
11914
|
-
}
|
11915
|
-
getJSONProperty() {
|
11916
|
-
return JSONCharacterFormattingProperty.NoProof;
|
11917
|
-
}
|
11918
|
-
}
|
11919
|
-
class CharacterPropertiesHiddenDescriptor {
|
11920
|
-
constructor() {
|
11921
|
-
this.binaryEquals = comparers.Equals.simpleType;
|
11922
|
-
this.defaultValue = false;
|
11923
|
-
}
|
11924
|
-
setProp(props, newValue) {
|
11925
|
-
props.hidden = newValue;
|
11926
|
-
}
|
11927
|
-
getProp(props) {
|
11928
|
-
return props.hidden;
|
11929
|
-
}
|
11930
|
-
maskValue() {
|
11931
|
-
return CharacterPropertiesMask.UseHidden;
|
11932
|
-
}
|
11933
|
-
getHistoryItemConstructor() {
|
11934
|
-
return FontHiddenHistoryItem;
|
11935
|
-
}
|
11936
|
-
getJSONProperty() {
|
11937
|
-
return JSONCharacterFormattingProperty.Hidden;
|
11938
|
-
}
|
11939
|
-
}
|
11940
|
-
class CharacterPropertiesTextColorDescriptor {
|
11941
|
-
constructor() {
|
11942
|
-
this.binaryEquals = comparers.Equals.object;
|
11943
|
-
this.defaultValue = color_model_info_ColorModelInfo.autoColor;
|
11944
|
-
}
|
11945
|
-
setProp(props, newValue) {
|
11946
|
-
props.textColor = newValue;
|
11947
|
-
}
|
11948
|
-
getProp(props) {
|
11949
|
-
return props.textColor;
|
11950
|
-
}
|
11951
|
-
maskValue() {
|
11952
|
-
return CharacterPropertiesMask.UseForeColorIndex;
|
11953
|
-
}
|
11954
|
-
getHistoryItemConstructor() {
|
11955
|
-
return FontTextColorHistoryItem;
|
11956
|
-
}
|
11957
|
-
getJSONProperty() {
|
11958
|
-
return JSONCharacterFormattingProperty.TextColor;
|
11959
|
-
}
|
11960
|
-
}
|
11961
|
-
class CharacterPropertiesShadingInfoColorDescriptor {
|
11962
|
-
constructor() {
|
11963
|
-
this.binaryEquals = comparers.Equals.object;
|
11964
|
-
this.defaultValue = ShadingInfo.noColor;
|
11965
|
-
}
|
11966
|
-
setProp(props, newValue) {
|
11967
|
-
props.shadingInfo = newValue;
|
11968
|
-
}
|
11969
|
-
getProp(props) {
|
11970
|
-
return props.shadingInfo;
|
11971
|
-
}
|
11972
|
-
maskValue() {
|
11973
|
-
return CharacterPropertiesMask.UseShadingInfoIndex;
|
11974
|
-
}
|
11975
|
-
getHistoryItemConstructor() {
|
11976
|
-
return FontShadingInfoHistoryItem;
|
11977
|
-
}
|
11978
|
-
getJSONProperty() {
|
11979
|
-
return JSONCharacterFormattingProperty.ShadingInfo;
|
11980
|
-
}
|
11981
|
-
}
|
11982
|
-
class CharacterPropertiesStrikeoutColorDescriptor {
|
11983
|
-
constructor() {
|
11984
|
-
this.binaryEquals = comparers.Equals.object;
|
11985
|
-
this.defaultValue = color_model_info_ColorModelInfo.noColor;
|
11986
|
-
}
|
11987
|
-
setProp(props, newValue) {
|
11988
|
-
props.strikeoutColor = newValue;
|
11989
|
-
}
|
11990
|
-
getProp(props) {
|
11991
|
-
return props.strikeoutColor;
|
11992
|
-
}
|
11993
|
-
maskValue() {
|
11994
|
-
return CharacterPropertiesMask.UseStrikeoutColorIndex;
|
11995
|
-
}
|
11996
|
-
getHistoryItemConstructor() {
|
11997
|
-
return FontStrikeoutColorHistoryItem;
|
11998
|
-
}
|
11999
|
-
getJSONProperty() {
|
12000
|
-
return JSONCharacterFormattingProperty.StrikeoutColor;
|
12001
|
-
}
|
12002
|
-
}
|
12003
|
-
class CharacterPropertiesUnderlineColorDescriptor {
|
12004
|
-
constructor() {
|
12005
|
-
this.binaryEquals = comparers.Equals.object;
|
12006
|
-
this.defaultValue = color_model_info_ColorModelInfo.noColor;
|
12007
|
-
}
|
12008
|
-
setProp(props, newValue) {
|
12009
|
-
props.underlineColor = newValue;
|
12010
|
-
}
|
12011
|
-
getProp(props) {
|
12012
|
-
return props.underlineColor;
|
12013
|
-
}
|
12014
|
-
maskValue() {
|
12015
|
-
return CharacterPropertiesMask.UseUnderlineColorIndex;
|
12016
|
-
}
|
12017
|
-
getHistoryItemConstructor() {
|
12018
|
-
return FontUnderlineColorHistoryItem;
|
12019
|
-
}
|
12020
|
-
getJSONProperty() {
|
12021
|
-
return JSONCharacterFormattingProperty.UnderlineColor;
|
12022
|
-
}
|
12023
|
-
}
|
12024
|
-
class CharacterPropertiesHighlightColorDescriptor {
|
12025
|
-
constructor() {
|
12026
|
-
this.binaryEquals = comparers.Equals.object;
|
12027
|
-
this.defaultValue = color_model_info_ColorModelInfo.noColor;
|
12028
|
-
}
|
12029
|
-
setProp(props, newValue) {
|
12030
|
-
props.highlightColor = newValue;
|
12031
|
-
}
|
12032
|
-
getProp(props) {
|
12033
|
-
return props.highlightColor;
|
12034
|
-
}
|
12035
|
-
maskValue() {
|
12036
|
-
return CharacterPropertiesMask.UseHighlightColorIndex;
|
12037
|
-
}
|
12038
|
-
getHistoryItemConstructor() {
|
12039
|
-
return FontHighlightColorHistoryItem;
|
12040
|
-
}
|
12041
|
-
getJSONProperty() {
|
12042
|
-
return JSONCharacterFormattingProperty.HighlightColor;
|
12043
|
-
}
|
12044
|
-
}
|
12045
|
-
class CharacterPropertiesLangInfoDescriptor {
|
12046
|
-
constructor() {
|
12047
|
-
this.binaryEquals = comparers.Equals.object;
|
12048
|
-
this.defaultValue = new LangInfo();
|
12049
|
-
}
|
12050
|
-
setProp(props, newValue) {
|
12051
|
-
props.langInfo = newValue;
|
12052
|
-
}
|
12053
|
-
getProp(props) {
|
12054
|
-
return props.langInfo;
|
12055
|
-
}
|
12056
|
-
maskValue() {
|
12057
|
-
return CharacterPropertiesMask.UseLangInfo;
|
12058
|
-
}
|
12059
|
-
getHistoryItemConstructor() {
|
12060
|
-
return FontLangInfoHistoryItem;
|
12061
|
-
}
|
12062
|
-
getJSONProperty() {
|
12063
|
-
return JSONCharacterFormattingProperty.LangInfo;
|
12064
|
-
}
|
12065
|
-
}
|
12066
|
-
class CharacterPropertiesCompositeFontInfoDescriptor {
|
12067
|
-
constructor() {
|
12068
|
-
this.binaryEquals = comparers.Equals.object;
|
12069
|
-
this.defaultValue = new CompositeFontInfo();
|
12070
|
-
}
|
12071
|
-
setProp(props, newValue) {
|
12072
|
-
props.compositeFontInfo = newValue;
|
12073
|
-
}
|
12074
|
-
getProp(props) {
|
12075
|
-
return props.compositeFontInfo;
|
12076
|
-
}
|
12077
|
-
maskValue() {
|
12078
|
-
return CharacterPropertiesMask.UseCompositeFontInfo;
|
12079
|
-
}
|
12080
|
-
getHistoryItemConstructor() {
|
12081
|
-
return FontCompositeFontInfoHistoryItem;
|
12082
|
-
}
|
12083
|
-
getJSONProperty() {
|
12084
|
-
return JSONCharacterFormattingProperty.CompositeFontInfo;
|
12085
|
-
}
|
12086
|
-
}
|
12087
|
-
class character_property_descriptor_CharacterPropertyDescriptor {
|
12088
|
-
}
|
12089
|
-
character_property_descriptor_CharacterPropertyDescriptor.allCaps = new CharacterPropertiesAllCapsDescriptor();
|
12090
|
-
character_property_descriptor_CharacterPropertyDescriptor.size = new CharacterPropertiesFontSizeDescriptor();
|
12091
|
-
character_property_descriptor_CharacterPropertyDescriptor.bold = new CharacterPropertiesFontBoldDescriptor();
|
12092
|
-
character_property_descriptor_CharacterPropertyDescriptor.italic = new CharacterPropertiesFontItalicDescriptor();
|
12093
|
-
character_property_descriptor_CharacterPropertyDescriptor.fontInfo = new CharacterPropertiesFontInfoDescriptor();
|
12094
|
-
character_property_descriptor_CharacterPropertyDescriptor.script = new CharacterPropertiesScriptDescriptor();
|
12095
|
-
character_property_descriptor_CharacterPropertyDescriptor.strikeoutType = new CharacterPropertiesStrikeoutTypeDescriptor();
|
12096
|
-
character_property_descriptor_CharacterPropertyDescriptor.underlineType = new CharacterPropertiesUnderlineTypeDescriptor();
|
12097
|
-
character_property_descriptor_CharacterPropertyDescriptor.underlineWordsOnly = new CharacterPropertiesUnderlineWordsOnlyDescriptor();
|
12098
|
-
character_property_descriptor_CharacterPropertyDescriptor.strikeoutWordsOnly = new CharacterPropertiesStrikeoutWordsOnlyDescriptor();
|
12099
|
-
character_property_descriptor_CharacterPropertyDescriptor.noProof = new CharacterPropertiesNoProofDescriptor();
|
12100
|
-
character_property_descriptor_CharacterPropertyDescriptor.hidden = new CharacterPropertiesHiddenDescriptor();
|
12101
|
-
character_property_descriptor_CharacterPropertyDescriptor.langInfo = new CharacterPropertiesLangInfoDescriptor();
|
12102
|
-
character_property_descriptor_CharacterPropertyDescriptor.compositeFontInfo = new CharacterPropertiesCompositeFontInfoDescriptor();
|
12103
|
-
character_property_descriptor_CharacterPropertyDescriptor.textColor = new CharacterPropertiesTextColorDescriptor();
|
12104
|
-
character_property_descriptor_CharacterPropertyDescriptor.shadingInfo = new CharacterPropertiesShadingInfoColorDescriptor();
|
12105
|
-
character_property_descriptor_CharacterPropertyDescriptor.highlightColor = new CharacterPropertiesHighlightColorDescriptor();
|
12106
|
-
character_property_descriptor_CharacterPropertyDescriptor.strikeoutColor = new CharacterPropertiesStrikeoutColorDescriptor();
|
12107
|
-
character_property_descriptor_CharacterPropertyDescriptor.underlineColor = new CharacterPropertiesUnderlineColorDescriptor();
|
12108
|
-
character_property_descriptor_CharacterPropertyDescriptor.smallCaps = new CharacterPropertiesSmallCapsDescriptor();
|
12109
|
-
character_property_descriptor_CharacterPropertyDescriptor.ALL_FIELDS = [
|
12110
|
-
character_property_descriptor_CharacterPropertyDescriptor.allCaps,
|
12111
|
-
character_property_descriptor_CharacterPropertyDescriptor.size,
|
12112
|
-
character_property_descriptor_CharacterPropertyDescriptor.bold,
|
12113
|
-
character_property_descriptor_CharacterPropertyDescriptor.italic,
|
12114
|
-
character_property_descriptor_CharacterPropertyDescriptor.fontInfo,
|
12115
|
-
character_property_descriptor_CharacterPropertyDescriptor.script,
|
12116
|
-
character_property_descriptor_CharacterPropertyDescriptor.strikeoutType,
|
12117
|
-
character_property_descriptor_CharacterPropertyDescriptor.underlineType,
|
12118
|
-
character_property_descriptor_CharacterPropertyDescriptor.underlineWordsOnly,
|
12119
|
-
character_property_descriptor_CharacterPropertyDescriptor.strikeoutWordsOnly,
|
12120
|
-
character_property_descriptor_CharacterPropertyDescriptor.noProof,
|
12121
|
-
character_property_descriptor_CharacterPropertyDescriptor.hidden,
|
12122
|
-
character_property_descriptor_CharacterPropertyDescriptor.langInfo,
|
12123
|
-
character_property_descriptor_CharacterPropertyDescriptor.compositeFontInfo,
|
12124
|
-
character_property_descriptor_CharacterPropertyDescriptor.textColor,
|
12125
|
-
character_property_descriptor_CharacterPropertyDescriptor.shadingInfo,
|
12126
|
-
character_property_descriptor_CharacterPropertyDescriptor.highlightColor,
|
12127
|
-
character_property_descriptor_CharacterPropertyDescriptor.strikeoutColor,
|
12128
|
-
character_property_descriptor_CharacterPropertyDescriptor.underlineColor,
|
12129
|
-
character_property_descriptor_CharacterPropertyDescriptor.smallCaps
|
12130
|
-
];
|
12131
|
-
character_property_descriptor_CharacterPropertyDescriptor.whatNeedSetWhenCreateHyperlinkField = [
|
12132
|
-
character_property_descriptor_CharacterPropertyDescriptor.size,
|
12133
|
-
character_property_descriptor_CharacterPropertyDescriptor.bold,
|
12134
|
-
character_property_descriptor_CharacterPropertyDescriptor.italic,
|
12135
|
-
character_property_descriptor_CharacterPropertyDescriptor.fontInfo,
|
12136
|
-
character_property_descriptor_CharacterPropertyDescriptor.script,
|
12137
|
-
character_property_descriptor_CharacterPropertyDescriptor.strikeoutType,
|
12138
|
-
character_property_descriptor_CharacterPropertyDescriptor.allCaps,
|
12139
|
-
character_property_descriptor_CharacterPropertyDescriptor.underlineWordsOnly,
|
12140
|
-
character_property_descriptor_CharacterPropertyDescriptor.strikeoutWordsOnly,
|
12141
|
-
character_property_descriptor_CharacterPropertyDescriptor.noProof,
|
12142
|
-
character_property_descriptor_CharacterPropertyDescriptor.hidden,
|
12143
|
-
character_property_descriptor_CharacterPropertyDescriptor.shadingInfo,
|
12144
|
-
character_property_descriptor_CharacterPropertyDescriptor.strikeoutColor,
|
12145
|
-
character_property_descriptor_CharacterPropertyDescriptor.underlineColor,
|
12146
|
-
character_property_descriptor_CharacterPropertyDescriptor.langInfo,
|
12147
|
-
character_property_descriptor_CharacterPropertyDescriptor.smallCaps
|
12148
|
-
];
|
12149
|
-
|
12150
12163
|
;// CONCATENATED MODULE: ./src/common/model/borders/table-border-base.ts
|
12151
12164
|
|
12152
12165
|
class TableBordersBase {
|
@@ -12329,6 +12342,7 @@ var ConditionalTableStyleFormatting;
|
|
12329
12342
|
ConditionalTableStyleFormatting[ConditionalTableStyleFormatting["TopLeftCell"] = 4] = "TopLeftCell";
|
12330
12343
|
ConditionalTableStyleFormatting[ConditionalTableStyleFormatting["BottomRightCell"] = 2] = "BottomRightCell";
|
12331
12344
|
ConditionalTableStyleFormatting[ConditionalTableStyleFormatting["BottomLeftCell"] = 1] = "BottomLeftCell";
|
12345
|
+
ConditionalTableStyleFormatting[ConditionalTableStyleFormatting["None"] = 0] = "None";
|
12332
12346
|
})(ConditionalTableStyleFormatting || (ConditionalTableStyleFormatting = {}));
|
12333
12347
|
|
12334
12348
|
;// CONCATENATED MODULE: ./src/common/model/tables/secondary-structures/table-units.ts
|
@@ -19208,8 +19222,6 @@ class TableAlignmentApplier {
|
|
19208
19222
|
offset = 0;
|
19209
19223
|
break;
|
19210
19224
|
}
|
19211
|
-
if (offset <= 0)
|
19212
|
-
return;
|
19213
19225
|
TableAlignmentApplier.moveAllTable(currTableColumnInfo, (rect) => rect.x += offset);
|
19214
19226
|
}
|
19215
19227
|
static applyCellsVerticalAlignment(defaultTableCellProps, grid, currTableColumnInfo, rowInfo) {
|
@@ -19703,15 +19715,16 @@ class TabProperties {
|
|
19703
19715
|
}
|
19704
19716
|
}
|
19705
19717
|
class TabInfo {
|
19706
|
-
constructor(position, alignment, leader, deleted, isDefault) {
|
19718
|
+
constructor(position, alignment, leader, deleted, isDefault, isParagraphIndent = false) {
|
19707
19719
|
this.position = position;
|
19708
19720
|
this.alignment = alignment;
|
19709
19721
|
this.leader = leader;
|
19710
19722
|
this.isDefault = isDefault;
|
19711
19723
|
this.deleted = deleted;
|
19724
|
+
this.isParagraphIndent = isParagraphIndent;
|
19712
19725
|
}
|
19713
19726
|
clone() {
|
19714
|
-
return new TabInfo(this.position, this.alignment, this.leader, this.deleted, this.isDefault);
|
19727
|
+
return new TabInfo(this.position, this.alignment, this.leader, this.deleted, this.isDefault, this.isParagraphIndent);
|
19715
19728
|
}
|
19716
19729
|
equals(obj) {
|
19717
19730
|
if (!obj)
|
@@ -19720,7 +19733,8 @@ class TabInfo {
|
|
19720
19733
|
this.leader == obj.leader &&
|
19721
19734
|
this.position == obj.position &&
|
19722
19735
|
this.deleted == obj.deleted &&
|
19723
|
-
this.isDefault == obj.isDefault
|
19736
|
+
this.isDefault == obj.isDefault &&
|
19737
|
+
this.isParagraphIndent == obj.isParagraphIndent;
|
19724
19738
|
}
|
19725
19739
|
}
|
19726
19740
|
|
@@ -40496,7 +40510,7 @@ class CharacterPropertiesUseValueManipulator {
|
|
40496
40510
|
constructor(manipulator) {
|
40497
40511
|
this.manipulator = manipulator;
|
40498
40512
|
}
|
40499
|
-
setValue(subDocument, interval, newValue) {
|
40513
|
+
setValue(subDocument, interval, newValue, keepCustomFormatting = false) {
|
40500
40514
|
var oldState = new HistoryItemIntervalState();
|
40501
40515
|
if (!ControlOptions.isEnabled(subDocument.documentModel.options.characterFormatting))
|
40502
40516
|
return oldState;
|
@@ -40506,7 +40520,7 @@ class CharacterPropertiesUseValueManipulator {
|
|
40506
40520
|
var run = iterator.currentRun;
|
40507
40521
|
oldState.register(new HistoryItemIntervalStateObject(iterator.currentInterval(), run.maskedCharacterProperties.getUseValueFull()));
|
40508
40522
|
var properties = run.maskedCharacterProperties.clone();
|
40509
|
-
properties.setUseValueFull(newValue);
|
40523
|
+
properties.setUseValueFull(newValue, keepCustomFormatting);
|
40510
40524
|
run.setCharacterProperties(properties);
|
40511
40525
|
run.onCharacterPropertiesChanged();
|
40512
40526
|
}
|
@@ -50035,11 +50049,13 @@ class RtfStyleExporter {
|
|
50035
50049
|
|
50036
50050
|
|
50037
50051
|
|
50052
|
+
|
50038
50053
|
class RtfTableExporterStateBase {
|
50039
|
-
constructor(rtfExporter, table, nestingLevel) {
|
50054
|
+
constructor(rtfExporter, table, grid, nestingLevel) {
|
50040
50055
|
this.rtfExporter = rtfExporter;
|
50041
50056
|
this._nestingLevel = nestingLevel;
|
50042
50057
|
this.table = table;
|
50058
|
+
this.grid = grid;
|
50043
50059
|
this.tableRowPropertiesExporter = new RtfTableRowPropertiesExporter(rtfExporter.documentModel, rtfExporter.rtfExportHelper, rtfExporter.rtfBuilder);
|
50044
50060
|
this.tableCellPropertiesExporter = new RtfTableCellPropertiesExporter(rtfExporter.documentModel, rtfExporter.rtfExportHelper, rtfExporter.rtfBuilder);
|
50045
50061
|
this.tablePropertiesExporter = new RtfTablePropertiesExporter(rtfExporter.documentModel, rtfExporter.rtfExportHelper, rtfExporter.rtfBuilder);
|
@@ -50114,7 +50130,7 @@ class RtfTableExporterStateBase {
|
|
50114
50130
|
while (parentCell !== nestedTable.parentCell) {
|
50115
50131
|
nestedTable = nestedTable.parentCell.parentRow.parentTable;
|
50116
50132
|
}
|
50117
|
-
return RtfTableExporter.exportNestedTable(this.rtfExporter, nestedTable, this.nestingLevel + 1);
|
50133
|
+
return RtfTableExporter.exportNestedTable(this.rtfExporter, nestedTable, this.grid, this.nestingLevel + 1);
|
50118
50134
|
}
|
50119
50135
|
exportRowProperties(row, rowIndex) {
|
50120
50136
|
const rowLeft = this.calculateRowLeft(row, row.parentTable.getActualTableIndent(this.documentModel.defaultTableProperties));
|
@@ -50122,20 +50138,25 @@ class RtfTableExporterStateBase {
|
|
50122
50138
|
let cellRightVirtualColInd = row.gridBefore;
|
50123
50139
|
for (const cell of row.cells) {
|
50124
50140
|
cellRightVirtualColInd += cell.columnSpan;
|
50125
|
-
const
|
50141
|
+
const cellWidth = this.getCellWidth(row.gridBefore, cellRightVirtualColInd);
|
50142
|
+
const cellRight = unit_converter/* UnitConverter */.u.pixelsToTwips(rowLeft + cellWidth);
|
50126
50143
|
this.exportCellProperties(cell, cellRight);
|
50127
50144
|
}
|
50128
50145
|
}
|
50129
|
-
getCellWidth(
|
50130
|
-
if (
|
50146
|
+
getCellWidth(leftSideIndex, columnSpan) {
|
50147
|
+
if (leftSideIndex < 0 || columnSpan < 0)
|
50131
50148
|
throw new Error(lib_errors/* Errors */.D.InternalException);
|
50132
|
-
|
50133
|
-
|
50149
|
+
let result = 0;
|
50150
|
+
for (let i = 0; i < columnSpan; i++)
|
50151
|
+
result += Math.max(this.grid.columns.width[i + leftSideIndex], 1);
|
50152
|
+
return result;
|
50134
50153
|
}
|
50135
50154
|
calculateRowLeft(row, indent) {
|
50136
|
-
|
50155
|
+
var _a;
|
50156
|
+
const widthBefore = row.gridBefore > 0 ? this.getCellWidth(0, row.gridBefore) : 0;
|
50137
50157
|
const offset = this.getActualWidth(indent) + widthBefore;
|
50138
|
-
|
50158
|
+
const rowLeftOffset = (_a = this.rowLeftOffset) !== null && _a !== void 0 ? _a : this.calculateRowLeftOffset(row);
|
50159
|
+
return offset - rowLeftOffset;
|
50139
50160
|
}
|
50140
50161
|
calculateRowLeftOffset(row) {
|
50141
50162
|
const borderWidth = row.cells[0].properties.borders.left.width;
|
@@ -50245,8 +50266,8 @@ class RtfTableExporterStateBase {
|
|
50245
50266
|
|
50246
50267
|
|
50247
50268
|
class RtfNestedTableExporterState extends RtfTableExporterStateBase {
|
50248
|
-
constructor(rtfExporter, table, nestingLevel) {
|
50249
|
-
super(rtfExporter, table, nestingLevel);
|
50269
|
+
constructor(rtfExporter, table, grid, nestingLevel) {
|
50270
|
+
super(rtfExporter, table, grid, nestingLevel);
|
50250
50271
|
}
|
50251
50272
|
export() {
|
50252
50273
|
super.exportBase();
|
@@ -50275,8 +50296,8 @@ class RtfNestedTableExporterState extends RtfTableExporterStateBase {
|
|
50275
50296
|
|
50276
50297
|
|
50277
50298
|
class RtfTableExporterState extends RtfTableExporterStateBase {
|
50278
|
-
constructor(rtfExporter, table) {
|
50279
|
-
super(rtfExporter, table, 1);
|
50299
|
+
constructor(rtfExporter, table, grid) {
|
50300
|
+
super(rtfExporter, table, grid, 1);
|
50280
50301
|
}
|
50281
50302
|
export() {
|
50282
50303
|
super.exportBase();
|
@@ -50295,13 +50316,13 @@ class RtfTableExporterState extends RtfTableExporterStateBase {
|
|
50295
50316
|
|
50296
50317
|
|
50297
50318
|
class RtfTableExporter {
|
50298
|
-
static exportTable(rtfContentExporter, table) {
|
50299
|
-
new RtfTableExporterState(rtfContentExporter, table).export();
|
50319
|
+
static exportTable(rtfContentExporter, table, grid) {
|
50320
|
+
new RtfTableExporterState(rtfContentExporter, table, grid).export();
|
50300
50321
|
rtfContentExporter.tableIterator.update(table.getEndPosition());
|
50301
50322
|
return rtfContentExporter.subDocument.getParagraphIndexByPosition(table.getEndPosition() - 1);
|
50302
50323
|
}
|
50303
|
-
static exportNestedTable(rtfContentExporter, table, nestingLevel) {
|
50304
|
-
new RtfNestedTableExporterState(rtfContentExporter, table, nestingLevel).export();
|
50324
|
+
static exportNestedTable(rtfContentExporter, table, grid, nestingLevel) {
|
50325
|
+
new RtfNestedTableExporterState(rtfContentExporter, table, grid, nestingLevel).export();
|
50305
50326
|
rtfContentExporter.tableIterator.update(table.getEndPosition());
|
50306
50327
|
return rtfContentExporter.subDocument.getParagraphIndexByPosition(table.getEndPosition() - 1);
|
50307
50328
|
}
|
@@ -50347,17 +50368,18 @@ class RtfTableExporter {
|
|
50347
50368
|
class RtfContentExporter {
|
50348
50369
|
get shouldExportHiddenText() { return true; }
|
50349
50370
|
;
|
50350
|
-
|
50371
|
+
get documentModel() { return this.exportModelOptions.modelManager.modelManipulator.model; }
|
50372
|
+
constructor(exportModelOptions, options, rtfExportHelper) {
|
50351
50373
|
this.shouldFourceUpdateIterators = false;
|
50352
|
-
this.
|
50374
|
+
this.exportModelOptions = exportModelOptions;
|
50353
50375
|
this.subDocument = this.documentModel.mainSubDocument;
|
50354
50376
|
this.pieceTableNumberingListCounters = new PieceTableNumberingListCountersManager();
|
50355
50377
|
this.rtfExportHelper = rtfExportHelper;
|
50356
50378
|
this.options = options;
|
50357
50379
|
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);
|
50380
|
+
this.paragraphPropertiesExporter = new RtfParagraphPropertiesExporter(this.documentModel, rtfExportHelper, this.rtfBuilder);
|
50381
|
+
this.characterPropertiesExporter = new RtfCharacterPropertiesExporter(this.documentModel, rtfExportHelper, this.rtfBuilder, options);
|
50382
|
+
this.sectionPropertiesExporter = new RtfSectionPropertiesExporter(this.documentModel, rtfExportHelper, this.rtfBuilder);
|
50361
50383
|
this.runHandlerMap = new MapCreator()
|
50362
50384
|
.add(RunType.TextRun, this.exportTextRun)
|
50363
50385
|
.add(RunType.FieldCodeStartRun, this.fieldCodeStartRunHandler)
|
@@ -50567,7 +50589,7 @@ class RtfContentExporter {
|
|
50567
50589
|
value = "00000000";
|
50568
50590
|
}
|
50569
50591
|
else {
|
50570
|
-
const view = new DataView(hash, 0);
|
50592
|
+
const view = new DataView(hash.buffer, 0);
|
50571
50593
|
const hashValue = view.getInt32(0);
|
50572
50594
|
value = this.documentModel.simpleFormattersManager.formatString("{0:x8}", hashValue);
|
50573
50595
|
}
|
@@ -50743,11 +50765,14 @@ class RtfContentExporter {
|
|
50743
50765
|
this.exportSingleParagraph(paragraph);
|
50744
50766
|
return paragraphIndex;
|
50745
50767
|
}
|
50746
|
-
else
|
50747
|
-
|
50768
|
+
else {
|
50769
|
+
const table = tablesInfo[0].table.getTopLevelParent();
|
50770
|
+
const grid = this.exportModelOptions.grids.get(table);
|
50771
|
+
return RtfTableExporter.exportTable(this, table, grid) - this.startSectionParagraphIndex;
|
50772
|
+
}
|
50748
50773
|
}
|
50749
50774
|
exportSingleParagraph(paragraph) {
|
50750
|
-
this.exportParagraphCore(paragraph, 0,
|
50775
|
+
this.exportParagraphCore(paragraph, 0, ConditionalTableStyleFormatting.None, -1);
|
50751
50776
|
this.finishParagraph(paragraph);
|
50752
50777
|
}
|
50753
50778
|
finishParagraph(paragraph) {
|
@@ -51277,11 +51302,11 @@ class RtfExportHelper {
|
|
51277
51302
|
|
51278
51303
|
class RtfExporter {
|
51279
51304
|
get documentModel() { return this.modelManipulator.model; }
|
51280
|
-
constructor(
|
51281
|
-
this.modelManipulator = modelManipulator;
|
51305
|
+
constructor(exportModelOptions, options) {
|
51306
|
+
this.modelManipulator = exportModelOptions.modelManager.modelManipulator;
|
51282
51307
|
this.options = options;
|
51283
51308
|
this.rtfExportHelper = new RtfExportHelper();
|
51284
|
-
this.contentExporter = new RtfContentExporter(
|
51309
|
+
this.contentExporter = new RtfContentExporter(exportModelOptions, options, this.rtfExportHelper);
|
51285
51310
|
this.rtfBuilder = this.contentExporter.createRtfBuilder();
|
51286
51311
|
}
|
51287
51312
|
exportToBlob(callback) {
|
@@ -65400,10 +65425,11 @@ function getAfterInsertReject(callback) {
|
|
65400
65425
|
|
65401
65426
|
|
65402
65427
|
|
65403
|
-
function getRtfFromSubDocumentPublic(
|
65428
|
+
function getRtfFromSubDocumentPublic(processor, subDocument, coreInterval) {
|
65404
65429
|
const rangeCopy = RangeCopy.create(new SubDocumentIntervals(subDocument, [coreInterval]));
|
65405
|
-
const newModelManager = new ClientModelManager(rangeCopy.model, richOptions, new batch_updatable/* EmptyBatchUpdatableObject */.m1());
|
65406
|
-
|
65430
|
+
const newModelManager = new ClientModelManager(rangeCopy.model, processor.modelManager.richOptions, new batch_updatable/* EmptyBatchUpdatableObject */.m1());
|
65431
|
+
const exportModelOptions = processor.getExportModelOptions({ modelManager: newModelManager });
|
65432
|
+
return new RtfExporter(exportModelOptions, new RtfDocumentExporterOptions()).exportAsString();
|
65407
65433
|
}
|
65408
65434
|
function insertRtfInSubDocumentPublic(processor, subDocument, position, rtf, callback) {
|
65409
65435
|
const options = new RtfImporterOptions(() => { });
|
@@ -85291,7 +85317,7 @@ class SubDocumentApi {
|
|
85291
85317
|
}
|
85292
85318
|
getRtf(interval) {
|
85293
85319
|
const coreInterval = this._checkInterval(interval);
|
85294
|
-
return getRtfFromSubDocumentPublic(this._processor
|
85320
|
+
return getRtfFromSubDocumentPublic(this._processor, this._subDocument, coreInterval);
|
85295
85321
|
}
|
85296
85322
|
insertContent(position, content, documentFormat, callback) {
|
85297
85323
|
position = ApiParametersChecker.check(position, 1, false, [
|
@@ -88719,21 +88745,13 @@ class SectionExporter extends BaseExporter {
|
|
88719
88745
|
this.exportSectionGeneralSettings(props);
|
88720
88746
|
}
|
88721
88747
|
exportSectionPage(props) {
|
88722
|
-
if (!this.shouldExportSectionPage(props))
|
88723
|
-
return;
|
88724
88748
|
this.writer.writeWpStartElement('pgSz');
|
88725
|
-
|
88726
|
-
|
88727
|
-
if (props.pageSize.height != SectionExporter.defaultProps.pageSize.height)
|
88728
|
-
this.writer.writeWpIntAttr('h', props.pageSize.height);
|
88749
|
+
this.writer.writeWpIntAttr('w', props.pageSize.width);
|
88750
|
+
this.writer.writeWpIntAttr('h', props.pageSize.height);
|
88729
88751
|
if (props.landscape)
|
88730
88752
|
this.writer.writeWpStringAttr('orient', props.landscape ? 'landscape' : 'portrait');
|
88731
88753
|
this.writer.endElement();
|
88732
88754
|
}
|
88733
|
-
shouldExportSectionPage(props) {
|
88734
|
-
return !props.pageSize.equals(SectionExporter.defaultProps.pageSize) ||
|
88735
|
-
props.landscape != SectionExporter.defaultProps.landscape;
|
88736
|
-
}
|
88737
88755
|
exportSectionMargins(props) {
|
88738
88756
|
this.writer.writeWpStartElement('pgMar');
|
88739
88757
|
this.writer.writeWpIntAttr('left', props.marginLeft);
|
@@ -91962,7 +91980,7 @@ function getExporter(exportModelOptions) {
|
|
91962
91980
|
const { modelManipulator } = exportModelOptions.modelManager;
|
91963
91981
|
switch (exportModelOptions.documentFormat) {
|
91964
91982
|
case DocumentFormat.OpenXml: return new DocxExporter(exportModelOptions, new DocxExportOptions());
|
91965
|
-
case DocumentFormat.Rtf: return new RtfExporter(
|
91983
|
+
case DocumentFormat.Rtf: return new RtfExporter(exportModelOptions, new RtfDocumentExporterOptions());
|
91966
91984
|
case DocumentFormat.PlainText: return new TxtExporter(modelManipulator, new DocumentExporterOptions());
|
91967
91985
|
case DocumentFormat.Html: return new HtmlDocumentExporter(exportModelOptions, new DocumentExporterOptions());
|
91968
91986
|
default:
|
@@ -92809,7 +92827,6 @@ class LayoutPageArea extends rectangle.Rectangle {
|
|
92809
92827
|
|
92810
92828
|
|
92811
92829
|
|
92812
|
-
|
92813
92830
|
var LayoutRowStateFlags;
|
92814
92831
|
(function (LayoutRowStateFlags) {
|
92815
92832
|
LayoutRowStateFlags[LayoutRowStateFlags["NormallyEnd"] = 0] = "NormallyEnd";
|
@@ -92936,7 +92953,7 @@ class layout_row_LayoutRow extends rectangle.Rectangle {
|
|
92936
92953
|
return lastBoxIndexWhatCanStrikeoutAndUnderline;
|
92937
92954
|
}
|
92938
92955
|
containsSpacesOnly() {
|
92939
|
-
return this.boxes.length > 0 && utils_list.ListUtils.allOf(this.boxes, val => val.isWhitespace()
|
92956
|
+
return this.boxes.length > 0 && utils_list.ListUtils.allOf(this.boxes, val => val.isWhitespace());
|
92940
92957
|
}
|
92941
92958
|
}
|
92942
92959
|
class LayoutRowWithIndex extends (/* unused pure expression or super */ null && (layout_row_LayoutRow)) {
|
@@ -95031,10 +95048,10 @@ class RowFormattingInfo {
|
|
95031
95048
|
const ind = utils_list.ListUtils.indexBy(this.intervals, (curr) => curr.start > pos || pos < curr.end, this.currIndex + 1);
|
95032
95049
|
return ind < 0 ? this.intervals.length - 1 : ind;
|
95033
95050
|
}
|
95034
|
-
calculate() {
|
95051
|
+
calculate(outerHorizontalRowContentBounds) {
|
95035
95052
|
this.setIntersectObjects();
|
95036
95053
|
this.busyIntervals = algorithms.IntervalAlgorithms.getMergedIntervals(utils_list.ListUtils.map(this.intersectsObjects, (objBnds) => new fixed.FixedInterval(objBnds.x, objBnds.width)), true);
|
95037
|
-
const freeIntervals =
|
95054
|
+
const freeIntervals = this.calculateFreeIntervals(this.busyIntervals, outerHorizontalRowContentBounds !== null && outerHorizontalRowContentBounds !== void 0 ? outerHorizontalRowContentBounds : this.outerHorizontalRowContentBounds);
|
95038
95055
|
if (freeIntervals.length) {
|
95039
95056
|
this.intervals = utils_list.ListUtils.map(freeIntervals, (curr) => new RowIntervalInfo(curr.start, curr.length));
|
95040
95057
|
return;
|
@@ -95042,6 +95059,40 @@ class RowFormattingInfo {
|
|
95042
95059
|
this.resetMinY(utils_list.ListUtils.min);
|
95043
95060
|
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
95061
|
}
|
95062
|
+
calculateFreeIntervals(busyIntervals, outerHorizontalRowContentBounds) {
|
95063
|
+
const intervals = utils_list.ListUtils.reducedMap(busyIntervals, val => algorithms.IntervalAlgorithms.getIntersectionNonNullLength(val, outerHorizontalRowContentBounds));
|
95064
|
+
if (!intervals.length)
|
95065
|
+
return [outerHorizontalRowContentBounds.clone()];
|
95066
|
+
const lastIntervalEnd = utils_list.ListUtils.last(intervals).end;
|
95067
|
+
const result = utils_list.ListUtils.reducedMap(intervals, (curr, i) => fixed.FixedInterval.fromPositions(busyIntervals[i - 1].end, curr.start), 1);
|
95068
|
+
if (outerHorizontalRowContentBounds.start < busyIntervals[0].start)
|
95069
|
+
result.unshift(fixed.FixedInterval.fromPositions(outerHorizontalRowContentBounds.start, busyIntervals[0].start));
|
95070
|
+
if (outerHorizontalRowContentBounds.end > lastIntervalEnd)
|
95071
|
+
result.push(fixed.FixedInterval.fromPositions(lastIntervalEnd, outerHorizontalRowContentBounds.end));
|
95072
|
+
return result;
|
95073
|
+
}
|
95074
|
+
recalculate(outerHorizontalRowContentBounds) {
|
95075
|
+
const currInterval = this.currInterval;
|
95076
|
+
this.calculate(outerHorizontalRowContentBounds);
|
95077
|
+
const pos = currInterval.start + currInterval.busyWidth;
|
95078
|
+
const index = this.findIntervalIndexByPosition(pos);
|
95079
|
+
const interval = this.intervals[index];
|
95080
|
+
if (interval && interval.start < pos) {
|
95081
|
+
const avaliableWidth = interval.length - (pos - interval.start);
|
95082
|
+
interval.avaliableWidth = avaliableWidth;
|
95083
|
+
}
|
95084
|
+
this.currIndex = index;
|
95085
|
+
}
|
95086
|
+
findIntervalIndexByPosition(position) {
|
95087
|
+
let index = 0;
|
95088
|
+
while (index < this.intervals.length) {
|
95089
|
+
const interval = this.intervals[index];
|
95090
|
+
if (interval.start <= position && position < interval.end || position < interval.start)
|
95091
|
+
break;
|
95092
|
+
index++;
|
95093
|
+
}
|
95094
|
+
return index;
|
95095
|
+
}
|
95045
95096
|
canIncrementHeightTo(newHeight) {
|
95046
95097
|
const contentBounds = utils_list.ListUtils.map(this.intervals, (c) => new rectangle.Rectangle(c.start, this.minY, c.busyWidth, newHeight));
|
95047
95098
|
const intersectedObjects = this.calcIntersectObjects(newHeight);
|
@@ -95763,7 +95814,7 @@ class RowTabInfo {
|
|
95763
95814
|
const tab = this.tabPositions[ind];
|
95764
95815
|
const oldTabPos = tab ? tab.position : Number.MAX_VALUE;
|
95765
95816
|
if (oldTabPos != pos)
|
95766
|
-
this.tabPositions.splice(pos > oldTabPos ? ind + 1 : ind, 0, new TabInfo(pos, TabAlign.Left, TabLeaderType.None, false, false));
|
95817
|
+
this.tabPositions.splice(pos > oldTabPos ? ind + 1 : ind, 0, new TabInfo(pos, TabAlign.Left, TabLeaderType.None, false, false, true));
|
95767
95818
|
}
|
95768
95819
|
for (let pos of this.tabPositions)
|
95769
95820
|
pos.position += this.paragraphHorizontalBoundsStart;
|
@@ -95809,9 +95860,10 @@ class RowTabInfo {
|
|
95809
95860
|
const lastInterval = utils_list.ListUtils.last(this.rowFormatter.rowSizesManager.rowFormattingInfo.intervals);
|
95810
95861
|
if (tabXPosRelativePage > lastInterval.end) {
|
95811
95862
|
if (lastInterval.end < this.rowFormatter.paragraphHorizontalBounds.end) {
|
95812
|
-
if (this.rowFormatter.manager.model.compatibilitySettings.compatibilityMode < CompatibilityMode.Word2013 && tabPosition
|
95813
|
-
|
95814
|
-
|
95863
|
+
if (this.rowFormatter.manager.model.compatibilitySettings.compatibilityMode < CompatibilityMode.Word2013 && tabPosition && !tabPosition.isParagraphIndent) {
|
95864
|
+
const interval = this.rowFormatter.rowSizesManager.rowFormattingInfo.outerHorizontalRowContentBounds;
|
95865
|
+
interval.length = Number.MAX_SAFE_INTEGER - interval.start;
|
95866
|
+
this.rowFormatter.rowSizesManager.rowFormattingInfo.recalculate(interval);
|
95815
95867
|
this.row.width = Number.MAX_SAFE_INTEGER;
|
95816
95868
|
this.row.flags.set(LayoutRowStateFlags.InfinityWidth, true);
|
95817
95869
|
return this.addTabBox();
|
@@ -98173,25 +98225,9 @@ class table_info_TableInfo {
|
|
98173
98225
|
tableIndent.value = 0;
|
98174
98226
|
}
|
98175
98227
|
const tableIndentInPixels = tableIndent.asNumberNoPercentType(unit_converter/* UnitConverter */.u.twipsToPixels);
|
98176
|
-
this.xPositionStart = xPosition + tableIndentInPixels + (diff.xDiff ? diff.xDiff : -firstCellLeftMargin)
|
98177
|
-
this.getShiftHorizontalPosition(xPosition);
|
98228
|
+
this.xPositionStart = xPosition + tableIndentInPixels + (diff.xDiff ? diff.xDiff : -firstCellLeftMargin);
|
98178
98229
|
this.yPositionStart = yOffset + diff.yDiff;
|
98179
98230
|
}
|
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
98231
|
static getEstimatedTableWidth(table, maxWidth) {
|
98196
98232
|
const preferredWidth = table.preferredWidth;
|
98197
98233
|
const minWidth = 3 * table.rows[0].getTotalCellsInRowConsiderGrid();
|
@@ -98274,6 +98310,12 @@ class LayoutTableSizeCompressor {
|
|
98274
98310
|
LayoutTableSizeCompressor.cellCompress(cell, cell.createRectangle());
|
98275
98311
|
}
|
98276
98312
|
static tableCompress(tableInfo, boundsRelativeColumn) {
|
98313
|
+
const intersection = rectangle.Rectangle.getIntersection(tableInfo, boundsRelativeColumn);
|
98314
|
+
const headOffset = intersection.x - tableInfo.x;
|
98315
|
+
if (headOffset > 0) {
|
98316
|
+
tableInfo.verticalBorders.forEach(b => b.xPos -= headOffset);
|
98317
|
+
tableInfo.verticalCursorBorders.forEach(b => b.xPos -= headOffset);
|
98318
|
+
}
|
98277
98319
|
LayoutTableSizeCompressor.compress(tableInfo, boundsRelativeColumn, true, false);
|
98278
98320
|
const boundsRelativeTable = tableInfo.clone().moveRectangle(-tableInfo.x, -tableInfo.y);
|
98279
98321
|
for (let row of tableInfo.tableRows)
|
@@ -98342,8 +98384,9 @@ class LayoutTableSizeCompressor {
|
|
98342
98384
|
}
|
98343
98385
|
border.length = Math.min(border.yPos + border.length, bounds.bottom) - border.yPos;
|
98344
98386
|
if (border.xPos < bounds.x)
|
98345
|
-
|
98346
|
-
|
98387
|
+
border.xPos = bounds.x;
|
98388
|
+
else
|
98389
|
+
border.xPos = bounds.right;
|
98347
98390
|
border.borderInfo.width = 0;
|
98348
98391
|
return false;
|
98349
98392
|
}
|
@@ -112498,6 +112541,7 @@ class RulerMultiControl {
|
|
112498
112541
|
|
112499
112542
|
|
112500
112543
|
|
112544
|
+
|
112501
112545
|
const TABLE_COLUMN_SEPARATOR_RULER_LINE_CLASS_NAME = " table";
|
112502
112546
|
var SnapTo;
|
112503
112547
|
(function (SnapTo) {
|
@@ -112530,7 +112574,7 @@ class RulerVerticalLineControl {
|
|
112530
112574
|
dom.DomUtils.addClassName(this.rootElement, TABLE_COLUMN_SEPARATOR_RULER_LINE_CLASS_NAME);
|
112531
112575
|
else
|
112532
112576
|
dom.DomUtils.removeClassName(this.rootElement, TABLE_COLUMN_SEPARATOR_RULER_LINE_CLASS_NAME);
|
112533
|
-
this.rootElement.style.height = this.canvas
|
112577
|
+
this.rootElement.style.height = SizeUtils.getClientHeight(this.canvas) + "px";
|
112534
112578
|
this.rootElement.style.top = this.canvas.offsetTop + "px";
|
112535
112579
|
this.rulerControlLeft = this.rulerControlElement.offsetLeft;
|
112536
112580
|
this.rulerControlWidth = this.rulerControlElement.offsetWidth;
|
@@ -113521,13 +113565,9 @@ class RulerControl extends RulerBase {
|
|
113521
113565
|
}
|
113522
113566
|
adjust() {
|
113523
113567
|
const viewWidth = this.controls.canvas.clientWidth;
|
113524
|
-
|
113525
|
-
|
113526
|
-
|
113527
|
-
const paddingLeft = dom.DomUtils.pxToInt(dom.DomUtils.getCurrentStyle(this.controls.canvas).paddingLeft);
|
113528
|
-
const pageAreaBorderWidth = (this.controls.canvas.scrollWidth - paddingLeft - this.pageWidth) / 2;
|
113529
|
-
this.initialMarginLeftElement = paddingLeft + pageAreaBorderWidth - RULLER_NUMBER_CORRECTION;
|
113530
|
-
}
|
113568
|
+
const paddingLeft = dom.DomUtils.pxToInt(dom.DomUtils.getCurrentStyle(this.controls.canvas).paddingLeft);
|
113569
|
+
const minValue = paddingLeft - RULLER_NUMBER_CORRECTION;
|
113570
|
+
this.initialMarginLeftElement = Math.max((viewWidth - this.pageWidth - RULLER_NUMBER_CORRECTION * 2) / 2, minValue);
|
113531
113571
|
this.rootElement.style.left = this.calculateLeftOffset();
|
113532
113572
|
this.setPaddings();
|
113533
113573
|
this.canHandleScroll = this.controls.canvas.scrollWidth > this.controls.canvas.offsetWidth;
|
@@ -122561,6 +122601,7 @@ function createInnerItems(items) {
|
|
122561
122601
|
}
|
122562
122602
|
|
122563
122603
|
;// CONCATENATED MODULE: ./src/client/utils/focus-helper.ts
|
122604
|
+
var focus_helper_a;
|
122564
122605
|
class FocusHelper {
|
122565
122606
|
static preventFocusOnClick(element) {
|
122566
122607
|
return new FocusBlocker(element);
|
@@ -122573,23 +122614,24 @@ class FocusBlocker {
|
|
122573
122614
|
this.addEventListeners(target);
|
122574
122615
|
}
|
122575
122616
|
addEventListeners(element) {
|
122576
|
-
element.addEventListener("
|
122617
|
+
element.addEventListener("mousedown", this.onPointerDownBinded);
|
122577
122618
|
}
|
122578
122619
|
removeEventListeners(element) {
|
122579
|
-
element.removeEventListener("
|
122620
|
+
element.removeEventListener("mousedown", this.onPointerDownBinded);
|
122580
122621
|
}
|
122581
122622
|
onPointerDown(event) {
|
122582
122623
|
for (const element of event.composedPath()) {
|
122583
|
-
if (!(element instanceof HTMLElement))
|
122584
|
-
continue;
|
122585
122624
|
if (element === this.target) {
|
122586
122625
|
event.preventDefault();
|
122587
122626
|
break;
|
122588
122627
|
}
|
122589
|
-
if (
|
122628
|
+
if (element instanceof Element && this.isFocusableElement(element))
|
122590
122629
|
break;
|
122591
122630
|
}
|
122592
122631
|
}
|
122632
|
+
isFocusableElement(element) {
|
122633
|
+
return element.matches(FocusBlocker.focusableSelector);
|
122634
|
+
}
|
122593
122635
|
dispose() {
|
122594
122636
|
if (this.target) {
|
122595
122637
|
this.removeEventListeners(this.target);
|
@@ -122597,6 +122639,21 @@ class FocusBlocker {
|
|
122597
122639
|
}
|
122598
122640
|
}
|
122599
122641
|
}
|
122642
|
+
focus_helper_a = FocusBlocker;
|
122643
|
+
FocusBlocker.focusableSelectors = [
|
122644
|
+
'a[href]',
|
122645
|
+
'area[href]',
|
122646
|
+
'input',
|
122647
|
+
'select',
|
122648
|
+
'textarea',
|
122649
|
+
'button',
|
122650
|
+
'iframe',
|
122651
|
+
'object',
|
122652
|
+
'embed',
|
122653
|
+
'[tabindex]:not([tabindex="-1"])',
|
122654
|
+
'[contenteditable]:not([contenteditable="false"])'
|
122655
|
+
];
|
122656
|
+
FocusBlocker.focusableSelector = focus_helper_a.focusableSelectors.join(',');
|
122600
122657
|
|
122601
122658
|
;// CONCATENATED MODULE: ./src/client/bars/ribbon.ts
|
122602
122659
|
|
@@ -129663,7 +129720,7 @@ class ApplyStyleCommand extends CommandBase {
|
|
129663
129720
|
paragraphStyle = StylesManager.getPresetParagraphStyleByName(styleName).clone();
|
129664
129721
|
isPresetStyle = true;
|
129665
129722
|
}
|
129666
|
-
this.applyParagraphStyle(subDocumentInterval, paragraphStyle, isPresetStyle, parameter.
|
129723
|
+
this.applyParagraphStyle(subDocumentInterval, paragraphStyle, isPresetStyle, parameter.keepCustomFormatting);
|
129667
129724
|
}
|
129668
129725
|
else if (!StylesManager.isParagraphStyle(parameter.styleName) && state.characterStyleChangeEnabled) {
|
129669
129726
|
const styleName = StylesManager.getStyleNameWithoutPrefix(parameter.styleName);
|
@@ -129698,7 +129755,7 @@ class ApplyStyleCommand extends CommandBase {
|
|
129698
129755
|
this.modelManipulator.style.applyCharacterStyle(subDocumentInterval, characterStyle, false);
|
129699
129756
|
}
|
129700
129757
|
}
|
129701
|
-
applyParagraphStyle(subDocumentInterval, style, isPresetStyle,
|
129758
|
+
applyParagraphStyle(subDocumentInterval, style, isPresetStyle, keepCustomFormatting = false) {
|
129702
129759
|
const count = this.calculateAffectedParagraphCount(subDocumentInterval);
|
129703
129760
|
if (count > 0 && ControlOptions.isEnabled(this.control.modelManager.richOptions.control.paragraphStyle)) {
|
129704
129761
|
const { interval, subDocument } = subDocumentInterval;
|
@@ -129711,8 +129768,7 @@ class ApplyStyleCommand extends CommandBase {
|
|
129711
129768
|
style = isPresetStyle ? modelManipulator.model.stylesManager.addParagraphStyle(style) : style;
|
129712
129769
|
this.history.addAndRedo(new ApplyParagraphStyleHistoryItem(modelManipulator, paragraphSubDocumentInterval, style));
|
129713
129770
|
this.history.addAndRedo(new ParagraphUseValueHistoryItem(modelManipulator, paragraphSubDocumentInterval, 0));
|
129714
|
-
|
129715
|
-
this.history.addAndRedo(new FontUseValueHistoryItem(modelManipulator, paragraphSubDocumentInterval, 0));
|
129771
|
+
this.history.addAndRedo(new FontUseValueHistoryItem(modelManipulator, paragraphSubDocumentInterval, 0, keepCustomFormatting));
|
129716
129772
|
this.history.addAndRedo(new AddParagraphToListHistoryItem(modelManipulator, subDocument, paragraphIndex, NumberingList.NumberingListNotSettedIndex, -1));
|
129717
129773
|
}
|
129718
129774
|
}
|
@@ -136249,7 +136305,7 @@ class SetParagraphLevelCommandBase extends CommandBase {
|
|
136249
136305
|
if (!paragraphStyle)
|
136250
136306
|
paragraphStyle = StylesManager.getPresetParagraphStyleByName(styleName);
|
136251
136307
|
if (paragraphStyle) {
|
136252
|
-
const commandOptions = new CommandSimpleOptions(this.control, { styleName: StylesManager.paragraphPrefix + styleName,
|
136308
|
+
const commandOptions = new CommandSimpleOptions(this.control, { styleName: StylesManager.paragraphPrefix + styleName, keepCustomFormatting: true });
|
136253
136309
|
this.commandManager.getCommand(RichEditClientCommand.ChangeStyle).execute(this.commandManager.isPublicApiCall, commandOptions);
|
136254
136310
|
}
|
136255
136311
|
else {
|
@@ -140923,8 +140979,8 @@ class DialogManager {
|
|
140923
140979
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_type.js
|
140924
140980
|
/**
|
140925
140981
|
* DevExtreme (esm/__internal/core/utils/m_type.js)
|
140926
|
-
* Version: 24.2.
|
140927
|
-
* Build date:
|
140982
|
+
* Version: 24.2.8-build-25141-1935
|
140983
|
+
* Build date: Wed May 21 2025
|
140928
140984
|
*
|
140929
140985
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
140930
140986
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141026,8 +141082,8 @@ const isEvent = function(object) {
|
|
141026
141082
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/type.js
|
141027
141083
|
/**
|
141028
141084
|
* DevExtreme (esm/core/utils/type.js)
|
141029
|
-
* Version: 24.2.
|
141030
|
-
* Build date:
|
141085
|
+
* Version: 24.2.8-build-25141-1935
|
141086
|
+
* Build date: Wed May 21 2025
|
141031
141087
|
*
|
141032
141088
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141033
141089
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141037,8 +141093,8 @@ const isEvent = function(object) {
|
|
141037
141093
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_extend.js
|
141038
141094
|
/**
|
141039
141095
|
* DevExtreme (esm/__internal/core/utils/m_extend.js)
|
141040
|
-
* Version: 24.2.
|
141041
|
-
* Build date:
|
141096
|
+
* Version: 24.2.8-build-25141-1935
|
141097
|
+
* Build date: Wed May 21 2025
|
141042
141098
|
*
|
141043
141099
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141044
141100
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141096,8 +141152,8 @@ const extend = function(target) {
|
|
141096
141152
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/extend.js
|
141097
141153
|
/**
|
141098
141154
|
* DevExtreme (esm/core/utils/extend.js)
|
141099
|
-
* Version: 24.2.
|
141100
|
-
* Build date:
|
141155
|
+
* Version: 24.2.8-build-25141-1935
|
141156
|
+
* Build date: Wed May 21 2025
|
141101
141157
|
*
|
141102
141158
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141103
141159
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141107,8 +141163,8 @@ const extend = function(target) {
|
|
141107
141163
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_string.js
|
141108
141164
|
/**
|
141109
141165
|
* DevExtreme (esm/__internal/core/utils/m_string.js)
|
141110
|
-
* Version: 24.2.
|
141111
|
-
* Build date:
|
141166
|
+
* Version: 24.2.8-build-25141-1935
|
141167
|
+
* Build date: Wed May 21 2025
|
141112
141168
|
*
|
141113
141169
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141114
141170
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141183,8 +141239,8 @@ const isEmpty = function() {
|
|
141183
141239
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/string.js
|
141184
141240
|
/**
|
141185
141241
|
* DevExtreme (esm/core/utils/string.js)
|
141186
|
-
* Version: 24.2.
|
141187
|
-
* Build date:
|
141242
|
+
* Version: 24.2.8-build-25141-1935
|
141243
|
+
* Build date: Wed May 21 2025
|
141188
141244
|
*
|
141189
141245
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141190
141246
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141194,20 +141250,20 @@ const isEmpty = function() {
|
|
141194
141250
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/version.js
|
141195
141251
|
/**
|
141196
141252
|
* DevExtreme (esm/core/version.js)
|
141197
|
-
* Version: 24.2.
|
141198
|
-
* Build date:
|
141253
|
+
* Version: 24.2.8-build-25141-1935
|
141254
|
+
* Build date: Wed May 21 2025
|
141199
141255
|
*
|
141200
141256
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141201
141257
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
141202
141258
|
*/
|
141203
141259
|
const version = "24.2.7";
|
141204
|
-
const fullVersion = "24.2.7";
|
141260
|
+
const fullVersion = "24.2.7.25141-1935";
|
141205
141261
|
|
141206
141262
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_console.js
|
141207
141263
|
/**
|
141208
141264
|
* DevExtreme (esm/__internal/core/utils/m_console.js)
|
141209
|
-
* Version: 24.2.
|
141210
|
-
* Build date:
|
141265
|
+
* Version: 24.2.8-build-25141-1935
|
141266
|
+
* Build date: Wed May 21 2025
|
141211
141267
|
*
|
141212
141268
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141213
141269
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141247,8 +141303,8 @@ const debug = function() {
|
|
141247
141303
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_error.js
|
141248
141304
|
/**
|
141249
141305
|
* DevExtreme (esm/__internal/core/utils/m_error.js)
|
141250
|
-
* Version: 24.2.
|
141251
|
-
* Build date:
|
141306
|
+
* Version: 24.2.8-build-25141-1935
|
141307
|
+
* Build date: Wed May 21 2025
|
141252
141308
|
*
|
141253
141309
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141254
141310
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141319,8 +141375,8 @@ function error(baseErrors, errors) {
|
|
141319
141375
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/error.js
|
141320
141376
|
/**
|
141321
141377
|
* DevExtreme (esm/core/utils/error.js)
|
141322
|
-
* Version: 24.2.
|
141323
|
-
* Build date:
|
141378
|
+
* Version: 24.2.8-build-25141-1935
|
141379
|
+
* Build date: Wed May 21 2025
|
141324
141380
|
*
|
141325
141381
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141326
141382
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141331,8 +141387,8 @@ function error(baseErrors, errors) {
|
|
141331
141387
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_errors.js
|
141332
141388
|
/**
|
141333
141389
|
* DevExtreme (esm/__internal/core/m_errors.js)
|
141334
|
-
* Version: 24.2.
|
141335
|
-
* Build date:
|
141390
|
+
* Version: 24.2.8-build-25141-1935
|
141391
|
+
* Build date: Wed May 21 2025
|
141336
141392
|
*
|
141337
141393
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141338
141394
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141398,8 +141454,8 @@ function error(baseErrors, errors) {
|
|
141398
141454
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/errors.js
|
141399
141455
|
/**
|
141400
141456
|
* DevExtreme (esm/core/errors.js)
|
141401
|
-
* Version: 24.2.
|
141402
|
-
* Build date:
|
141457
|
+
* Version: 24.2.8-build-25141-1935
|
141458
|
+
* Build date: Wed May 21 2025
|
141403
141459
|
*
|
141404
141460
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141405
141461
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141410,8 +141466,8 @@ function error(baseErrors, errors) {
|
|
141410
141466
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_class.js
|
141411
141467
|
/**
|
141412
141468
|
* DevExtreme (esm/__internal/core/m_class.js)
|
141413
|
-
* Version: 24.2.
|
141414
|
-
* Build date:
|
141469
|
+
* Version: 24.2.8-build-25141-1935
|
141470
|
+
* Build date: Wed May 21 2025
|
141415
141471
|
*
|
141416
141472
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141417
141473
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141544,8 +141600,8 @@ classImpl.abstract = m_class_abstract;
|
|
141544
141600
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/class.js
|
141545
141601
|
/**
|
141546
141602
|
* DevExtreme (esm/core/class.js)
|
141547
|
-
* Version: 24.2.
|
141548
|
-
* Build date:
|
141603
|
+
* Version: 24.2.8-build-25141-1935
|
141604
|
+
* Build date: Wed May 21 2025
|
141549
141605
|
*
|
141550
141606
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141551
141607
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141556,8 +141612,8 @@ classImpl.abstract = m_class_abstract;
|
|
141556
141612
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_iterator.js
|
141557
141613
|
/**
|
141558
141614
|
* DevExtreme (esm/__internal/core/utils/m_iterator.js)
|
141559
|
-
* Version: 24.2.
|
141560
|
-
* Build date:
|
141615
|
+
* Version: 24.2.8-build-25141-1935
|
141616
|
+
* Build date: Wed May 21 2025
|
141561
141617
|
*
|
141562
141618
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141563
141619
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141606,8 +141662,8 @@ const reverseEach = (array, callback) => {
|
|
141606
141662
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_dependency_injector.js
|
141607
141663
|
/**
|
141608
141664
|
* DevExtreme (esm/__internal/core/utils/m_dependency_injector.js)
|
141609
|
-
* Version: 24.2.
|
141610
|
-
* Build date:
|
141665
|
+
* Version: 24.2.8-build-25141-1935
|
141666
|
+
* Build date: Wed May 21 2025
|
141611
141667
|
*
|
141612
141668
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141613
141669
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141656,8 +141712,8 @@ function injector(object) {
|
|
141656
141712
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/dependency_injector.js
|
141657
141713
|
/**
|
141658
141714
|
* DevExtreme (esm/core/utils/dependency_injector.js)
|
141659
|
-
* Version: 24.2.
|
141660
|
-
* Build date:
|
141715
|
+
* Version: 24.2.8-build-25141-1935
|
141716
|
+
* Build date: Wed May 21 2025
|
141661
141717
|
*
|
141662
141718
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141663
141719
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141668,8 +141724,8 @@ function injector(object) {
|
|
141668
141724
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.formatter.js
|
141669
141725
|
/**
|
141670
141726
|
* DevExtreme (esm/common/core/localization/ldml/date.formatter.js)
|
141671
|
-
* Version: 24.2.
|
141672
|
-
* Build date:
|
141727
|
+
* Version: 24.2.8-build-25141-1935
|
141728
|
+
* Build date: Wed May 21 2025
|
141673
141729
|
*
|
141674
141730
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141675
141731
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141822,8 +141878,8 @@ function _extends() {
|
|
141822
141878
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_config.js
|
141823
141879
|
/**
|
141824
141880
|
* DevExtreme (esm/__internal/core/m_config.js)
|
141825
|
-
* Version: 24.2.
|
141826
|
-
* Build date:
|
141881
|
+
* Version: 24.2.8-build-25141-1935
|
141882
|
+
* Build date: Wed May 21 2025
|
141827
141883
|
*
|
141828
141884
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141829
141885
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141898,8 +141954,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
141898
141954
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/config.js
|
141899
141955
|
/**
|
141900
141956
|
* DevExtreme (esm/common/config.js)
|
141901
|
-
* Version: 24.2.
|
141902
|
-
* Build date:
|
141957
|
+
* Version: 24.2.8-build-25141-1935
|
141958
|
+
* Build date: Wed May 21 2025
|
141903
141959
|
*
|
141904
141960
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141905
141961
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141910,8 +141966,8 @@ if ("undefined" !== typeof DevExpress && DevExpress.config) {
|
|
141910
141966
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_guid.js
|
141911
141967
|
/**
|
141912
141968
|
* DevExtreme (esm/__internal/core/m_guid.js)
|
141913
|
-
* Version: 24.2.
|
141914
|
-
* Build date:
|
141969
|
+
* Version: 24.2.8-build-25141-1935
|
141970
|
+
* Build date: Wed May 21 2025
|
141915
141971
|
*
|
141916
141972
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141917
141973
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141953,8 +142009,8 @@ const Guid = core_class.inherit({
|
|
141953
142009
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/guid.js
|
141954
142010
|
/**
|
141955
142011
|
* DevExtreme (esm/common/guid.js)
|
141956
|
-
* Version: 24.2.
|
141957
|
-
* Build date:
|
142012
|
+
* Version: 24.2.8-build-25141-1935
|
142013
|
+
* Build date: Wed May 21 2025
|
141958
142014
|
*
|
141959
142015
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141960
142016
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141965,8 +142021,8 @@ const Guid = core_class.inherit({
|
|
141965
142021
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/templates/m_template_engine_registry.js
|
141966
142022
|
/**
|
141967
142023
|
* DevExtreme (esm/__internal/core/templates/m_template_engine_registry.js)
|
141968
|
-
* Version: 24.2.
|
141969
|
-
* Build date:
|
142024
|
+
* Version: 24.2.8-build-25141-1935
|
142025
|
+
* Build date: Wed May 21 2025
|
141970
142026
|
*
|
141971
142027
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
141972
142028
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -141995,8 +142051,8 @@ function getCurrentTemplateEngine() {
|
|
141995
142051
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/templates/template_engine_registry.js
|
141996
142052
|
/**
|
141997
142053
|
* DevExtreme (esm/core/templates/template_engine_registry.js)
|
141998
|
-
* Version: 24.2.
|
141999
|
-
* Build date:
|
142054
|
+
* Version: 24.2.8-build-25141-1935
|
142055
|
+
* Build date: Wed May 21 2025
|
142000
142056
|
*
|
142001
142057
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142002
142058
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142006,8 +142062,8 @@ function getCurrentTemplateEngine() {
|
|
142006
142062
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/m_set_template_engine.js
|
142007
142063
|
/**
|
142008
142064
|
* DevExtreme (esm/__internal/core/m_set_template_engine.js)
|
142009
|
-
* Version: 24.2.
|
142010
|
-
* Build date:
|
142065
|
+
* Version: 24.2.8-build-25141-1935
|
142066
|
+
* Build date: Wed May 21 2025
|
142011
142067
|
*
|
142012
142068
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142013
142069
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142017,8 +142073,8 @@ function getCurrentTemplateEngine() {
|
|
142017
142073
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/set_template_engine.js
|
142018
142074
|
/**
|
142019
142075
|
* DevExtreme (esm/common/set_template_engine.js)
|
142020
|
-
* Version: 24.2.
|
142021
|
-
* Build date:
|
142076
|
+
* Version: 24.2.8-build-25141-1935
|
142077
|
+
* Build date: Wed May 21 2025
|
142022
142078
|
*
|
142023
142079
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142024
142080
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142029,8 +142085,8 @@ function getCurrentTemplateEngine() {
|
|
142029
142085
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common.js
|
142030
142086
|
/**
|
142031
142087
|
* DevExtreme (esm/common.js)
|
142032
|
-
* Version: 24.2.
|
142033
|
-
* Build date:
|
142088
|
+
* Version: 24.2.8-build-25141-1935
|
142089
|
+
* Build date: Wed May 21 2025
|
142034
142090
|
*
|
142035
142091
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142036
142092
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142043,8 +142099,8 @@ function getCurrentTemplateEngine() {
|
|
142043
142099
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/config.js
|
142044
142100
|
/**
|
142045
142101
|
* DevExtreme (esm/core/config.js)
|
142046
|
-
* Version: 24.2.
|
142047
|
-
* Build date:
|
142102
|
+
* Version: 24.2.8-build-25141-1935
|
142103
|
+
* Build date: Wed May 21 2025
|
142048
142104
|
*
|
142049
142105
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142050
142106
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142055,8 +142111,8 @@ function getCurrentTemplateEngine() {
|
|
142055
142111
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/guid.js
|
142056
142112
|
/**
|
142057
142113
|
* DevExtreme (esm/core/guid.js)
|
142058
|
-
* Version: 24.2.
|
142059
|
-
* Build date:
|
142114
|
+
* Version: 24.2.8-build-25141-1935
|
142115
|
+
* Build date: Wed May 21 2025
|
142060
142116
|
*
|
142061
142117
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142062
142118
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142067,8 +142123,8 @@ function getCurrentTemplateEngine() {
|
|
142067
142123
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/console.js
|
142068
142124
|
/**
|
142069
142125
|
* DevExtreme (esm/core/utils/console.js)
|
142070
|
-
* Version: 24.2.
|
142071
|
-
* Build date:
|
142126
|
+
* Version: 24.2.8-build-25141-1935
|
142127
|
+
* Build date: Wed May 21 2025
|
142072
142128
|
*
|
142073
142129
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142074
142130
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142078,8 +142134,8 @@ function getCurrentTemplateEngine() {
|
|
142078
142134
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_variable_wrapper.js
|
142079
142135
|
/**
|
142080
142136
|
* DevExtreme (esm/__internal/core/utils/m_variable_wrapper.js)
|
142081
|
-
* Version: 24.2.
|
142082
|
-
* Build date:
|
142137
|
+
* Version: 24.2.8-build-25141-1935
|
142138
|
+
* Build date: Wed May 21 2025
|
142083
142139
|
*
|
142084
142140
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142085
142141
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142108,8 +142164,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
142108
142164
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/variable_wrapper.js
|
142109
142165
|
/**
|
142110
142166
|
* DevExtreme (esm/core/utils/variable_wrapper.js)
|
142111
|
-
* Version: 24.2.
|
142112
|
-
* Build date:
|
142167
|
+
* Version: 24.2.8-build-25141-1935
|
142168
|
+
* Build date: Wed May 21 2025
|
142113
142169
|
*
|
142114
142170
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142115
142171
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142120,8 +142176,8 @@ const m_variable_wrapper_variableWrapper = dependency_injector({
|
|
142120
142176
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_object.js
|
142121
142177
|
/**
|
142122
142178
|
* DevExtreme (esm/__internal/core/utils/m_object.js)
|
142123
|
-
* Version: 24.2.
|
142124
|
-
* Build date:
|
142179
|
+
* Version: 24.2.8-build-25141-1935
|
142180
|
+
* Build date: Wed May 21 2025
|
142125
142181
|
*
|
142126
142182
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142127
142183
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142221,8 +142277,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142221
142277
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/object.js
|
142222
142278
|
/**
|
142223
142279
|
* DevExtreme (esm/core/utils/object.js)
|
142224
|
-
* Version: 24.2.
|
142225
|
-
* Build date:
|
142280
|
+
* Version: 24.2.8-build-25141-1935
|
142281
|
+
* Build date: Wed May 21 2025
|
142226
142282
|
*
|
142227
142283
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142228
142284
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142232,8 +142288,8 @@ const m_object_deepExtendArraySafe = function(target, changes, extendComplexObje
|
|
142232
142288
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_data.js
|
142233
142289
|
/**
|
142234
142290
|
* DevExtreme (esm/__internal/core/utils/m_data.js)
|
142235
|
-
* Version: 24.2.
|
142236
|
-
* Build date:
|
142291
|
+
* Version: 24.2.8-build-25141-1935
|
142292
|
+
* Build date: Wed May 21 2025
|
142237
142293
|
*
|
142238
142294
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142239
142295
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142429,8 +142485,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142429
142485
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/data.js
|
142430
142486
|
/**
|
142431
142487
|
* DevExtreme (esm/core/utils/data.js)
|
142432
|
-
* Version: 24.2.
|
142433
|
-
* Build date:
|
142488
|
+
* Version: 24.2.8-build-25141-1935
|
142489
|
+
* Build date: Wed May 21 2025
|
142434
142490
|
*
|
142435
142491
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142436
142492
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142440,8 +142496,8 @@ const toComparable = function(value, caseSensitive) {
|
|
142440
142496
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_callbacks.js
|
142441
142497
|
/**
|
142442
142498
|
* DevExtreme (esm/__internal/core/utils/m_callbacks.js)
|
142443
|
-
* Version: 24.2.
|
142444
|
-
* Build date:
|
142499
|
+
* Version: 24.2.8-build-25141-1935
|
142500
|
+
* Build date: Wed May 21 2025
|
142445
142501
|
*
|
142446
142502
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142447
142503
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142536,8 +142592,8 @@ const Callbacks = function(options) {
|
|
142536
142592
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/callbacks.js
|
142537
142593
|
/**
|
142538
142594
|
* DevExtreme (esm/core/utils/callbacks.js)
|
142539
|
-
* Version: 24.2.
|
142540
|
-
* Build date:
|
142595
|
+
* Version: 24.2.8-build-25141-1935
|
142596
|
+
* Build date: Wed May 21 2025
|
142541
142597
|
*
|
142542
142598
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142543
142599
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142548,8 +142604,8 @@ const Callbacks = function(options) {
|
|
142548
142604
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_deferred.js
|
142549
142605
|
/**
|
142550
142606
|
* DevExtreme (esm/__internal/core/utils/m_deferred.js)
|
142551
|
-
* Version: 24.2.
|
142552
|
-
* Build date:
|
142607
|
+
* Version: 24.2.8-build-25141-1935
|
142608
|
+
* Build date: Wed May 21 2025
|
142553
142609
|
*
|
142554
142610
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142555
142611
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142714,8 +142770,8 @@ function when() {
|
|
142714
142770
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/deferred.js
|
142715
142771
|
/**
|
142716
142772
|
* DevExtreme (esm/core/utils/deferred.js)
|
142717
|
-
* Version: 24.2.
|
142718
|
-
* Build date:
|
142773
|
+
* Version: 24.2.8-build-25141-1935
|
142774
|
+
* Build date: Wed May 21 2025
|
142719
142775
|
*
|
142720
142776
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142721
142777
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -142725,8 +142781,8 @@ function when() {
|
|
142725
142781
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_common.js
|
142726
142782
|
/**
|
142727
142783
|
* DevExtreme (esm/__internal/core/utils/m_common.js)
|
142728
|
-
* Version: 24.2.
|
142729
|
-
* Build date:
|
142784
|
+
* Version: 24.2.8-build-25141-1935
|
142785
|
+
* Build date: Wed May 21 2025
|
142730
142786
|
*
|
142731
142787
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
142732
142788
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143021,8 +143077,8 @@ const equalByValue = function(value1, value2) {
|
|
143021
143077
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/common.js
|
143022
143078
|
/**
|
143023
143079
|
* DevExtreme (esm/core/utils/common.js)
|
143024
|
-
* Version: 24.2.
|
143025
|
-
* Build date:
|
143080
|
+
* Version: 24.2.8-build-25141-1935
|
143081
|
+
* Build date: Wed May 21 2025
|
143026
143082
|
*
|
143027
143083
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143028
143084
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143032,8 +143088,8 @@ const equalByValue = function(value1, value2) {
|
|
143032
143088
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/__internal/core/utils/m_math.js
|
143033
143089
|
/**
|
143034
143090
|
* DevExtreme (esm/__internal/core/utils/m_math.js)
|
143035
|
-
* Version: 24.2.
|
143036
|
-
* Build date:
|
143091
|
+
* Version: 24.2.8-build-25141-1935
|
143092
|
+
* Build date: Wed May 21 2025
|
143037
143093
|
*
|
143038
143094
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143039
143095
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143202,8 +143258,8 @@ function roundFloatPart(value) {
|
|
143202
143258
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/core/utils/math.js
|
143203
143259
|
/**
|
143204
143260
|
* DevExtreme (esm/core/utils/math.js)
|
143205
|
-
* Version: 24.2.
|
143206
|
-
* Build date:
|
143261
|
+
* Version: 24.2.8-build-25141-1935
|
143262
|
+
* Build date: Wed May 21 2025
|
143207
143263
|
*
|
143208
143264
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143209
143265
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143213,8 +143269,8 @@ function roundFloatPart(value) {
|
|
143213
143269
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/utils.js
|
143214
143270
|
/**
|
143215
143271
|
* DevExtreme (esm/common/core/localization/utils.js)
|
143216
|
-
* Version: 24.2.
|
143217
|
-
* Build date:
|
143272
|
+
* Version: 24.2.8-build-25141-1935
|
143273
|
+
* Build date: Wed May 21 2025
|
143218
143274
|
*
|
143219
143275
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143220
143276
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143241,8 +143297,8 @@ function toFixed(value, precision) {
|
|
143241
143297
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/number.js
|
143242
143298
|
/**
|
143243
143299
|
* DevExtreme (esm/common/core/localization/ldml/number.js)
|
143244
|
-
* Version: 24.2.
|
143245
|
-
* Build date:
|
143300
|
+
* Version: 24.2.8-build-25141-1935
|
143301
|
+
* Build date: Wed May 21 2025
|
143246
143302
|
*
|
143247
143303
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143248
143304
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143483,8 +143539,8 @@ function getFormat(formatter) {
|
|
143483
143539
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/currency.js
|
143484
143540
|
/**
|
143485
143541
|
* DevExtreme (esm/common/core/localization/currency.js)
|
143486
|
-
* Version: 24.2.
|
143487
|
-
* Build date:
|
143542
|
+
* Version: 24.2.8-build-25141-1935
|
143543
|
+
* Build date: Wed May 21 2025
|
143488
143544
|
*
|
143489
143545
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143490
143546
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143516,8 +143572,8 @@ function getFormat(formatter) {
|
|
143516
143572
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/parent_locales.js
|
143517
143573
|
/**
|
143518
143574
|
* DevExtreme (esm/common/core/localization/cldr-data/parent_locales.js)
|
143519
|
-
* Version: 24.2.
|
143520
|
-
* Build date:
|
143575
|
+
* Version: 24.2.8-build-25141-1935
|
143576
|
+
* Build date: Wed May 21 2025
|
143521
143577
|
*
|
143522
143578
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143523
143579
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143702,8 +143758,8 @@ function getFormat(formatter) {
|
|
143702
143758
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/parentLocale.js
|
143703
143759
|
/**
|
143704
143760
|
* DevExtreme (esm/common/core/localization/parentLocale.js)
|
143705
|
-
* Version: 24.2.
|
143706
|
-
* Build date:
|
143761
|
+
* Version: 24.2.8-build-25141-1935
|
143762
|
+
* Build date: Wed May 21 2025
|
143707
143763
|
*
|
143708
143764
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143709
143765
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143720,8 +143776,8 @@ const PARENT_LOCALE_SEPARATOR = "-";
|
|
143720
143776
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/core.js
|
143721
143777
|
/**
|
143722
143778
|
* DevExtreme (esm/common/core/localization/core.js)
|
143723
|
-
* Version: 24.2.
|
143724
|
-
* Build date:
|
143779
|
+
* Version: 24.2.8-build-25141-1935
|
143780
|
+
* Build date: Wed May 21 2025
|
143725
143781
|
*
|
143726
143782
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143727
143783
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143762,8 +143818,8 @@ const DEFAULT_LOCALE = "en";
|
|
143762
143818
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/open_xml_currency_format.js
|
143763
143819
|
/**
|
143764
143820
|
* DevExtreme (esm/common/core/localization/open_xml_currency_format.js)
|
143765
|
-
* Version: 24.2.
|
143766
|
-
* Build date:
|
143821
|
+
* Version: 24.2.8-build-25141-1935
|
143822
|
+
* Build date: Wed May 21 2025
|
143767
143823
|
*
|
143768
143824
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143769
143825
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -143805,8 +143861,8 @@ const DEFAULT_LOCALE = "en";
|
|
143805
143861
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/accounting_formats.js
|
143806
143862
|
/**
|
143807
143863
|
* DevExtreme (esm/common/core/localization/cldr-data/accounting_formats.js)
|
143808
|
-
* Version: 24.2.
|
143809
|
-
* Build date:
|
143864
|
+
* Version: 24.2.8-build-25141-1935
|
143865
|
+
* Build date: Wed May 21 2025
|
143810
143866
|
*
|
143811
143867
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
143812
143868
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144392,8 +144448,8 @@ const DEFAULT_LOCALE = "en";
|
|
144392
144448
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/number.js
|
144393
144449
|
/**
|
144394
144450
|
* DevExtreme (esm/common/core/localization/intl/number.js)
|
144395
|
-
* Version: 24.2.
|
144396
|
-
* Build date:
|
144451
|
+
* Version: 24.2.8-build-25141-1935
|
144452
|
+
* Build date: Wed May 21 2025
|
144397
144453
|
*
|
144398
144454
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144399
144455
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144513,8 +144569,8 @@ const getCurrencyFormatter = currency => new Intl.NumberFormat(core.locale(), {
|
|
144513
144569
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/number.js
|
144514
144570
|
/**
|
144515
144571
|
* DevExtreme (esm/common/core/localization/number.js)
|
144516
|
-
* Version: 24.2.
|
144517
|
-
* Build date:
|
144572
|
+
* Version: 24.2.8-build-25141-1935
|
144573
|
+
* Build date: Wed May 21 2025
|
144518
144574
|
*
|
144519
144575
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144520
144576
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -144819,8 +144875,8 @@ if (hasIntl) {
|
|
144819
144875
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.format.js
|
144820
144876
|
/**
|
144821
144877
|
* DevExtreme (esm/common/core/localization/ldml/date.format.js)
|
144822
|
-
* Version: 24.2.
|
144823
|
-
* Build date:
|
144878
|
+
* Version: 24.2.8-build-25141-1935
|
144879
|
+
* Build date: Wed May 21 2025
|
144824
144880
|
*
|
144825
144881
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
144826
144882
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145017,8 +145073,8 @@ const date_format_getFormat = function(formatter) {
|
|
145017
145073
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/ldml/date.parser.js
|
145018
145074
|
/**
|
145019
145075
|
* DevExtreme (esm/common/core/localization/ldml/date.parser.js)
|
145020
|
-
* Version: 24.2.
|
145021
|
-
* Build date:
|
145076
|
+
* Version: 24.2.8-build-25141-1935
|
145077
|
+
* Build date: Wed May 21 2025
|
145022
145078
|
*
|
145023
145079
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145024
145080
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145336,8 +145392,8 @@ const getParser = function(format, dateParts) {
|
|
145336
145392
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/default_date_names.js
|
145337
145393
|
/**
|
145338
145394
|
* DevExtreme (esm/common/core/localization/default_date_names.js)
|
145339
|
-
* Version: 24.2.
|
145340
|
-
* Build date:
|
145395
|
+
* Version: 24.2.8-build-25141-1935
|
145396
|
+
* Build date: Wed May 21 2025
|
145341
145397
|
*
|
145342
145398
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145343
145399
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145373,8 +145429,8 @@ const cutCaptions = (captions, format) => {
|
|
145373
145429
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/cldr-data/first_day_of_week_data.js
|
145374
145430
|
/**
|
145375
145431
|
* DevExtreme (esm/common/core/localization/cldr-data/first_day_of_week_data.js)
|
145376
|
-
* Version: 24.2.
|
145377
|
-
* Build date:
|
145432
|
+
* Version: 24.2.8-build-25141-1935
|
145433
|
+
* Build date: Wed May 21 2025
|
145378
145434
|
*
|
145379
145435
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145380
145436
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145573,8 +145629,8 @@ const cutCaptions = (captions, format) => {
|
|
145573
145629
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/intl/date.js
|
145574
145630
|
/**
|
145575
145631
|
* DevExtreme (esm/common/core/localization/intl/date.js)
|
145576
|
-
* Version: 24.2.
|
145577
|
-
* Build date:
|
145632
|
+
* Version: 24.2.8-build-25141-1935
|
145633
|
+
* Build date: Wed May 21 2025
|
145578
145634
|
*
|
145579
145635
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145580
145636
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|
@@ -145891,8 +145947,8 @@ const monthNameStrategies = {
|
|
145891
145947
|
;// CONCATENATED MODULE: ./node_modules/devextreme/esm/common/core/localization/date.js
|
145892
145948
|
/**
|
145893
145949
|
* DevExtreme (esm/common/core/localization/date.js)
|
145894
|
-
* Version: 24.2.
|
145895
|
-
* Build date:
|
145950
|
+
* Version: 24.2.8-build-25141-1935
|
145951
|
+
* Build date: Wed May 21 2025
|
145896
145952
|
*
|
145897
145953
|
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
|
145898
145954
|
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
|