bt-core-app 2.0.313 → 2.0.314
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/bt-core-app.js +2 -2
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -42692,8 +42692,8 @@ function Ej(e) {
|
|
|
42692
42692
|
return d.data.datasets = u.datasets.map((M) => {
|
|
42693
42693
|
let h = M.noBackgroundColor == !0 && M.noBorderColor == !0 ? void 0 : f.getColor();
|
|
42694
42694
|
var D = {
|
|
42695
|
-
backgroundColor: M.backgroundColor ?? h,
|
|
42696
|
-
borderColor: M.borderColor ?? h,
|
|
42695
|
+
backgroundColor: M.noBackgroundColor == !0 ? void 0 : M.backgroundColor ?? h,
|
|
42696
|
+
borderColor: M.noBorderColor == !0 ? void 0 : M.borderColor ?? h,
|
|
42697
42697
|
data: M.data.map((L) => ({
|
|
42698
42698
|
x: M.getLabelValue(L),
|
|
42699
42699
|
y: M.getValue(L)
|
package/package.json
CHANGED