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.
Files changed (66) hide show
  1. package/bundles/igniteui-webcomponents-excel.umd.js +1127 -950
  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 +871 -742
  8. package/esm2015/lib/DomTextMetricsProvider.js +8 -8
  9. package/esm2015/lib/Formula_VisitWorksheetVisitor.js +7 -0
  10. package/esm2015/lib/JapaneseCalendar.js +1 -1
  11. package/esm2015/lib/ObjectModelDrawingPartManager_ShapeLoader_ShapeTypeCreator.js +1 -1
  12. package/esm2015/lib/PackagePart_combined.js +1 -1
  13. package/esm2015/lib/ProtectionInfo.js +8 -5
  14. package/esm2015/lib/SgmlReader.js +1 -1
  15. package/esm2015/lib/UltraCalcFunctionCell.js +1 -1
  16. package/esm2015/lib/UltraCalcFunctionComplex.js +1 -1
  17. package/esm2015/lib/UltraCalcFunctionDateDiff.js +1 -1
  18. package/esm2015/lib/UltraCalcFunctionFormulaText.js +1 -1
  19. package/esm2015/lib/UltraCalcFunctionHLookup.js +1 -1
  20. package/esm2015/lib/UltraCalcFunctionLookup.js +1 -1
  21. package/esm2015/lib/UltraCalcFunctionMatch.js +1 -1
  22. package/esm2015/lib/UltraCalcFunctionRoman.js +1 -1
  23. package/esm2015/lib/UltraCalcFunctionText.js +1 -1
  24. package/esm2015/lib/UltraCalcFunctionUSDollar.js +1 -1
  25. package/esm2015/lib/UltraCalcFunctionVLookup.js +1 -1
  26. package/esm2015/lib/WorkbookLoadManagerExcel2007_combined.js +12 -12
  27. package/esm2015/lib/WorkbookSaveManagerExcel2003_combined.js +179 -170
  28. package/esm2015/public_api.js +1 -0
  29. package/esm5/lib/AlignmentInfo.js +4 -4
  30. package/esm5/lib/BiffRecordStream.js +7 -7
  31. package/esm5/lib/CellFormatValue.js +1 -1
  32. package/esm5/lib/ConditionalFormattingUtils.js +1 -1
  33. package/esm5/lib/DefaultStyleHelper_combined.js +899 -741
  34. package/esm5/lib/DomTextMetricsProvider.js +8 -8
  35. package/esm5/lib/Formula_VisitWorksheetVisitor.js +7 -0
  36. package/esm5/lib/JapaneseCalendar.js +1 -1
  37. package/esm5/lib/ObjectModelDrawingPartManager_ShapeLoader_ShapeTypeCreator.js +1 -1
  38. package/esm5/lib/PackagePart_combined.js +1 -1
  39. package/esm5/lib/ProtectionInfo.js +8 -5
  40. package/esm5/lib/SgmlReader.js +1 -1
  41. package/esm5/lib/UltraCalcFunctionCell.js +1 -1
  42. package/esm5/lib/UltraCalcFunctionComplex.js +1 -1
  43. package/esm5/lib/UltraCalcFunctionDateDiff.js +1 -1
  44. package/esm5/lib/UltraCalcFunctionFormulaText.js +1 -1
  45. package/esm5/lib/UltraCalcFunctionHLookup.js +1 -1
  46. package/esm5/lib/UltraCalcFunctionLookup.js +1 -1
  47. package/esm5/lib/UltraCalcFunctionMatch.js +1 -1
  48. package/esm5/lib/UltraCalcFunctionRoman.js +1 -1
  49. package/esm5/lib/UltraCalcFunctionText.js +1 -1
  50. package/esm5/lib/UltraCalcFunctionUSDollar.js +1 -1
  51. package/esm5/lib/UltraCalcFunctionVLookup.js +1 -1
  52. package/esm5/lib/WorkbookLoadManagerExcel2007_combined.js +12 -12
  53. package/esm5/lib/WorkbookSaveManagerExcel2003_combined.js +179 -170
  54. package/esm5/public_api.js +1 -0
  55. package/fesm2015/igniteui-webcomponents-excel.js +1100 -952
  56. package/fesm5/igniteui-webcomponents-excel.js +1127 -951
  57. package/lib/BiffRecordStream.d.ts +2 -2
  58. package/lib/CellFormatValue.d.ts +5 -4
  59. package/lib/DefaultStyleHelper_combined.d.ts +149 -115
  60. package/lib/DomTextMetricsProvider.d.ts +1 -1
  61. package/lib/Formula_VisitWorksheetVisitor.d.ts +1 -0
  62. package/lib/JapaneseCalendar.d.ts +1 -1
  63. package/lib/WorkbookLoadManagerExcel2007_combined.d.ts +5 -5
  64. package/lib/WorkbookSaveManagerExcel2003_combined.d.ts +3 -3
  65. package/package.json +2 -2
  66. package/public_api.d.ts +1 -0
@@ -804,6 +804,7 @@ export * from './lib/Formula_TableResizingVisitor';
804
804
  export * from './lib/Formula_WorksheetMovedVisitor';
805
805
  export * from './lib/Formula_WorksheetRemovedVisitor';
806
806
  export * from './lib/Formula_VerifyFormatLimitsVisitor';
807
+ export * from './lib/Formula_VisitWorksheetVisitor';
807
808
  export * from './lib/Formula_InternalFlags';
808
809
  export * from './lib/Formula_TokensReplacedChangeContext';
809
810
  export * from './lib/FormulaParseException';
@@ -187,7 +187,7 @@ var AlignmentInfo = /** @class */ /*@__PURE__*/ (function (_super) {
187
187
  a.rotation = c;
188
188
  }
189
189
  var d = XlsxUtilities.a8(this.u);
190
- if (b || nullableNotEquals(a._c7, d)) {
190
+ if (b || nullableNotEquals(a._c9, d)) {
191
191
  a._wrapText$i = d;
192
192
  }
193
193
  if (b || a._a9 != this.i) {
@@ -198,7 +198,7 @@ var AlignmentInfo = /** @class */ /*@__PURE__*/ (function (_super) {
198
198
  a.indent = e;
199
199
  }
200
200
  var f = XlsxUtilities.a8(this.s);
201
- if (b || nullableNotEquals(a._c6, f)) {
201
+ if (b || nullableNotEquals(a._c8, f)) {
202
202
  a._shrinkToFit$i = f;
203
203
  }
204
204
  };
@@ -210,9 +210,9 @@ var AlignmentInfo = /** @class */ /*@__PURE__*/ (function (_super) {
210
210
  var d = a._a4;
211
211
  var e = toNullable(Number_$type, intSToU(a._ct));
212
212
  var f = toNullable(Number_$type, intSToU(a._cw));
213
- var g = a._c6;
213
+ var g = a._c8;
214
214
  var h = a._a9;
215
- var i = a._c7;
215
+ var i = a._c9;
216
216
  if (b == false && c == false && d == 0 && nullableEquals(e, 0) && nullableEquals(f, 0) && nullableEquals(g, false) && nullableEquals(i, false) && h == 2) {
217
217
  return null;
218
218
  }
@@ -743,10 +743,10 @@ var BiffRecordStream = /** @class */ /*@__PURE__*/ (function (_super) {
743
743
  BiffRecordStream.prototype._write10 = function (a) {
744
744
  this._write2(BitConverter.c(a));
745
745
  };
746
- BiffRecordStream.prototype._write12 = function (a) {
746
+ BiffRecordStream.prototype._write13 = function (a) {
747
747
  this._write2(BitConverter.e(a));
748
748
  };
749
- BiffRecordStream.prototype._write11 = function (a) {
749
+ BiffRecordStream.prototype._write12 = function (a) {
750
750
  this._write2(BitConverter.d(a));
751
751
  };
752
752
  BiffRecordStream.prototype._write17 = function (a) {
@@ -826,7 +826,7 @@ var BiffRecordStream = /** @class */ /*@__PURE__*/ (function (_super) {
826
826
  }
827
827
  this._cy(a, 0, true, true, b, c, true);
828
828
  };
829
- BiffRecordStream.prototype._write13 = function (a) {
829
+ BiffRecordStream.prototype._write11 = function (a) {
830
830
  var b = a.length;
831
831
  var c = this._am._inner[0];
832
832
  if (this._ai || a.length > c.d) {
@@ -849,10 +849,10 @@ var BiffRecordStream = /** @class */ /*@__PURE__*/ (function (_super) {
849
849
  this._a4 = this._a7 = this._a8 = c.b = b;
850
850
  };
851
851
  BiffRecordStream.prototype._writeEMURect = function (a) {
852
- this._write12(truncate(a.left));
853
- this._write12(truncate(a.top));
854
- this._write12(truncate(a.right));
855
- this._write12(truncate(a.bottom));
852
+ this._write13(truncate(a.left));
853
+ this._write13(truncate(a.top));
854
+ this._write13(truncate(a.right));
855
+ this._write13(truncate(a.bottom));
856
856
  };
857
857
  BiffRecordStream.prototype._bw = function () {
858
858
  var a = this._a3();
@@ -8,4 +8,4 @@ import { markEnum } from "igniteui-webcomponents-core";
8
8
  /**
9
9
  * @hidden
10
10
  */
11
- export var CellFormatValue_$type = /*@__PURE__*/ markEnum('CellFormatValue', 'Alignment,1|BottomBorderColorInfo,2|BottomBorderStyle,4|DiagonalBorderColorInfo,8|DiagonalBorders,16|DiagonalBorderStyle,32|Fill,64|FontBold,128|FontColorInfo,256|FontHeight,512|FontItalic,1024|FontName,2048|FontStrikeout,4096|FontSuperscriptSubscriptStyle,8192|FontUnderlineStyle,16384|FormatOptions,32768|FormatString,65536|Indent,131072|LeftBorderColorInfo,262144|LeftBorderStyle,524288|Locked,1048576|RightBorderColorInfo,2097152|RightBorderStyle,4194304|Rotation,8388608|ShrinkToFit,16777216|Style,33554432|TopBorderColorInfo,67108864|TopBorderStyle,134217728|VerticalAlignment,268435456|WrapText,536870912|_EndValue,1073741824|_OuterBorders,208404486|_TopAndBottomBorders,201326598|_UndoElementData,33587200|ThemeProperties,69470538|ThemeColorProperties,69468490|AlignmentFormattingProperties,830603265|BorderFormattingProperties,208404542|FillFormattingProperties,1073741888|FontFormattingProperties,32640|NumberFormattingProperties,1073807360|ProtectionFormattingProperties,1074790400|AllFormattingProperties,2147483647');
11
+ export var CellFormatValue_$type = /*@__PURE__*/ markEnum('CellFormatValue', 'Alignment,1|BottomBorderColorInfo,2|BottomBorderStyle,4|DiagonalBorderColorInfo,8|DiagonalBorders,16|DiagonalBorderStyle,32|Fill,64|FontBold,128|FontColorInfo,256|FontHeight,512|FontItalic,1024|FontName,2048|FontStrikeout,4096|FontSuperscriptSubscriptStyle,8192|FontUnderlineStyle,16384|FormatOptions,32768|FormatString,65536|Indent,131072|LeftBorderColorInfo,262144|LeftBorderStyle,524288|Locked,1048576|RightBorderColorInfo,2097152|RightBorderStyle,4194304|Rotation,8388608|ShrinkToFit,16777216|Style,33554432|TopBorderColorInfo,67108864|TopBorderStyle,134217728|VerticalAlignment,268435456|WrapText,536870912|Hidden,1073741824|_EndValue,-2147483648|_OuterBorders,208404486|_TopAndBottomBorders,201326598|_UndoElementData,33587200|ThemeProperties,69470538|ThemeColorProperties,69468490|AlignmentFormattingProperties,830603265|BorderFormattingProperties,208404542|FillFormattingProperties,-2147483584|FontFormattingProperties,32640|NumberFormattingProperties,-2147418112|ProtectionFormattingProperties,1074790400|AllFormattingProperties,-1');
@@ -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 { Base, markType } from "igniteui-webcomponents-core";
9
- import { ConditionBase } from "./ConditionBase";
10
9
  import { FormulaContext } from "./FormulaContext";
11
10
  import { FormulaStringGenerator } from "./FormulaStringGenerator";
11
+ import { ConditionBase } from "./ConditionBase";
12
12
  import { FormulaConditionalFormat } from "./FormulaConditionalFormat";
13
13
  import { CellAddress } from "./CellAddress";
14
14
  import { stringIsNullOrEmpty, stringEmpty } from "igniteui-webcomponents-core";