igniteui-webcomponents-charts 7.1.0-alpha.2 → 7.1.0-alpha.3

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.
@@ -15265,9 +15265,8 @@
15265
15265
  if (!(a < this.et.count))
15266
15266
  return [3 /*break*/, 4];
15267
15267
  b = this.et._inner[a];
15268
- if (b == null) {
15268
+ if (!(b != null))
15269
15269
  return [3 /*break*/, 3];
15270
- }
15271
15270
  return [4 /*yield*/, b];
15272
15271
  case 2:
15273
15272
  _a.sent();
@@ -17030,9 +17029,8 @@
17030
17029
  if (!!_b.done)
17031
17030
  return [3 /*break*/, 4];
17032
17031
  a = _b.value;
17033
- if (a == null) {
17032
+ if (!(a != null))
17034
17033
  return [3 /*break*/, 3];
17035
- }
17036
17034
  return [4 /*yield*/, a];
17037
17035
  case 2:
17038
17036
  _k.sent();
@@ -10266,10 +10266,9 @@ let Axis = /*@__PURE__*/ (() => {
10266
10266
  *_ep() {
10267
10267
  for (let a = 0; a < this.et.count; a++) {
10268
10268
  let b = this.et._inner[a];
10269
- if (b == null) {
10270
- continue;
10269
+ if (b != null) {
10270
+ yield b;
10271
10271
  }
10272
- yield b;
10273
10272
  }
10274
10273
  }
10275
10274
  ep() {
@@ -11842,10 +11841,9 @@ let CategoryAxisBase = /*@__PURE__*/ (() => {
11842
11841
  }
11843
11842
  *_pu() {
11844
11843
  for (let a of fromEnum(this.et)) {
11845
- if (a == null) {
11846
- continue;
11844
+ if (a != null) {
11845
+ yield a;
11847
11846
  }
11848
- yield a;
11849
11847
  }
11850
11848
  if (this.b7 != null && this.b7.gb && this.pr(this.b7)) {
11851
11849
  for (let b of fromEnum(this.b7.hm())) {
@@ -11936,9 +11936,8 @@ export var Axis = /** @class */ /*@__PURE__*/ (function (_super) {
11936
11936
  if (!(a < this.et.count))
11937
11937
  return [3 /*break*/, 4];
11938
11938
  b = this.et._inner[a];
11939
- if (b == null) {
11939
+ if (!(b != null))
11940
11940
  return [3 /*break*/, 3];
11941
- }
11942
11941
  return [4 /*yield*/, b];
11943
11942
  case 2:
11944
11943
  _a.sent();
@@ -13701,9 +13700,8 @@ export var CategoryAxisBase = /** @class */ /*@__PURE__*/ (function (_super) {
13701
13700
  if (!!_b.done)
13702
13701
  return [3 /*break*/, 4];
13703
13702
  a = _b.value;
13704
- if (a == null) {
13703
+ if (!(a != null))
13705
13704
  return [3 /*break*/, 3];
13706
- }
13707
13705
  return [4 /*yield*/, a];
13708
13706
  case 2:
13709
13707
  _k.sent();
@@ -13322,10 +13322,9 @@ let Axis = /*@__PURE__*/ (() => {
13322
13322
  *_ep() {
13323
13323
  for (let a = 0; a < this.et.count; a++) {
13324
13324
  let b = this.et._inner[a];
13325
- if (b == null) {
13326
- continue;
13325
+ if (b != null) {
13326
+ yield b;
13327
13327
  }
13328
- yield b;
13329
13328
  }
13330
13329
  }
13331
13330
  ep() {
@@ -14894,10 +14893,9 @@ let CategoryAxisBase = /*@__PURE__*/ (() => {
14894
14893
  }
14895
14894
  *_pu() {
14896
14895
  for (let a of fromEnum(this.et)) {
14897
- if (a == null) {
14898
- continue;
14896
+ if (a != null) {
14897
+ yield a;
14899
14898
  }
14900
- yield a;
14901
14899
  }
14902
14900
  if (this.b7 != null && this.b7.gb && this.pr(this.b7)) {
14903
14901
  for (let b of fromEnum(this.b7.hm())) {
@@ -15262,9 +15262,8 @@ var Axis = /** @class */ /*@__PURE__*/ (function (_super) {
15262
15262
  if (!(a < this.et.count))
15263
15263
  return [3 /*break*/, 4];
15264
15264
  b = this.et._inner[a];
15265
- if (b == null) {
15265
+ if (!(b != null))
15266
15266
  return [3 /*break*/, 3];
15267
- }
15268
15267
  return [4 /*yield*/, b];
15269
15268
  case 2:
15270
15269
  _a.sent();
@@ -17027,9 +17026,8 @@ var CategoryAxisBase = /** @class */ /*@__PURE__*/ (function (_super) {
17027
17026
  if (!!_b.done)
17028
17027
  return [3 /*break*/, 4];
17029
17028
  a = _b.value;
17030
- if (a == null) {
17029
+ if (!(a != null))
17031
17030
  return [3 /*break*/, 3];
17032
- }
17033
17031
  return [4 /*yield*/, a];
17034
17032
  case 2:
17035
17033
  _k.sent();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-webcomponents-charts",
3
- "version": "7.1.0-alpha.2",
3
+ "version": "7.1.0-alpha.3",
4
4
  "description": "Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.",
5
5
  "homepage": "https://github.com/IgniteUI/igniteui-webcomponents-charts",
6
6
  "keywords": [
@@ -25,7 +25,7 @@
25
25
  "tslib": "^2.3.1"
26
26
  },
27
27
  "peerDependencies": {
28
- "igniteui-webcomponents-core": "7.1.0-alpha.2"
28
+ "igniteui-webcomponents-core": "7.1.0-alpha.3"
29
29
  },
30
30
  "sideEffects": false,
31
31
  "typings": "igniteui-webcomponents-charts.d.ts",