@c8y/ngx-components 1023.14.8 → 1023.15.0
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/assets-navigator/index.d.ts +7 -3
- package/assets-navigator/index.d.ts.map +1 -1
- package/fesm2022/c8y-ngx-components-assets-navigator.mjs +25 -6
- package/fesm2022/c8y-ngx-components-assets-navigator.mjs.map +1 -1
- package/fesm2022/c8y-ngx-components-echart.mjs +3 -8
- package/fesm2022/c8y-ngx-components-echart.mjs.map +1 -1
- package/fesm2022/c8y-ngx-components-group-breadcrumbs.mjs +192 -0
- package/fesm2022/c8y-ngx-components-group-breadcrumbs.mjs.map +1 -0
- package/fesm2022/c8y-ngx-components-module-federation-exports-assets-navigator.mjs +13 -0
- package/fesm2022/c8y-ngx-components-module-federation-exports-assets-navigator.mjs.map +1 -0
- package/fesm2022/c8y-ngx-components.mjs +201 -77
- package/fesm2022/c8y-ngx-components.mjs.map +1 -1
- package/group-breadcrumbs/index.d.ts +6 -0
- package/group-breadcrumbs/index.d.ts.map +1 -0
- package/index.d.ts +85 -35
- package/index.d.ts.map +1 -1
- package/locales/de.po +39 -45
- package/locales/es.po +29 -35
- package/locales/fr.po +21 -27
- package/locales/ja_JP.po +18 -24
- package/locales/ko.po +27 -33
- package/locales/locales.pot +1 -13
- package/locales/nl.po +24 -30
- package/locales/pl.po +42 -48
- package/locales/pt_BR.po +26 -32
- package/locales/zh_CN.po +24 -30
- package/locales/zh_TW.po +34 -40
- package/module-federation-exports/assets-navigator/index.d.ts +2 -0
- package/module-federation-exports/assets-navigator/index.d.ts.map +1 -0
- package/package.json +1 -1
|
@@ -388,15 +388,10 @@ class EchartsOptionsService {
|
|
|
388
388
|
forceMergeDatapoints: displayOptions.forceMergeDatapoints,
|
|
389
389
|
showLabelAndUnit: displayOptions.showLabelAndUnit
|
|
390
390
|
});
|
|
391
|
-
const AXIS_PADDING = 20;
|
|
392
391
|
const leftAxis = Array.isArray(yAxis) ? yAxis.filter(yx => yx.position === 'left') : [];
|
|
393
|
-
const gridLeft = leftAxis.length
|
|
394
|
-
? leftAxis.length * (this.yAxisService.Y_AXIS_OFFSET - AXIS_PADDING)
|
|
395
|
-
: 32;
|
|
392
|
+
const gridLeft = leftAxis.length ? leftAxis.length * this.yAxisService.Y_AXIS_OFFSET : 32;
|
|
396
393
|
const rightAxis = Array.isArray(yAxis) ? yAxis.filter(yx => yx.position === 'right') : [];
|
|
397
|
-
const gridRight = rightAxis.length
|
|
398
|
-
? rightAxis.length * (this.yAxisService.Y_AXIS_OFFSET - AXIS_PADDING)
|
|
399
|
-
: 16;
|
|
394
|
+
const gridRight = rightAxis.length ? rightAxis.length * this.yAxisService.Y_AXIS_OFFSET : 16;
|
|
400
395
|
const selectedLanguage = this.translate.currentLang;
|
|
401
396
|
let intervalInMs = this.calculateExtendedIntervalInMs(selectedTimeRange?.interval || timeRange.interval || 'hours', selectedTimeRange || timeRange);
|
|
402
397
|
if (sliderZoomUsed) {
|
|
@@ -426,7 +421,7 @@ class EchartsOptionsService {
|
|
|
426
421
|
left: gridLeft,
|
|
427
422
|
top: 16,
|
|
428
423
|
right: gridRight,
|
|
429
|
-
bottom:
|
|
424
|
+
bottom: 68
|
|
430
425
|
},
|
|
431
426
|
dataZoom: [
|
|
432
427
|
{
|