bt-core-app 2.0.263 → 2.0.265
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 -1
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -42568,7 +42568,8 @@ function sj(e) {
|
|
|
42568
42568
|
datasets: r.map((i) => {
|
|
42569
42569
|
var o = n(i);
|
|
42570
42570
|
return {
|
|
42571
|
-
data: o
|
|
42571
|
+
data: o,
|
|
42572
|
+
label: i.label
|
|
42572
42573
|
};
|
|
42573
42574
|
})
|
|
42574
42575
|
},
|
package/dist/index.d.ts
CHANGED
|
@@ -1041,6 +1041,7 @@ export declare interface GetStorageKeyOptions {
|
|
|
1041
1041
|
|
|
1042
1042
|
export declare interface GetXYOptions<T> extends GetRawXYOptions<T> {
|
|
1043
1043
|
fillGaps?: boolean;
|
|
1044
|
+
label?: string;
|
|
1044
1045
|
list: T[];
|
|
1045
1046
|
/**can be a filter or a time format */
|
|
1046
1047
|
xLabelFilter?: string;
|
package/package.json
CHANGED