igniteui-webcomponents-excel 4.7.1 → 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.
Files changed (58) hide show
  1. package/bundles/igniteui-webcomponents-excel.umd.js +781 -655
  2. package/bundles/igniteui-webcomponents-excel.umd.min.js +1 -1
  3. package/esm2015/lib/AlignmentInfo.js +4 -4
  4. package/esm2015/lib/BiffRecordStream.js +7 -7
  5. package/esm2015/lib/CellFormatValue.js +1 -1
  6. package/esm2015/lib/ConditionalFormattingUtils.js +1 -1
  7. package/esm2015/lib/DefaultStyleHelper_combined.js +543 -457
  8. package/esm2015/lib/DomTextMetricsProvider.js +8 -8
  9. package/esm2015/lib/JapaneseCalendar.js +1 -1
  10. package/esm2015/lib/ObjectModelDrawingPartManager_ShapeLoader_ShapeTypeCreator.js +1 -1
  11. package/esm2015/lib/PackagePart_combined.js +1 -1
  12. package/esm2015/lib/ProtectionInfo.js +8 -5
  13. package/esm2015/lib/SgmlReader.js +1 -1
  14. package/esm2015/lib/UltraCalcFunctionCell.js +1 -1
  15. package/esm2015/lib/UltraCalcFunctionComplex.js +1 -1
  16. package/esm2015/lib/UltraCalcFunctionDateDiff.js +1 -1
  17. package/esm2015/lib/UltraCalcFunctionHLookup.js +1 -1
  18. package/esm2015/lib/UltraCalcFunctionLookup.js +1 -1
  19. package/esm2015/lib/UltraCalcFunctionMatch.js +1 -1
  20. package/esm2015/lib/UltraCalcFunctionRoman.js +1 -1
  21. package/esm2015/lib/UltraCalcFunctionText.js +1 -1
  22. package/esm2015/lib/UltraCalcFunctionUSDollar.js +1 -1
  23. package/esm2015/lib/UltraCalcFunctionVLookup.js +1 -1
  24. package/esm2015/lib/WorkbookLoadManagerExcel2007_combined.js +7 -7
  25. package/esm2015/lib/WorkbookSaveManagerExcel2003_combined.js +175 -166
  26. package/esm5/lib/AlignmentInfo.js +4 -4
  27. package/esm5/lib/BiffRecordStream.js +7 -7
  28. package/esm5/lib/CellFormatValue.js +1 -1
  29. package/esm5/lib/ConditionalFormattingUtils.js +1 -1
  30. package/esm5/lib/DefaultStyleHelper_combined.js +570 -456
  31. package/esm5/lib/DomTextMetricsProvider.js +8 -8
  32. package/esm5/lib/JapaneseCalendar.js +1 -1
  33. package/esm5/lib/ObjectModelDrawingPartManager_ShapeLoader_ShapeTypeCreator.js +1 -1
  34. package/esm5/lib/PackagePart_combined.js +1 -1
  35. package/esm5/lib/ProtectionInfo.js +8 -5
  36. package/esm5/lib/SgmlReader.js +1 -1
  37. package/esm5/lib/UltraCalcFunctionCell.js +1 -1
  38. package/esm5/lib/UltraCalcFunctionComplex.js +1 -1
  39. package/esm5/lib/UltraCalcFunctionDateDiff.js +1 -1
  40. package/esm5/lib/UltraCalcFunctionHLookup.js +1 -1
  41. package/esm5/lib/UltraCalcFunctionLookup.js +1 -1
  42. package/esm5/lib/UltraCalcFunctionMatch.js +1 -1
  43. package/esm5/lib/UltraCalcFunctionRoman.js +1 -1
  44. package/esm5/lib/UltraCalcFunctionText.js +1 -1
  45. package/esm5/lib/UltraCalcFunctionUSDollar.js +1 -1
  46. package/esm5/lib/UltraCalcFunctionVLookup.js +1 -1
  47. package/esm5/lib/WorkbookLoadManagerExcel2007_combined.js +7 -7
  48. package/esm5/lib/WorkbookSaveManagerExcel2003_combined.js +175 -166
  49. package/fesm2015/igniteui-webcomponents-excel.js +754 -656
  50. package/fesm5/igniteui-webcomponents-excel.js +781 -655
  51. package/lib/BiffRecordStream.d.ts +2 -2
  52. package/lib/CellFormatValue.d.ts +5 -4
  53. package/lib/DefaultStyleHelper_combined.d.ts +82 -65
  54. package/lib/DomTextMetricsProvider.d.ts +1 -1
  55. package/lib/JapaneseCalendar.d.ts +1 -1
  56. package/lib/WorkbookLoadManagerExcel2007_combined.d.ts +5 -5
  57. package/lib/WorkbookSaveManagerExcel2003_combined.d.ts +3 -3
  58. 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";
@@ -4157,7 +4157,7 @@ export let Biff8RecordStream = /*@__PURE__*/ (() => {
4157
4157
  m = a._a9;
4158
4158
  }
4159
4159
  if (d == false) {
4160
- l = nullableEquals(a._c7, true);
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._c6, true);
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._write12(t);
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._write12(f);
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._write12(0);
4459
- this._write12(0);
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 = true;
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._dg);
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._c5, true);
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._write11(d);
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._write12(k);
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._write12(j);
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._write11(g);
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._write12(0);
5390
- this._write12(r);
5391
- this._write12(0);
5392
- this._write12(s);
5393
- this._write12(0);
5394
- this._write12(t);
5395
- this._write12(0);
5396
- this._write12(0);
5397
- this._write12(0);
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._write12(0);
5600
+ this._write13(0);
5595
5601
  }
5596
5602
  else {
5597
5603
  let k = j._l();
5598
- this._write12(k.length);
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._write12(0);
5646
- this._write12(0);
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._write12(a.e);
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._write12(b);
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._write11(a.d);
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._write11(i);
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._write12(e);
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._write12(this.o.length);
7429
- a._cl._write12(0);
7430
- a._cl._write12(0);
7431
- a._cl._write12(this.p.g);
7432
- a._cl._write12(this.p.f);
7433
- a._cl._write12(ExcelUtils.dp(Workbook._ep(a._b, this.p.g, false)));
7434
- a._cl._write12(ExcelUtils.dp(Workbook._ep(a._b, this.p.f, true)));
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._write12(this.n.length);
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._write12(this.o.length);
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);
@@ -10582,7 +10588,7 @@ export let BLANKRecord = /*@__PURE__*/ (() => {
10582
10588
  };
10583
10589
  }
10584
10590
  p(a, b) {
10585
- a._cl._write13(b);
10591
+ a._cl._write11(b);
10586
10592
  }
10587
10593
  get_d() {
10588
10594
  return 513;
@@ -10778,7 +10784,7 @@ export let BOOLERRRecord = /*@__PURE__*/ (() => {
10778
10784
  }
10779
10785
  else {
10780
10786
  }
10781
- a._cl._write13(b);
10787
+ a._cl._write11(b);
10782
10788
  }
10783
10789
  get_d() {
10784
10790
  return 517;
@@ -11480,10 +11486,10 @@ export let DVALRecord = /*@__PURE__*/ (() => {
11480
11486
  return;
11481
11487
  }
11482
11488
  a._cl._write17(0);
11483
- a._cl._write12(0);
11484
- a._cl._write12(0);
11485
- a._cl._write12(-1);
11486
- a._cl._write12(b._dataValidationRules$i.count);
11489
+ a._cl._write13(0);
11490
+ a._cl._write13(0);
11491
+ a._cl._write13(-1);
11492
+ a._cl._write13(b._dataValidationRules$i.count);
11487
11493
  }
11488
11494
  get_d() {
11489
11495
  return 434;
@@ -11657,7 +11663,7 @@ export let DVRecord = /*@__PURE__*/ (() => {
11657
11663
  let q = a._c5(e, false, false, false);
11658
11664
  let r = a._cl.position;
11659
11665
  a._cl.position = p;
11660
- a._cl._write12(q);
11666
+ a._cl._write13(q);
11661
11667
  a._cl.position = r;
11662
11668
  }
11663
11669
  let s = a._cl.position;
@@ -11668,7 +11674,7 @@ export let DVRecord = /*@__PURE__*/ (() => {
11668
11674
  let u = a._c5(t, false, false, false);
11669
11675
  let v = a._cl.position;
11670
11676
  a._cl.position = s;
11671
- a._cl._write12(u);
11677
+ a._cl._write13(u);
11672
11678
  a._cl.position = v;
11673
11679
  }
11674
11680
  let w = a._cl._write1(c, false);
@@ -11970,8 +11976,8 @@ export let EXTERNSHEETRecord = /*@__PURE__*/ (() => {
11970
11976
  for (let d of fromEnum(b)) {
11971
11977
  let e = c.indexOf(d.e);
11972
11978
  a._cl._write17(e);
11973
- a._cl._write11(d.l);
11974
- a._cl._write11(d.m);
11979
+ a._cl._write12(d.l);
11980
+ a._cl._write12(d.m);
11975
11981
  }
11976
11982
  }
11977
11983
  get_d() {
@@ -12544,7 +12550,7 @@ export let FORMULARecord = /*@__PURE__*/ (() => {
12544
12550
  }
12545
12551
  b.write(BitConverter.h(k), 0, 2);
12546
12552
  b.write(BitConverter.i(intSToU(0)), 0, 4);
12547
- a._cl._write13(b);
12553
+ a._cl._write11(b);
12548
12554
  a._c5(d, true, false);
12549
12555
  if (g && h.rowIndex == c.b.index && h._ab == e.r) {
12550
12556
  a._ds(1212);
@@ -13279,7 +13285,7 @@ export let LABELRecord = /*@__PURE__*/ (() => {
13279
13285
  };
13280
13286
  }
13281
13287
  p(a, b) {
13282
- a._cl._write13(b);
13288
+ a._cl._write11(b);
13283
13289
  }
13284
13290
  get_d() {
13285
13291
  return 516;
@@ -13322,7 +13328,7 @@ export let LABELSSTRecord = /*@__PURE__*/ (() => {
13322
13328
  else {
13323
13329
  b.write(BitConverter.e(0), 0, 4);
13324
13330
  }
13325
- a._cl._write13(b);
13331
+ a._cl._write11(b);
13326
13332
  }
13327
13333
  get_d() {
13328
13334
  return 253;
@@ -13950,7 +13956,7 @@ export let NUMBERRecord = /*@__PURE__*/ (() => {
13950
13956
  }
13951
13957
  p(a, b) {
13952
13958
  b.write(BitConverter.c(Convert.toDouble4(a._cm.c, a._b._e6)), 0, 8);
13953
- a._cl._write13(b);
13959
+ a._cl._write11(b);
13954
13960
  }
13955
13961
  get_d() {
13956
13962
  return 515;
@@ -14589,7 +14595,7 @@ export let RKRecord = /*@__PURE__*/ (() => {
14589
14595
  if (((() => { let d = ExcelUtils.b0(Convert.toDouble4(a._cm.c, a._b._e6), c); c = d.p1; return d.ret; })()) == false) {
14590
14596
  }
14591
14597
  b.write(BitConverter.i(c), 0, 4);
14592
- a._cl._write13(b);
14598
+ a._cl._write11(b);
14593
14599
  }
14594
14600
  get_d() {
14595
14601
  return 638;
@@ -14686,7 +14692,7 @@ export let ROWRecord = /*@__PURE__*/ (() => {
14686
14692
  f = u32BitwiseOr(f, 536870912);
14687
14693
  }
14688
14694
  d.write(BitConverter.i(f), 0, 4);
14689
- a._cl._write13(d);
14695
+ a._cl._write11(d);
14690
14696
  }
14691
14697
  get_d() {
14692
14698
  return 520;
@@ -14724,7 +14730,7 @@ export let RSTRINGRecord = /*@__PURE__*/ (() => {
14724
14730
  };
14725
14731
  }
14726
14732
  p(a, b) {
14727
- a._cl._write13(b);
14733
+ a._cl._write11(b);
14728
14734
  }
14729
14735
  get_d() {
14730
14736
  return 214;
@@ -15035,7 +15041,7 @@ export let SHEETEXTRecord = /*@__PURE__*/ (() => {
15035
15041
  a._cl._write18(40);
15036
15042
  let c = b.displayOptions.tabColorInfo;
15037
15043
  let d = c._y(a._b, 4);
15038
- a._cl._write12(d);
15044
+ a._cl._write13(d);
15039
15045
  let e = 0;
15040
15046
  let f = ExcelUtils.e4(e, d, 0, 6);
15041
15047
  e = f.p0;
@@ -15490,7 +15496,7 @@ export let STYLERecord = /*@__PURE__*/ (() => {
15490
15496
  i.style = d;
15491
15497
  let j = i.formatOptions;
15492
15498
  if (ExcelUtils.by(j, 2) == false) {
15493
- if (i._a4 != g._a4 || i._ct != g._ct || i._cw != g._cw || nullableNotEquals(i._c6, g._c6) || i._a9 != g._a9 || nullableNotEquals(i._c7, g._c7)) {
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)) {
15494
15500
  j |= 2;
15495
15501
  }
15496
15502
  }
@@ -15505,23 +15511,23 @@ export let STYLERecord = /*@__PURE__*/ (() => {
15505
15511
  }
15506
15512
  }
15507
15513
  if (ExcelUtils.by(j, 4) == false) {
15508
- if (nullableNotEquals(i._c2, g._c2) || WorkbookColorInfo.l_op_Inequality(i._bh, g._bh) || i._cq != g._cq || nullableNotEquals(i._c3, g._c3) || i._df != g._df || nullableNotEquals(i._c4, g._c4) || i._a0 != g._a0 || i._a1 != g._a1) {
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) {
15509
15515
  j |= 4;
15510
15516
  }
15511
15517
  }
15512
15518
  if (ExcelUtils.by(j, 1) == false) {
15513
- if (i._dg != g._dg) {
15519
+ if (i._di != g._di) {
15514
15520
  j |= 1;
15515
15521
  }
15516
15522
  }
15517
15523
  if (ExcelUtils.by(j, 32) == false) {
15518
- if (nullableNotEquals(i._c5, g._c5)) {
15524
+ if (nullableNotEquals(i._c7, g._c7) || nullableNotEquals(i._c6, g._c6)) {
15519
15525
  j |= 32;
15520
15526
  }
15521
15527
  }
15522
15528
  i.formatOptions = j;
15523
- i._dh(j, g);
15524
- i._dr(63 & ~j);
15529
+ i._dj(j, g);
15530
+ i._dt(63 & ~j);
15525
15531
  }
15526
15532
  }
15527
15533
  }
@@ -16796,9 +16802,9 @@ export let USERSVIEWBEGINRecord = /*@__PURE__*/ (() => {
16796
16802
  ax = u32BitwiseOr(ax, 536870912);
16797
16803
  }
16798
16804
  a._cl._write2(b._v.toByteArray());
16799
- a._cl._write12((c._am));
16800
- a._cl._write12(d);
16801
- a._cl._write12(e);
16805
+ a._cl._write13((c._am));
16806
+ a._cl._write13(d);
16807
+ a._cl._write13(e);
16802
16808
  a._cl._write18(f);
16803
16809
  a._cl._write18(ax);
16804
16810
  a._cl._write17(ah);
@@ -17018,8 +17024,8 @@ export let WINDOW1Record = /*@__PURE__*/ (() => {
17018
17024
  }
17019
17025
  i(a) {
17020
17026
  let b = a._b.windowOptions;
17021
- a._cl._write11(ExcelUtils.cu(truncate(b._boundsInTwips$i.left)));
17022
- a._cl._write11(ExcelUtils.cu(truncate(b._boundsInTwips$i.top)));
17027
+ a._cl._write12(ExcelUtils.cu(truncate(b._boundsInTwips$i.left)));
17028
+ a._cl._write12(ExcelUtils.cu(truncate(b._boundsInTwips$i.top)));
17023
17029
  a._cl._write17(ExcelUtils.ev(truncate(b._boundsInTwips$i.width)));
17024
17030
  a._cl._write17(ExcelUtils.ev(truncate(b._boundsInTwips$i.height)));
17025
17031
  let c = 0;
@@ -17421,7 +17427,7 @@ export let XFEXTRecord = /*@__PURE__*/ (() => {
17421
17427
  for (let e = 0; e < b.a.length; e++) {
17422
17428
  b.a[e].b(a, c);
17423
17429
  }
17424
- c._dt(d);
17430
+ c._dv(d);
17425
17431
  }
17426
17432
  i(a) {
17427
17433
  let b = a._ca.a(XFRecord_XFContext.$);
@@ -17563,6 +17569,7 @@ export let XFRecord = /*@__PURE__*/ (() => {
17563
17569
  al.leftBorderStyle = v;
17564
17570
  }
17565
17571
  al._locked$i = ExcelUtils.dx(c);
17572
+ al._hidden$i = ExcelUtils.dx(d);
17566
17573
  if (aa != 0) {
17567
17574
  al.rightBorderColorInfo = new WorkbookColorInfo(ao, aa);
17568
17575
  al.rightBorderStyle = w;
@@ -17604,7 +17611,7 @@ export let XFRecord = /*@__PURE__*/ (() => {
17604
17611
  al.formatOptions = ap;
17605
17612
  }
17606
17613
  else {
17607
- al._dt(ap);
17614
+ al._dv(ap);
17608
17615
  }
17609
17616
  let aq = a._b3.count;
17610
17617
  a._b3.add(al);
@@ -17637,54 +17644,55 @@ export let XFRecord = /*@__PURE__*/ (() => {
17637
17644
  g = 4095;
17638
17645
  }
17639
17646
  let h = 0;
17640
- let i = ExcelUtils.gc(h, c._c5, 0);
17647
+ let i = ExcelUtils.gc(h, c._c7, 0);
17641
17648
  h = i.p0;
17642
- let j = ExcelUtils.gb(h, c._b1 == 1, 2);
17649
+ let j = ExcelUtils.gc(h, c._c6, 1);
17643
17650
  h = j.p0;
17644
- let k = ExcelUtils.e3(h, g, 4, 15);
17651
+ let k = ExcelUtils.gb(h, c._b1 == 1, 2);
17645
17652
  h = k.p0;
17653
+ let l = ExcelUtils.e3(h, g, 4, 15);
17654
+ h = l.p0;
17646
17655
  a._cl._write17(h);
17647
- let l = 0;
17648
- let m = ExcelUtils.e2(l, c._a4, 0, 2);
17649
- l = m.p0;
17650
- let n = ExcelUtils.ga(l, c._c7, 3);
17651
- l = n.p0;
17652
- let o = ExcelUtils.e2(l, c._a9, 4, 6);
17653
- l = o.p0;
17654
- let p = ExcelUtils.f9(l, c._b6, 7);
17655
- l = p.p0;
17656
- a._cl._write9(l);
17657
- let q = c._cw % 256;
17658
- if (q < 0) {
17659
- q += 256;
17660
- }
17661
- a._cl._write9(q);
17662
- let r = (c._b1 != 1);
17663
- let s = ExcelUtils.by(c.formatOptions, 1) == r;
17664
- let t = ExcelUtils.by(c.formatOptions, 4) == r;
17665
- let u = ExcelUtils.by(c.formatOptions, 2) == r;
17666
- let v = ExcelUtils.by(c.formatOptions, 8) == r;
17667
- let w = ExcelUtils.by(c.formatOptions, 16) == r;
17668
- let x = ExcelUtils.by(c.formatOptions, 32) == r;
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;
17669
17678
  h = 0;
17670
- let y = ExcelUtils.e3(h, Math.min(15, c._ct), 0, 3);
17671
- h = y.p0;
17672
- let z = ExcelUtils.gc(h, c._c6, 4);
17679
+ let z = ExcelUtils.e3(h, Math.min(15, c._ct), 0, 3);
17673
17680
  h = z.p0;
17674
- let aa = ExcelUtils.gb(h, s, 10);
17681
+ let aa = ExcelUtils.gc(h, c._c8, 4);
17675
17682
  h = aa.p0;
17676
- let ab = ExcelUtils.gb(h, t, 11);
17683
+ let ab = ExcelUtils.gb(h, t, 10);
17677
17684
  h = ab.p0;
17678
- let ac = ExcelUtils.gb(h, u, 12);
17685
+ let ac = ExcelUtils.gb(h, u, 11);
17679
17686
  h = ac.p0;
17680
- let ad = ExcelUtils.gb(h, v, 13);
17687
+ let ad = ExcelUtils.gb(h, v, 12);
17681
17688
  h = ad.p0;
17682
- let ae = ExcelUtils.gb(h, w, 14);
17689
+ let ae = ExcelUtils.gb(h, w, 13);
17683
17690
  h = ae.p0;
17684
- let af = ExcelUtils.gb(h, x, 15);
17691
+ let af = ExcelUtils.gb(h, x, 14);
17685
17692
  h = af.p0;
17693
+ let ag = ExcelUtils.gb(h, y, 15);
17694
+ h = ag.p0;
17686
17695
  a._cl._write17(h);
17687
- let ag;
17688
17696
  let ah;
17689
17697
  let ai;
17690
17698
  let aj;
@@ -17694,89 +17702,90 @@ export let XFRecord = /*@__PURE__*/ (() => {
17694
17702
  let an;
17695
17703
  let ao;
17696
17704
  let ap;
17705
+ let aq;
17697
17706
  if (c.bottomBorderStyle != -1 || WorkbookColorInfo.l_op_Inequality(c.bottomBorderColorInfo, null)) {
17698
- aj = c._al;
17699
- ao = c._bf._y(d, 0);
17700
- }
17701
- else {
17702
- aj = 0;
17703
- ao = 0;
17704
- }
17705
- if (c.diagonalBorderStyle != -1 || c.diagonalBorders != 0 || WorkbookColorInfo.l_op_Inequality(c.diagonalBorderColorInfo, null)) {
17706
- ak = c._am;
17707
- ap = c._bg._y(d, 0);
17707
+ ak = c._al;
17708
+ ap = c._bf._y(d, 0);
17708
17709
  }
17709
17710
  else {
17710
17711
  ak = 0;
17711
17712
  ap = 0;
17712
17713
  }
17713
- if (c.leftBorderStyle != -1 || WorkbookColorInfo.l_op_Inequality(c.leftBorderColorInfo, null)) {
17714
- ag = c._an;
17715
- al = c._bk._y(d, 0);
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);
17716
17717
  }
17717
17718
  else {
17718
- ag = 0;
17719
17719
  al = 0;
17720
+ aq = 0;
17720
17721
  }
17721
- if (c.rightBorderStyle != -1 || WorkbookColorInfo.l_op_Inequality(c.rightBorderColorInfo, null)) {
17722
- ah = c._ao;
17723
- am = c._bl._y(d, 0);
17722
+ if (c.leftBorderStyle != -1 || WorkbookColorInfo.l_op_Inequality(c.leftBorderColorInfo, null)) {
17723
+ ah = c._an;
17724
+ am = c._bk._y(d, 0);
17724
17725
  }
17725
17726
  else {
17726
17727
  ah = 0;
17727
17728
  am = 0;
17728
17729
  }
17729
- if (c.topBorderStyle != -1 || WorkbookColorInfo.l_op_Inequality(c.topBorderColorInfo, null)) {
17730
- ai = c._ap;
17731
- an = c._bm._y(d, 0);
17730
+ if (c.rightBorderStyle != -1 || WorkbookColorInfo.l_op_Inequality(c.rightBorderColorInfo, null)) {
17731
+ ai = c._ao;
17732
+ an = c._bl._y(d, 0);
17732
17733
  }
17733
17734
  else {
17734
17735
  ai = 0;
17735
17736
  an = 0;
17736
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
+ }
17737
17746
  h = 0;
17738
- let aq = ExcelUtils.e3(h, ag, 0, 3);
17739
- h = aq.p0;
17740
- let ar = ExcelUtils.e3(h, ah, 4, 7);
17747
+ let ar = ExcelUtils.e3(h, ah, 0, 3);
17741
17748
  h = ar.p0;
17742
- let as = ExcelUtils.e3(h, ai, 8, 11);
17749
+ let as = ExcelUtils.e3(h, ai, 4, 7);
17743
17750
  h = as.p0;
17744
- let at = ExcelUtils.e3(h, aj, 12, 15);
17751
+ let at = ExcelUtils.e3(h, aj, 8, 11);
17745
17752
  h = at.p0;
17753
+ let au = ExcelUtils.e3(h, ak, 12, 15);
17754
+ h = au.p0;
17746
17755
  a._cl._write17(h);
17747
- let au = c._aw >> 1;
17756
+ let av = c._aw >> 1;
17748
17757
  h = 0;
17749
- let av = ExcelUtils.e3(h, al, 0, 6);
17750
- h = av.p0;
17751
- let aw = ExcelUtils.e3(h, am, 7, 13);
17758
+ let aw = ExcelUtils.e3(h, am, 0, 6);
17752
17759
  h = aw.p0;
17753
- let ax = ExcelUtils.e3(h, au, 14, 15);
17760
+ let ax = ExcelUtils.e3(h, an, 7, 13);
17754
17761
  h = ax.p0;
17762
+ let ay = ExcelUtils.e3(h, av, 14, 15);
17763
+ h = ay.p0;
17755
17764
  a._cl._write17(h);
17756
- let ay = c._ar;
17757
- let az = c._ay(ay);
17758
- let a0 = b.b.count != 0;
17759
- let a1 = 0;
17760
- let a2 = ExcelUtils.e4(a1, an, 0, 6);
17761
- a1 = a2.p0;
17762
- let a3 = ExcelUtils.e4(a1, ao, 7, 13);
17763
- a1 = a3.p0;
17764
- let a4 = ExcelUtils.e4(a1, ap, 14, 20);
17765
- a1 = a4.p0;
17766
- let a5 = ExcelUtils.e4(a1, ak, 21, 24);
17767
- a1 = a5.p0;
17768
- let a6 = ExcelUtils.gd(a1, a0, 25);
17769
- a1 = a6.p0;
17770
- let a7 = ExcelUtils.e4(a1, az, 26, 31);
17771
- a1 = a7.p0;
17772
- a._cl._write18(a1);
17773
- let a8 = c._bi(ay, false, true)._y(d, 1);
17774
- let a9 = c._bi(ay, true, true)._y(d, 1);
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);
17775
17784
  h = 0;
17776
- let ba = ExcelUtils.e3(h, a8, 0, 6);
17777
- h = ba.p0;
17778
- let bb = ExcelUtils.e3(h, a9, 7, 13);
17785
+ let bb = ExcelUtils.e3(h, a9, 0, 6);
17779
17786
  h = bb.p0;
17787
+ let bc = ExcelUtils.e3(h, ba, 7, 13);
17788
+ h = bc.p0;
17780
17789
  a._cl._write17(h);
17781
17790
  }
17782
17791
  get_d() {