igniteui-webcomponents-excel 4.7.0 → 4.7.2-beta.0
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/bundles/igniteui-webcomponents-excel.umd.js +1505 -1353
- package/bundles/igniteui-webcomponents-excel.umd.min.js +1 -1
- package/esm2015/lib/AlignmentInfo.js +4 -4
- package/esm2015/lib/BiffRecordStream.js +7 -7
- package/esm2015/lib/CellFormatValue.js +1 -1
- package/esm2015/lib/ConditionalFormattingUtils.js +1 -1
- package/esm2015/lib/DefaultStyleHelper_combined.js +1206 -1111
- package/esm2015/lib/DomTextMetricsProvider.js +8 -8
- package/esm2015/lib/JapaneseCalendar.js +1 -1
- package/esm2015/lib/LegacyShapeData.js +4 -4
- package/esm2015/lib/ObjectModelDrawingPartManager_ShapeLoader_ShapeTypeCreator.js +1 -1
- package/esm2015/lib/ObjectModelVmlDrawingPartManager_UpdateLegacyShapeData.js +1 -1
- package/esm2015/lib/PackagePart_combined.js +1 -1
- package/esm2015/lib/ProtectionInfo.js +8 -5
- package/esm2015/lib/SgmlReader.js +1 -1
- package/esm2015/lib/UltraCalcFunctionCell.js +3 -3
- package/esm2015/lib/UltraCalcFunctionComplex.js +1 -1
- package/esm2015/lib/UltraCalcFunctionDateDiff.js +1 -1
- package/esm2015/lib/UltraCalcFunctionHLookup.js +1 -1
- package/esm2015/lib/UltraCalcFunctionLookup.js +1 -1
- package/esm2015/lib/UltraCalcFunctionMatch.js +1 -1
- package/esm2015/lib/UltraCalcFunctionRoman.js +1 -1
- package/esm2015/lib/UltraCalcFunctionText.js +1 -1
- package/esm2015/lib/UltraCalcFunctionUSDollar.js +1 -1
- package/esm2015/lib/UltraCalcFunctionVLookup.js +1 -1
- package/esm2015/lib/WorkbookLoadManagerExcel2007_combined.js +31 -31
- package/esm2015/lib/WorkbookSaveManagerExcel2003_combined.js +204 -182
- package/esm2015/lib/XlsxUtilities_combined.js +2 -2
- package/esm5/lib/AlignmentInfo.js +4 -4
- package/esm5/lib/BiffRecordStream.js +7 -7
- package/esm5/lib/CellFormatValue.js +1 -1
- package/esm5/lib/ConditionalFormattingUtils.js +1 -1
- package/esm5/lib/DefaultStyleHelper_combined.js +1232 -1105
- package/esm5/lib/DomTextMetricsProvider.js +8 -8
- package/esm5/lib/JapaneseCalendar.js +1 -1
- package/esm5/lib/LegacyShapeData.js +4 -4
- package/esm5/lib/ObjectModelDrawingPartManager_ShapeLoader_ShapeTypeCreator.js +1 -1
- package/esm5/lib/ObjectModelVmlDrawingPartManager_UpdateLegacyShapeData.js +1 -1
- package/esm5/lib/PackagePart_combined.js +1 -1
- package/esm5/lib/ProtectionInfo.js +8 -5
- package/esm5/lib/SgmlReader.js +1 -1
- package/esm5/lib/UltraCalcFunctionCell.js +3 -3
- package/esm5/lib/UltraCalcFunctionComplex.js +1 -1
- package/esm5/lib/UltraCalcFunctionDateDiff.js +1 -1
- package/esm5/lib/UltraCalcFunctionHLookup.js +1 -1
- package/esm5/lib/UltraCalcFunctionLookup.js +1 -1
- package/esm5/lib/UltraCalcFunctionMatch.js +1 -1
- package/esm5/lib/UltraCalcFunctionRoman.js +1 -1
- package/esm5/lib/UltraCalcFunctionText.js +1 -1
- package/esm5/lib/UltraCalcFunctionUSDollar.js +1 -1
- package/esm5/lib/UltraCalcFunctionVLookup.js +1 -1
- package/esm5/lib/WorkbookLoadManagerExcel2007_combined.js +31 -31
- package/esm5/lib/WorkbookSaveManagerExcel2003_combined.js +204 -182
- package/esm5/lib/XlsxUtilities_combined.js +2 -2
- package/fesm2015/igniteui-webcomponents-excel.js +1479 -1359
- package/fesm5/igniteui-webcomponents-excel.js +1505 -1353
- package/lib/BiffRecordStream.d.ts +2 -2
- package/lib/CellFormatValue.d.ts +5 -4
- package/lib/DefaultStyleHelper_combined.d.ts +249 -228
- package/lib/DomTextMetricsProvider.d.ts +1 -1
- package/lib/JapaneseCalendar.d.ts +1 -1
- package/lib/WorkbookLoadManagerExcel2007_combined.d.ts +5 -5
- package/lib/WorkbookSaveManagerExcel2003_combined.d.ts +3 -3
- package/package.json +2 -2
|
@@ -20,9 +20,9 @@ import { Dictionary$2 } from "igniteui-webcomponents-core";
|
|
|
20
20
|
import { SingleTargetFormula } from "./SingleTargetFormula";
|
|
21
21
|
import { WorksheetCell } from "./WorksheetCell";
|
|
22
22
|
import { WorkbookStyleCollection } from "./WorkbookStyleCollection";
|
|
23
|
+
import { WorkbookFontData } from "./WorkbookFontData";
|
|
23
24
|
import { WorkbookBuiltInStyle } from "./WorkbookBuiltInStyle";
|
|
24
25
|
import { BuiltInStyleType_$type } from "./BuiltInStyleType";
|
|
25
|
-
import { WorkbookFontData } from "./WorkbookFontData";
|
|
26
26
|
import { IWorksheetImage_$type } from "./IWorksheetImage";
|
|
27
27
|
import { ExcelImage } from "./ExcelImage";
|
|
28
28
|
import { WorksheetShape } from "./WorksheetShape";
|
|
@@ -41,11 +41,11 @@ import { Async } from "./Async";
|
|
|
41
41
|
import { FormulaContext } from "./FormulaContext";
|
|
42
42
|
import { FormulaToken } from "./FormulaToken";
|
|
43
43
|
import { WorkbookSaveManagerExcel2003_GetSizeTokenVisitor } from "./WorkbookSaveManagerExcel2003_GetSizeTokenVisitor";
|
|
44
|
+
import { WorkbookSaveManagerExcel2003_SaveTokenVisitor } from "./WorkbookSaveManagerExcel2003_SaveTokenVisitor";
|
|
45
|
+
import { WorkbookSaveManagerExcel2003_SaveAdditionalDataTokenVisitor } from "./WorkbookSaveManagerExcel2003_SaveAdditionalDataTokenVisitor";
|
|
44
46
|
import { SharedTokenConverter } from "./SharedTokenConverter";
|
|
45
47
|
import { TokenReferenceResolver } from "./TokenReferenceResolver";
|
|
46
|
-
import { WorkbookSaveManagerExcel2003_SaveTokenVisitor } from "./WorkbookSaveManagerExcel2003_SaveTokenVisitor";
|
|
47
48
|
import { FormulaTokenVisitor } from "./FormulaTokenVisitor";
|
|
48
|
-
import { WorkbookSaveManagerExcel2003_SaveAdditionalDataTokenVisitor } from "./WorkbookSaveManagerExcel2003_SaveAdditionalDataTokenVisitor";
|
|
49
49
|
import { BIFF8RecordType_$type } from "./BIFF8RecordType";
|
|
50
50
|
import { BiffRecordBase$3 } from "./BiffRecordBase$3";
|
|
51
51
|
import { WorksheetHyperlink } from "./WorksheetHyperlink";
|
|
@@ -119,8 +119,8 @@ import { Tuple } from "igniteui-webcomponents-core";
|
|
|
119
119
|
import { DocumentSummaryInformation } from "./DocumentSummaryInformation";
|
|
120
120
|
import { SummaryInformation } from "./SummaryInformation";
|
|
121
121
|
import { WorkbookCFInfo } from "./WorkbookCFInfo";
|
|
122
|
-
import { ConditionPriority } from "./ConditionPriority";
|
|
123
122
|
import { CondFmtWrapper } from "./CondFmtWrapper";
|
|
123
|
+
import { ConditionPriority } from "./ConditionPriority";
|
|
124
124
|
import { CfWrapper } from "./CfWrapper";
|
|
125
125
|
import { ConditionFactory_BIFF8 } from "./ConditionFactory_BIFF8";
|
|
126
126
|
import { CfExNonCf12Wrapper } from "./CfExNonCf12Wrapper";
|
|
@@ -131,8 +131,8 @@ import { Obj } from "./Obj";
|
|
|
131
131
|
import { FtCmo } from "./FtCmo";
|
|
132
132
|
import { AttrTokenBase } from "./AttrTokenBase";
|
|
133
133
|
import { FunctionVOperator } from "./FunctionVOperator";
|
|
134
|
-
import { Function } from "./Function";
|
|
135
134
|
import { AddInFunctionResolver } from "./AddInFunctionResolver";
|
|
135
|
+
import { Function } from "./Function";
|
|
136
136
|
import { Encoding } from "igniteui-webcomponents-core";
|
|
137
137
|
import { ArgumentException } from "igniteui-webcomponents-core";
|
|
138
138
|
import { nullableNotEquals, nullableEquals, nullableIsNull } from "igniteui-webcomponents-core";
|
|
@@ -167,11 +167,11 @@ import { ConditionalFormatBase } from "./ConditionalFormatBase";
|
|
|
167
167
|
import { ThresholdConditionBase } from "./ThresholdConditionBase";
|
|
168
168
|
import { Rgce } from "./Rgce";
|
|
169
169
|
import { CfTemplate_$type } from "./CfTemplate";
|
|
170
|
+
import { FormulaConditionalFormat } from "./FormulaConditionalFormat";
|
|
170
171
|
import { ColorScaleConditionalFormat } from "./ColorScaleConditionalFormat";
|
|
171
172
|
import { DataBarConditionalFormat } from "./DataBarConditionalFormat";
|
|
172
173
|
import { RankConditionalFormat } from "./RankConditionalFormat";
|
|
173
174
|
import { Extensions_BIFF8 } from "./Extensions_BIFF8";
|
|
174
|
-
import { FormulaConditionalFormat } from "./FormulaConditionalFormat";
|
|
175
175
|
import { ConditionalFormattingUtils } from "./ConditionalFormattingUtils";
|
|
176
176
|
import { AverageConditionalFormat } from "./AverageConditionalFormat";
|
|
177
177
|
import { IconSetConditionalFormat } from "./IconSetConditionalFormat";
|
|
@@ -188,9 +188,9 @@ import { CfIconSet } from "./CfIconSet";
|
|
|
188
188
|
import { CfIconCriterion } from "./CfIconCriterion";
|
|
189
189
|
import { IconCriterion } from "./IconCriterion";
|
|
190
190
|
import { Biff8RecordStream_Stxp } from "./Biff8RecordStream_Stxp";
|
|
191
|
+
import { Biff8RecordStream_Ts } from "./Biff8RecordStream_Ts";
|
|
191
192
|
import { FontSuperscriptSubscriptStyle_$type } from "./FontSuperscriptSubscriptStyle";
|
|
192
193
|
import { FontUnderlineStyle_$type } from "./FontUnderlineStyle";
|
|
193
|
-
import { Biff8RecordStream_Ts } from "./Biff8RecordStream_Ts";
|
|
194
194
|
import { FillPatternStyle_$type } from "./FillPatternStyle";
|
|
195
195
|
import { CellFillPattern } from "./CellFillPattern";
|
|
196
196
|
import { ExtPropColorLoaded } from "./ExtPropColorLoaded";
|
|
@@ -284,8 +284,8 @@ import { DateRangeFilter } from "./DateRangeFilter";
|
|
|
284
284
|
import { CalcUtilities } from "./CalcUtilities";
|
|
285
285
|
import { CalculationMode_$type } from "./CalculationMode";
|
|
286
286
|
import { WorksheetReferenceExternal } from "./WorksheetReferenceExternal";
|
|
287
|
-
import { AnyValueDataValidationRule } from "./AnyValueDataValidationRule";
|
|
288
287
|
import { ListDataValidationRule } from "./ListDataValidationRule";
|
|
288
|
+
import { AnyValueDataValidationRule } from "./AnyValueDataValidationRule";
|
|
289
289
|
import { CustomDataValidationRule } from "./CustomDataValidationRule";
|
|
290
290
|
import { TwoConstraintDataValidationRule } from "./TwoConstraintDataValidationRule";
|
|
291
291
|
import { OneConstraintDataValidationRule } from "./OneConstraintDataValidationRule";
|
|
@@ -760,7 +760,7 @@ export let WorkbookSaveManagerExcel2003 = /*@__PURE__*/ (() => {
|
|
|
760
760
|
this._dm(a);
|
|
761
761
|
this._dt(a.displayOptions);
|
|
762
762
|
this._di(a);
|
|
763
|
-
if (a.
|
|
763
|
+
if (a._el) {
|
|
764
764
|
this._ds(153);
|
|
765
765
|
}
|
|
766
766
|
if (this._af(a)) {
|
|
@@ -924,7 +924,7 @@ export let WorkbookSaveManagerExcel2003 = /*@__PURE__*/ (() => {
|
|
|
924
924
|
return b;
|
|
925
925
|
}
|
|
926
926
|
_dg(a) {
|
|
927
|
-
let b = new List$1(WorksheetColumnBlock.$, 1, a.
|
|
927
|
+
let b = new List$1(WorksheetColumnBlock.$, 1, a._fg);
|
|
928
928
|
if (b.count == 1 && b._inner[0].l) {
|
|
929
929
|
return;
|
|
930
930
|
}
|
|
@@ -4157,7 +4157,7 @@ export let Biff8RecordStream = /*@__PURE__*/ (() => {
|
|
|
4157
4157
|
m = a._a9;
|
|
4158
4158
|
}
|
|
4159
4159
|
if (d == false) {
|
|
4160
|
-
l = nullableEquals(a.
|
|
4160
|
+
l = nullableEquals(a._c9, true);
|
|
4161
4161
|
}
|
|
4162
4162
|
if (e == false) {
|
|
4163
4163
|
o = a._cw;
|
|
@@ -4170,7 +4170,7 @@ export let Biff8RecordStream = /*@__PURE__*/ (() => {
|
|
|
4170
4170
|
}
|
|
4171
4171
|
}
|
|
4172
4172
|
if (h == false) {
|
|
4173
|
-
q = nullableEquals(a.
|
|
4173
|
+
q = nullableEquals(a._c8, true);
|
|
4174
4174
|
}
|
|
4175
4175
|
let v = 0;
|
|
4176
4176
|
let w = ExcelUtils.e4(v, k, 0, 2);
|
|
@@ -4192,7 +4192,7 @@ export let Biff8RecordStream = /*@__PURE__*/ (() => {
|
|
|
4192
4192
|
let ae = ExcelUtils.e4(v, s, 22, 23);
|
|
4193
4193
|
v = ae.p0;
|
|
4194
4194
|
this._write18(v);
|
|
4195
|
-
this.
|
|
4195
|
+
this._write13(t);
|
|
4196
4196
|
}
|
|
4197
4197
|
_readDXFBdr(a, b, c, d, e, f, g) {
|
|
4198
4198
|
let h = this._readUInt32();
|
|
@@ -4442,7 +4442,7 @@ export let Biff8RecordStream = /*@__PURE__*/ (() => {
|
|
|
4442
4442
|
if (WorkbookColorInfo.l_op_Inequality(a.colorInfo, null)) {
|
|
4443
4443
|
f = a.colorInfo._y(this.saveManager._b, 2);
|
|
4444
4444
|
}
|
|
4445
|
-
this.
|
|
4445
|
+
this._write13(f);
|
|
4446
4446
|
this._write18(intSToU(0));
|
|
4447
4447
|
let g = new Biff8RecordStream_Ts();
|
|
4448
4448
|
g.a = (nullableEquals(a._italic$i, null));
|
|
@@ -4455,8 +4455,8 @@ export let Biff8RecordStream = /*@__PURE__*/ (() => {
|
|
|
4455
4455
|
let j = (nullableEquals(a._bold$i, null)) ? intSToU(1) : 0;
|
|
4456
4456
|
this._write18(j);
|
|
4457
4457
|
this._write18(intSToU(0));
|
|
4458
|
-
this.
|
|
4459
|
-
this.
|
|
4458
|
+
this._write13(0);
|
|
4459
|
+
this._write13(0);
|
|
4460
4460
|
if (a.name == null) {
|
|
4461
4461
|
this._write17(0);
|
|
4462
4462
|
}
|
|
@@ -4533,7 +4533,7 @@ export let Biff8RecordStream = /*@__PURE__*/ (() => {
|
|
|
4533
4533
|
let h = nullableEquals(a._shrinkToFit$i, null);
|
|
4534
4534
|
let i = true;
|
|
4535
4535
|
let j = nullableEquals(a._locked$i, null);
|
|
4536
|
-
let k =
|
|
4536
|
+
let k = nullableEquals(a._hidden$i, null);
|
|
4537
4537
|
let l = a.leftBorderStyle == -1 && WorkbookColorInfo.l_op_Equality(a.leftBorderColorInfo, null);
|
|
4538
4538
|
let m = a.rightBorderStyle == -1 && WorkbookColorInfo.l_op_Equality(a.rightBorderColorInfo, null);
|
|
4539
4539
|
let n = a.topBorderStyle == -1 && WorkbookColorInfo.l_op_Equality(a.topBorderColorInfo, null);
|
|
@@ -4728,7 +4728,7 @@ export let Biff8RecordStream = /*@__PURE__*/ (() => {
|
|
|
4728
4728
|
_writeDXFNumUsr(a) {
|
|
4729
4729
|
let b = this.position;
|
|
4730
4730
|
this._write17(0);
|
|
4731
|
-
this._writeXLUnicodeString(a.
|
|
4731
|
+
this._writeXLUnicodeString(a._di);
|
|
4732
4732
|
let c = this.position;
|
|
4733
4733
|
let d = (c - b);
|
|
4734
4734
|
this.position = b;
|
|
@@ -4789,12 +4789,18 @@ export let Biff8RecordStream = /*@__PURE__*/ (() => {
|
|
|
4789
4789
|
if (b == false) {
|
|
4790
4790
|
a._locked$i = ExcelUtils.dx(e);
|
|
4791
4791
|
}
|
|
4792
|
+
if (c == false) {
|
|
4793
|
+
a._hidden$i = ExcelUtils.dx(f);
|
|
4794
|
+
}
|
|
4792
4795
|
}
|
|
4793
4796
|
_writeDXFProt(a, b, c) {
|
|
4794
4797
|
let d = true;
|
|
4795
4798
|
let e = false;
|
|
4796
4799
|
if (b == false) {
|
|
4797
|
-
d = nullableEquals(a.
|
|
4800
|
+
d = nullableEquals(a._c7, true);
|
|
4801
|
+
}
|
|
4802
|
+
if (c == false) {
|
|
4803
|
+
e = nullableEquals(a._c6, true);
|
|
4798
4804
|
}
|
|
4799
4805
|
let f = 0;
|
|
4800
4806
|
let g = ExcelUtils.gb(f, d, 0);
|
|
@@ -4844,7 +4850,7 @@ export let Biff8RecordStream = /*@__PURE__*/ (() => {
|
|
|
4844
4850
|
let c = this.position;
|
|
4845
4851
|
let d = (c - b);
|
|
4846
4852
|
this.position = b + 2;
|
|
4847
|
-
this.
|
|
4853
|
+
this._write12(d);
|
|
4848
4854
|
this.position = c;
|
|
4849
4855
|
}
|
|
4850
4856
|
_readFeatProtection() {
|
|
@@ -5002,7 +5008,7 @@ export let Biff8RecordStream = /*@__PURE__*/ (() => {
|
|
|
5002
5008
|
this._write18(l);
|
|
5003
5009
|
let m = this.position;
|
|
5004
5010
|
this._write18(intSToU(0));
|
|
5005
|
-
this.
|
|
5011
|
+
this._write13(k);
|
|
5006
5012
|
let n;
|
|
5007
5013
|
let o = b._d(a.index, n);
|
|
5008
5014
|
n = o.p1;
|
|
@@ -5033,7 +5039,7 @@ export let Biff8RecordStream = /*@__PURE__*/ (() => {
|
|
|
5033
5039
|
this._write18(w);
|
|
5034
5040
|
let ad = this.position;
|
|
5035
5041
|
this._write18(intSToU(0));
|
|
5036
|
-
this.
|
|
5042
|
+
this._write13(j);
|
|
5037
5043
|
this._writeXLUnicodeString(a._a9.toString());
|
|
5038
5044
|
if (c == false) {
|
|
5039
5045
|
this._writeXLUnicodeString(a.name);
|
|
@@ -5210,7 +5216,7 @@ export let Biff8RecordStream = /*@__PURE__*/ (() => {
|
|
|
5210
5216
|
e = f.p4;
|
|
5211
5217
|
let g = truncate(MathUtilities.f(d * 32767));
|
|
5212
5218
|
this._write17(c);
|
|
5213
|
-
this.
|
|
5219
|
+
this._write12(g);
|
|
5214
5220
|
this._write18(e);
|
|
5215
5221
|
this._write2(new Array(8));
|
|
5216
5222
|
}
|
|
@@ -5386,15 +5392,15 @@ export let Biff8RecordStream = /*@__PURE__*/ (() => {
|
|
|
5386
5392
|
if (j != null) {
|
|
5387
5393
|
t = this._saveManagerBiff8._c1.indexOf(j);
|
|
5388
5394
|
}
|
|
5389
|
-
this.
|
|
5390
|
-
this.
|
|
5391
|
-
this.
|
|
5392
|
-
this.
|
|
5393
|
-
this.
|
|
5394
|
-
this.
|
|
5395
|
-
this.
|
|
5396
|
-
this.
|
|
5397
|
-
this.
|
|
5395
|
+
this._write13(0);
|
|
5396
|
+
this._write13(r);
|
|
5397
|
+
this._write13(0);
|
|
5398
|
+
this._write13(s);
|
|
5399
|
+
this._write13(0);
|
|
5400
|
+
this._write13(t);
|
|
5401
|
+
this._write13(0);
|
|
5402
|
+
this._write13(0);
|
|
5403
|
+
this._write13(0);
|
|
5398
5404
|
this._g2(b, d);
|
|
5399
5405
|
this._g2(b + 8, h);
|
|
5400
5406
|
this._g2(b + 16, k);
|
|
@@ -5591,11 +5597,11 @@ export let Biff8RecordStream = /*@__PURE__*/ (() => {
|
|
|
5591
5597
|
}
|
|
5592
5598
|
let j = typeCast(CustomListSortCondition.$, b);
|
|
5593
5599
|
if (j == null) {
|
|
5594
|
-
this.
|
|
5600
|
+
this._write13(0);
|
|
5595
5601
|
}
|
|
5596
5602
|
else {
|
|
5597
5603
|
let k = j._l();
|
|
5598
|
-
this.
|
|
5604
|
+
this._write13(k.length);
|
|
5599
5605
|
this._writeXLUnicodeStringNoCch(k);
|
|
5600
5606
|
}
|
|
5601
5607
|
}
|
|
@@ -5642,8 +5648,8 @@ export let Biff8RecordStream = /*@__PURE__*/ (() => {
|
|
|
5642
5648
|
this._writeRef8U(b);
|
|
5643
5649
|
}
|
|
5644
5650
|
else {
|
|
5645
|
-
this.
|
|
5646
|
-
this.
|
|
5651
|
+
this._write13(0);
|
|
5652
|
+
this._write13(0);
|
|
5647
5653
|
}
|
|
5648
5654
|
}
|
|
5649
5655
|
_de() {
|
|
@@ -5659,7 +5665,7 @@ export let Biff8RecordStream = /*@__PURE__*/ (() => {
|
|
|
5659
5665
|
return a;
|
|
5660
5666
|
}
|
|
5661
5667
|
_h2(a) {
|
|
5662
|
-
this.
|
|
5668
|
+
this._write13(a.e);
|
|
5663
5669
|
this._h4(a.a);
|
|
5664
5670
|
this._write17(a.f);
|
|
5665
5671
|
this._write17(a.g);
|
|
@@ -5903,7 +5909,7 @@ export let Biff8RecordStream = /*@__PURE__*/ (() => {
|
|
|
5903
5909
|
}
|
|
5904
5910
|
else {
|
|
5905
5911
|
}
|
|
5906
|
-
this.
|
|
5912
|
+
this._write13(b);
|
|
5907
5913
|
this._write10(c);
|
|
5908
5914
|
this._write10(d);
|
|
5909
5915
|
this._write10(e);
|
|
@@ -6091,7 +6097,7 @@ export let Biff8RecordStream = /*@__PURE__*/ (() => {
|
|
|
6091
6097
|
this._write17(a.d);
|
|
6092
6098
|
break;
|
|
6093
6099
|
case 42:
|
|
6094
|
-
this.
|
|
6100
|
+
this._write12(a.d);
|
|
6095
6101
|
break;
|
|
6096
6102
|
case 17:
|
|
6097
6103
|
this._write9(a.d);
|
|
@@ -6148,7 +6154,7 @@ export let Biff8RecordStream = /*@__PURE__*/ (() => {
|
|
|
6148
6154
|
j = l.p0;
|
|
6149
6155
|
this._write9(j);
|
|
6150
6156
|
this._write9(g);
|
|
6151
|
-
this.
|
|
6157
|
+
this._write12(i);
|
|
6152
6158
|
this._write18(h);
|
|
6153
6159
|
}
|
|
6154
6160
|
_readXFPropGradientFill() {
|
|
@@ -6309,7 +6315,7 @@ export let Biff8RecordStream = /*@__PURE__*/ (() => {
|
|
|
6309
6315
|
let d = this.position;
|
|
6310
6316
|
let e = (d - c);
|
|
6311
6317
|
this.position = a;
|
|
6312
|
-
this.
|
|
6318
|
+
this._write13(e);
|
|
6313
6319
|
this.position = d;
|
|
6314
6320
|
}
|
|
6315
6321
|
get _loadManagerBiff8() {
|
|
@@ -7425,15 +7431,15 @@ export let BLIP = /*@__PURE__*/ (() => {
|
|
|
7425
7431
|
}
|
|
7426
7432
|
ae(a) {
|
|
7427
7433
|
a._cl._write2(this.x.toByteArray());
|
|
7428
|
-
a._cl.
|
|
7429
|
-
a._cl.
|
|
7430
|
-
a._cl.
|
|
7431
|
-
a._cl.
|
|
7432
|
-
a._cl.
|
|
7433
|
-
a._cl.
|
|
7434
|
-
a._cl.
|
|
7434
|
+
a._cl._write13(this.o.length);
|
|
7435
|
+
a._cl._write13(0);
|
|
7436
|
+
a._cl._write13(0);
|
|
7437
|
+
a._cl._write13(this.p.g);
|
|
7438
|
+
a._cl._write13(this.p.f);
|
|
7439
|
+
a._cl._write13(ExcelUtils.dp(Workbook._ep(a._b, this.p.g, false)));
|
|
7440
|
+
a._cl._write13(ExcelUtils.dp(Workbook._ep(a._b, this.p.f, true)));
|
|
7435
7441
|
if (this.n != null && this.n != this.o && this.n.length != this.o.length) {
|
|
7436
|
-
a._cl.
|
|
7442
|
+
a._cl._write13(this.n.length);
|
|
7437
7443
|
a._cl._write9(0);
|
|
7438
7444
|
a._cl._write9(254);
|
|
7439
7445
|
a._cl._write2(this.n);
|
|
@@ -7443,7 +7449,7 @@ export let BLIP = /*@__PURE__*/ (() => {
|
|
|
7443
7449
|
if (this.p.e) {
|
|
7444
7450
|
b = 0;
|
|
7445
7451
|
}
|
|
7446
|
-
a._cl.
|
|
7452
|
+
a._cl._write13(this.o.length);
|
|
7447
7453
|
a._cl._write9(b);
|
|
7448
7454
|
a._cl._write9(254);
|
|
7449
7455
|
a._cl._write2(this.o);
|
|
@@ -9495,7 +9501,7 @@ export let SolverContainer = /*@__PURE__*/ (() => {
|
|
|
9495
9501
|
{
|
|
9496
9502
|
let c = _rest[0];
|
|
9497
9503
|
super(15, 0, 0);
|
|
9498
|
-
let d = c.
|
|
9504
|
+
let d = c._fh();
|
|
9499
9505
|
for (let e of fromEnum(d)) {
|
|
9500
9506
|
this.r(e);
|
|
9501
9507
|
}
|
|
@@ -10373,6 +10379,19 @@ export let AUTOFILTERINFORecord = /*@__PURE__*/ (() => {
|
|
|
10373
10379
|
class AUTOFILTERINFORecord extends Biff8RecordBase {
|
|
10374
10380
|
h(a) {
|
|
10375
10381
|
let b = a._aw._readUInt16();
|
|
10382
|
+
let c = a._aj.a(Worksheet.$);
|
|
10383
|
+
if (c != null) {
|
|
10384
|
+
let d = a._aj.a(CustomView.$);
|
|
10385
|
+
if (d == null) {
|
|
10386
|
+
let e = typeCast(NamedReference.$, a._b._a2("_FilterDatabase", c));
|
|
10387
|
+
if (e != null) {
|
|
10388
|
+
c.filterSettings._bs(e, false);
|
|
10389
|
+
}
|
|
10390
|
+
}
|
|
10391
|
+
else {
|
|
10392
|
+
let f = d._e(c, false);
|
|
10393
|
+
}
|
|
10394
|
+
}
|
|
10376
10395
|
}
|
|
10377
10396
|
i(a) {
|
|
10378
10397
|
let b = a._ca.a(Worksheet.$);
|
|
@@ -10569,7 +10588,7 @@ export let BLANKRecord = /*@__PURE__*/ (() => {
|
|
|
10569
10588
|
};
|
|
10570
10589
|
}
|
|
10571
10590
|
p(a, b) {
|
|
10572
|
-
a._cl.
|
|
10591
|
+
a._cl._write11(b);
|
|
10573
10592
|
}
|
|
10574
10593
|
get_d() {
|
|
10575
10594
|
return 513;
|
|
@@ -10765,7 +10784,7 @@ export let BOOLERRRecord = /*@__PURE__*/ (() => {
|
|
|
10765
10784
|
}
|
|
10766
10785
|
else {
|
|
10767
10786
|
}
|
|
10768
|
-
a._cl.
|
|
10787
|
+
a._cl._write11(b);
|
|
10769
10788
|
}
|
|
10770
10789
|
get_d() {
|
|
10771
10790
|
return 517;
|
|
@@ -10825,12 +10844,12 @@ export let BOUNDSHEETRecord = /*@__PURE__*/ (() => {
|
|
|
10825
10844
|
let g = a._b._sheets$i._add2(d._y, e, f);
|
|
10826
10845
|
let h = g.type == 0 ? g : null;
|
|
10827
10846
|
if (h != null) {
|
|
10828
|
-
h.
|
|
10847
|
+
h._el = false;
|
|
10829
10848
|
h._br = c;
|
|
10830
10849
|
}
|
|
10831
10850
|
g._e.visibility = b;
|
|
10832
10851
|
if (h != null) {
|
|
10833
|
-
h.
|
|
10852
|
+
h._en = true;
|
|
10834
10853
|
a._cv(h);
|
|
10835
10854
|
}
|
|
10836
10855
|
}
|
|
@@ -11069,7 +11088,7 @@ export let COLINFORecord = /*@__PURE__*/ (() => {
|
|
|
11069
11088
|
}
|
|
11070
11089
|
if (c != 256) {
|
|
11071
11090
|
d = Math.min(255, d);
|
|
11072
|
-
b.
|
|
11091
|
+
b._hx(c, d, e, h, i, k);
|
|
11073
11092
|
}
|
|
11074
11093
|
a._aw.seek(2, 1);
|
|
11075
11094
|
}
|
|
@@ -11345,7 +11364,7 @@ export let DEFCOLWIDTHRecord = /*@__PURE__*/ (() => {
|
|
|
11345
11364
|
return;
|
|
11346
11365
|
}
|
|
11347
11366
|
let c = a._aw._readUInt16();
|
|
11348
|
-
b.
|
|
11367
|
+
b._ir(c, 2, true, false);
|
|
11349
11368
|
b._d7 = true;
|
|
11350
11369
|
}
|
|
11351
11370
|
i(a) {
|
|
@@ -11467,10 +11486,10 @@ export let DVALRecord = /*@__PURE__*/ (() => {
|
|
|
11467
11486
|
return;
|
|
11468
11487
|
}
|
|
11469
11488
|
a._cl._write17(0);
|
|
11470
|
-
a._cl.
|
|
11471
|
-
a._cl.
|
|
11472
|
-
a._cl.
|
|
11473
|
-
a._cl.
|
|
11489
|
+
a._cl._write13(0);
|
|
11490
|
+
a._cl._write13(0);
|
|
11491
|
+
a._cl._write13(-1);
|
|
11492
|
+
a._cl._write13(b._dataValidationRules$i.count);
|
|
11474
11493
|
}
|
|
11475
11494
|
get_d() {
|
|
11476
11495
|
return 434;
|
|
@@ -11644,7 +11663,7 @@ export let DVRecord = /*@__PURE__*/ (() => {
|
|
|
11644
11663
|
let q = a._c5(e, false, false, false);
|
|
11645
11664
|
let r = a._cl.position;
|
|
11646
11665
|
a._cl.position = p;
|
|
11647
|
-
a._cl.
|
|
11666
|
+
a._cl._write13(q);
|
|
11648
11667
|
a._cl.position = r;
|
|
11649
11668
|
}
|
|
11650
11669
|
let s = a._cl.position;
|
|
@@ -11655,7 +11674,7 @@ export let DVRecord = /*@__PURE__*/ (() => {
|
|
|
11655
11674
|
let u = a._c5(t, false, false, false);
|
|
11656
11675
|
let v = a._cl.position;
|
|
11657
11676
|
a._cl.position = s;
|
|
11658
|
-
a._cl.
|
|
11677
|
+
a._cl._write13(u);
|
|
11659
11678
|
a._cl.position = v;
|
|
11660
11679
|
}
|
|
11661
11680
|
let w = a._cl._write1(c, false);
|
|
@@ -11957,8 +11976,8 @@ export let EXTERNSHEETRecord = /*@__PURE__*/ (() => {
|
|
|
11957
11976
|
for (let d of fromEnum(b)) {
|
|
11958
11977
|
let e = c.indexOf(d.e);
|
|
11959
11978
|
a._cl._write17(e);
|
|
11960
|
-
a._cl.
|
|
11961
|
-
a._cl.
|
|
11979
|
+
a._cl._write12(d.l);
|
|
11980
|
+
a._cl._write12(d.m);
|
|
11962
11981
|
}
|
|
11963
11982
|
}
|
|
11964
11983
|
get_d() {
|
|
@@ -12531,7 +12550,7 @@ export let FORMULARecord = /*@__PURE__*/ (() => {
|
|
|
12531
12550
|
}
|
|
12532
12551
|
b.write(BitConverter.h(k), 0, 2);
|
|
12533
12552
|
b.write(BitConverter.i(intSToU(0)), 0, 4);
|
|
12534
|
-
a._cl.
|
|
12553
|
+
a._cl._write11(b);
|
|
12535
12554
|
a._c5(d, true, false);
|
|
12536
12555
|
if (g && h.rowIndex == c.b.index && h._ab == e.r) {
|
|
12537
12556
|
a._ds(1212);
|
|
@@ -13266,7 +13285,7 @@ export let LABELRecord = /*@__PURE__*/ (() => {
|
|
|
13266
13285
|
};
|
|
13267
13286
|
}
|
|
13268
13287
|
p(a, b) {
|
|
13269
|
-
a._cl.
|
|
13288
|
+
a._cl._write11(b);
|
|
13270
13289
|
}
|
|
13271
13290
|
get_d() {
|
|
13272
13291
|
return 516;
|
|
@@ -13309,7 +13328,7 @@ export let LABELSSTRecord = /*@__PURE__*/ (() => {
|
|
|
13309
13328
|
else {
|
|
13310
13329
|
b.write(BitConverter.e(0), 0, 4);
|
|
13311
13330
|
}
|
|
13312
|
-
a._cl.
|
|
13331
|
+
a._cl._write11(b);
|
|
13313
13332
|
}
|
|
13314
13333
|
get_d() {
|
|
13315
13334
|
return 253;
|
|
@@ -13937,7 +13956,7 @@ export let NUMBERRecord = /*@__PURE__*/ (() => {
|
|
|
13937
13956
|
}
|
|
13938
13957
|
p(a, b) {
|
|
13939
13958
|
b.write(BitConverter.c(Convert.toDouble4(a._cm.c, a._b._e6)), 0, 8);
|
|
13940
|
-
a._cl.
|
|
13959
|
+
a._cl._write11(b);
|
|
13941
13960
|
}
|
|
13942
13961
|
get_d() {
|
|
13943
13962
|
return 515;
|
|
@@ -14576,7 +14595,7 @@ export let RKRecord = /*@__PURE__*/ (() => {
|
|
|
14576
14595
|
if (((() => { let d = ExcelUtils.b0(Convert.toDouble4(a._cm.c, a._b._e6), c); c = d.p1; return d.ret; })()) == false) {
|
|
14577
14596
|
}
|
|
14578
14597
|
b.write(BitConverter.i(c), 0, 4);
|
|
14579
|
-
a._cl.
|
|
14598
|
+
a._cl._write11(b);
|
|
14580
14599
|
}
|
|
14581
14600
|
get_d() {
|
|
14582
14601
|
return 638;
|
|
@@ -14673,7 +14692,7 @@ export let ROWRecord = /*@__PURE__*/ (() => {
|
|
|
14673
14692
|
f = u32BitwiseOr(f, 536870912);
|
|
14674
14693
|
}
|
|
14675
14694
|
d.write(BitConverter.i(f), 0, 4);
|
|
14676
|
-
a._cl.
|
|
14695
|
+
a._cl._write11(d);
|
|
14677
14696
|
}
|
|
14678
14697
|
get_d() {
|
|
14679
14698
|
return 520;
|
|
@@ -14711,7 +14730,7 @@ export let RSTRINGRecord = /*@__PURE__*/ (() => {
|
|
|
14711
14730
|
};
|
|
14712
14731
|
}
|
|
14713
14732
|
p(a, b) {
|
|
14714
|
-
a._cl.
|
|
14733
|
+
a._cl._write11(b);
|
|
14715
14734
|
}
|
|
14716
14735
|
get_d() {
|
|
14717
14736
|
return 214;
|
|
@@ -15022,7 +15041,7 @@ export let SHEETEXTRecord = /*@__PURE__*/ (() => {
|
|
|
15022
15041
|
a._cl._write18(40);
|
|
15023
15042
|
let c = b.displayOptions.tabColorInfo;
|
|
15024
15043
|
let d = c._y(a._b, 4);
|
|
15025
|
-
a._cl.
|
|
15044
|
+
a._cl._write13(d);
|
|
15026
15045
|
let e = 0;
|
|
15027
15046
|
let f = ExcelUtils.e4(e, d, 0, 6);
|
|
15028
15047
|
e = f.p0;
|
|
@@ -15066,7 +15085,7 @@ export let SHRFMLARecord = /*@__PURE__*/ (() => {
|
|
|
15066
15085
|
c = j.p0;
|
|
15067
15086
|
d = j.p1;
|
|
15068
15087
|
let k = ((() => { let l = a._au(2, c, d); c = l.p1; d = l.p2; return l.ret; })());
|
|
15069
|
-
b.
|
|
15088
|
+
b._h3(k, b._cx(e, g, f, h));
|
|
15070
15089
|
let l = b._rows$i.item(e);
|
|
15071
15090
|
a._bm.item(new WorksheetCellAddress(1, e, g), k);
|
|
15072
15091
|
let m = new List$1(KeyValuePair$2.$.specialize(WorksheetCellAddress.$, ExcelCalcValue.$), 1, a._bl);
|
|
@@ -15287,7 +15306,7 @@ export let STANDARDWIDTHRecord = /*@__PURE__*/ (() => {
|
|
|
15287
15306
|
if (c != 0) {
|
|
15288
15307
|
b.defaultColumnWidth = c;
|
|
15289
15308
|
}
|
|
15290
|
-
b.
|
|
15309
|
+
b._el = true;
|
|
15291
15310
|
}
|
|
15292
15311
|
i(a) {
|
|
15293
15312
|
let b = a._ca.a(Worksheet.$);
|
|
@@ -15295,7 +15314,7 @@ export let STANDARDWIDTHRecord = /*@__PURE__*/ (() => {
|
|
|
15295
15314
|
return;
|
|
15296
15315
|
}
|
|
15297
15316
|
let c = b.defaultColumnWidth;
|
|
15298
|
-
if (Enumerable.b(WorksheetColumnBlock.$, b.
|
|
15317
|
+
if (Enumerable.b(WorksheetColumnBlock.$, b._fg, (d) => d.j)) {
|
|
15299
15318
|
c = 0;
|
|
15300
15319
|
}
|
|
15301
15320
|
a._cl._write17(c);
|
|
@@ -15477,7 +15496,7 @@ export let STYLERecord = /*@__PURE__*/ (() => {
|
|
|
15477
15496
|
i.style = d;
|
|
15478
15497
|
let j = i.formatOptions;
|
|
15479
15498
|
if (ExcelUtils.by(j, 2) == false) {
|
|
15480
|
-
if (i._a4 != g._a4 || i._ct != g._ct || i._cw != g._cw || nullableNotEquals(i.
|
|
15499
|
+
if (i._a4 != g._a4 || i._ct != g._ct || i._cw != g._cw || nullableNotEquals(i._c8, g._c8) || i._a9 != g._a9 || nullableNotEquals(i._c9, g._c9)) {
|
|
15481
15500
|
j |= 2;
|
|
15482
15501
|
}
|
|
15483
15502
|
}
|
|
@@ -15492,23 +15511,23 @@ export let STYLERecord = /*@__PURE__*/ (() => {
|
|
|
15492
15511
|
}
|
|
15493
15512
|
}
|
|
15494
15513
|
if (ExcelUtils.by(j, 4) == false) {
|
|
15495
|
-
if (nullableNotEquals(i.
|
|
15514
|
+
if (nullableNotEquals(i._c3, g._c3) || WorkbookColorInfo.l_op_Inequality(i._bh, g._bh) || i._cq != g._cq || nullableNotEquals(i._c4, g._c4) || i._dh != g._dh || nullableNotEquals(i._c5, g._c5) || i._a0 != g._a0 || i._a1 != g._a1) {
|
|
15496
15515
|
j |= 4;
|
|
15497
15516
|
}
|
|
15498
15517
|
}
|
|
15499
15518
|
if (ExcelUtils.by(j, 1) == false) {
|
|
15500
|
-
if (i.
|
|
15519
|
+
if (i._di != g._di) {
|
|
15501
15520
|
j |= 1;
|
|
15502
15521
|
}
|
|
15503
15522
|
}
|
|
15504
15523
|
if (ExcelUtils.by(j, 32) == false) {
|
|
15505
|
-
if (nullableNotEquals(i.
|
|
15524
|
+
if (nullableNotEquals(i._c7, g._c7) || nullableNotEquals(i._c6, g._c6)) {
|
|
15506
15525
|
j |= 32;
|
|
15507
15526
|
}
|
|
15508
15527
|
}
|
|
15509
15528
|
i.formatOptions = j;
|
|
15510
|
-
i.
|
|
15511
|
-
i.
|
|
15529
|
+
i._dj(j, g);
|
|
15530
|
+
i._dt(63 & ~j);
|
|
15512
15531
|
}
|
|
15513
15532
|
}
|
|
15514
15533
|
}
|
|
@@ -16473,7 +16492,7 @@ export let USERSVIEWBEGINRecord = /*@__PURE__*/ (() => {
|
|
|
16473
16492
|
ah.unfrozenPaneSettings.firstRowInBottomPane = ag;
|
|
16474
16493
|
ah.unfrozenPaneSettings.topPaneHeight = 0;
|
|
16475
16494
|
for (let ai = ab; ae > 0; ai++) {
|
|
16476
|
-
let aj = e.
|
|
16495
|
+
let aj = e._gi(ai);
|
|
16477
16496
|
let ak = Math.min(1, ae);
|
|
16478
16497
|
ah.unfrozenPaneSettings.topPaneHeight += truncate((ak * aj));
|
|
16479
16498
|
ae -= 1;
|
|
@@ -16487,7 +16506,7 @@ export let USERSVIEWBEGINRecord = /*@__PURE__*/ (() => {
|
|
|
16487
16506
|
ah.unfrozenPaneSettings.firstColumnInRightPane = af;
|
|
16488
16507
|
ah.unfrozenPaneSettings.leftPaneWidth = 0;
|
|
16489
16508
|
for (let al = ac; ad > 0; al++) {
|
|
16490
|
-
let am = e.
|
|
16509
|
+
let am = e._ge(al);
|
|
16491
16510
|
let an = Math.min(1, ad);
|
|
16492
16511
|
ah.unfrozenPaneSettings.leftPaneWidth += truncate((an * am));
|
|
16493
16512
|
ad -= 1;
|
|
@@ -16624,7 +16643,7 @@ export let USERSVIEWBEGINRecord = /*@__PURE__*/ (() => {
|
|
|
16624
16643
|
let ao = an.unfrozenPaneSettings.topPaneHeight;
|
|
16625
16644
|
ak = 0;
|
|
16626
16645
|
for (let ap = ah;; ap++) {
|
|
16627
|
-
let aq = c.
|
|
16646
|
+
let aq = c._gi(ap);
|
|
16628
16647
|
if (aq < ao) {
|
|
16629
16648
|
ak += 1;
|
|
16630
16649
|
ao -= aq;
|
|
@@ -16647,7 +16666,7 @@ export let USERSVIEWBEGINRecord = /*@__PURE__*/ (() => {
|
|
|
16647
16666
|
let ar = an.unfrozenPaneSettings.leftPaneWidth;
|
|
16648
16667
|
aj = 0;
|
|
16649
16668
|
for (let as = ai;; as++) {
|
|
16650
|
-
let at = c.
|
|
16669
|
+
let at = c._ge(as);
|
|
16651
16670
|
if (at < ar) {
|
|
16652
16671
|
aj += 1;
|
|
16653
16672
|
ar -= at;
|
|
@@ -16783,9 +16802,9 @@ export let USERSVIEWBEGINRecord = /*@__PURE__*/ (() => {
|
|
|
16783
16802
|
ax = u32BitwiseOr(ax, 536870912);
|
|
16784
16803
|
}
|
|
16785
16804
|
a._cl._write2(b._v.toByteArray());
|
|
16786
|
-
a._cl.
|
|
16787
|
-
a._cl.
|
|
16788
|
-
a._cl.
|
|
16805
|
+
a._cl._write13((c._am));
|
|
16806
|
+
a._cl._write13(d);
|
|
16807
|
+
a._cl._write13(e);
|
|
16789
16808
|
a._cl._write18(f);
|
|
16790
16809
|
a._cl._write18(ax);
|
|
16791
16810
|
a._cl._write17(ah);
|
|
@@ -17005,8 +17024,8 @@ export let WINDOW1Record = /*@__PURE__*/ (() => {
|
|
|
17005
17024
|
}
|
|
17006
17025
|
i(a) {
|
|
17007
17026
|
let b = a._b.windowOptions;
|
|
17008
|
-
a._cl.
|
|
17009
|
-
a._cl.
|
|
17027
|
+
a._cl._write12(ExcelUtils.cu(truncate(b._boundsInTwips$i.left)));
|
|
17028
|
+
a._cl._write12(ExcelUtils.cu(truncate(b._boundsInTwips$i.top)));
|
|
17010
17029
|
a._cl._write17(ExcelUtils.ev(truncate(b._boundsInTwips$i.width)));
|
|
17011
17030
|
a._cl._write17(ExcelUtils.ev(truncate(b._boundsInTwips$i.height)));
|
|
17012
17031
|
let c = 0;
|
|
@@ -17281,8 +17300,8 @@ export let WSBOOLRecord = /*@__PURE__*/ (() => {
|
|
|
17281
17300
|
return;
|
|
17282
17301
|
}
|
|
17283
17302
|
let c = a._aw._readUInt16();
|
|
17284
|
-
b.
|
|
17285
|
-
b.displayOptions._showExpansionIndicatorBelowGroupedRows$i = toNullable(Boolean_$type, b.
|
|
17303
|
+
b._en = (c & 64) == 64;
|
|
17304
|
+
b.displayOptions._showExpansionIndicatorBelowGroupedRows$i = toNullable(Boolean_$type, b._en ? true : false);
|
|
17286
17305
|
b.displayOptions._showExpansionIndicatorToRightOfGroupedColumns$i = toNullable(Boolean_$type, (c & 128) == 128 ? true : false);
|
|
17287
17306
|
let d = (c & 256) == 256;
|
|
17288
17307
|
if (d) {
|
|
@@ -17408,7 +17427,7 @@ export let XFEXTRecord = /*@__PURE__*/ (() => {
|
|
|
17408
17427
|
for (let e = 0; e < b.a.length; e++) {
|
|
17409
17428
|
b.a[e].b(a, c);
|
|
17410
17429
|
}
|
|
17411
|
-
c.
|
|
17430
|
+
c._dv(d);
|
|
17412
17431
|
}
|
|
17413
17432
|
i(a) {
|
|
17414
17433
|
let b = a._ca.a(XFRecord_XFContext.$);
|
|
@@ -17550,6 +17569,7 @@ export let XFRecord = /*@__PURE__*/ (() => {
|
|
|
17550
17569
|
al.leftBorderStyle = v;
|
|
17551
17570
|
}
|
|
17552
17571
|
al._locked$i = ExcelUtils.dx(c);
|
|
17572
|
+
al._hidden$i = ExcelUtils.dx(d);
|
|
17553
17573
|
if (aa != 0) {
|
|
17554
17574
|
al.rightBorderColorInfo = new WorkbookColorInfo(ao, aa);
|
|
17555
17575
|
al.rightBorderStyle = w;
|
|
@@ -17591,7 +17611,7 @@ export let XFRecord = /*@__PURE__*/ (() => {
|
|
|
17591
17611
|
al.formatOptions = ap;
|
|
17592
17612
|
}
|
|
17593
17613
|
else {
|
|
17594
|
-
al.
|
|
17614
|
+
al._dv(ap);
|
|
17595
17615
|
}
|
|
17596
17616
|
let aq = a._b3.count;
|
|
17597
17617
|
a._b3.add(al);
|
|
@@ -17624,54 +17644,55 @@ export let XFRecord = /*@__PURE__*/ (() => {
|
|
|
17624
17644
|
g = 4095;
|
|
17625
17645
|
}
|
|
17626
17646
|
let h = 0;
|
|
17627
|
-
let i = ExcelUtils.gc(h, c.
|
|
17647
|
+
let i = ExcelUtils.gc(h, c._c7, 0);
|
|
17628
17648
|
h = i.p0;
|
|
17629
|
-
let j = ExcelUtils.
|
|
17649
|
+
let j = ExcelUtils.gc(h, c._c6, 1);
|
|
17630
17650
|
h = j.p0;
|
|
17631
|
-
let k = ExcelUtils.
|
|
17651
|
+
let k = ExcelUtils.gb(h, c._b1 == 1, 2);
|
|
17632
17652
|
h = k.p0;
|
|
17653
|
+
let l = ExcelUtils.e3(h, g, 4, 15);
|
|
17654
|
+
h = l.p0;
|
|
17633
17655
|
a._cl._write17(h);
|
|
17634
|
-
let
|
|
17635
|
-
let
|
|
17636
|
-
|
|
17637
|
-
let
|
|
17638
|
-
|
|
17639
|
-
let
|
|
17640
|
-
|
|
17641
|
-
let
|
|
17642
|
-
|
|
17643
|
-
a._cl._write9(
|
|
17644
|
-
let
|
|
17645
|
-
if (
|
|
17646
|
-
|
|
17647
|
-
}
|
|
17648
|
-
a._cl._write9(
|
|
17649
|
-
let
|
|
17650
|
-
let
|
|
17651
|
-
let
|
|
17652
|
-
let
|
|
17653
|
-
let
|
|
17654
|
-
let
|
|
17655
|
-
let
|
|
17656
|
+
let m = 0;
|
|
17657
|
+
let n = ExcelUtils.e2(m, c._a4, 0, 2);
|
|
17658
|
+
m = n.p0;
|
|
17659
|
+
let o = ExcelUtils.ga(m, c._c9, 3);
|
|
17660
|
+
m = o.p0;
|
|
17661
|
+
let p = ExcelUtils.e2(m, c._a9, 4, 6);
|
|
17662
|
+
m = p.p0;
|
|
17663
|
+
let q = ExcelUtils.f9(m, c._b6, 7);
|
|
17664
|
+
m = q.p0;
|
|
17665
|
+
a._cl._write9(m);
|
|
17666
|
+
let r = c._cw % 256;
|
|
17667
|
+
if (r < 0) {
|
|
17668
|
+
r += 256;
|
|
17669
|
+
}
|
|
17670
|
+
a._cl._write9(r);
|
|
17671
|
+
let s = (c._b1 != 1);
|
|
17672
|
+
let t = ExcelUtils.by(c.formatOptions, 1) == s;
|
|
17673
|
+
let u = ExcelUtils.by(c.formatOptions, 4) == s;
|
|
17674
|
+
let v = ExcelUtils.by(c.formatOptions, 2) == s;
|
|
17675
|
+
let w = ExcelUtils.by(c.formatOptions, 8) == s;
|
|
17676
|
+
let x = ExcelUtils.by(c.formatOptions, 16) == s;
|
|
17677
|
+
let y = ExcelUtils.by(c.formatOptions, 32) == s;
|
|
17656
17678
|
h = 0;
|
|
17657
|
-
let
|
|
17658
|
-
h = y.p0;
|
|
17659
|
-
let z = ExcelUtils.gc(h, c._c6, 4);
|
|
17679
|
+
let z = ExcelUtils.e3(h, Math.min(15, c._ct), 0, 3);
|
|
17660
17680
|
h = z.p0;
|
|
17661
|
-
let aa = ExcelUtils.
|
|
17681
|
+
let aa = ExcelUtils.gc(h, c._c8, 4);
|
|
17662
17682
|
h = aa.p0;
|
|
17663
|
-
let ab = ExcelUtils.gb(h, t,
|
|
17683
|
+
let ab = ExcelUtils.gb(h, t, 10);
|
|
17664
17684
|
h = ab.p0;
|
|
17665
|
-
let ac = ExcelUtils.gb(h, u,
|
|
17685
|
+
let ac = ExcelUtils.gb(h, u, 11);
|
|
17666
17686
|
h = ac.p0;
|
|
17667
|
-
let ad = ExcelUtils.gb(h, v,
|
|
17687
|
+
let ad = ExcelUtils.gb(h, v, 12);
|
|
17668
17688
|
h = ad.p0;
|
|
17669
|
-
let ae = ExcelUtils.gb(h, w,
|
|
17689
|
+
let ae = ExcelUtils.gb(h, w, 13);
|
|
17670
17690
|
h = ae.p0;
|
|
17671
|
-
let af = ExcelUtils.gb(h, x,
|
|
17691
|
+
let af = ExcelUtils.gb(h, x, 14);
|
|
17672
17692
|
h = af.p0;
|
|
17693
|
+
let ag = ExcelUtils.gb(h, y, 15);
|
|
17694
|
+
h = ag.p0;
|
|
17673
17695
|
a._cl._write17(h);
|
|
17674
|
-
let ag;
|
|
17675
17696
|
let ah;
|
|
17676
17697
|
let ai;
|
|
17677
17698
|
let aj;
|
|
@@ -17681,89 +17702,90 @@ export let XFRecord = /*@__PURE__*/ (() => {
|
|
|
17681
17702
|
let an;
|
|
17682
17703
|
let ao;
|
|
17683
17704
|
let ap;
|
|
17705
|
+
let aq;
|
|
17684
17706
|
if (c.bottomBorderStyle != -1 || WorkbookColorInfo.l_op_Inequality(c.bottomBorderColorInfo, null)) {
|
|
17685
|
-
|
|
17686
|
-
|
|
17687
|
-
}
|
|
17688
|
-
else {
|
|
17689
|
-
aj = 0;
|
|
17690
|
-
ao = 0;
|
|
17691
|
-
}
|
|
17692
|
-
if (c.diagonalBorderStyle != -1 || c.diagonalBorders != 0 || WorkbookColorInfo.l_op_Inequality(c.diagonalBorderColorInfo, null)) {
|
|
17693
|
-
ak = c._am;
|
|
17694
|
-
ap = c._bg._y(d, 0);
|
|
17707
|
+
ak = c._al;
|
|
17708
|
+
ap = c._bf._y(d, 0);
|
|
17695
17709
|
}
|
|
17696
17710
|
else {
|
|
17697
17711
|
ak = 0;
|
|
17698
17712
|
ap = 0;
|
|
17699
17713
|
}
|
|
17700
|
-
if (c.
|
|
17701
|
-
|
|
17702
|
-
|
|
17714
|
+
if (c.diagonalBorderStyle != -1 || c.diagonalBorders != 0 || WorkbookColorInfo.l_op_Inequality(c.diagonalBorderColorInfo, null)) {
|
|
17715
|
+
al = c._am;
|
|
17716
|
+
aq = c._bg._y(d, 0);
|
|
17703
17717
|
}
|
|
17704
17718
|
else {
|
|
17705
|
-
ag = 0;
|
|
17706
17719
|
al = 0;
|
|
17720
|
+
aq = 0;
|
|
17707
17721
|
}
|
|
17708
|
-
if (c.
|
|
17709
|
-
ah = c.
|
|
17710
|
-
am = c.
|
|
17722
|
+
if (c.leftBorderStyle != -1 || WorkbookColorInfo.l_op_Inequality(c.leftBorderColorInfo, null)) {
|
|
17723
|
+
ah = c._an;
|
|
17724
|
+
am = c._bk._y(d, 0);
|
|
17711
17725
|
}
|
|
17712
17726
|
else {
|
|
17713
17727
|
ah = 0;
|
|
17714
17728
|
am = 0;
|
|
17715
17729
|
}
|
|
17716
|
-
if (c.
|
|
17717
|
-
ai = c.
|
|
17718
|
-
an = c.
|
|
17730
|
+
if (c.rightBorderStyle != -1 || WorkbookColorInfo.l_op_Inequality(c.rightBorderColorInfo, null)) {
|
|
17731
|
+
ai = c._ao;
|
|
17732
|
+
an = c._bl._y(d, 0);
|
|
17719
17733
|
}
|
|
17720
17734
|
else {
|
|
17721
17735
|
ai = 0;
|
|
17722
17736
|
an = 0;
|
|
17723
17737
|
}
|
|
17738
|
+
if (c.topBorderStyle != -1 || WorkbookColorInfo.l_op_Inequality(c.topBorderColorInfo, null)) {
|
|
17739
|
+
aj = c._ap;
|
|
17740
|
+
ao = c._bm._y(d, 0);
|
|
17741
|
+
}
|
|
17742
|
+
else {
|
|
17743
|
+
aj = 0;
|
|
17744
|
+
ao = 0;
|
|
17745
|
+
}
|
|
17724
17746
|
h = 0;
|
|
17725
|
-
let
|
|
17726
|
-
h = aq.p0;
|
|
17727
|
-
let ar = ExcelUtils.e3(h, ah, 4, 7);
|
|
17747
|
+
let ar = ExcelUtils.e3(h, ah, 0, 3);
|
|
17728
17748
|
h = ar.p0;
|
|
17729
|
-
let as = ExcelUtils.e3(h, ai,
|
|
17749
|
+
let as = ExcelUtils.e3(h, ai, 4, 7);
|
|
17730
17750
|
h = as.p0;
|
|
17731
|
-
let at = ExcelUtils.e3(h, aj,
|
|
17751
|
+
let at = ExcelUtils.e3(h, aj, 8, 11);
|
|
17732
17752
|
h = at.p0;
|
|
17753
|
+
let au = ExcelUtils.e3(h, ak, 12, 15);
|
|
17754
|
+
h = au.p0;
|
|
17733
17755
|
a._cl._write17(h);
|
|
17734
|
-
let
|
|
17756
|
+
let av = c._aw >> 1;
|
|
17735
17757
|
h = 0;
|
|
17736
|
-
let
|
|
17737
|
-
h = av.p0;
|
|
17738
|
-
let aw = ExcelUtils.e3(h, am, 7, 13);
|
|
17758
|
+
let aw = ExcelUtils.e3(h, am, 0, 6);
|
|
17739
17759
|
h = aw.p0;
|
|
17740
|
-
let ax = ExcelUtils.e3(h,
|
|
17760
|
+
let ax = ExcelUtils.e3(h, an, 7, 13);
|
|
17741
17761
|
h = ax.p0;
|
|
17762
|
+
let ay = ExcelUtils.e3(h, av, 14, 15);
|
|
17763
|
+
h = ay.p0;
|
|
17742
17764
|
a._cl._write17(h);
|
|
17743
|
-
let
|
|
17744
|
-
let
|
|
17745
|
-
let
|
|
17746
|
-
let
|
|
17747
|
-
let
|
|
17748
|
-
|
|
17749
|
-
let
|
|
17750
|
-
|
|
17751
|
-
let
|
|
17752
|
-
|
|
17753
|
-
let
|
|
17754
|
-
|
|
17755
|
-
let
|
|
17756
|
-
|
|
17757
|
-
let
|
|
17758
|
-
|
|
17759
|
-
a._cl._write18(
|
|
17760
|
-
let
|
|
17761
|
-
let
|
|
17765
|
+
let az = c._ar;
|
|
17766
|
+
let a0 = c._ay(az);
|
|
17767
|
+
let a1 = b.b.count != 0;
|
|
17768
|
+
let a2 = 0;
|
|
17769
|
+
let a3 = ExcelUtils.e4(a2, ao, 0, 6);
|
|
17770
|
+
a2 = a3.p0;
|
|
17771
|
+
let a4 = ExcelUtils.e4(a2, ap, 7, 13);
|
|
17772
|
+
a2 = a4.p0;
|
|
17773
|
+
let a5 = ExcelUtils.e4(a2, aq, 14, 20);
|
|
17774
|
+
a2 = a5.p0;
|
|
17775
|
+
let a6 = ExcelUtils.e4(a2, al, 21, 24);
|
|
17776
|
+
a2 = a6.p0;
|
|
17777
|
+
let a7 = ExcelUtils.gd(a2, a1, 25);
|
|
17778
|
+
a2 = a7.p0;
|
|
17779
|
+
let a8 = ExcelUtils.e4(a2, a0, 26, 31);
|
|
17780
|
+
a2 = a8.p0;
|
|
17781
|
+
a._cl._write18(a2);
|
|
17782
|
+
let a9 = c._bi(az, false, true)._y(d, 1);
|
|
17783
|
+
let ba = c._bi(az, true, true)._y(d, 1);
|
|
17762
17784
|
h = 0;
|
|
17763
|
-
let
|
|
17764
|
-
h = ba.p0;
|
|
17765
|
-
let bb = ExcelUtils.e3(h, a9, 7, 13);
|
|
17785
|
+
let bb = ExcelUtils.e3(h, a9, 0, 6);
|
|
17766
17786
|
h = bb.p0;
|
|
17787
|
+
let bc = ExcelUtils.e3(h, ba, 7, 13);
|
|
17788
|
+
h = bc.p0;
|
|
17767
17789
|
a._cl._write17(h);
|
|
17768
17790
|
}
|
|
17769
17791
|
get_d() {
|