logitude-dashboard-library 3.2.44 → 3.2.46
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/dist/assets/styles/dl-dashboard.scss +10 -1
- package/dist/index.js +12 -12
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +12 -12
- package/dist/index.modern.js.map +1 -1
- package/dist/styles/dl-dashboard.scss +10 -1
- package/package.json +1 -1
|
@@ -312,7 +312,7 @@ $dark-grey: #717585;
|
|
|
312
312
|
font-family: 'Manrope', sans-serif;
|
|
313
313
|
font-style: normal;
|
|
314
314
|
color: #292D30;
|
|
315
|
-
padding-top:
|
|
315
|
+
padding-top: 9px;
|
|
316
316
|
margin-top: 0;
|
|
317
317
|
margin-bottom: 0;
|
|
318
318
|
font-size: 12px;
|
|
@@ -666,6 +666,15 @@ $dark-grey: #717585;
|
|
|
666
666
|
.db-fc-container {
|
|
667
667
|
width: 100%;
|
|
668
668
|
height: calc(100% - 5px);
|
|
669
|
+
padding-left: 0.12rem;
|
|
670
|
+
padding-right: 0.12rem;
|
|
671
|
+
padding-top: 0.05rem;
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
.db-fc-container-error {
|
|
675
|
+
padding-left: 0 !important;
|
|
676
|
+
padding-right: 0 !important;
|
|
677
|
+
padding-top: 0 !important;
|
|
669
678
|
}
|
|
670
679
|
|
|
671
680
|
.db-fc-container text {
|
package/dist/index.js
CHANGED
|
@@ -3616,7 +3616,15 @@ var FusionChart = React.forwardRef(function (props, comRef) {
|
|
|
3616
3616
|
}
|
|
3617
3617
|
};
|
|
3618
3618
|
|
|
3619
|
-
return
|
|
3619
|
+
return React__default.createElement("div", {
|
|
3620
|
+
className: 'db-fc-parent-container',
|
|
3621
|
+
ref: fusionRef
|
|
3622
|
+
}, React__default.createElement("div", {
|
|
3623
|
+
className: 'db-fc-container' + (dataLoaded && error ? " db-fc-container-error" : ""),
|
|
3624
|
+
key: fusionKey,
|
|
3625
|
+
ref: ref,
|
|
3626
|
+
id: chartContainerId
|
|
3627
|
+
}, !dataLoaded && React__default.createElement("div", {
|
|
3620
3628
|
ref: progressRef,
|
|
3621
3629
|
className: 'dl-full-hight dl-flex-content-center spinner-custome'
|
|
3622
3630
|
}, React__default.createElement(progressspinner.ProgressSpinner, {
|
|
@@ -3626,19 +3634,11 @@ var FusionChart = React.forwardRef(function (props, comRef) {
|
|
|
3626
3634
|
},
|
|
3627
3635
|
strokeWidth: "4",
|
|
3628
3636
|
animationDuration: "2s"
|
|
3629
|
-
}))
|
|
3630
|
-
className: 'db-fc-parent-container',
|
|
3631
|
-
ref: fusionRef
|
|
3632
|
-
}, React__default.createElement("div", {
|
|
3633
|
-
className: 'db-fc-container',
|
|
3634
|
-
key: fusionKey,
|
|
3635
|
-
ref: ref,
|
|
3636
|
-
id: chartContainerId
|
|
3637
|
-
}, React__default.createElement(ReactFC, Object.assign({}, args, {
|
|
3637
|
+
})), dataLoaded && !error && React__default.createElement(ReactFC, Object.assign({}, args, {
|
|
3638
3638
|
"fcEvent-dataplotClick": dataplotClick,
|
|
3639
3639
|
"fcEvent-loaded": loaded,
|
|
3640
3640
|
onRender: renderComplete
|
|
3641
|
-
}))
|
|
3641
|
+
})), dataLoaded && error && React__default.createElement("div", {
|
|
3642
3642
|
className: "dl-flex-content-center dl-full-hight",
|
|
3643
3643
|
style: {
|
|
3644
3644
|
width: '100%'
|
|
@@ -3649,7 +3649,7 @@ var FusionChart = React.forwardRef(function (props, comRef) {
|
|
|
3649
3649
|
className: "red-warning-icon"
|
|
3650
3650
|
}), React__default.createElement("span", {
|
|
3651
3651
|
className: "dl-tooltiptext"
|
|
3652
|
-
}, error)));
|
|
3652
|
+
}, error)))));
|
|
3653
3653
|
});
|
|
3654
3654
|
|
|
3655
3655
|
var _path$1;
|