bt-core-app 2.0.319 → 2.0.320
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 +6 -6
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -10425,12 +10425,12 @@ function Fd() {
|
|
|
10425
10425
|
{ color: "#27D81E" },
|
|
10426
10426
|
{ color: "#1E78D8" },
|
|
10427
10427
|
{ color: "#8F1ED8" },
|
|
10428
|
+
{ color: "#D2D81E" },
|
|
10428
10429
|
{ color: "#D83F1E" },
|
|
10429
|
-
{ color: "#D81EBE" },
|
|
10430
|
-
{ color: "#D81E5C" },
|
|
10431
10430
|
{ color: "#1ED5D8" },
|
|
10432
|
-
{ color: "#
|
|
10433
|
-
{ color: "#
|
|
10431
|
+
{ color: "#186A3B" },
|
|
10432
|
+
{ color: "#D81E5C" },
|
|
10433
|
+
{ color: "#D81EBE" }
|
|
10434
10434
|
];
|
|
10435
10435
|
let t = -1;
|
|
10436
10436
|
function a(l) {
|
|
@@ -42701,10 +42701,10 @@ function Ej(e) {
|
|
|
42701
42701
|
if (V != null)
|
|
42702
42702
|
if (M.groupValues == !0) {
|
|
42703
42703
|
var R = E.find((P) => P.x == A);
|
|
42704
|
-
R != null ? R.y += V : E.push({
|
|
42704
|
+
R != null ? (console.log(`merging: ${R.x}`), R.y += V) : (console.log(`adding: ${A}`), E.push({
|
|
42705
42705
|
x: A,
|
|
42706
42706
|
y: V
|
|
42707
|
-
});
|
|
42707
|
+
}));
|
|
42708
42708
|
} else
|
|
42709
42709
|
E.push({
|
|
42710
42710
|
x: A,
|
package/package.json
CHANGED