igniteui-webcomponents-excel 4.3.1 → 4.3.2

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.
@@ -8138,12 +8138,13 @@ var ObjectModelWorksheetPartManager = /** @class */ /*@__PURE__*/ (function (_su
8138
8138
  this.ad.k();
8139
8139
  };
8140
8140
  ObjectModelWorksheetPartManager.prototype.ge = function (at, au) {
8141
- var av = this.bl._cx(au.p, au.n, Math.max(0, au.q - 1), Math.max(0, au.o - 1));
8142
- if (av == null) {
8141
+ var av = this.bl._c4(au.p, Math.max(0, au.q - 1), au.n, Math.max(0, au.o - 1), false, false);
8142
+ var aw = this.bl._cw(av);
8143
+ if (aw == null) {
8143
8144
  return;
8144
8145
  }
8145
- var aw = av._u ? av._k._c7(av._v, 1, false, true, true) : av._toString2(1, false, true, true);
8146
- SpreadsheetMLMain.aa1(this, aw);
8146
+ var ax = aw._u ? aw._k._c7(aw._v, 1, false, true, true) : aw._toString2(1, false, true, true);
8147
+ SpreadsheetMLMain.aa1(this, ax);
8147
8148
  this.ad.k();
8148
8149
  };
8149
8150
  ObjectModelWorksheetPartManager.gf = function (at, au) {
@@ -56778,7 +56779,7 @@ var ChartSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
56778
56779
  var i = h.l;
56779
56780
  var j = a.chartType == -4169;
56780
56781
  ChartSerializer.bt(i, g, b, e, d, false, j);
56781
- if (f == false) {
56782
+ if (f == false || c.xValues != null) {
56782
56783
  var k = c.xValues != null ? typeCast(SeriesValuesBase.$, c.xValues) : typeCast(SeriesValuesBase.$, c.values);
56783
56784
  if (d > 0 && b.xValues != null && b.xValues._ad == false) {
56784
56785
  k = b.xValues;
@@ -66410,6 +66411,7 @@ var ObjectModelDrawingPartManager = /** @class */ /*@__PURE__*/ (function (_supe
66410
66411
  var $ret = new CT_NonVisualDrawingProps();
66411
66412
  $ret.c = new ST_DrawingElementId(1, intSToU(h.value));
66412
66413
  $ret.f = i;
66414
+ $ret.d = a.visible == false;
66413
66415
  return $ret;
66414
66416
  })());
66415
66417
  $ret.b = new CT_NonVisualGraphicFrameProperties();
@@ -66455,6 +66457,7 @@ var ObjectModelDrawingPartManager = /** @class */ /*@__PURE__*/ (function (_supe
66455
66457
  var $ret = new CT_NonVisualDrawingProps();
66456
66458
  $ret.c = new ST_DrawingElementId(1, intSToU(h.value));
66457
66459
  $ret.f = i;
66460
+ $ret.d = a.visible == false;
66458
66461
  return $ret;
66459
66462
  })());
66460
66463
  $ret.b = new CT_NonVisualGraphicFrameProperties();
@@ -66508,6 +66511,7 @@ var ObjectModelDrawingPartManager = /** @class */ /*@__PURE__*/ (function (_supe
66508
66511
  $ret.a = ((function () {
66509
66512
  var $ret = new CT_NonVisualDrawingProps();
66510
66513
  $ret.c = ST_DrawingElementId.a(c.c);
66514
+ $ret.d = a.visible == false;
66511
66515
  $ret.f = a._b9;
66512
66516
  return $ret;
66513
66517
  })());
@@ -92341,6 +92341,9 @@ let WorksheetRow = /*@__PURE__*/ (() => {
92341
92341
  let d = this._ah;
92342
92342
  let e = this._cp(c);
92343
92343
  let f = this.worksheet != null ? this.worksheet._b3 : null;
92344
+ if (this._hasCellFormat) {
92345
+ f = this._cellFormatInternal.d;
92346
+ }
92344
92347
  if (e >= 0) {
92345
92348
  let g = d[e];
92346
92349
  let h = b % 32;
@@ -92363,7 +92366,7 @@ let WorksheetRow = /*@__PURE__*/ (() => {
92363
92366
  for (let n = 32 - 1; n >= 0; n--) {
92364
92367
  if (m.a[n] != null && !Base.equalsStatic(f, m.a[n])) {
92365
92368
  let o = m.b * 32 + n;
92366
- if (o > a) {
92369
+ if (o >= a) {
92367
92370
  return toNullable(Number_$type, o);
92368
92371
  }
92369
92372
  return toNullable(Number_$type, null);
@@ -93132,6 +93135,9 @@ let WorksheetRow = /*@__PURE__*/ (() => {
93132
93135
  else if (this._bz) {
93133
93136
  d = true;
93134
93137
  }
93138
+ else if (this._b1 || this.hidden != this.worksheet._dv) {
93139
+ d = true;
93140
+ }
93135
93141
  if (this._af != null) {
93136
93142
  let e = false;
93137
93143
  for (let f = 0; f < this._af.length; f++) {
@@ -94823,7 +94829,10 @@ let ConditionBase = /*@__PURE__*/ (() => {
94823
94829
  for (let k = 0; k < b._t.count; k++) {
94824
94830
  j._remove2(b._t._inner[k]);
94825
94831
  }
94826
- c.o(j);
94832
+ let l = j.worksheet;
94833
+ for (let m of fromEnum(j._t)) {
94834
+ c.add(new WorksheetRegion(l, m._ac, m._w, m._ae, m._x, false));
94835
+ }
94827
94836
  }
94828
94837
  else {
94829
94838
  if (c != null) {
@@ -97591,146 +97600,148 @@ let Worksheet = /*@__PURE__*/ (() => {
97591
97600
  /**
97592
97601
  * @hidden
97593
97602
  */
97594
- _c4(a, b, c, d, e) {
97595
- let f = c;
97596
- let g = a;
97597
- let h = d;
97598
- let i = b;
97599
- let j = this._ff;
97600
- let k = this._b3;
97601
- for (let l = j.count - 1; l >= 0; l--) {
97602
- let m = j._inner[l];
97603
- if (m.m != 0) {
97604
- f = m.r + 1;
97603
+ _c4(a, b, c, d, e, f = true) {
97604
+ let g = c;
97605
+ let h = a;
97606
+ let i = d;
97607
+ let j = b;
97608
+ let k = this._ff;
97609
+ let l = this._b3;
97610
+ for (let m = k.count - 1; m >= 0; m--) {
97611
+ let n = k._inner[m];
97612
+ if (n.m != 0) {
97613
+ g = n.r + 1;
97605
97614
  break;
97606
97615
  }
97607
- else if (!Base.equalsStatic(m.b, k)) {
97608
- f = m.r;
97616
+ else if (!Base.equalsStatic(n.b, l)) {
97617
+ g = n.r;
97609
97618
  break;
97610
97619
  }
97611
97620
  }
97612
- for (let n = 0; n < j.count; n++) {
97613
- let o = j._inner[n];
97614
- if (o.m != 0) {
97615
- h = o.q;
97621
+ for (let o = 0; o < k.count; o++) {
97622
+ let p = k._inner[o];
97623
+ if (p.m != 0) {
97624
+ i = p.q;
97616
97625
  break;
97617
97626
  }
97618
- else if (!Base.equalsStatic(o.b, k)) {
97619
- h = o.q;
97627
+ else if (!Base.equalsStatic(p.b, l)) {
97628
+ i = p.q;
97620
97629
  break;
97621
97630
  }
97622
97631
  }
97623
- let p = new MutableItemRange(h, f);
97624
- for (let q of fromEnum(this._rows$i._n(a, b, true))) {
97625
- let r = q._a0(p, c, d);
97626
- if (r != null) {
97627
- p = r;
97628
- g = q.index;
97629
- if (i > g) {
97630
- i = g;
97632
+ let q = new MutableItemRange(i, g);
97633
+ for (let r of fromEnum(this._rows$i._n(a, b, true))) {
97634
+ let s = r._a0(q, c, d);
97635
+ if (s != null) {
97636
+ q = s;
97637
+ h = r.index;
97638
+ if (j > h) {
97639
+ j = h;
97631
97640
  }
97632
97641
  }
97633
97642
  }
97634
- h = p.a;
97635
- f = p.b;
97636
- let s = new WorksheetRegionAddress(1, a, b, c, d);
97637
- for (let t of fromEnum(this._tables$i)) {
97638
- let u = t._by;
97639
- if (u._j(s)) {
97640
- if (u._ac < i) {
97641
- i = u._ac;
97642
- }
97643
- if (u._w < h) {
97644
- h = u._w;
97645
- }
97646
- if (u._x > f) {
97647
- f = u._x;
97648
- }
97649
- if (u._ae > g) {
97650
- g = u._ae;
97643
+ i = q.a;
97644
+ g = q.b;
97645
+ let t = new WorksheetRegionAddress(1, a, b, c, d);
97646
+ if (f) {
97647
+ for (let u of fromEnum(this._tables$i)) {
97648
+ let v = u._by;
97649
+ if (v._j(t)) {
97650
+ if (v._ac < j) {
97651
+ j = v._ac;
97652
+ }
97653
+ if (v._w < i) {
97654
+ i = v._w;
97655
+ }
97656
+ if (v._x > g) {
97657
+ g = v._x;
97658
+ }
97659
+ if (v._ae > h) {
97660
+ h = v._ae;
97661
+ }
97651
97662
  }
97652
97663
  }
97653
97664
  }
97654
97665
  if (this._d2) {
97655
- for (let v of fromEnum(this._eu.keys)) {
97656
- if (v.o >= a && v.o <= b) {
97657
- if (v.o < i) {
97658
- i = v.o;
97666
+ for (let w of fromEnum(this._eu.keys)) {
97667
+ if (w.o >= a && w.o <= b) {
97668
+ if (w.o < j) {
97669
+ j = w.o;
97659
97670
  }
97660
- if (v.m < h) {
97661
- h = v.m;
97671
+ if (w.m < i) {
97672
+ i = w.m;
97662
97673
  }
97663
- if (v.m > f) {
97664
- f = v.m;
97674
+ if (w.m > g) {
97675
+ g = w.m;
97665
97676
  }
97666
- if (v.o > g) {
97667
- g = v.o;
97677
+ if (w.o > h) {
97678
+ h = w.o;
97668
97679
  }
97669
97680
  }
97670
97681
  }
97671
97682
  }
97672
97683
  if (this._d1) {
97673
- for (let w of fromEnum(this._es)) {
97674
- let x = w.value._h;
97675
- if (x._j(s)) {
97676
- if (x._ac < i) {
97677
- i = x._ac;
97684
+ for (let x of fromEnum(this._es)) {
97685
+ let y = x.value._h;
97686
+ if (y._j(t)) {
97687
+ if (y._ac < j) {
97688
+ j = y._ac;
97678
97689
  }
97679
- if (x._w < h) {
97680
- h = x._w;
97690
+ if (y._w < i) {
97691
+ i = y._w;
97681
97692
  }
97682
- if (x._x > f) {
97683
- f = x._x;
97693
+ if (y._x > g) {
97694
+ g = y._x;
97684
97695
  }
97685
- if (x._ae > g) {
97686
- g = x._ae;
97696
+ if (y._ae > h) {
97697
+ h = y._ae;
97687
97698
  }
97688
97699
  }
97689
97700
  }
97690
97701
  }
97691
- if (e && (f < d || g < b)) {
97692
- for (let y of fromEnum(this._shapes$i)) {
97693
- let z = y._ah;
97694
- if (z.o < i) {
97695
- i = z.o;
97702
+ if (e && (g < d || h < b)) {
97703
+ for (let z of fromEnum(this._shapes$i)) {
97704
+ let aa = z._ah;
97705
+ if (aa.o < j) {
97706
+ j = aa.o;
97696
97707
  }
97697
- if (z.m < h) {
97698
- h = z.m;
97708
+ if (aa.m < i) {
97709
+ i = aa.m;
97699
97710
  }
97700
- let aa = y._ad;
97701
- if (aa.o > g) {
97702
- g = Math.min(aa.o, b);
97711
+ let ab = z._ad;
97712
+ if (ab.o > h) {
97713
+ h = Math.min(ab.o, b);
97703
97714
  }
97704
- if (aa.m > f) {
97705
- f = Math.min(aa.m, d);
97715
+ if (ab.m > g) {
97716
+ g = Math.min(ab.m, d);
97706
97717
  }
97707
97718
  }
97708
97719
  }
97709
- if (h < c) {
97710
- h = c;
97720
+ if (i < c) {
97721
+ i = c;
97711
97722
  }
97712
- if (i < a) {
97713
- i = a;
97723
+ if (j < a) {
97724
+ j = a;
97714
97725
  }
97715
- if (f > d) {
97716
- f = d;
97717
- }
97718
- else if (f < c) {
97719
- f = c;
97726
+ if (g > d) {
97727
+ g = d;
97720
97728
  }
97721
- if (g > b) {
97722
- g = b;
97729
+ else if (g < c) {
97730
+ g = c;
97723
97731
  }
97724
- else if (g < a) {
97725
- g = a;
97732
+ if (h > b) {
97733
+ h = b;
97726
97734
  }
97727
- if (h > f) {
97728
- h = f;
97735
+ else if (h < a) {
97736
+ h = a;
97729
97737
  }
97730
97738
  if (i > g) {
97731
97739
  i = g;
97732
97740
  }
97733
- return new WorksheetRegionAddress(1, i, g, h, f);
97741
+ if (j > h) {
97742
+ j = h;
97743
+ }
97744
+ return new WorksheetRegionAddress(1, j, h, i, g);
97734
97745
  }
97735
97746
  /**
97736
97747
  * @hidden
@@ -136289,7 +136300,7 @@ let Function = /*@__PURE__*/ (() => {
136289
136300
  if (b < 0) {
136290
136301
  this._vg = 255;
136291
136302
  this._q5 = true;
136292
- if (b == -3) {
136303
+ if (b == -3 || b == -2) {
136293
136304
  this._rh = true;
136294
136305
  }
136295
136306
  else if (b == -4) {
@@ -138916,7 +138927,7 @@ let Function = /*@__PURE__*/ (() => {
138916
138927
  return Function._g1("WINDOWS", 91 + 10000, 0, 2, false, 0, 1, null, 96, 64);
138917
138928
  }
138918
138929
  static get _v() {
138919
- return Function._g1("ANCHORARRAY", -3, 1, 1, false, 0, 1, null, 96, 32);
138930
+ return Function._g1("ANCHORARRAY", -3, 1, 1, false, 0, 1, null, 32, 32);
138920
138931
  }
138921
138932
  static get _n0() {
138922
138933
  return Function._g1("SINGLE", -3, 1, 1, false, 0, 1, null, 32, 32);
@@ -247850,12 +247861,13 @@ let ObjectModelWorksheetPartManager = /*@__PURE__*/ (() => {
247850
247861
  this.ad.k();
247851
247862
  }
247852
247863
  ge(at, au) {
247853
- let av = this.bl._cx(au.p, au.n, Math.max(0, au.q - 1), Math.max(0, au.o - 1));
247854
- if (av == null) {
247864
+ let av = this.bl._c4(au.p, Math.max(0, au.q - 1), au.n, Math.max(0, au.o - 1), false, false);
247865
+ let aw = this.bl._cw(av);
247866
+ if (aw == null) {
247855
247867
  return;
247856
247868
  }
247857
- let aw = av._u ? av._k._c7(av._v, 1, false, true, true) : av._toString2(1, false, true, true);
247858
- SpreadsheetMLMain.aa1(this, aw);
247869
+ let ax = aw._u ? aw._k._c7(aw._v, 1, false, true, true) : aw._toString2(1, false, true, true);
247870
+ SpreadsheetMLMain.aa1(this, ax);
247859
247871
  this.ad.k();
247860
247872
  }
247861
247873
  static gf(at, au) {
@@ -288755,7 +288767,7 @@ let ChartSerializer = /*@__PURE__*/ (() => {
288755
288767
  let i = h.l;
288756
288768
  let j = a.chartType == -4169;
288757
288769
  ChartSerializer.bt(i, g, b, e, d, false, j);
288758
- if (f == false) {
288770
+ if (f == false || c.xValues != null) {
288759
288771
  let k = c.xValues != null ? typeCast(SeriesValuesBase.$, c.xValues) : typeCast(SeriesValuesBase.$, c.values);
288760
288772
  if (d > 0 && b.xValues != null && b.xValues._ad == false) {
288761
288773
  k = b.xValues;
@@ -296758,6 +296770,7 @@ let ObjectModelDrawingPartManager = /*@__PURE__*/ (() => {
296758
296770
  let $ret = new CT_NonVisualDrawingProps();
296759
296771
  $ret.c = new ST_DrawingElementId(1, intSToU(h.value));
296760
296772
  $ret.f = i;
296773
+ $ret.d = a.visible == false;
296761
296774
  return $ret;
296762
296775
  })());
296763
296776
  $ret.b = new CT_NonVisualGraphicFrameProperties();
@@ -296803,6 +296816,7 @@ let ObjectModelDrawingPartManager = /*@__PURE__*/ (() => {
296803
296816
  let $ret = new CT_NonVisualDrawingProps();
296804
296817
  $ret.c = new ST_DrawingElementId(1, intSToU(h.value));
296805
296818
  $ret.f = i;
296819
+ $ret.d = a.visible == false;
296806
296820
  return $ret;
296807
296821
  })());
296808
296822
  $ret.b = new CT_NonVisualGraphicFrameProperties();
@@ -296856,6 +296870,7 @@ let ObjectModelDrawingPartManager = /*@__PURE__*/ (() => {
296856
296870
  $ret.a = ((() => {
296857
296871
  let $ret = new CT_NonVisualDrawingProps();
296858
296872
  $ret.c = ST_DrawingElementId.a(c.c);
296873
+ $ret.d = a.visible == false;
296859
296874
  $ret.f = a._b9;
296860
296875
  return $ret;
296861
296876
  })());