igniteui-webcomponents-excel 4.8.1 → 5.0.0-beta.1
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 +569 -545
- package/bundles/igniteui-webcomponents-excel.umd.min.js +1 -1
- package/esm2015/lib/DefaultStyleHelper_combined.js +181 -168
- package/esm2015/lib/WorkbookLoadManagerExcel2007_ShapeAnchorApplicator.js +7 -7
- package/esm2015/lib/WorkbookLoadManagerExcel2007_combined.js +24 -18
- package/esm2015/lib/WorkbookSaveManagerExcel2003_combined.js +355 -351
- package/esm5/lib/DefaultStyleHelper_combined.js +183 -169
- package/esm5/lib/WorkbookLoadManagerExcel2007_ShapeAnchorApplicator.js +7 -7
- package/esm5/lib/WorkbookLoadManagerExcel2007_combined.js +27 -21
- package/esm5/lib/WorkbookSaveManagerExcel2003_combined.js +356 -352
- package/fesm2015/igniteui-webcomponents-excel.js +563 -540
- package/fesm5/igniteui-webcomponents-excel.js +569 -545
- package/lib/DefaultStyleHelper_combined.d.ts +33 -29
- package/lib/WorkbookSaveManagerExcel2003_combined.d.ts +26 -25
- package/package.json +2 -2
|
@@ -24,11 +24,13 @@ import { WorkbookStyleCollection } from "./WorkbookStyleCollection";
|
|
|
24
24
|
import { WorkbookFontData } from "./WorkbookFontData";
|
|
25
25
|
import { WorkbookBuiltInStyle } from "./WorkbookBuiltInStyle";
|
|
26
26
|
import { BuiltInStyleType_$type } from "./BuiltInStyleType";
|
|
27
|
+
import { WorksheetReferenceCollection } from "./WorksheetReferenceCollection";
|
|
28
|
+
import { Enumerable } from "igniteui-webcomponents-core";
|
|
27
29
|
import { IWorksheetImage_$type } from "./IWorksheetImage";
|
|
28
30
|
import { ExcelImage } from "./ExcelImage";
|
|
29
31
|
import { WorksheetShape } from "./WorksheetShape";
|
|
30
32
|
import { WorksheetChart } from "./WorksheetChart";
|
|
31
|
-
import {
|
|
33
|
+
import { DataValidationRule } from "./DataValidationRule";
|
|
32
34
|
import { WorkbookFormatCollection } from "./WorkbookFormatCollection";
|
|
33
35
|
import { Worksheet } from "./Worksheet";
|
|
34
36
|
import { CFSerializer } from "./CFSerializer";
|
|
@@ -36,7 +38,7 @@ import { WorkItemExtensions } from "./WorkItemExtensions";
|
|
|
36
38
|
import { Formula } from "./Formula";
|
|
37
39
|
import { WorksheetRow } from "./WorksheetRow";
|
|
38
40
|
import { BiffRecordStream } from "./BiffRecordStream";
|
|
39
|
-
import {
|
|
41
|
+
import { WorksheetHyperlink } from "./WorksheetHyperlink";
|
|
40
42
|
import { StructuredStorageManager } from "./StructuredStorageManager";
|
|
41
43
|
import { Async } from "./Async";
|
|
42
44
|
import { FormulaContext } from "./FormulaContext";
|
|
@@ -49,13 +51,11 @@ import { TokenReferenceResolver } from "./TokenReferenceResolver";
|
|
|
49
51
|
import { FormulaTokenVisitor } from "./FormulaTokenVisitor";
|
|
50
52
|
import { BIFF8RecordType_$type } from "./BIFF8RecordType";
|
|
51
53
|
import { BiffRecordBase$3 } from "./BiffRecordBase$3";
|
|
52
|
-
import { WorksheetHyperlink } from "./WorksheetHyperlink";
|
|
53
54
|
import { BinaryReader } from "igniteui-webcomponents-core";
|
|
54
55
|
import { Sheet } from "./Sheet";
|
|
55
56
|
import { PrintOptions } from "./PrintOptions";
|
|
56
57
|
import { WorksheetTable } from "./WorksheetTable";
|
|
57
58
|
import { WorksheetTableColumn } from "./WorksheetTableColumn";
|
|
58
|
-
import { Enumerable } from "igniteui-webcomponents-core";
|
|
59
59
|
import { MultipleCellBlankInfo } from "./MultipleCellBlankInfo";
|
|
60
60
|
import { MultipleCellRKInfo } from "./MultipleCellRKInfo";
|
|
61
61
|
import { ArrayInteriorFormula } from "./ArrayInteriorFormula";
|
|
@@ -318,24 +318,26 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
318
318
|
__extends(WorkbookSaveManagerExcel2003, _super);
|
|
319
319
|
function WorkbookSaveManagerExcel2003(a, b, c, d) {
|
|
320
320
|
var _this = _super.call(this, a, c, d) || this;
|
|
321
|
-
_this._cv = null;
|
|
322
|
-
_this._cn = new WorkbookSerializationDataExcel2003();
|
|
323
321
|
_this._cw = null;
|
|
324
|
-
_this.
|
|
325
|
-
_this._ct = null;
|
|
326
|
-
_this._cu = null;
|
|
322
|
+
_this._cn = new WorkbookSerializationDataExcel2003();
|
|
327
323
|
_this._cx = null;
|
|
324
|
+
_this._c3 = 0;
|
|
325
|
+
_this._cu = null;
|
|
326
|
+
_this._cv = null;
|
|
327
|
+
_this._cy = null;
|
|
328
|
+
_this._ct = null;
|
|
328
329
|
_this._cs = null;
|
|
329
330
|
_this._cr = null;
|
|
330
331
|
_this._cm = null;
|
|
331
332
|
_this._cj = null;
|
|
332
333
|
_this._cb = null;
|
|
333
334
|
_this._cn = new WorkbookSerializationDataExcel2003(1, b);
|
|
334
|
-
_this.
|
|
335
|
-
_this.
|
|
336
|
-
_this.
|
|
337
|
-
_this.
|
|
338
|
-
_this.
|
|
335
|
+
_this._cx = new List$1(WorkbookSaveManagerExcel2003_ExtSstItem.$, 0);
|
|
336
|
+
_this._cu = new Dictionary$2(Base.$, SingleTargetFormula.$, 0);
|
|
337
|
+
_this._cv = new Dictionary$2(Base.$, WorksheetCell.$, 0);
|
|
338
|
+
_this._cy = new List$1(WorkbookStyle.$, 0);
|
|
339
|
+
_this._ct = new Dictionary$2(Number_$type, Number_$type, 0);
|
|
340
|
+
_this._cr = new Dictionary$2(WorksheetCellFormatData.$, Number_$type, 0);
|
|
339
341
|
return _this;
|
|
340
342
|
}
|
|
341
343
|
WorkbookSaveManagerExcel2003.staticInit = function () {
|
|
@@ -347,7 +349,7 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
347
349
|
this._cl.dispose();
|
|
348
350
|
this._cl = null;
|
|
349
351
|
}
|
|
350
|
-
this.
|
|
352
|
+
this._c8.dispose();
|
|
351
353
|
}
|
|
352
354
|
};
|
|
353
355
|
WorkbookSaveManagerExcel2003.prototype.get__r = function () {
|
|
@@ -368,12 +370,7 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
368
370
|
if (a == c) {
|
|
369
371
|
return 15;
|
|
370
372
|
}
|
|
371
|
-
|
|
372
|
-
var e = b._g(a);
|
|
373
|
-
if (e > d) {
|
|
374
|
-
e--;
|
|
375
|
-
}
|
|
376
|
-
return (this._c2 + e);
|
|
373
|
+
return this._cr.item(a);
|
|
377
374
|
};
|
|
378
375
|
WorkbookSaveManagerExcel2003.prototype._a9 = function (a) {
|
|
379
376
|
var b;
|
|
@@ -392,27 +389,27 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
392
389
|
d.add(d._inner[0]);
|
|
393
390
|
d.add(d._inner[0]);
|
|
394
391
|
d.add(null);
|
|
395
|
-
this.
|
|
396
|
-
this.
|
|
397
|
-
this.
|
|
398
|
-
this.
|
|
399
|
-
this.
|
|
400
|
-
this.
|
|
401
|
-
this.
|
|
402
|
-
this.
|
|
403
|
-
this.
|
|
404
|
-
this.
|
|
405
|
-
this.
|
|
406
|
-
this.
|
|
407
|
-
this.
|
|
408
|
-
this.
|
|
409
|
-
this.
|
|
410
|
-
this.
|
|
411
|
-
this.
|
|
412
|
-
this.
|
|
413
|
-
this.
|
|
414
|
-
this.
|
|
415
|
-
this.
|
|
392
|
+
this._da(b);
|
|
393
|
+
this._da(a._j(1, 0));
|
|
394
|
+
this._da(a._j(2, 0));
|
|
395
|
+
this._da(a._j(1, 1));
|
|
396
|
+
this._da(a._j(2, 1));
|
|
397
|
+
this._da(a._j(1, 2));
|
|
398
|
+
this._da(a._j(2, 2));
|
|
399
|
+
this._da(a._j(1, 3));
|
|
400
|
+
this._da(a._j(2, 3));
|
|
401
|
+
this._da(a._j(1, 4));
|
|
402
|
+
this._da(a._j(2, 4));
|
|
403
|
+
this._da(a._j(1, 5));
|
|
404
|
+
this._da(a._j(2, 5));
|
|
405
|
+
this._da(a._j(1, 6));
|
|
406
|
+
this._da(a._j(2, 6));
|
|
407
|
+
this._c9(this._b._ca._p);
|
|
408
|
+
this._da(a._i(3));
|
|
409
|
+
this._da(a._i(6));
|
|
410
|
+
this._da(a._i(4));
|
|
411
|
+
this._da(a._i(7));
|
|
412
|
+
this._da(a._i(5));
|
|
416
413
|
try {
|
|
417
414
|
for (var _2 = __values(fromEnum(this._b._styles$i)), _3 = _2.next(); !_3.done; _3 = _2.next()) {
|
|
418
415
|
var e = _3.value;
|
|
@@ -430,12 +427,12 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
430
427
|
case 7:
|
|
431
428
|
case 0:
|
|
432
429
|
case 5:
|
|
433
|
-
this.
|
|
430
|
+
this._c2.add(e);
|
|
434
431
|
continue;
|
|
435
432
|
}
|
|
436
433
|
}
|
|
437
|
-
this.
|
|
438
|
-
this.
|
|
434
|
+
this._c2.add(e);
|
|
435
|
+
this._da(e);
|
|
439
436
|
}
|
|
440
437
|
}
|
|
441
438
|
catch (e_1_1) {
|
|
@@ -451,15 +448,18 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
451
448
|
throw e_1.error;
|
|
452
449
|
}
|
|
453
450
|
}
|
|
454
|
-
this.
|
|
451
|
+
this._c3 = this._c0.count;
|
|
455
452
|
var g = this._b._ca;
|
|
453
|
+
var h = Enumerable.z(WorksheetCellFormatData.$, Enumerable.u(WorksheetCellFormatData.$, g, function (i) { return i != null; }));
|
|
454
|
+
h.aa(function (i, j) { return Base.compareSimple(i._dj, j._dj); });
|
|
456
455
|
try {
|
|
457
|
-
for (var _4 = __values(fromEnum(
|
|
458
|
-
var
|
|
459
|
-
if (
|
|
456
|
+
for (var _4 = __values(fromEnum(h)), _5 = _4.next(); !_5.done; _5 = _4.next()) {
|
|
457
|
+
var i = _5.value;
|
|
458
|
+
if (i == g._p) {
|
|
460
459
|
continue;
|
|
461
460
|
}
|
|
462
|
-
this.
|
|
461
|
+
this._cr.item(i, this._c0.count);
|
|
462
|
+
this._c9(i);
|
|
463
463
|
}
|
|
464
464
|
}
|
|
465
465
|
catch (e_2_1) {
|
|
@@ -483,12 +483,12 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
483
483
|
return;
|
|
484
484
|
}
|
|
485
485
|
var c = new WorkbookSerializationDataExcel2003_ImageHolder(b, 1);
|
|
486
|
-
var d = this.
|
|
486
|
+
var d = this._c1.indexOf(c);
|
|
487
487
|
if (d < 0) {
|
|
488
|
-
this.
|
|
488
|
+
this._c1.add(c);
|
|
489
489
|
}
|
|
490
490
|
else {
|
|
491
|
-
c = this.
|
|
491
|
+
c = this._c1._inner[d];
|
|
492
492
|
c.d++;
|
|
493
493
|
}
|
|
494
494
|
};
|
|
@@ -543,7 +543,7 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
543
543
|
while (d.c(c)) {
|
|
544
544
|
c++;
|
|
545
545
|
}
|
|
546
|
-
this.
|
|
546
|
+
this._ct.item(e, c);
|
|
547
547
|
}
|
|
548
548
|
}
|
|
549
549
|
}
|
|
@@ -566,10 +566,10 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
566
566
|
if (f._conditionalFormats$i.count == 0) {
|
|
567
567
|
continue;
|
|
568
568
|
}
|
|
569
|
-
if (this.
|
|
570
|
-
this.
|
|
569
|
+
if (this._cs == null) {
|
|
570
|
+
this._cs = new Dictionary$2(Worksheet.$, CFSerializer.$, 0);
|
|
571
571
|
}
|
|
572
|
-
this.
|
|
572
|
+
this._cs.addItem(f, CFSerializer.a(f));
|
|
573
573
|
}
|
|
574
574
|
}
|
|
575
575
|
catch (e_4_1) {
|
|
@@ -587,42 +587,42 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
587
587
|
}
|
|
588
588
|
return WorkItemExtensions.a(WorkItemExtensions.c(this._cg(), function () {
|
|
589
589
|
return Async.d(Sheet.$, _this._a1, function (g) {
|
|
590
|
-
a.add(_this.
|
|
590
|
+
a.add(_this._c8.position);
|
|
591
591
|
return _this._cd(g);
|
|
592
592
|
});
|
|
593
|
-
}), function () { return _this.
|
|
593
|
+
}), function () { return _this._df(a); });
|
|
594
594
|
};
|
|
595
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
595
|
+
WorkbookSaveManagerExcel2003.prototype._c4 = function (a) {
|
|
596
596
|
var _this = this;
|
|
597
597
|
var b;
|
|
598
|
-
if (((function () { var c = _this.
|
|
598
|
+
if (((function () { var c = _this._ct.tryGetValue(a, b); b = c.p1; return c.ret; })())) {
|
|
599
599
|
return b;
|
|
600
600
|
}
|
|
601
601
|
return a;
|
|
602
602
|
};
|
|
603
603
|
WorkbookSaveManagerExcel2003.prototype._co = function (a) {
|
|
604
|
-
return this.
|
|
604
|
+
return this._cu.item(a._bg);
|
|
605
605
|
};
|
|
606
606
|
WorkbookSaveManagerExcel2003.prototype._cp = function (a, b, c) {
|
|
607
607
|
var _this = this;
|
|
608
608
|
var d = c._bg;
|
|
609
609
|
var e;
|
|
610
|
-
if (((function () { var f = _this.
|
|
611
|
-
this.
|
|
612
|
-
this.
|
|
610
|
+
if (((function () { var f = _this._cv.tryGetValue(d, e); e = f.p1; return f.ret; })()) == false) {
|
|
611
|
+
this._cv.item(d, e = a._cells$i.item(b));
|
|
612
|
+
this._cu.item(d, Formula._u(c, e));
|
|
613
613
|
}
|
|
614
614
|
return e;
|
|
615
615
|
};
|
|
616
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
616
|
+
WorkbookSaveManagerExcel2003.prototype._dc = function (a) {
|
|
617
617
|
this._cl = a._parentStream;
|
|
618
618
|
};
|
|
619
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
619
|
+
WorkbookSaveManagerExcel2003.prototype._dd = function (a) {
|
|
620
620
|
if (this._cl != null) {
|
|
621
621
|
this._cl._addSubStream(a);
|
|
622
622
|
}
|
|
623
623
|
this._cl = a;
|
|
624
624
|
};
|
|
625
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
625
|
+
WorkbookSaveManagerExcel2003.prototype._de = function (a) {
|
|
626
626
|
a._am(WorkbookSaveManagerExcel2003.$, Boolean_$type, WorkbookSaveManagerExcel2003_PopuplateShapeDrawingPropertiesVisitor.d, this);
|
|
627
627
|
};
|
|
628
628
|
WorkbookSaveManagerExcel2003._cc = function (a, b, c) {
|
|
@@ -662,7 +662,7 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
662
662
|
});
|
|
663
663
|
});
|
|
664
664
|
};
|
|
665
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
665
|
+
WorkbookSaveManagerExcel2003.prototype._c6 = function (a, b, c, d) {
|
|
666
666
|
if (d === void 0) {
|
|
667
667
|
d = true;
|
|
668
668
|
}
|
|
@@ -712,7 +712,7 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
712
712
|
v.h();
|
|
713
713
|
return f;
|
|
714
714
|
};
|
|
715
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
715
|
+
WorkbookSaveManagerExcel2003.prototype._dt = function (a) {
|
|
716
716
|
{
|
|
717
717
|
var b = new Biff8RecordStream(3, this, a);
|
|
718
718
|
try {
|
|
@@ -746,27 +746,27 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
746
746
|
});
|
|
747
747
|
});
|
|
748
748
|
};
|
|
749
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
749
|
+
WorkbookSaveManagerExcel2003.prototype._c9 = function (a) {
|
|
750
750
|
this._bf(a._bp, a);
|
|
751
|
-
this.
|
|
751
|
+
this._c0.add(a);
|
|
752
752
|
};
|
|
753
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
753
|
+
WorkbookSaveManagerExcel2003.prototype._da = function (a) {
|
|
754
754
|
if (a != null) {
|
|
755
|
-
this._av.addItem(a, this.
|
|
756
|
-
this.
|
|
755
|
+
this._av.addItem(a, this._c0.count);
|
|
756
|
+
this._c9(a._i);
|
|
757
757
|
}
|
|
758
758
|
else {
|
|
759
759
|
var b = new WorksheetCellFormatData(this._b, 1);
|
|
760
|
-
this.
|
|
760
|
+
this._c9(b);
|
|
761
761
|
}
|
|
762
762
|
};
|
|
763
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
763
|
+
WorkbookSaveManagerExcel2003.prototype._db = function (a, b, c) {
|
|
764
764
|
var e_6, _0;
|
|
765
|
-
var d = this.
|
|
766
|
-
this.
|
|
767
|
-
var e = new BinaryReader(1, this.
|
|
765
|
+
var d = this._c8.position;
|
|
766
|
+
this._c8.position = a;
|
|
767
|
+
var e = new BinaryReader(1, this._c8);
|
|
768
768
|
{
|
|
769
|
-
var f = new Biff8RecordStream(4, this, this.
|
|
769
|
+
var f = new Biff8RecordStream(4, this, this._c8, e);
|
|
770
770
|
try {
|
|
771
771
|
f.position = 12;
|
|
772
772
|
f._write18(b);
|
|
@@ -797,7 +797,7 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
797
797
|
}
|
|
798
798
|
}
|
|
799
799
|
}
|
|
800
|
-
this.
|
|
800
|
+
this._c8.position = d;
|
|
801
801
|
};
|
|
802
802
|
WorkbookSaveManagerExcel2003.prototype._cd = function (a) {
|
|
803
803
|
if (a.type == 0) {
|
|
@@ -812,85 +812,85 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
812
812
|
this._ca.k(a.displayOptions);
|
|
813
813
|
this._ca.k(a.printOptions);
|
|
814
814
|
this._ca.k(a);
|
|
815
|
-
this.
|
|
816
|
-
var b = this.
|
|
817
|
-
this.
|
|
818
|
-
this.
|
|
819
|
-
this.
|
|
820
|
-
this.
|
|
821
|
-
this.
|
|
822
|
-
this.
|
|
823
|
-
this.
|
|
824
|
-
this.
|
|
825
|
-
this.
|
|
826
|
-
this.
|
|
827
|
-
this.
|
|
828
|
-
this.
|
|
829
|
-
this.
|
|
815
|
+
this._dt(2057);
|
|
816
|
+
var b = this._c8.position;
|
|
817
|
+
this._dt(523);
|
|
818
|
+
this._dt(13);
|
|
819
|
+
this._dt(12);
|
|
820
|
+
this._dt(15);
|
|
821
|
+
this._dt(17);
|
|
822
|
+
this._dt(16);
|
|
823
|
+
this._dt(95);
|
|
824
|
+
this._dt(42);
|
|
825
|
+
this._dt(43);
|
|
826
|
+
this._dt(130);
|
|
827
|
+
this._dt(128);
|
|
828
|
+
this._dt(549);
|
|
829
|
+
this._dt(129);
|
|
830
830
|
if (a.printOptions._cp) {
|
|
831
|
-
this.
|
|
831
|
+
this._dt(27);
|
|
832
832
|
}
|
|
833
833
|
if (a.printOptions._cr) {
|
|
834
|
-
this.
|
|
835
|
-
}
|
|
836
|
-
this.
|
|
837
|
-
this.
|
|
838
|
-
this.
|
|
839
|
-
this.
|
|
840
|
-
this.
|
|
841
|
-
this.
|
|
842
|
-
this.
|
|
843
|
-
this.
|
|
844
|
-
this.
|
|
845
|
-
this.
|
|
834
|
+
this._dt(26);
|
|
835
|
+
}
|
|
836
|
+
this._dt(20);
|
|
837
|
+
this._dt(21);
|
|
838
|
+
this._dt(131);
|
|
839
|
+
this._dt(132);
|
|
840
|
+
this._dt(38);
|
|
841
|
+
this._dt(39);
|
|
842
|
+
this._dt(40);
|
|
843
|
+
this._dt(41);
|
|
844
|
+
this._dt(161);
|
|
845
|
+
this._dt(2204);
|
|
846
846
|
if (a.sheetBackground != null) {
|
|
847
|
-
this.
|
|
847
|
+
this._dt(233);
|
|
848
848
|
}
|
|
849
849
|
if (a.isProtected) {
|
|
850
|
-
this.
|
|
850
|
+
this._dt(18);
|
|
851
851
|
if (a.protection.allowEditScenarios == false) {
|
|
852
|
-
this.
|
|
852
|
+
this._dt(221);
|
|
853
853
|
}
|
|
854
854
|
if (a.protection.allowEditObjects == false) {
|
|
855
|
-
this.
|
|
855
|
+
this._dt(99);
|
|
856
856
|
}
|
|
857
857
|
var c = a.protection._c.h();
|
|
858
858
|
if (c.hasValue && c.value != 0) {
|
|
859
|
-
this.
|
|
859
|
+
this._dt(19);
|
|
860
860
|
}
|
|
861
861
|
}
|
|
862
|
-
var d = this.
|
|
863
|
-
this.
|
|
864
|
-
this.
|
|
865
|
-
this.
|
|
862
|
+
var d = this._c8.position;
|
|
863
|
+
this._dt(85);
|
|
864
|
+
this._dh(a);
|
|
865
|
+
this._dt(512);
|
|
866
866
|
return WorkItemExtensions.e(List$1.$.specialize(Number_$type), this._ci(a), function (e) {
|
|
867
867
|
var e_7, _0, e_8, _1, e_9, _2;
|
|
868
868
|
var f = WorkItemExtensions.m(List$1.$.specialize(Number_$type), e);
|
|
869
|
-
_this.
|
|
869
|
+
_this._db(b, d, f);
|
|
870
870
|
if (_this._aj) {
|
|
871
|
-
_this.
|
|
872
|
-
}
|
|
873
|
-
_this.
|
|
874
|
-
_this.
|
|
875
|
-
_this.
|
|
876
|
-
_this.
|
|
877
|
-
_this.
|
|
878
|
-
_this.
|
|
879
|
-
_this.
|
|
871
|
+
_this._dt(236);
|
|
872
|
+
}
|
|
873
|
+
_this._dx(a);
|
|
874
|
+
_this._dt(574);
|
|
875
|
+
_this._dt(2187);
|
|
876
|
+
_this._ds(a);
|
|
877
|
+
_this._dn(a);
|
|
878
|
+
_this._du(a.displayOptions);
|
|
879
|
+
_this._dj(a);
|
|
880
880
|
if (a._el) {
|
|
881
|
-
_this.
|
|
881
|
+
_this._dt(153);
|
|
882
882
|
}
|
|
883
883
|
if (_this._af(a)) {
|
|
884
|
-
_this.
|
|
884
|
+
_this._dt(229);
|
|
885
885
|
}
|
|
886
886
|
if (a._d8) {
|
|
887
887
|
try {
|
|
888
888
|
for (var _3 = __values(fromEnum(a._hyperlinks$i)), _4 = _3.next(); !_4.done; _4 = _3.next()) {
|
|
889
889
|
var g = _4.value;
|
|
890
890
|
_this._ca.k(g);
|
|
891
|
-
_this.
|
|
891
|
+
_this._dt(440);
|
|
892
892
|
if (g.toolTip != null) {
|
|
893
|
-
_this.
|
|
893
|
+
_this._dt(2048);
|
|
894
894
|
}
|
|
895
895
|
_this._ca.h();
|
|
896
896
|
}
|
|
@@ -910,7 +910,7 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
910
910
|
}
|
|
911
911
|
}
|
|
912
912
|
if (a._d6) {
|
|
913
|
-
_this.
|
|
913
|
+
_this._dt(434);
|
|
914
914
|
try {
|
|
915
915
|
for (var _5 = __values(fromEnum(a._dataValidationRules$i)), _6 = _5.next(); !_6.done; _6 = _5.next()) {
|
|
916
916
|
var h = _6.value;
|
|
@@ -937,7 +937,7 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
937
937
|
_this._ca.k(h.key);
|
|
938
938
|
_this._ca.k(i);
|
|
939
939
|
while (i.count != 0) {
|
|
940
|
-
_this.
|
|
940
|
+
_this._dt(446);
|
|
941
941
|
}
|
|
942
942
|
_this._ca.h();
|
|
943
943
|
_this._ca.h();
|
|
@@ -958,24 +958,24 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
958
958
|
}
|
|
959
959
|
}
|
|
960
960
|
if (_this._b._cp && a._ak != null) {
|
|
961
|
-
_this.
|
|
961
|
+
_this._dt(442);
|
|
962
962
|
}
|
|
963
963
|
if (WorkbookColorInfo.l_op_Inequality(a.displayOptions.tabColorInfo, null)) {
|
|
964
|
-
_this.
|
|
964
|
+
_this._dt(2146);
|
|
965
965
|
}
|
|
966
|
-
if (_this.
|
|
967
|
-
_this.
|
|
966
|
+
if (_this._cs != null && _this._cs.containsKey(a)) {
|
|
967
|
+
_this._di(a);
|
|
968
968
|
}
|
|
969
|
-
_this.
|
|
969
|
+
_this._dt(2151);
|
|
970
970
|
var k = a.protection._allowedEditRanges$i;
|
|
971
971
|
for (var l = k.count - 1; l >= 0; l--) {
|
|
972
972
|
_this._ca.k(k.item(l));
|
|
973
|
-
_this.
|
|
973
|
+
_this._dt(2152);
|
|
974
974
|
_this._ca.h();
|
|
975
975
|
}
|
|
976
|
-
_this.
|
|
977
|
-
_this.
|
|
978
|
-
_this.
|
|
976
|
+
_this._dz(a);
|
|
977
|
+
_this._dy(a.filterSettings, true);
|
|
978
|
+
_this._dt(10);
|
|
979
979
|
_this._ca.h();
|
|
980
980
|
_this._ca.h();
|
|
981
981
|
_this._ca.h();
|
|
@@ -987,15 +987,15 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
987
987
|
}
|
|
988
988
|
return Enumerable.d(WorksheetTableColumn.$, a._columns$i, function (b) { return b.totalFormula != null || b.totalLabel != null; });
|
|
989
989
|
};
|
|
990
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
991
|
-
if (this.
|
|
990
|
+
WorkbookSaveManagerExcel2003.prototype._df = function (a) {
|
|
991
|
+
if (this._cw == null) {
|
|
992
992
|
return;
|
|
993
993
|
}
|
|
994
|
-
var b = new BinaryReader(1, this.
|
|
994
|
+
var b = new BinaryReader(1, this._c8);
|
|
995
995
|
for (var c = 0; c < a.count; c++) {
|
|
996
|
-
this.
|
|
996
|
+
this._c8.position = this._cw._inner[c];
|
|
997
997
|
{
|
|
998
|
-
var d = new Biff8RecordStream(4, this, this.
|
|
998
|
+
var d = new Biff8RecordStream(4, this, this._c8, b);
|
|
999
999
|
try {
|
|
1000
1000
|
d._transform.k();
|
|
1001
1001
|
d._write18(a._inner[c]);
|
|
@@ -1008,17 +1008,17 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1008
1008
|
}
|
|
1009
1009
|
}
|
|
1010
1010
|
}
|
|
1011
|
-
this.
|
|
1011
|
+
this._cw = null;
|
|
1012
1012
|
};
|
|
1013
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
1013
|
+
WorkbookSaveManagerExcel2003.prototype._dg = function () {
|
|
1014
1014
|
var e_10, _0;
|
|
1015
|
-
this.
|
|
1015
|
+
this._cw = new List$1(Number_$type, 0);
|
|
1016
1016
|
try {
|
|
1017
1017
|
for (var _1 = __values(fromEnum(this._a1)), _2 = _1.next(); !_2.done; _2 = _1.next()) {
|
|
1018
1018
|
var a = _2.value;
|
|
1019
|
-
this.
|
|
1019
|
+
this._cw.add(this._c8.position);
|
|
1020
1020
|
this._ca.k(a);
|
|
1021
|
-
this.
|
|
1021
|
+
this._dt(133);
|
|
1022
1022
|
this._ca.h();
|
|
1023
1023
|
}
|
|
1024
1024
|
}
|
|
@@ -1036,7 +1036,7 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1036
1036
|
}
|
|
1037
1037
|
}
|
|
1038
1038
|
};
|
|
1039
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
1039
|
+
WorkbookSaveManagerExcel2003.prototype._c7 = function () {
|
|
1040
1040
|
var a = this._a5(this._cm.b, this._ck);
|
|
1041
1041
|
var b = this._ck.r;
|
|
1042
1042
|
this._cm.c = a;
|
|
@@ -1044,11 +1044,11 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1044
1044
|
var c = MultipleCellBlankInfo.o(this);
|
|
1045
1045
|
if (c != null) {
|
|
1046
1046
|
this._ca.k(c);
|
|
1047
|
-
this.
|
|
1047
|
+
this._dt(190);
|
|
1048
1048
|
this._ca.h();
|
|
1049
1049
|
return c.k;
|
|
1050
1050
|
}
|
|
1051
|
-
this.
|
|
1051
|
+
this._dt(513);
|
|
1052
1052
|
return b;
|
|
1053
1053
|
}
|
|
1054
1054
|
if (ExcelUtils.bb(a)) {
|
|
@@ -1058,23 +1058,23 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1058
1058
|
var f = MultipleCellRKInfo.o(this);
|
|
1059
1059
|
if (f != null) {
|
|
1060
1060
|
this._ca.k(f);
|
|
1061
|
-
this.
|
|
1061
|
+
this._dt(189);
|
|
1062
1062
|
this._ca.h();
|
|
1063
1063
|
return f.k;
|
|
1064
1064
|
}
|
|
1065
|
-
this.
|
|
1065
|
+
this._dt(638);
|
|
1066
1066
|
}
|
|
1067
1067
|
else {
|
|
1068
|
-
this.
|
|
1068
|
+
this._dt(515);
|
|
1069
1069
|
}
|
|
1070
1070
|
return b;
|
|
1071
1071
|
}
|
|
1072
1072
|
if (typeCast(Boolean_$type, a) !== null || typeCast(ErrorValue.$, a) !== null) {
|
|
1073
|
-
this.
|
|
1073
|
+
this._dt(517);
|
|
1074
1074
|
return b;
|
|
1075
1075
|
}
|
|
1076
1076
|
if (typeCast(StringElementIndex.$, a) !== null) {
|
|
1077
|
-
this.
|
|
1077
|
+
this._dt(253);
|
|
1078
1078
|
a.d();
|
|
1079
1079
|
return b;
|
|
1080
1080
|
}
|
|
@@ -1083,21 +1083,21 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1083
1083
|
if (g._as) {
|
|
1084
1084
|
var h = this._cp(this._cm.b, b, g);
|
|
1085
1085
|
this._ca.k(h);
|
|
1086
|
-
this.
|
|
1086
|
+
this._dt(6);
|
|
1087
1087
|
this._ca.h();
|
|
1088
1088
|
}
|
|
1089
1089
|
else {
|
|
1090
|
-
this.
|
|
1090
|
+
this._dt(6);
|
|
1091
1091
|
if (g._ak) {
|
|
1092
1092
|
var i = g;
|
|
1093
1093
|
if (i._c1.cellRange.firstRow == this._cm.b.index && i._c1.cellRange.firstColumn == b) {
|
|
1094
|
-
this.
|
|
1094
|
+
this._dt(545);
|
|
1095
1095
|
}
|
|
1096
1096
|
}
|
|
1097
1097
|
else if (g._am) {
|
|
1098
1098
|
var j = g._c1.cellsInTable;
|
|
1099
1099
|
if (j.firstRow == this._cm.b.index - 1 && j.firstColumn == b - 1) {
|
|
1100
|
-
this.
|
|
1100
|
+
this._dt(566);
|
|
1101
1101
|
}
|
|
1102
1102
|
}
|
|
1103
1103
|
}
|
|
@@ -1105,7 +1105,7 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1105
1105
|
}
|
|
1106
1106
|
return b;
|
|
1107
1107
|
};
|
|
1108
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
1108
|
+
WorkbookSaveManagerExcel2003.prototype._dh = function (a) {
|
|
1109
1109
|
var e_12, _0;
|
|
1110
1110
|
var b = new List$1(WorksheetColumnBlock.$, 1, a._fg);
|
|
1111
1111
|
if (b.count == 1 && b._inner[0].l) {
|
|
@@ -1118,7 +1118,7 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1118
1118
|
continue;
|
|
1119
1119
|
}
|
|
1120
1120
|
this._ca.k(c);
|
|
1121
|
-
this.
|
|
1121
|
+
this._dt(125);
|
|
1122
1122
|
this._ca.h();
|
|
1123
1123
|
}
|
|
1124
1124
|
}
|
|
@@ -1136,7 +1136,7 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1136
1136
|
}
|
|
1137
1137
|
}
|
|
1138
1138
|
};
|
|
1139
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
1139
|
+
WorkbookSaveManagerExcel2003.prototype._dj = function (a) {
|
|
1140
1140
|
var e_13, _0;
|
|
1141
1141
|
if (this._b._cq == false) {
|
|
1142
1142
|
return;
|
|
@@ -1155,7 +1155,7 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1155
1155
|
}
|
|
1156
1156
|
this._ca.k(c);
|
|
1157
1157
|
this._ca.k(b);
|
|
1158
|
-
this.
|
|
1158
|
+
this._dl(e != null, d);
|
|
1159
1159
|
this._ca.h();
|
|
1160
1160
|
this._ca.h();
|
|
1161
1161
|
if (e != null) {
|
|
@@ -1177,7 +1177,7 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1177
1177
|
}
|
|
1178
1178
|
}
|
|
1179
1179
|
};
|
|
1180
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
1180
|
+
WorkbookSaveManagerExcel2003.prototype._dk = function () {
|
|
1181
1181
|
var e_14, _0;
|
|
1182
1182
|
if (this._b._cq == false) {
|
|
1183
1183
|
return;
|
|
@@ -1186,7 +1186,7 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1186
1186
|
for (var _1 = __values(fromEnum(this._b._customViews$i)), _2 = _1.next(); !_2.done; _2 = _1.next()) {
|
|
1187
1187
|
var a = _2.value;
|
|
1188
1188
|
this._ca.k(a);
|
|
1189
|
-
this.
|
|
1189
|
+
this._dt(425);
|
|
1190
1190
|
this._ca.h();
|
|
1191
1191
|
}
|
|
1192
1192
|
}
|
|
@@ -1204,34 +1204,34 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1204
1204
|
}
|
|
1205
1205
|
}
|
|
1206
1206
|
};
|
|
1207
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
1208
|
-
this.
|
|
1209
|
-
this.
|
|
1207
|
+
WorkbookSaveManagerExcel2003.prototype._dl = function (a, b) {
|
|
1208
|
+
this._dt(426);
|
|
1209
|
+
this._du(this._ca.a(DisplayOptions.$));
|
|
1210
1210
|
if (a) {
|
|
1211
1211
|
var c = this._ca.a(PrintOptions.$);
|
|
1212
1212
|
if (c._cp) {
|
|
1213
|
-
this.
|
|
1213
|
+
this._dt(27);
|
|
1214
1214
|
}
|
|
1215
1215
|
if (c._cr) {
|
|
1216
|
-
this.
|
|
1217
|
-
}
|
|
1218
|
-
this.
|
|
1219
|
-
this.
|
|
1220
|
-
this.
|
|
1221
|
-
this.
|
|
1222
|
-
this.
|
|
1223
|
-
this.
|
|
1224
|
-
this.
|
|
1225
|
-
this.
|
|
1226
|
-
this.
|
|
1227
|
-
this.
|
|
1216
|
+
this._dt(26);
|
|
1217
|
+
}
|
|
1218
|
+
this._dt(20);
|
|
1219
|
+
this._dt(21);
|
|
1220
|
+
this._dt(131);
|
|
1221
|
+
this._dt(132);
|
|
1222
|
+
this._dt(38);
|
|
1223
|
+
this._dt(39);
|
|
1224
|
+
this._dt(40);
|
|
1225
|
+
this._dt(41);
|
|
1226
|
+
this._dt(161);
|
|
1227
|
+
this._dt(2204);
|
|
1228
1228
|
}
|
|
1229
1229
|
if (b != null) {
|
|
1230
|
-
this.
|
|
1230
|
+
this._dy(b, false);
|
|
1231
1231
|
}
|
|
1232
|
-
this.
|
|
1232
|
+
this._dt(427);
|
|
1233
1233
|
};
|
|
1234
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
1234
|
+
WorkbookSaveManagerExcel2003.prototype._dm = function () {
|
|
1235
1235
|
var e_15, _0, e_16, _1;
|
|
1236
1236
|
var a = this._i;
|
|
1237
1237
|
if (a.count == 0) {
|
|
@@ -1241,13 +1241,13 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1241
1241
|
for (var _2 = __values(fromEnum(a)), _3 = _2.next(); !_3.done; _3 = _2.next()) {
|
|
1242
1242
|
var b = _3.value;
|
|
1243
1243
|
this._ca.k(b);
|
|
1244
|
-
this.
|
|
1244
|
+
this._dt(430);
|
|
1245
1245
|
if ((typeCast(CurrentWorkbookReference.$, b) !== null) == false) {
|
|
1246
1246
|
try {
|
|
1247
1247
|
for (var _4 = (e_16 = void 0, __values(fromEnum(b.u))), _5 = _4.next(); !_5.done; _5 = _4.next()) {
|
|
1248
1248
|
var c = _5.value;
|
|
1249
1249
|
this._ca.k(c);
|
|
1250
|
-
this.
|
|
1250
|
+
this._dt(35);
|
|
1251
1251
|
this._ca.h();
|
|
1252
1252
|
}
|
|
1253
1253
|
}
|
|
@@ -1281,22 +1281,22 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1281
1281
|
throw e_15.error;
|
|
1282
1282
|
}
|
|
1283
1283
|
}
|
|
1284
|
-
this.
|
|
1284
|
+
this._dt(23);
|
|
1285
1285
|
};
|
|
1286
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
1286
|
+
WorkbookSaveManagerExcel2003.prototype._dn = function (a) {
|
|
1287
1287
|
if (a.displayOptions._b4 != 100) {
|
|
1288
|
-
this.
|
|
1288
|
+
this._dt(160);
|
|
1289
1289
|
}
|
|
1290
1290
|
};
|
|
1291
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
1291
|
+
WorkbookSaveManagerExcel2003.prototype._dp = function () {
|
|
1292
1292
|
var e_17, _0;
|
|
1293
1293
|
try {
|
|
1294
1294
|
for (var _1 = __values(fromEnum(this._b._bb.u)), _2 = _1.next(); !_2.done; _2 = _1.next()) {
|
|
1295
1295
|
var a = _2.value;
|
|
1296
1296
|
this._ca.k(a);
|
|
1297
|
-
this.
|
|
1297
|
+
this._dt(24);
|
|
1298
1298
|
if (a.comment != null && a.comment.length > 0) {
|
|
1299
|
-
this.
|
|
1299
|
+
this._dt(2196);
|
|
1300
1300
|
}
|
|
1301
1301
|
this._ca.h();
|
|
1302
1302
|
}
|
|
@@ -1315,26 +1315,26 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1315
1315
|
}
|
|
1316
1316
|
}
|
|
1317
1317
|
};
|
|
1318
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
1318
|
+
WorkbookSaveManagerExcel2003.prototype._dq = function (a) {
|
|
1319
1319
|
this._ca.k(new WorkbookSaveManagerExcel2003_FormatHolder(a, this._b._b2.ad(a)));
|
|
1320
|
-
this.
|
|
1320
|
+
this._dt(1054);
|
|
1321
1321
|
this._ca.h();
|
|
1322
1322
|
};
|
|
1323
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
1323
|
+
WorkbookSaveManagerExcel2003.prototype._dr = function () {
|
|
1324
1324
|
var e_18, _0;
|
|
1325
|
-
this.
|
|
1326
|
-
this.
|
|
1327
|
-
this.
|
|
1328
|
-
this.
|
|
1329
|
-
this.
|
|
1330
|
-
this.
|
|
1331
|
-
this.
|
|
1332
|
-
this.
|
|
1325
|
+
this._dq(5);
|
|
1326
|
+
this._dq(6);
|
|
1327
|
+
this._dq(7);
|
|
1328
|
+
this._dq(8);
|
|
1329
|
+
this._dq(42);
|
|
1330
|
+
this._dq(41);
|
|
1331
|
+
this._dq(44);
|
|
1332
|
+
this._dq(43);
|
|
1333
1333
|
if (this._b._ct) {
|
|
1334
1334
|
try {
|
|
1335
1335
|
for (var _1 = __values(fromEnum(this._b._b2.m())), _2 = _1.next(); !_2.done; _2 = _1.next()) {
|
|
1336
1336
|
var a = _2.value;
|
|
1337
|
-
this.
|
|
1337
|
+
this._dq(a);
|
|
1338
1338
|
}
|
|
1339
1339
|
}
|
|
1340
1340
|
catch (e_18_1) {
|
|
@@ -1352,7 +1352,7 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1352
1352
|
}
|
|
1353
1353
|
}
|
|
1354
1354
|
};
|
|
1355
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
1355
|
+
WorkbookSaveManagerExcel2003.prototype._ds = function (a) {
|
|
1356
1356
|
var b = a.displayOptions;
|
|
1357
1357
|
var c;
|
|
1358
1358
|
if (b.panesAreFrozen) {
|
|
@@ -1362,10 +1362,10 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1362
1362
|
c = b.unfrozenPaneSettings.leftPaneWidth != 0 || b.unfrozenPaneSettings.topPaneHeight != 0;
|
|
1363
1363
|
}
|
|
1364
1364
|
if (c) {
|
|
1365
|
-
this.
|
|
1365
|
+
this._dt(65);
|
|
1366
1366
|
}
|
|
1367
1367
|
};
|
|
1368
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
1368
|
+
WorkbookSaveManagerExcel2003.prototype._du = function (a) {
|
|
1369
1369
|
var e_19, _0;
|
|
1370
1370
|
a._bs();
|
|
1371
1371
|
if (a._aj && a._ag.b.count > 0) {
|
|
@@ -1373,7 +1373,7 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1373
1373
|
for (var _1 = __values(fromEnum(a._ag.b)), _2 = _1.next(); !_2.done; _2 = _1.next()) {
|
|
1374
1374
|
var b = _2.value;
|
|
1375
1375
|
this._ca.k(b);
|
|
1376
|
-
this.
|
|
1376
|
+
this._dt(29);
|
|
1377
1377
|
this._ca.h();
|
|
1378
1378
|
}
|
|
1379
1379
|
}
|
|
@@ -1392,10 +1392,10 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1392
1392
|
}
|
|
1393
1393
|
}
|
|
1394
1394
|
else {
|
|
1395
|
-
this.
|
|
1395
|
+
this._dt(29);
|
|
1396
1396
|
}
|
|
1397
1397
|
};
|
|
1398
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
1398
|
+
WorkbookSaveManagerExcel2003.prototype._dv = function () {
|
|
1399
1399
|
var e_20, _0;
|
|
1400
1400
|
try {
|
|
1401
1401
|
for (var _1 = __values(fromEnum(this._h)), _2 = _1.next(); !_2.done; _2 = _1.next()) {
|
|
@@ -1404,7 +1404,7 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1404
1404
|
continue;
|
|
1405
1405
|
}
|
|
1406
1406
|
this._ca.k(a);
|
|
1407
|
-
this.
|
|
1407
|
+
this._dt(49);
|
|
1408
1408
|
this._ca.h();
|
|
1409
1409
|
}
|
|
1410
1410
|
}
|
|
@@ -1426,50 +1426,50 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1426
1426
|
var e_21, _0, e_22, _1, e_23, _2;
|
|
1427
1427
|
var _this = this;
|
|
1428
1428
|
this._ca.k(this._b);
|
|
1429
|
-
this.
|
|
1429
|
+
this._dt(2057);
|
|
1430
1430
|
if (this._b._cs) {
|
|
1431
|
-
this.
|
|
1431
|
+
this._dt(134);
|
|
1432
1432
|
}
|
|
1433
1433
|
if (this._b._cw && !this._ag) {
|
|
1434
|
-
this.
|
|
1434
|
+
this._dt(47);
|
|
1435
1435
|
}
|
|
1436
1436
|
if (this._b.currentFormat == 1) {
|
|
1437
|
-
this.
|
|
1437
|
+
this._dt(96);
|
|
1438
1438
|
}
|
|
1439
1439
|
if (this._b._cs) {
|
|
1440
|
-
this.
|
|
1440
|
+
this._dt(91);
|
|
1441
1441
|
}
|
|
1442
|
-
this.
|
|
1443
|
-
this.
|
|
1444
|
-
this.
|
|
1445
|
-
this.
|
|
1442
|
+
this._dt(66);
|
|
1443
|
+
this._dt(353);
|
|
1444
|
+
this._dt(448);
|
|
1445
|
+
this._dt(317);
|
|
1446
1446
|
if (this._b._cp) {
|
|
1447
|
-
this.
|
|
1447
|
+
this._dt(211);
|
|
1448
1448
|
if (this._b._co) {
|
|
1449
|
-
this.
|
|
1450
|
-
}
|
|
1451
|
-
this.
|
|
1452
|
-
}
|
|
1453
|
-
this.
|
|
1454
|
-
this.
|
|
1455
|
-
this.
|
|
1456
|
-
this.
|
|
1457
|
-
this.
|
|
1458
|
-
this.
|
|
1459
|
-
this.
|
|
1460
|
-
this.
|
|
1461
|
-
this.
|
|
1462
|
-
this.
|
|
1463
|
-
this.
|
|
1464
|
-
this.
|
|
1465
|
-
this.
|
|
1466
|
-
var a = this.
|
|
1449
|
+
this._dt(445);
|
|
1450
|
+
}
|
|
1451
|
+
this._dt(442);
|
|
1452
|
+
}
|
|
1453
|
+
this._dt(156);
|
|
1454
|
+
this._dt(25);
|
|
1455
|
+
this._dt(18);
|
|
1456
|
+
this._dt(19);
|
|
1457
|
+
this._dt(61);
|
|
1458
|
+
this._dt(64);
|
|
1459
|
+
this._dt(141);
|
|
1460
|
+
this._dt(34);
|
|
1461
|
+
this._dt(14);
|
|
1462
|
+
this._dt(439);
|
|
1463
|
+
this._dt(218);
|
|
1464
|
+
this._dv();
|
|
1465
|
+
this._dr();
|
|
1466
|
+
var a = this._c8.position;
|
|
1467
1467
|
var b = new List$1(XFRecord_XFContext.$, 0);
|
|
1468
|
-
for (var c = 0; c < this.
|
|
1469
|
-
var d = this.
|
|
1468
|
+
for (var c = 0; c < this._c0.count; c++) {
|
|
1469
|
+
var d = this._c0._inner[c];
|
|
1470
1470
|
var e = new XFRecord_XFContext(d, c, d._cg());
|
|
1471
1471
|
this._ca.k(e);
|
|
1472
|
-
this.
|
|
1472
|
+
this._dt(224);
|
|
1473
1473
|
this._ca.h();
|
|
1474
1474
|
if (e.b.count != 0) {
|
|
1475
1475
|
b.add(e);
|
|
@@ -1477,12 +1477,12 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1477
1477
|
}
|
|
1478
1478
|
this._cn.s(a);
|
|
1479
1479
|
if (b.count != 0) {
|
|
1480
|
-
this.
|
|
1480
|
+
this._dt(2172);
|
|
1481
1481
|
try {
|
|
1482
1482
|
for (var _3 = __values(fromEnum(b)), _4 = _3.next(); !_4.done; _4 = _3.next()) {
|
|
1483
1483
|
var f = _4.value;
|
|
1484
1484
|
this._ca.k(f);
|
|
1485
|
-
this.
|
|
1485
|
+
this._dt(2173);
|
|
1486
1486
|
this._ca.h();
|
|
1487
1487
|
}
|
|
1488
1488
|
}
|
|
@@ -1504,7 +1504,7 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1504
1504
|
for (var _5 = __values(fromEnum(this._g)), _6 = _5.next(); !_6.done; _6 = _5.next()) {
|
|
1505
1505
|
var g = _6.value;
|
|
1506
1506
|
this._ca.k(g);
|
|
1507
|
-
this.
|
|
1507
|
+
this._dt(2189);
|
|
1508
1508
|
this._ca.h();
|
|
1509
1509
|
}
|
|
1510
1510
|
}
|
|
@@ -1521,12 +1521,12 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1521
1521
|
throw e_22.error;
|
|
1522
1522
|
}
|
|
1523
1523
|
}
|
|
1524
|
-
this.
|
|
1525
|
-
this.
|
|
1524
|
+
this._dw();
|
|
1525
|
+
this._dt(2190);
|
|
1526
1526
|
try {
|
|
1527
1527
|
for (var _7 = __values(fromEnum(this._b._customTableStyles$i)), _8 = _7.next(); !_8.done; _8 = _7.next()) {
|
|
1528
1528
|
var h = _8.value;
|
|
1529
|
-
this.
|
|
1529
|
+
this._d0(h);
|
|
1530
1530
|
}
|
|
1531
1531
|
}
|
|
1532
1532
|
catch (e_23_1) {
|
|
@@ -1542,37 +1542,37 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1542
1542
|
throw e_23.error;
|
|
1543
1543
|
}
|
|
1544
1544
|
}
|
|
1545
|
-
this.
|
|
1545
|
+
this._dk();
|
|
1546
1546
|
if (this._b._palette$i.isCustom) {
|
|
1547
|
-
this.
|
|
1547
|
+
this._dt(146);
|
|
1548
1548
|
}
|
|
1549
|
-
this.
|
|
1550
|
-
this.
|
|
1551
|
-
this.
|
|
1552
|
-
this.
|
|
1553
|
-
this.
|
|
1549
|
+
this._dt(352);
|
|
1550
|
+
this._dg();
|
|
1551
|
+
this._dt(140);
|
|
1552
|
+
this._dm();
|
|
1553
|
+
this._dp();
|
|
1554
1554
|
if (this._aj) {
|
|
1555
|
-
this.
|
|
1555
|
+
this._dt(235);
|
|
1556
1556
|
}
|
|
1557
1557
|
return WorkItemExtensions.a(this._cf(252), function () {
|
|
1558
|
-
_this.
|
|
1559
|
-
_this.
|
|
1560
|
-
_this.
|
|
1558
|
+
_this._dt(255);
|
|
1559
|
+
_this._dt(2198);
|
|
1560
|
+
_this._dt(10);
|
|
1561
1561
|
_this._ca.h();
|
|
1562
1562
|
});
|
|
1563
1563
|
};
|
|
1564
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
1564
|
+
WorkbookSaveManagerExcel2003.prototype._dw = function () {
|
|
1565
1565
|
var e_24, _0;
|
|
1566
|
-
if (this.
|
|
1566
|
+
if (this._cy.count == 0) {
|
|
1567
1567
|
return;
|
|
1568
1568
|
}
|
|
1569
1569
|
try {
|
|
1570
|
-
for (var _1 = __values(fromEnum(this.
|
|
1570
|
+
for (var _1 = __values(fromEnum(this._cy)), _2 = _1.next(); !_2.done; _2 = _1.next()) {
|
|
1571
1571
|
var a = _2.value;
|
|
1572
1572
|
this._ca.k(a);
|
|
1573
|
-
this.
|
|
1573
|
+
this._dt(659);
|
|
1574
1574
|
if (a._i._ch().count != 0) {
|
|
1575
|
-
this.
|
|
1575
|
+
this._dt(2194);
|
|
1576
1576
|
}
|
|
1577
1577
|
this._ca.h();
|
|
1578
1578
|
}
|
|
@@ -1591,14 +1591,14 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1591
1591
|
}
|
|
1592
1592
|
}
|
|
1593
1593
|
};
|
|
1594
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
1594
|
+
WorkbookSaveManagerExcel2003.prototype._dx = function (a) {
|
|
1595
1595
|
var e_25, _0;
|
|
1596
1596
|
var b = this._w(a);
|
|
1597
1597
|
try {
|
|
1598
1598
|
for (var _1 = __values(fromEnum(b.j)), _2 = _1.next(); !_2.done; _2 = _1.next()) {
|
|
1599
1599
|
var c = _2.value;
|
|
1600
1600
|
this._ca.k(c.cell);
|
|
1601
|
-
this.
|
|
1601
|
+
this._dt(28);
|
|
1602
1602
|
this._ca.h();
|
|
1603
1603
|
}
|
|
1604
1604
|
}
|
|
@@ -1616,15 +1616,15 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1616
1616
|
}
|
|
1617
1617
|
}
|
|
1618
1618
|
};
|
|
1619
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
1619
|
+
WorkbookSaveManagerExcel2003.prototype._dy = function (a, b) {
|
|
1620
1620
|
var e_26, _0;
|
|
1621
1621
|
if (a.region == null) {
|
|
1622
1622
|
return;
|
|
1623
1623
|
}
|
|
1624
1624
|
if (b) {
|
|
1625
|
-
this.
|
|
1625
|
+
this._dt(155);
|
|
1626
1626
|
}
|
|
1627
|
-
this.
|
|
1627
|
+
this._dt(157);
|
|
1628
1628
|
this._ca.k(a);
|
|
1629
1629
|
var c = a.region._ad;
|
|
1630
1630
|
var d = new SortedList$2(Number_$type, TableColumnFilterData.$, 1, UtilitiesInt32Comparer._c);
|
|
@@ -1642,9 +1642,9 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1642
1642
|
for (var _1 = __values(fromEnum(d._j)), _2 = _1.next(); !_2.done; _2 = _1.next()) {
|
|
1643
1643
|
var h = _2.value;
|
|
1644
1644
|
this._ca.k(h);
|
|
1645
|
-
this.
|
|
1645
|
+
this._dt(158);
|
|
1646
1646
|
if (h.d) {
|
|
1647
|
-
this.
|
|
1647
|
+
this._dt(2174);
|
|
1648
1648
|
}
|
|
1649
1649
|
}
|
|
1650
1650
|
}
|
|
@@ -1663,19 +1663,19 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1663
1663
|
}
|
|
1664
1664
|
this._ca.h();
|
|
1665
1665
|
if (a.sortSettings._o) {
|
|
1666
|
-
this.
|
|
1666
|
+
this._dt(2197);
|
|
1667
1667
|
}
|
|
1668
1668
|
this._ca.h();
|
|
1669
1669
|
};
|
|
1670
1670
|
WorkbookSaveManagerExcel2003.prototype._ch = function (a, b) {
|
|
1671
1671
|
var e_27, _0;
|
|
1672
1672
|
var _this = this;
|
|
1673
|
-
var c = this.
|
|
1673
|
+
var c = this._c8.position;
|
|
1674
1674
|
try {
|
|
1675
1675
|
for (var _1 = __values(fromEnum(b)), _2 = _1.next(); !_2.done; _2 = _1.next()) {
|
|
1676
1676
|
var d = _2.value;
|
|
1677
1677
|
this._ca.k(d);
|
|
1678
|
-
this.
|
|
1678
|
+
this._dt(520);
|
|
1679
1679
|
this._ca.h();
|
|
1680
1680
|
}
|
|
1681
1681
|
}
|
|
@@ -1695,7 +1695,7 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1695
1695
|
var e = new List$1(Number_$type, 0);
|
|
1696
1696
|
var f = 0;
|
|
1697
1697
|
return WorkItemExtensions.g(Number_$type, Async.d(WorksheetRow.$, b, function (g) {
|
|
1698
|
-
e.add(_this.
|
|
1698
|
+
e.add(_this._c8.position);
|
|
1699
1699
|
var h = g._hasCellFormat ? g._cellFormatInternal.d : null;
|
|
1700
1700
|
var i = _this._u(g);
|
|
1701
1701
|
_this._cm = new CellContext(g, i);
|
|
@@ -1708,7 +1708,7 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1708
1708
|
k.j = h || a._cb(k.r).b;
|
|
1709
1709
|
}
|
|
1710
1710
|
_this._ck = k;
|
|
1711
|
-
j = _this.
|
|
1711
|
+
j = _this._c7();
|
|
1712
1712
|
f += j + 1 - k.r;
|
|
1713
1713
|
if (1000 < f) {
|
|
1714
1714
|
f = 0;
|
|
@@ -1720,10 +1720,10 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1720
1720
|
_this._ck = null;
|
|
1721
1721
|
});
|
|
1722
1722
|
}), function () {
|
|
1723
|
-
var g = _this.
|
|
1723
|
+
var g = _this._c8.position;
|
|
1724
1724
|
var h = new DBCELLRecord_DBCELLInfo(c, e);
|
|
1725
1725
|
_this._ca.k(h);
|
|
1726
|
-
_this.
|
|
1726
|
+
_this._dt(215);
|
|
1727
1727
|
_this._ca.h();
|
|
1728
1728
|
return g;
|
|
1729
1729
|
});
|
|
@@ -1750,12 +1750,12 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1750
1750
|
}), function () { return c.add(e); });
|
|
1751
1751
|
}), function () { return Async.g(c.count > 0, function () { return WorkItemExtensions.e(Number_$type, _this._ch(a, c), function (e) { return b.add(WorkItemExtensions.m(Number_$type, e)); }); }); }), function () { return b; });
|
|
1752
1752
|
};
|
|
1753
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
1753
|
+
WorkbookSaveManagerExcel2003.prototype._dz = function (a) {
|
|
1754
1754
|
var e_28, _0, e_29, _1;
|
|
1755
1755
|
if (a._tables$i.count == 0) {
|
|
1756
1756
|
return;
|
|
1757
1757
|
}
|
|
1758
|
-
this.
|
|
1758
|
+
this._dt(2161);
|
|
1759
1759
|
try {
|
|
1760
1760
|
for (var _2 = __values(fromEnum(a._tables$i)), _3 = _2.next(); !_3.done; _3 = _2.next()) {
|
|
1761
1761
|
var b = _3.value;
|
|
@@ -1770,20 +1770,20 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1770
1770
|
this._ca.k(b);
|
|
1771
1771
|
this._ca.k(c);
|
|
1772
1772
|
if (WorkbookSaveManagerExcel2003._cq(b)) {
|
|
1773
|
-
this.
|
|
1773
|
+
this._dt(2168);
|
|
1774
1774
|
}
|
|
1775
1775
|
else {
|
|
1776
|
-
this.
|
|
1776
|
+
this._dt(2162);
|
|
1777
1777
|
}
|
|
1778
1778
|
this._ca.k(enumGetBox(LIST12Record_LIST12DataType_$type, 0));
|
|
1779
|
-
this.
|
|
1779
|
+
this._dt(2167);
|
|
1780
1780
|
this._ca.h();
|
|
1781
1781
|
try {
|
|
1782
1782
|
for (var _4 = (e_29 = void 0, __values(fromEnum(c._j))), _5 = _4.next(); !_5.done; _5 = _4.next()) {
|
|
1783
1783
|
var g = _5.value;
|
|
1784
1784
|
if (g.d) {
|
|
1785
1785
|
this._ca.k(g);
|
|
1786
|
-
this.
|
|
1786
|
+
this._dt(2174);
|
|
1787
1787
|
this._ca.h();
|
|
1788
1788
|
}
|
|
1789
1789
|
}
|
|
@@ -1802,13 +1802,13 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1802
1802
|
}
|
|
1803
1803
|
}
|
|
1804
1804
|
this._ca.k(enumGetBox(LIST12Record_LIST12DataType_$type, 1));
|
|
1805
|
-
this.
|
|
1805
|
+
this._dt(2167);
|
|
1806
1806
|
this._ca.h();
|
|
1807
1807
|
this._ca.k(enumGetBox(LIST12Record_LIST12DataType_$type, 2));
|
|
1808
|
-
this.
|
|
1808
|
+
this._dt(2167);
|
|
1809
1809
|
this._ca.h();
|
|
1810
1810
|
if (b.sortSettings._o) {
|
|
1811
|
-
this.
|
|
1811
|
+
this._dt(2197);
|
|
1812
1812
|
}
|
|
1813
1813
|
this._ca.h();
|
|
1814
1814
|
this._ca.h();
|
|
@@ -1828,16 +1828,16 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1828
1828
|
}
|
|
1829
1829
|
}
|
|
1830
1830
|
};
|
|
1831
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
1831
|
+
WorkbookSaveManagerExcel2003.prototype._d0 = function (a) {
|
|
1832
1832
|
var e_30, _0;
|
|
1833
1833
|
this._ca.k(a);
|
|
1834
|
-
this.
|
|
1834
|
+
this._dt(2191);
|
|
1835
1835
|
try {
|
|
1836
1836
|
for (var _1 = __values(fromEnum(this._aa(a))), _2 = _1.next(); !_2.done; _2 = _1.next()) {
|
|
1837
1837
|
var b = _2.value;
|
|
1838
1838
|
this._ca.k(enumGetBox(WorksheetTableStyleArea_$type, b.key));
|
|
1839
1839
|
this._ca.k(b.value);
|
|
1840
|
-
this.
|
|
1840
|
+
this._dt(2192);
|
|
1841
1841
|
this._ca.h();
|
|
1842
1842
|
this._ca.h();
|
|
1843
1843
|
}
|
|
@@ -1857,26 +1857,26 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1857
1857
|
}
|
|
1858
1858
|
this._ca.h();
|
|
1859
1859
|
};
|
|
1860
|
-
WorkbookSaveManagerExcel2003.prototype.
|
|
1860
|
+
WorkbookSaveManagerExcel2003.prototype._di = function (a) {
|
|
1861
1861
|
var e_31, _0, e_32, _1;
|
|
1862
1862
|
var _this = this;
|
|
1863
|
-
if (this.
|
|
1863
|
+
if (this._cs == null) {
|
|
1864
1864
|
return;
|
|
1865
1865
|
}
|
|
1866
1866
|
var b = null;
|
|
1867
|
-
if (((function () { var c = _this.
|
|
1867
|
+
if (((function () { var c = _this._cs.tryGetValue(a, b); b = c.p1; return c.ret; })()) == false) {
|
|
1868
1868
|
return;
|
|
1869
1869
|
}
|
|
1870
1870
|
try {
|
|
1871
1871
|
for (var _2 = __values(fromEnum(b.c)), _3 = _2.next(); !_3.done; _3 = _2.next()) {
|
|
1872
1872
|
var c = _3.value;
|
|
1873
1873
|
this._ca.k(c);
|
|
1874
|
-
this.
|
|
1874
|
+
this._dt(2169);
|
|
1875
1875
|
try {
|
|
1876
1876
|
for (var _4 = (e_32 = void 0, __values(fromEnum(c.h))), _5 = _4.next(); !_5.done; _5 = _4.next()) {
|
|
1877
1877
|
var d = _5.value;
|
|
1878
1878
|
this._ca.k(d);
|
|
1879
|
-
this.
|
|
1879
|
+
this._dt(2170);
|
|
1880
1880
|
this._ca.h();
|
|
1881
1881
|
}
|
|
1882
1882
|
}
|
|
@@ -1942,35 +1942,35 @@ var WorkbookSaveManagerExcel2003 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
1942
1942
|
enumerable: false,
|
|
1943
1943
|
configurable: true
|
|
1944
1944
|
});
|
|
1945
|
-
Object.defineProperty(WorkbookSaveManagerExcel2003.prototype, "
|
|
1945
|
+
Object.defineProperty(WorkbookSaveManagerExcel2003.prototype, "_cz", {
|
|
1946
1946
|
get: function () {
|
|
1947
|
-
return this.
|
|
1947
|
+
return this._cx;
|
|
1948
1948
|
},
|
|
1949
1949
|
enumerable: false,
|
|
1950
1950
|
configurable: true
|
|
1951
1951
|
});
|
|
1952
|
-
Object.defineProperty(WorkbookSaveManagerExcel2003.prototype, "
|
|
1952
|
+
Object.defineProperty(WorkbookSaveManagerExcel2003.prototype, "_c0", {
|
|
1953
1953
|
get: function () {
|
|
1954
1954
|
return this._cn.p;
|
|
1955
1955
|
},
|
|
1956
1956
|
enumerable: false,
|
|
1957
1957
|
configurable: true
|
|
1958
1958
|
});
|
|
1959
|
-
Object.defineProperty(WorkbookSaveManagerExcel2003.prototype, "
|
|
1959
|
+
Object.defineProperty(WorkbookSaveManagerExcel2003.prototype, "_c1", {
|
|
1960
1960
|
get: function () {
|
|
1961
1961
|
return this._cn.q;
|
|
1962
1962
|
},
|
|
1963
1963
|
enumerable: false,
|
|
1964
1964
|
configurable: true
|
|
1965
1965
|
});
|
|
1966
|
-
Object.defineProperty(WorkbookSaveManagerExcel2003.prototype, "
|
|
1966
|
+
Object.defineProperty(WorkbookSaveManagerExcel2003.prototype, "_c2", {
|
|
1967
1967
|
get: function () {
|
|
1968
|
-
return this.
|
|
1968
|
+
return this._cy;
|
|
1969
1969
|
},
|
|
1970
1970
|
enumerable: false,
|
|
1971
1971
|
configurable: true
|
|
1972
1972
|
});
|
|
1973
|
-
Object.defineProperty(WorkbookSaveManagerExcel2003.prototype, "
|
|
1973
|
+
Object.defineProperty(WorkbookSaveManagerExcel2003.prototype, "_c8", {
|
|
1974
1974
|
get: function () {
|
|
1975
1975
|
return this._cn.c;
|
|
1976
1976
|
},
|
|
@@ -2159,7 +2159,7 @@ var WorkbookSaveManagerExcel2003_PopuplateShapeDrawingPropertiesVisitor = /** @c
|
|
|
2159
2159
|
else {
|
|
2160
2160
|
c = new List$1(PropertyTableBase_PropertyValue.$, 0);
|
|
2161
2161
|
}
|
|
2162
|
-
var e = a.
|
|
2162
|
+
var e = a._c1.indexOf(new WorkbookSerializationDataExcel2003_ImageHolder(b, 1));
|
|
2163
2163
|
if (e >= 0) {
|
|
2164
2164
|
c.add(new PropertyTableBase_PropertyValue(1, 260, intSToU((e + 1)), false, true));
|
|
2165
2165
|
}
|
|
@@ -3702,10 +3702,10 @@ var Biff8RecordStream = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3702
3702
|
{
|
|
3703
3703
|
var c = _rest[0];
|
|
3704
3704
|
var d = _rest[1];
|
|
3705
|
-
_this = _super.call(this, 2, c, c.
|
|
3705
|
+
_this = _super.call(this, 2, c, c._c8, d, c._cb) || this;
|
|
3706
3706
|
_this._et = true;
|
|
3707
3707
|
_this._ew = false;
|
|
3708
|
-
c.
|
|
3708
|
+
c._dd(_this);
|
|
3709
3709
|
}
|
|
3710
3710
|
break;
|
|
3711
3711
|
case 4:
|
|
@@ -3745,7 +3745,7 @@ var Biff8RecordStream = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3745
3745
|
}
|
|
3746
3746
|
var c = this._saveManagerBiff8;
|
|
3747
3747
|
if (c != null) {
|
|
3748
|
-
c.
|
|
3748
|
+
c._dc(this);
|
|
3749
3749
|
}
|
|
3750
3750
|
}
|
|
3751
3751
|
};
|
|
@@ -5933,11 +5933,11 @@ var Biff8RecordStream = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5933
5933
|
h = i.p3;
|
|
5934
5934
|
var j = -1;
|
|
5935
5935
|
if (d != null) {
|
|
5936
|
-
j = this._saveManagerBiff8.
|
|
5936
|
+
j = this._saveManagerBiff8._c2.indexOf(d);
|
|
5937
5937
|
}
|
|
5938
5938
|
var k = -1;
|
|
5939
5939
|
if (g != null) {
|
|
5940
|
-
k = this._saveManagerBiff8.
|
|
5940
|
+
k = this._saveManagerBiff8._c2.indexOf(g);
|
|
5941
5941
|
}
|
|
5942
5942
|
this._write18(a._a9);
|
|
5943
5943
|
this._write18(intSToU(0));
|
|
@@ -5988,7 +5988,7 @@ var Biff8RecordStream = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
5988
5988
|
this._writeFeat11FdaAutoFilter(a, n);
|
|
5989
5989
|
}
|
|
5990
5990
|
if (q) {
|
|
5991
|
-
this._saveManagerBiff8.
|
|
5991
|
+
this._saveManagerBiff8._c6(a.totalFormula, true, false);
|
|
5992
5992
|
}
|
|
5993
5993
|
if (r) {
|
|
5994
5994
|
this._writeXLUnicodeString(a.totalLabel);
|
|
@@ -6320,15 +6320,15 @@ var Biff8RecordStream = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
6320
6320
|
p = q.p4;
|
|
6321
6321
|
var r = -1;
|
|
6322
6322
|
if (c != null) {
|
|
6323
|
-
r = this._saveManagerBiff8.
|
|
6323
|
+
r = this._saveManagerBiff8._c2.indexOf(c);
|
|
6324
6324
|
}
|
|
6325
6325
|
var s = -1;
|
|
6326
6326
|
if (g != null) {
|
|
6327
|
-
s = this._saveManagerBiff8.
|
|
6327
|
+
s = this._saveManagerBiff8._c2.indexOf(g);
|
|
6328
6328
|
}
|
|
6329
6329
|
var t = -1;
|
|
6330
6330
|
if (j != null) {
|
|
6331
|
-
t = this._saveManagerBiff8.
|
|
6331
|
+
t = this._saveManagerBiff8._c2.indexOf(j);
|
|
6332
6332
|
}
|
|
6333
6333
|
this._write13(0);
|
|
6334
6334
|
this._write13(r);
|
|
@@ -8030,7 +8030,7 @@ var ObjExtensionMethods = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8030
8030
|
if (a.a == null) {
|
|
8031
8031
|
return;
|
|
8032
8032
|
}
|
|
8033
|
-
b.
|
|
8033
|
+
b._c6(a.a, false, false);
|
|
8034
8034
|
};
|
|
8035
8035
|
ObjExtensionMethods.p = function (a) {
|
|
8036
8036
|
var b = a._aw;
|
|
@@ -8902,7 +8902,7 @@ var ChildAnchor = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8902
8902
|
var c = _rest[0];
|
|
8903
8903
|
_this = _super.call(this, 0, 0, 16) || this;
|
|
8904
8904
|
_this.n = null;
|
|
8905
|
-
_this.n = ExcelUtils.
|
|
8905
|
+
_this.n = ExcelUtils.hi(c._getBoundsInTwips());
|
|
8906
8906
|
}
|
|
8907
8907
|
break;
|
|
8908
8908
|
case 1:
|
|
@@ -9272,7 +9272,7 @@ var ClientData = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9272
9272
|
}
|
|
9273
9273
|
var m = d._g6._inner[f++];
|
|
9274
9274
|
l.write(g, k, 6);
|
|
9275
|
-
a.
|
|
9275
|
+
a._c6(m, true, false);
|
|
9276
9276
|
}
|
|
9277
9277
|
break;
|
|
9278
9278
|
case 4134:
|
|
@@ -9370,7 +9370,7 @@ var ClientTextBox = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9370
9370
|
ClientTextBox.prototype.m = function (a) {
|
|
9371
9371
|
_super.prototype.m.call(this, a);
|
|
9372
9372
|
a._ca.k(this.n);
|
|
9373
|
-
a.
|
|
9373
|
+
a._dt(438);
|
|
9374
9374
|
a._cl._nextBlockType = 236;
|
|
9375
9375
|
a._ca.h();
|
|
9376
9376
|
};
|
|
@@ -9678,8 +9678,8 @@ var DrawingGroupContainer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9678
9678
|
var c = _rest[0];
|
|
9679
9679
|
_this = _super.call(this, 15, 0, 0) || this;
|
|
9680
9680
|
_this.r(new DrawingGroup(0, c._a1));
|
|
9681
|
-
if (c.
|
|
9682
|
-
_this.r(new BLIPStoreContainer(0, c.
|
|
9681
|
+
if (c._c1.count > 0) {
|
|
9682
|
+
_this.r(new BLIPStoreContainer(0, c._c1));
|
|
9683
9683
|
}
|
|
9684
9684
|
if (c._b._ej != null && c._b._ej.count > 0) {
|
|
9685
9685
|
_this.r(new PropertyTable1(1, c._b._ej));
|
|
@@ -9851,7 +9851,7 @@ var GroupShape = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
9851
9851
|
var c = _rest[0];
|
|
9852
9852
|
_this = _super.call(this, 1, 0, 16) || this;
|
|
9853
9853
|
_this.n = null;
|
|
9854
|
-
_this.n = ExcelUtils.
|
|
9854
|
+
_this.n = ExcelUtils.hi(c._getBoundsInTwips());
|
|
9855
9855
|
}
|
|
9856
9856
|
break;
|
|
9857
9857
|
case 1:
|
|
@@ -10187,7 +10187,7 @@ var PropertyTable1 = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10187
10187
|
return toNullable(Color.$, f.value);
|
|
10188
10188
|
}
|
|
10189
10189
|
if (nullableNotEquals(g, null)) {
|
|
10190
|
-
return toNullable(Color.$, ExcelUtils.
|
|
10190
|
+
return toNullable(Color.$, ExcelUtils.g6(a._b._palette$i._af(g.value)));
|
|
10191
10191
|
}
|
|
10192
10192
|
if (nullableNotEquals(h, null)) {
|
|
10193
10193
|
switch (h.value) {
|
|
@@ -10754,7 +10754,7 @@ var ShapeContainer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10754
10754
|
if (d._b0.hasValue == false) {
|
|
10755
10755
|
return;
|
|
10756
10756
|
}
|
|
10757
|
-
c.
|
|
10757
|
+
c._de(d);
|
|
10758
10758
|
var e = typeCast(WorksheetShapeGroup.$, d);
|
|
10759
10759
|
if (e != null) {
|
|
10760
10760
|
_this.r(new GroupShape(0, e));
|
|
@@ -10818,7 +10818,7 @@ var ShapeContainer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
10818
10818
|
}
|
|
10819
10819
|
}
|
|
10820
10820
|
else if (e != null) {
|
|
10821
|
-
b._setBoundsInTwips(c, ExcelUtils.
|
|
10821
|
+
b._setBoundsInTwips(c, ExcelUtils.hh(e.o));
|
|
10822
10822
|
}
|
|
10823
10823
|
if (WorksheetCell.l_op_Equality(b.topLeftCornerCell, null)) {
|
|
10824
10824
|
return;
|
|
@@ -11480,7 +11480,7 @@ var ARRAYRecord = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
11480
11480
|
}
|
|
11481
11481
|
a._cl._write17(e);
|
|
11482
11482
|
a._cl._write18(intSToU(0));
|
|
11483
|
-
a.
|
|
11483
|
+
a._c6(d, true, false);
|
|
11484
11484
|
};
|
|
11485
11485
|
ARRAYRecord.prototype.get_d = function () {
|
|
11486
11486
|
return 545;
|
|
@@ -12003,7 +12003,7 @@ var BITMAPRecord = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12003
12003
|
var l = a._aw._readUInt16();
|
|
12004
12004
|
var m = a._aw._readUInt16();
|
|
12005
12005
|
var n = a._aw._readBytes(k);
|
|
12006
|
-
b.sheetBackground = ExcelUtils.
|
|
12006
|
+
b.sheetBackground = ExcelUtils.g8(n, h, i);
|
|
12007
12007
|
};
|
|
12008
12008
|
BITMAPRecord.prototype.i = function (a) {
|
|
12009
12009
|
var b = a._ca.a(Worksheet.$);
|
|
@@ -13424,7 +13424,7 @@ var DVRecord = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
13424
13424
|
a._cl._write17(0);
|
|
13425
13425
|
a._cl._write17(0);
|
|
13426
13426
|
if (e != null) {
|
|
13427
|
-
var q = a.
|
|
13427
|
+
var q = a._c6(e, false, false, false);
|
|
13428
13428
|
var r = a._cl.position;
|
|
13429
13429
|
a._cl.position = p;
|
|
13430
13430
|
a._cl._write13(q);
|
|
@@ -13435,7 +13435,7 @@ var DVRecord = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
13435
13435
|
a._cl._write17(0);
|
|
13436
13436
|
var t = b._o(null);
|
|
13437
13437
|
if (t != null) {
|
|
13438
|
-
var u = a.
|
|
13438
|
+
var u = a._c6(t, false, false, false);
|
|
13439
13439
|
var v = a._cl.position;
|
|
13440
13440
|
a._cl.position = s;
|
|
13441
13441
|
a._cl._write13(u);
|
|
@@ -13722,7 +13722,7 @@ var EXTERNNAMERecord = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
13722
13722
|
}
|
|
13723
13723
|
a._cl._write17(0);
|
|
13724
13724
|
a._cl._write15(m, 0);
|
|
13725
|
-
a.
|
|
13725
|
+
a._c6(b._j, true, true);
|
|
13726
13726
|
}
|
|
13727
13727
|
};
|
|
13728
13728
|
EXTERNNAMERecord.prototype.get_d = function () {
|
|
@@ -13843,8 +13843,8 @@ var EXTSSTRecord = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
13843
13843
|
EXTSSTRecord.prototype.i = function (a) {
|
|
13844
13844
|
a._cl._write17(8);
|
|
13845
13845
|
if (a._a3 > 0) {
|
|
13846
|
-
for (var b = 0; b < a.
|
|
13847
|
-
var c = a.
|
|
13846
|
+
for (var b = 0; b < a._cz.count; b++) {
|
|
13847
|
+
var c = a._cz._inner[b];
|
|
13848
13848
|
a._cl._write18(c.b);
|
|
13849
13849
|
a._cl._write17(c.a);
|
|
13850
13850
|
a._cl._write17(0);
|
|
@@ -14420,7 +14420,7 @@ var FORMATRecord = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14420
14420
|
if (b == null) {
|
|
14421
14421
|
return;
|
|
14422
14422
|
}
|
|
14423
|
-
var c = a.
|
|
14423
|
+
var c = a._c4(b.b);
|
|
14424
14424
|
a._cl._write17(c);
|
|
14425
14425
|
a._cl._write15(b.d, 1);
|
|
14426
14426
|
};
|
|
@@ -14495,15 +14495,15 @@ var FORMULARecord = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14495
14495
|
b.write(BitConverter.h(k), 0, 2);
|
|
14496
14496
|
b.write(BitConverter.i(intSToU(0)), 0, 4);
|
|
14497
14497
|
a._cl._write11(b);
|
|
14498
|
-
a.
|
|
14498
|
+
a._c6(d, true, false);
|
|
14499
14499
|
if (g && h.rowIndex == c.b.index && h._ab == e.r) {
|
|
14500
|
-
a.
|
|
14500
|
+
a._dt(1212);
|
|
14501
14501
|
}
|
|
14502
14502
|
if (i == null) {
|
|
14503
14503
|
return;
|
|
14504
14504
|
}
|
|
14505
14505
|
a._ca.k(i);
|
|
14506
|
-
a.
|
|
14506
|
+
a._dt(519);
|
|
14507
14507
|
a._ca.h();
|
|
14508
14508
|
};
|
|
14509
14509
|
FORMULARecord.prototype.get_d = function () {
|
|
@@ -15526,7 +15526,7 @@ var MERGEDCELLSRecord = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15526
15526
|
var g = a._aw._readUInt16();
|
|
15527
15527
|
var h = a._aw._readUInt16();
|
|
15528
15528
|
var i = a._aw._readUInt16();
|
|
15529
|
-
var j = ExcelUtils.
|
|
15529
|
+
var j = ExcelUtils.hg(h, f, i - h, g - f);
|
|
15530
15530
|
if (c.add_1(j) == false) {
|
|
15531
15531
|
continue;
|
|
15532
15532
|
}
|
|
@@ -15993,7 +15993,7 @@ var NAMERecord = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15993
15993
|
a._cl._write14(c);
|
|
15994
15994
|
var f = 0;
|
|
15995
15995
|
if (b._j != null) {
|
|
15996
|
-
f = a.
|
|
15996
|
+
f = a._c6(b._j, false, false);
|
|
15997
15997
|
}
|
|
15998
15998
|
a._cl.position = 4;
|
|
15999
15999
|
a._cl._write17(f);
|
|
@@ -17506,7 +17506,7 @@ var SHRFMLARecord = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
17506
17506
|
a._cl._writeRefU(e);
|
|
17507
17507
|
a._cl.writeByte(0);
|
|
17508
17508
|
a._cl.writeByte((e._aa * e._ad));
|
|
17509
|
-
a.
|
|
17509
|
+
a._c6(c, true, false, false);
|
|
17510
17510
|
};
|
|
17511
17511
|
SHRFMLARecord.prototype.get_d = function () {
|
|
17512
17512
|
return 1212;
|
|
@@ -17690,7 +17690,7 @@ var SSTRecord = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
17690
17690
|
var e = new WorkbookSaveManagerExcel2003_ExtSstItem();
|
|
17691
17691
|
e.b = a._cl.position;
|
|
17692
17692
|
e.a = a._cl._positionInCurrentBlock;
|
|
17693
|
-
a.
|
|
17693
|
+
a._cz.add(e);
|
|
17694
17694
|
}
|
|
17695
17695
|
if (c) {
|
|
17696
17696
|
b = b._s(a._b);
|
|
@@ -17973,8 +17973,8 @@ var STYLERecord = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
17973
17973
|
}
|
|
17974
17974
|
}
|
|
17975
17975
|
i.formatOptions = j;
|
|
17976
|
-
i.
|
|
17977
|
-
i.
|
|
17976
|
+
i._dk(j, g);
|
|
17977
|
+
i._du(63 & ~j);
|
|
17978
17978
|
}
|
|
17979
17979
|
}
|
|
17980
17980
|
};
|
|
@@ -18904,7 +18904,7 @@ var USERBVIEWRecord = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
18904
18904
|
var u = a._aw._readFormattedString(1)._y;
|
|
18905
18905
|
var v = a._b._customViews$i._add(u, r, s);
|
|
18906
18906
|
v._v = d;
|
|
18907
|
-
v.windowOptions._boundsInPixels$i = ExcelUtils.
|
|
18907
|
+
v.windowOptions._boundsInPixels$i = ExcelUtils.hg(e, f, g, h);
|
|
18908
18908
|
v.windowOptions.maximized = p;
|
|
18909
18909
|
v.windowOptions.objectDisplayStyle = q;
|
|
18910
18910
|
v.windowOptions.scrollBars = t;
|
|
@@ -19614,7 +19614,7 @@ var WINDOW1Record = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
19614
19614
|
var c = a._aw._readInt16();
|
|
19615
19615
|
var d = a._aw._readUInt16();
|
|
19616
19616
|
var e = a._aw._readUInt16();
|
|
19617
|
-
a._b.windowOptions._boundsInTwips$i = ExcelUtils.
|
|
19617
|
+
a._b.windowOptions._boundsInTwips$i = ExcelUtils.hg(b, c, d, e);
|
|
19618
19618
|
var f = a._aw._readUInt16();
|
|
19619
19619
|
a._b.windowOptions.minimized = (f & 2) == 2;
|
|
19620
19620
|
var g = (f & 8) == 8;
|
|
@@ -20040,7 +20040,7 @@ var XFCRCRecord = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
20040
20040
|
var b = ExcelUtils.ew(0, a._b9);
|
|
20041
20041
|
a._cl._writeFrtHeader();
|
|
20042
20042
|
a._cl._write17(0);
|
|
20043
|
-
a._cl._write17(a.
|
|
20043
|
+
a._cl._write17(a._c0.count);
|
|
20044
20044
|
a._cl._write18(b);
|
|
20045
20045
|
};
|
|
20046
20046
|
XFCRCRecord.prototype.get_d = function () {
|
|
@@ -20090,7 +20090,7 @@ var XFEXTRecord = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
20090
20090
|
for (var e = 0; e < b.a.length; e++) {
|
|
20091
20091
|
b.a[e].b(a, c);
|
|
20092
20092
|
}
|
|
20093
|
-
c.
|
|
20093
|
+
c._dw(d);
|
|
20094
20094
|
};
|
|
20095
20095
|
XFEXTRecord.prototype.i = function (a) {
|
|
20096
20096
|
var b = a._ca.a(XFRecord_XFContext.$);
|
|
@@ -20281,9 +20281,13 @@ var XFRecord = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
20281
20281
|
al.formatOptions = ap;
|
|
20282
20282
|
}
|
|
20283
20283
|
else {
|
|
20284
|
-
al.
|
|
20284
|
+
al._dw(ap);
|
|
20285
20285
|
}
|
|
20286
20286
|
var aq = a._b3.count;
|
|
20287
|
+
if (al._b1 == 0) {
|
|
20288
|
+
ao._ca._q++;
|
|
20289
|
+
al._dj = ao._ca._q;
|
|
20290
|
+
}
|
|
20287
20291
|
a._b3.add(al);
|
|
20288
20292
|
};
|
|
20289
20293
|
XFRecord.prototype.i = function (a) {
|
|
@@ -20300,7 +20304,7 @@ var XFRecord = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
20300
20304
|
f = 0;
|
|
20301
20305
|
}
|
|
20302
20306
|
else {
|
|
20303
|
-
f = a.
|
|
20307
|
+
f = a._c4(f);
|
|
20304
20308
|
}
|
|
20305
20309
|
a._cl._write17(f);
|
|
20306
20310
|
var g;
|