igniteui-webcomponents-charts 3.2.0 → 3.2.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.
@@ -49521,13 +49521,16 @@
49521
49521
  */
49522
49522
  get: function () {
49523
49523
  var ret = this.i.target;
49524
+ if (!ret) {
49525
+ return ret;
49526
+ }
49524
49527
  if (ret.externalObject != null) {
49525
49528
  ret = ret.externalObject;
49526
49529
  }
49527
49530
  return ret;
49528
49531
  },
49529
49532
  set: function (v) {
49530
- if (v._implementation) {
49533
+ if (v && v._implementation) {
49531
49534
  v = v._implementation;
49532
49535
  }
49533
49536
  this.i.target = v;