ps-toolkit-ui 1.4.3 → 1.4.4
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/ps-toolkit-ui.umd.js +1 -1
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/classes/chart.class.js +2 -2
- package/esm2015/lib/classes/currentDataClass.js +15 -0
- package/esm2015/lib/components/layout/layout.component.js +1 -1
- package/esm2015/lib/components/sidebar/sidebar.component.js +1 -1
- package/esm2015/public-api.js +2 -2
- package/fesm2015/ps-toolkit-ui.js +1 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/lib/classes/{current-data.class.d.ts → currentDataClass.d.ts} +0 -0
- package/lib/components/layout/layout.component.d.ts +1 -1
- package/lib/components/sidebar/sidebar.component.d.ts +1 -1
- package/package.json +1 -1
- package/ps-toolkit-ui.metadata.json +1 -1
- package/public-api.d.ts +1 -1
- package/esm2015/lib/classes/current-data.class.js +0 -15
|
@@ -7611,7 +7611,7 @@
|
|
|
7611
7611
|
if (categories === void 0) { categories = []; }
|
|
7612
7612
|
var date = this.l('Date');
|
|
7613
7613
|
var data = [].concat.apply([], cOpt.series.map(function (o) { return o.data; }));
|
|
7614
|
-
if (data.filter(function (x) { return x !== 0; }).length
|
|
7614
|
+
if (data.filter(function (x) { return x !== 0; }).length === 0) {
|
|
7615
7615
|
this.empty = true;
|
|
7616
7616
|
return;
|
|
7617
7617
|
}
|