igniteui-webcomponents-excel 4.7.1 → 4.7.2-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 +1127 -950
- package/bundles/igniteui-webcomponents-excel.umd.min.js +1 -1
- package/esm2015/lib/AlignmentInfo.js +4 -4
- package/esm2015/lib/BiffRecordStream.js +7 -7
- package/esm2015/lib/CellFormatValue.js +1 -1
- package/esm2015/lib/ConditionalFormattingUtils.js +1 -1
- package/esm2015/lib/DefaultStyleHelper_combined.js +871 -742
- package/esm2015/lib/DomTextMetricsProvider.js +8 -8
- package/esm2015/lib/Formula_VisitWorksheetVisitor.js +7 -0
- package/esm2015/lib/JapaneseCalendar.js +1 -1
- package/esm2015/lib/ObjectModelDrawingPartManager_ShapeLoader_ShapeTypeCreator.js +1 -1
- package/esm2015/lib/PackagePart_combined.js +1 -1
- package/esm2015/lib/ProtectionInfo.js +8 -5
- package/esm2015/lib/SgmlReader.js +1 -1
- package/esm2015/lib/UltraCalcFunctionCell.js +1 -1
- package/esm2015/lib/UltraCalcFunctionComplex.js +1 -1
- package/esm2015/lib/UltraCalcFunctionDateDiff.js +1 -1
- package/esm2015/lib/UltraCalcFunctionFormulaText.js +1 -1
- package/esm2015/lib/UltraCalcFunctionHLookup.js +1 -1
- package/esm2015/lib/UltraCalcFunctionLookup.js +1 -1
- package/esm2015/lib/UltraCalcFunctionMatch.js +1 -1
- package/esm2015/lib/UltraCalcFunctionRoman.js +1 -1
- package/esm2015/lib/UltraCalcFunctionText.js +1 -1
- package/esm2015/lib/UltraCalcFunctionUSDollar.js +1 -1
- package/esm2015/lib/UltraCalcFunctionVLookup.js +1 -1
- package/esm2015/lib/WorkbookLoadManagerExcel2007_combined.js +12 -12
- package/esm2015/lib/WorkbookSaveManagerExcel2003_combined.js +179 -170
- package/esm2015/public_api.js +1 -0
- package/esm5/lib/AlignmentInfo.js +4 -4
- package/esm5/lib/BiffRecordStream.js +7 -7
- package/esm5/lib/CellFormatValue.js +1 -1
- package/esm5/lib/ConditionalFormattingUtils.js +1 -1
- package/esm5/lib/DefaultStyleHelper_combined.js +899 -741
- package/esm5/lib/DomTextMetricsProvider.js +8 -8
- package/esm5/lib/Formula_VisitWorksheetVisitor.js +7 -0
- package/esm5/lib/JapaneseCalendar.js +1 -1
- package/esm5/lib/ObjectModelDrawingPartManager_ShapeLoader_ShapeTypeCreator.js +1 -1
- package/esm5/lib/PackagePart_combined.js +1 -1
- package/esm5/lib/ProtectionInfo.js +8 -5
- package/esm5/lib/SgmlReader.js +1 -1
- package/esm5/lib/UltraCalcFunctionCell.js +1 -1
- package/esm5/lib/UltraCalcFunctionComplex.js +1 -1
- package/esm5/lib/UltraCalcFunctionDateDiff.js +1 -1
- package/esm5/lib/UltraCalcFunctionFormulaText.js +1 -1
- package/esm5/lib/UltraCalcFunctionHLookup.js +1 -1
- package/esm5/lib/UltraCalcFunctionLookup.js +1 -1
- package/esm5/lib/UltraCalcFunctionMatch.js +1 -1
- package/esm5/lib/UltraCalcFunctionRoman.js +1 -1
- package/esm5/lib/UltraCalcFunctionText.js +1 -1
- package/esm5/lib/UltraCalcFunctionUSDollar.js +1 -1
- package/esm5/lib/UltraCalcFunctionVLookup.js +1 -1
- package/esm5/lib/WorkbookLoadManagerExcel2007_combined.js +12 -12
- package/esm5/lib/WorkbookSaveManagerExcel2003_combined.js +179 -170
- package/esm5/public_api.js +1 -0
- package/fesm2015/igniteui-webcomponents-excel.js +1100 -952
- package/fesm5/igniteui-webcomponents-excel.js +1127 -951
- package/lib/BiffRecordStream.d.ts +2 -2
- package/lib/CellFormatValue.d.ts +5 -4
- package/lib/DefaultStyleHelper_combined.d.ts +149 -115
- package/lib/DomTextMetricsProvider.d.ts +1 -1
- package/lib/Formula_VisitWorksheetVisitor.d.ts +1 -0
- package/lib/JapaneseCalendar.d.ts +1 -1
- package/lib/WorkbookLoadManagerExcel2007_combined.d.ts +5 -5
- package/lib/WorkbookSaveManagerExcel2003_combined.d.ts +3 -3
- package/package.json +2 -2
- package/public_api.d.ts +1 -0
|
@@ -9,9 +9,9 @@ import { TextMetricsProviderBase } from "./TextMetricsProviderBase";
|
|
|
9
9
|
import { List$1 } from "igniteui-webcomponents-core";
|
|
10
10
|
import { WorksheetCellFormatData } from "./WorksheetCellFormatData";
|
|
11
11
|
import { CellFormatCache } from "./CellFormatCache";
|
|
12
|
+
import { toNullable, markType } from "igniteui-webcomponents-core";
|
|
12
13
|
import { MathUtilities } from "./MathUtilities";
|
|
13
14
|
import { Size } from "igniteui-webcomponents-core";
|
|
14
|
-
import { toNullable, markType } from "igniteui-webcomponents-core";
|
|
15
15
|
import { intDivide } from "igniteui-webcomponents-core";
|
|
16
16
|
import { nullableEquals } from "igniteui-webcomponents-core";
|
|
17
17
|
import { stringReplace } from "igniteui-webcomponents-core";
|
|
@@ -66,7 +66,7 @@ var DomTextMetricsProvider = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
66
66
|
if (b) {
|
|
67
67
|
this._j = this._m();
|
|
68
68
|
}
|
|
69
|
-
this._j.setStyleProperty("font-family", a.
|
|
69
|
+
this._j.setStyleProperty("font-family", a._dh);
|
|
70
70
|
this._j.setStyleProperty("font-size", ((intDivide(a._cq, 20)) + "pt"));
|
|
71
71
|
if (b) {
|
|
72
72
|
this._j.setText("0");
|
|
@@ -114,13 +114,13 @@ var DomTextMetricsProvider = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
114
114
|
a._as.d = g;
|
|
115
115
|
a._as.e = f;
|
|
116
116
|
var h = "";
|
|
117
|
-
if (nullableEquals(a.
|
|
117
|
+
if (nullableEquals(a._c4, true)) {
|
|
118
118
|
h += "italic ";
|
|
119
119
|
}
|
|
120
|
-
if (nullableEquals(a.
|
|
120
|
+
if (nullableEquals(a._c3, true)) {
|
|
121
121
|
h += "bold ";
|
|
122
122
|
}
|
|
123
|
-
h += (intDivide(a._cq, 20)) + "pt \"" + a.
|
|
123
|
+
h += (intDivide(a._cq, 20)) + "pt \"" + a._dh + "\"";
|
|
124
124
|
f.font = h;
|
|
125
125
|
}
|
|
126
126
|
if (!a._as.b) {
|
|
@@ -170,14 +170,14 @@ var DomTextMetricsProvider = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
170
170
|
b.setStyleProperty("position", "relative");
|
|
171
171
|
b.setStyleProperty("display", "block");
|
|
172
172
|
b.setStyleProperty("visibility", "hidden");
|
|
173
|
-
b.setStyleProperty("font-family", a.
|
|
173
|
+
b.setStyleProperty("font-family", a._dh);
|
|
174
174
|
b.setStyleProperty("font-size", ((intDivide(a._cq, 20)) + "pt"));
|
|
175
175
|
b.setStyleProperty("white-space", (c ? "pre-wrap" : "pre"));
|
|
176
176
|
b.setStyleProperty("overflow-wrap", (c ? "break-word" : "normal"));
|
|
177
177
|
b.setStyleProperty("word-wrap", (c ? "break-word" : "normal"));
|
|
178
178
|
b.setStyleProperty("text-decoration", (a._a1 != 0 ? "underline" : "none"));
|
|
179
|
-
b.setStyleProperty("font-weight", (nullableEquals(a.
|
|
180
|
-
b.setStyleProperty("font-style", (nullableEquals(a.
|
|
179
|
+
b.setStyleProperty("font-weight", (nullableEquals(a._c3, true) ? "bold" : "normal"));
|
|
180
|
+
b.setStyleProperty("font-style", (nullableEquals(a._c4, true) ? "italic" : "normal"));
|
|
181
181
|
return b;
|
|
182
182
|
};
|
|
183
183
|
DomTextMetricsProvider.$t = markType(DomTextMetricsProvider, 'DomTextMetricsProvider', TextMetricsProviderBase.$);
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
|
+
*/
|
|
7
|
+
export { Formula_VisitWorksheetVisitor } from "./DefaultStyleHelper_combined";
|
|
@@ -6,9 +6,9 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
|
|
|
6
6
|
*/
|
|
7
7
|
import { __extends } from "tslib";
|
|
8
8
|
import { Calendar } from "igniteui-webcomponents-core";
|
|
9
|
-
import { callStaticConstructors, markType } from "igniteui-webcomponents-core";
|
|
10
9
|
import { List$1 } from "igniteui-webcomponents-core";
|
|
11
10
|
import { CalendarEraInfo } from "./CalendarEraInfo";
|
|
11
|
+
import { callStaticConstructors, markType } from "igniteui-webcomponents-core";
|
|
12
12
|
import { ArgumentException } from "igniteui-webcomponents-core";
|
|
13
13
|
import { ArgumentOutOfRangeException } from "igniteui-webcomponents-core";
|
|
14
14
|
import { dateFromValues } from "igniteui-webcomponents-core";
|
|
@@ -8,8 +8,8 @@ import { __extends } from "tslib";
|
|
|
8
8
|
import { Base, enumGetBox, Boolean_$type, markType, EnumUtil } from "igniteui-webcomponents-core";
|
|
9
9
|
import { IEG_GeometryVisitor$2_$type } from "./IEG_GeometryVisitor$2";
|
|
10
10
|
import { WorksheetShape } from "./WorksheetShape";
|
|
11
|
-
import { PredefinedShapeType_$type } from "./PredefinedShapeType";
|
|
12
11
|
import { UnknownShape } from "./UnknownShape";
|
|
12
|
+
import { PredefinedShapeType_$type } from "./PredefinedShapeType";
|
|
13
13
|
import { nullableNotEquals } from "igniteui-webcomponents-core";
|
|
14
14
|
/**
|
|
15
15
|
* @hidden
|
|
@@ -16,6 +16,7 @@ import { MemoryStream } from "igniteui-webcomponents-core";
|
|
|
16
16
|
import { ArgumentException } from "igniteui-webcomponents-core";
|
|
17
17
|
import { IOPath } from "igniteui-webcomponents-core";
|
|
18
18
|
import { List$1 } from "igniteui-webcomponents-core";
|
|
19
|
+
import { XmlTextReader } from "igniteui-webcomponents-core";
|
|
19
20
|
import { WorkItemExtensions } from "./WorkItemExtensions";
|
|
20
21
|
import { RelationshipTargetMode_$type } from "./RelationshipTargetMode";
|
|
21
22
|
import { PackageRelationship } from "./PackageRelationship";
|
|
@@ -26,7 +27,6 @@ import { PackagePartExposedStream } from "./PackagePartExposedStream";
|
|
|
26
27
|
import { DocCoreExtensions } from "./DocCoreExtensions";
|
|
27
28
|
import { Enumerable } from "igniteui-webcomponents-core";
|
|
28
29
|
import { Async } from "./Async";
|
|
29
|
-
import { XmlTextReader } from "igniteui-webcomponents-core";
|
|
30
30
|
import { stringReplace, stringIsNullOrEmpty } from "igniteui-webcomponents-core";
|
|
31
31
|
import { StringComparer } from "igniteui-webcomponents-core";
|
|
32
32
|
import { ZipFile } from "./ZipFile";
|
|
@@ -58,18 +58,21 @@ var ProtectionInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
58
58
|
});
|
|
59
59
|
ProtectionInfo.prototype.k = function (a) {
|
|
60
60
|
a._locked$i = XlsxUtilities.a9(this.j);
|
|
61
|
+
a._hidden$i = XlsxUtilities.a9(this.h);
|
|
61
62
|
};
|
|
62
63
|
ProtectionInfo.a = function (a) {
|
|
63
64
|
return ProtectionInfo.b(a, false);
|
|
64
65
|
};
|
|
65
66
|
ProtectionInfo.b = function (a, b) {
|
|
66
|
-
var c = a.
|
|
67
|
-
|
|
67
|
+
var c = a._c7;
|
|
68
|
+
var d = a._c6;
|
|
69
|
+
if (b == false && nullableEquals(c, true) && nullableEquals(d, false)) {
|
|
68
70
|
return null;
|
|
69
71
|
}
|
|
70
|
-
var
|
|
71
|
-
|
|
72
|
-
|
|
72
|
+
var e = new ProtectionInfo();
|
|
73
|
+
e.j = toNullable(Boolean_$type, (nullableEquals(c, true)));
|
|
74
|
+
e.h = toNullable(Boolean_$type, (nullableEquals(d, true)));
|
|
75
|
+
return e;
|
|
73
76
|
};
|
|
74
77
|
ProtectionInfo.d = function (a, b) {
|
|
75
78
|
if (Base.referenceEquals(a, null) && Base.referenceEquals(b, null)) {
|
package/esm5/lib/SgmlReader.js
CHANGED
|
@@ -60,8 +60,8 @@ import { StringUtilitiesSgml } from "./StringUtilitiesSgml";
|
|
|
60
60
|
import { HWStack } from "./HWStack";
|
|
61
61
|
import { NameTable } from "igniteui-webcomponents-core";
|
|
62
62
|
import { XmlNamespaceManager } from "igniteui-webcomponents-core";
|
|
63
|
-
import { Entity } from "./Entity";
|
|
64
63
|
import { markType } from "igniteui-webcomponents-core";
|
|
64
|
+
import { Entity } from "./Entity";
|
|
65
65
|
import { StringBuilder } from "igniteui-webcomponents-core";
|
|
66
66
|
import { IndexOutOfRangeException } from "igniteui-webcomponents-core";
|
|
67
67
|
import { InvalidOperationException } from "igniteui-webcomponents-core";
|
|
@@ -7,9 +7,9 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
|
|
|
7
7
|
import { __extends } from "tslib";
|
|
8
8
|
import { BuiltInFunctionBase } from "./BuiltInFunctionBase";
|
|
9
9
|
import { ExcelCalcValue } from "./ExcelCalcValue";
|
|
10
|
+
import { UltraCalcFunctionComplex_ComplexNumber } from "./UltraCalcFunctionComplex_ComplexNumber";
|
|
10
11
|
import { markType } from "igniteui-webcomponents-core";
|
|
11
12
|
import { ExcelCalcErrorValue } from "./ExcelCalcErrorValue";
|
|
12
|
-
import { UltraCalcFunctionComplex_ComplexNumber } from "./UltraCalcFunctionComplex_ComplexNumber";
|
|
13
13
|
import { stringCompare1 } from "igniteui-webcomponents-core";
|
|
14
14
|
/**
|
|
15
15
|
* @hidden
|
|
@@ -7,8 +7,8 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
|
|
|
7
7
|
import { __extends } from "tslib";
|
|
8
8
|
import { BuiltInFunctionBase } from "./BuiltInFunctionBase";
|
|
9
9
|
import { ExcelCalcValue } from "./ExcelCalcValue";
|
|
10
|
-
import { markType } from "igniteui-webcomponents-core";
|
|
11
10
|
import { ExcelCalcErrorValue } from "./ExcelCalcErrorValue";
|
|
11
|
+
import { markType } from "igniteui-webcomponents-core";
|
|
12
12
|
import { CalcManagerUtilities } from "./CalcManagerUtilities";
|
|
13
13
|
/**
|
|
14
14
|
* @hidden
|
|
@@ -31,7 +31,7 @@ var UltraCalcFunctionFormulaText = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
31
31
|
}
|
|
32
32
|
var g;
|
|
33
33
|
if (typeCast(ArrayInteriorFormula.$, f) !== null) {
|
|
34
|
-
g = "{" + f.
|
|
34
|
+
g = "{" + f._c1._toString() + "}";
|
|
35
35
|
}
|
|
36
36
|
else {
|
|
37
37
|
g = f.formulaString;
|
|
@@ -7,8 +7,8 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
|
|
|
7
7
|
import { __extends } from "tslib";
|
|
8
8
|
import { UltraCalcFunctionLookupBase } from "./UltraCalcFunctionLookupBase";
|
|
9
9
|
import { ExcelCalcValue } from "./ExcelCalcValue";
|
|
10
|
-
import { ExcelCalcErrorValue } from "./ExcelCalcErrorValue";
|
|
11
10
|
import { RegionArrayProxyBase } from "./RegionArrayProxyBase";
|
|
11
|
+
import { ExcelCalcErrorValue } from "./ExcelCalcErrorValue";
|
|
12
12
|
import { typeCast, markType } from "igniteui-webcomponents-core";
|
|
13
13
|
import { truncate } from "igniteui-webcomponents-core";
|
|
14
14
|
/**
|
|
@@ -7,8 +7,8 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
|
|
|
7
7
|
import { __extends } from "tslib";
|
|
8
8
|
import { UltraCalcFunctionLookupBase } from "./UltraCalcFunctionLookupBase";
|
|
9
9
|
import { ExcelCalcValue } from "./ExcelCalcValue";
|
|
10
|
-
import { ExcelCalcErrorValue } from "./ExcelCalcErrorValue";
|
|
11
10
|
import { RegionArrayProxyBase } from "./RegionArrayProxyBase";
|
|
11
|
+
import { ExcelCalcErrorValue } from "./ExcelCalcErrorValue";
|
|
12
12
|
import { typeCast, markType } from "igniteui-webcomponents-core";
|
|
13
13
|
/**
|
|
14
14
|
* @hidden
|
|
@@ -7,9 +7,9 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
|
|
|
7
7
|
import { __extends } from "tslib";
|
|
8
8
|
import { UltraCalcFunctionLookupBase } from "./UltraCalcFunctionLookupBase";
|
|
9
9
|
import { ExcelCalcValue } from "./ExcelCalcValue";
|
|
10
|
+
import { RegionArrayProxyBase } from "./RegionArrayProxyBase";
|
|
10
11
|
import { ExcelCalcErrorValue } from "./ExcelCalcErrorValue";
|
|
11
12
|
import { MathUtilities } from "./MathUtilities";
|
|
12
|
-
import { RegionArrayProxyBase } from "./RegionArrayProxyBase";
|
|
13
13
|
import { typeCast, markType } from "igniteui-webcomponents-core";
|
|
14
14
|
import { truncate } from "igniteui-webcomponents-core";
|
|
15
15
|
/**
|
|
@@ -7,9 +7,9 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
|
|
|
7
7
|
import { __extends } from "tslib";
|
|
8
8
|
import { BuiltInFunctionBase } from "./BuiltInFunctionBase";
|
|
9
9
|
import { ExcelCalcValue } from "./ExcelCalcValue";
|
|
10
|
+
import { UltraCalcFunctionRoman_RomanNumeral } from "./UltraCalcFunctionRoman_RomanNumeral";
|
|
10
11
|
import { typeCast, Boolean_$type, markType } from "igniteui-webcomponents-core";
|
|
11
12
|
import { ExcelCalcErrorValue } from "./ExcelCalcErrorValue";
|
|
12
|
-
import { UltraCalcFunctionRoman_RomanNumeral } from "./UltraCalcFunctionRoman_RomanNumeral";
|
|
13
13
|
/**
|
|
14
14
|
* @hidden
|
|
15
15
|
*/
|
|
@@ -9,8 +9,8 @@ import { BuiltInFunctionBase } from "./BuiltInFunctionBase";
|
|
|
9
9
|
import { Regex } from "igniteui-webcomponents-core";
|
|
10
10
|
import { toNullable, Number_$type, markType } from "igniteui-webcomponents-core";
|
|
11
11
|
import { ExcelCalcValue } from "./ExcelCalcValue";
|
|
12
|
-
import { ExcelCalcErrorValue } from "./ExcelCalcErrorValue";
|
|
13
12
|
import { ValueFormatter } from "./ValueFormatter";
|
|
13
|
+
import { ExcelCalcErrorValue } from "./ExcelCalcErrorValue";
|
|
14
14
|
import { StringUtilities } from "./StringUtilities";
|
|
15
15
|
import { dateTryParse } from "igniteui-webcomponents-core";
|
|
16
16
|
import { tryParseInt32_1 } from "igniteui-webcomponents-core";
|
|
@@ -7,8 +7,8 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
|
|
|
7
7
|
import { __extends } from "tslib";
|
|
8
8
|
import { BuiltInFunctionBase } from "./BuiltInFunctionBase";
|
|
9
9
|
import { ExcelCalcValue } from "./ExcelCalcValue";
|
|
10
|
-
import { MathUtilities } from "./MathUtilities";
|
|
11
10
|
import { ValueFormatter } from "./ValueFormatter";
|
|
11
|
+
import { MathUtilities } from "./MathUtilities";
|
|
12
12
|
import { ExcelCalcErrorValue } from "./ExcelCalcErrorValue";
|
|
13
13
|
import { markType } from "igniteui-webcomponents-core";
|
|
14
14
|
import { stringFormat } from "igniteui-webcomponents-core";
|
|
@@ -7,8 +7,8 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
|
|
|
7
7
|
import { __extends } from "tslib";
|
|
8
8
|
import { UltraCalcFunctionLookupBase } from "./UltraCalcFunctionLookupBase";
|
|
9
9
|
import { ExcelCalcValue } from "./ExcelCalcValue";
|
|
10
|
-
import { ExcelCalcErrorValue } from "./ExcelCalcErrorValue";
|
|
11
10
|
import { RegionArrayProxyBase } from "./RegionArrayProxyBase";
|
|
11
|
+
import { ExcelCalcErrorValue } from "./ExcelCalcErrorValue";
|
|
12
12
|
import { typeCast, markType } from "igniteui-webcomponents-core";
|
|
13
13
|
import { truncate } from "igniteui-webcomponents-core";
|
|
14
14
|
/**
|
|
@@ -49,8 +49,8 @@ import { ProtectionInfo } from "./ProtectionInfo";
|
|
|
49
49
|
import { AlignmentInfo } from "./AlignmentInfo";
|
|
50
50
|
import { WorksheetCellFormatData } from "./WorksheetCellFormatData";
|
|
51
51
|
import { WorkbookStyle } from "./WorkbookStyle";
|
|
52
|
-
import { IWorkbookFontDefaultsResolver_$type } from "./IWorkbookFontDefaultsResolver";
|
|
53
52
|
import { WorkbookFontData } from "./WorkbookFontData";
|
|
53
|
+
import { IWorkbookFontDefaultsResolver_$type } from "./IWorkbookFontDefaultsResolver";
|
|
54
54
|
import { Dictionary$2 } from "igniteui-webcomponents-core";
|
|
55
55
|
import { WorkbookStyleCollection } from "./WorkbookStyleCollection";
|
|
56
56
|
import { IWorkbookFont_$type } from "./IWorkbookFont";
|
|
@@ -59,8 +59,8 @@ import { nullableNotEquals, nullableEquals, nullableLessThan, nullableIsNull, un
|
|
|
59
59
|
import { stringFormat, stringCompare3, stringInsert, stringSplit, stringEquals1 } from "igniteui-webcomponents-core";
|
|
60
60
|
import { PartManagerBase } from "./PartManagerBase";
|
|
61
61
|
import { CT_AbsoluteAnchor } from "./CT_AbsoluteAnchor";
|
|
62
|
-
import { CT_TwoCellAnchor } from "./CT_TwoCellAnchor";
|
|
63
62
|
import { WorksheetShape } from "./WorksheetShape";
|
|
63
|
+
import { CT_TwoCellAnchor } from "./CT_TwoCellAnchor";
|
|
64
64
|
import { SpreadsheetMLMain } from "./SpreadsheetMLMain";
|
|
65
65
|
import { XlsxUtilities } from "./XlsxUtilities";
|
|
66
66
|
import { EG_Anchor } from "./EG_Anchor";
|
|
@@ -210,8 +210,8 @@ import { CustomViewCollection } from "./CustomViewCollection";
|
|
|
210
210
|
import { DisplayOptions } from "./DisplayOptions";
|
|
211
211
|
import { ObjectModelWorksheetPartManager_DVInfo } from "./ObjectModelWorksheetPartManager_DVInfo";
|
|
212
212
|
import { DataValidationRule } from "./DataValidationRule";
|
|
213
|
-
import { AnyValueDataValidationRule } from "./AnyValueDataValidationRule";
|
|
214
213
|
import { ListDataValidationRule } from "./ListDataValidationRule";
|
|
214
|
+
import { AnyValueDataValidationRule } from "./AnyValueDataValidationRule";
|
|
215
215
|
import { CustomDataValidationRule } from "./CustomDataValidationRule";
|
|
216
216
|
import { TwoConstraintDataValidationRule } from "./TwoConstraintDataValidationRule";
|
|
217
217
|
import { OneConstraintDataValidationRule } from "./OneConstraintDataValidationRule";
|
|
@@ -335,14 +335,14 @@ import { ST_StyleEntryModifierList } from "./ST_StyleEntryModifierList";
|
|
|
335
335
|
import { ST_FontCollectionIndex_$type } from "./ST_FontCollectionIndex";
|
|
336
336
|
import { ST_PresetMaterialType_$type } from "./ST_PresetMaterialType";
|
|
337
337
|
import { DrawingMLMain } from "./DrawingMLMain";
|
|
338
|
+
import { CT_GroupFillProperties } from "./CT_GroupFillProperties";
|
|
339
|
+
import { CT_NoFillProperties } from "./CT_NoFillProperties";
|
|
338
340
|
import { ST_PresetPatternVal_$type } from "./ST_PresetPatternVal";
|
|
339
341
|
import { ST_BlackWhiteMode_$type } from "./ST_BlackWhiteMode";
|
|
340
342
|
import { ST_ColorSchemeIndex_$type } from "./ST_ColorSchemeIndex";
|
|
341
343
|
import { CT_PresetTextShape } from "./CT_PresetTextShape";
|
|
342
344
|
import { CT_TextSpacingPercent } from "./CT_TextSpacingPercent";
|
|
343
345
|
import { CT_TextSpacingPoint } from "./CT_TextSpacingPoint";
|
|
344
|
-
import { CT_NoFillProperties } from "./CT_NoFillProperties";
|
|
345
|
-
import { CT_GroupFillProperties } from "./CT_GroupFillProperties";
|
|
346
346
|
import { CT_AlphaOutsetEffect } from "./CT_AlphaOutsetEffect";
|
|
347
347
|
import { CT_EffectReference } from "./CT_EffectReference";
|
|
348
348
|
import { CT_LuminanceEffect } from "./CT_LuminanceEffect";
|
|
@@ -1335,7 +1335,7 @@ var FormatInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1335
1335
|
var v = a._bg._inner[this.r.value];
|
|
1336
1336
|
v.h(e, a);
|
|
1337
1337
|
}
|
|
1338
|
-
e.
|
|
1338
|
+
e._dv(f);
|
|
1339
1339
|
return e;
|
|
1340
1340
|
};
|
|
1341
1341
|
FormatInfo.$t = markType(FormatInfo, 'FormatInfo');
|
|
@@ -2708,7 +2708,7 @@ var ObjectModelTablePartManager = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2708
2708
|
if (c) {
|
|
2709
2709
|
var e_2;
|
|
2710
2710
|
var f_1;
|
|
2711
|
-
if (!((function () { var g = ArrayFormula.
|
|
2711
|
+
if (!((function () { var g = ArrayFormula._cu("=" + b, 1, a.currentFormat, CultureInfo.invariantCulture, e_2, f_1, d); e_2 = g.p4; f_1 = g.p5; return g.ret; })())) {
|
|
2712
2712
|
throw f_1;
|
|
2713
2713
|
}
|
|
2714
2714
|
return e_2;
|
|
@@ -8209,7 +8209,7 @@ var ObjectModelWorksheetPartManager = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
8209
8209
|
};
|
|
8210
8210
|
ObjectModelWorksheetPartManager.prototype.gh = function (at, au, av, aw) {
|
|
8211
8211
|
var ax = typeCast(SingleTargetFormula.$, aw);
|
|
8212
|
-
if (ax == null || ax.
|
|
8212
|
+
if (ax == null || ax._cl == false) {
|
|
8213
8213
|
return;
|
|
8214
8214
|
}
|
|
8215
8215
|
var ay = null;
|
|
@@ -8221,7 +8221,7 @@ var ObjectModelWorksheetPartManager = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
8221
8221
|
var a4 = null;
|
|
8222
8222
|
var a5 = toNullable(Number_$type, null);
|
|
8223
8223
|
if (ax._am) {
|
|
8224
|
-
var a6 = ax.
|
|
8224
|
+
var a6 = ax._c1;
|
|
8225
8225
|
a0 = 2;
|
|
8226
8226
|
az = a6._h._toString2(1, false, true, true);
|
|
8227
8227
|
var a7 = a6.columnInputCell;
|
|
@@ -8236,7 +8236,7 @@ var ObjectModelWorksheetPartManager = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
8236
8236
|
}
|
|
8237
8237
|
else if (ax._ak) {
|
|
8238
8238
|
a0 = 1;
|
|
8239
|
-
var ba = ax.
|
|
8239
|
+
var ba = ax._c1;
|
|
8240
8240
|
az = ba.cellRange._toString2(1, false, true, true);
|
|
8241
8241
|
ay = at._cw(ba);
|
|
8242
8242
|
}
|
|
@@ -9442,7 +9442,7 @@ var ObjectModelStylesPartManager = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
9442
9442
|
j = null;
|
|
9443
9443
|
}
|
|
9444
9444
|
var k = b._areaFormats$i._d(j, g);
|
|
9445
|
-
for (var l = 1; l !=
|
|
9445
|
+
for (var l = 1; l != -2147483648; l = (l << 1)) {
|
|
9446
9446
|
if (WorksheetTableStyle._q(l) == false) {
|
|
9447
9447
|
continue;
|
|
9448
9448
|
}
|
|
@@ -10060,7 +10060,7 @@ var WorkbookLoadManagerExcel2007 = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
10060
10060
|
for (var _4 = __values(fromEnum(this._b._namedReferences$i)), _5 = _4.next(); !_5.done; _5 = _4.next()) {
|
|
10061
10061
|
var b = _5.value;
|
|
10062
10062
|
if (b._j != null) {
|
|
10063
|
-
b._j.
|
|
10063
|
+
b._j._cx(this._b);
|
|
10064
10064
|
}
|
|
10065
10065
|
}
|
|
10066
10066
|
}
|