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.
- package/bundles/igniteui-webcomponents-charts.umd.js +4 -1
- package/bundles/igniteui-webcomponents-charts.umd.min.js +1 -1
- package/esm2015/lib/igc-data-legend-component.js +4 -1
- package/esm5/lib/igc-data-legend-component.js +4 -1
- package/fesm2015/igniteui-webcomponents-charts.js +4 -1
- package/fesm5/igniteui-webcomponents-charts.js +4 -1
- package/package.json +2 -2
|
@@ -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;
|