logitude-dashboard-library 1.4.50 → 1.4.51
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 +3 -3
- package/dist/features/Dashboard/ChartsComponents/ApexChart.d.ts +2 -2
- package/dist/features/Dashboard/ChartsComponents/CustomCharts/CustomChart.d.ts +2 -2
- package/dist/features/Dashboard/ChartsComponents/CustomCharts/KpiChart.d.ts +2 -2
- package/dist/features/Dashboard/ChartsComponents/FusionChartTest.d.ts +2 -2
- package/dist/features/Dashboard/ChartsComponents/FusionCharts/FusionChartObjectHelper.d.ts +2 -0
- package/dist/features/Dashboard/DashboardDesigner.d.ts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +61 -256
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +61 -256
- package/dist/index.modern.js.map +1 -1
- package/dist/types/widget.d.ts +6 -0
- package/package.json +1 -1
|
@@ -475,20 +475,20 @@ $dark-grey: #717585;
|
|
|
475
475
|
|
|
476
476
|
.db-fc-container text {
|
|
477
477
|
font-family: 'Manrope' !important;
|
|
478
|
-
font-size:
|
|
478
|
+
font-size: inherit !important;
|
|
479
479
|
fill: #323232 !important;
|
|
480
480
|
fill-opacity: 100 !important;
|
|
481
481
|
}
|
|
482
482
|
.db-fc-container tspan {
|
|
483
483
|
font-family: 'Manrope' !important;
|
|
484
|
-
font-size:
|
|
484
|
+
font-size: inherit !important;
|
|
485
485
|
fill: #323232 !important;
|
|
486
486
|
fill-opacity: 100 !important;
|
|
487
487
|
}
|
|
488
488
|
|
|
489
489
|
.db-fc-container * {
|
|
490
490
|
font-family: 'Manrope' !important;
|
|
491
|
-
font-size: 10px !important;
|
|
491
|
+
// font-size: 10px !important;
|
|
492
492
|
}
|
|
493
493
|
|
|
494
494
|
.db-fc-container>*:first-child {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from "react";
|
|
2
2
|
import { ReactWidgetPM } from "../../../types/widget";
|
|
3
3
|
import { DataPointSelection } from '../../../types/SeriesMeasure';
|
|
4
4
|
import { ApexOptions } from "apexcharts";
|
|
@@ -9,7 +9,7 @@ declare type ApexChartProps = {
|
|
|
9
9
|
dataBinding: DashboardDataBinding;
|
|
10
10
|
onSelectDataPoint: (dataPointSelection: DataPointSelection) => void;
|
|
11
11
|
};
|
|
12
|
-
declare const ApexChart: (props: ApexChartProps) => JSX.Element;
|
|
12
|
+
declare const ApexChart: (props: ApexChartProps) => React.JSX.Element;
|
|
13
13
|
export declare type ApexChartArgs = {
|
|
14
14
|
options: ApexOptions;
|
|
15
15
|
series: ApexAxisChartSeries | ApexNonAxisChartSeries;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from "react";
|
|
2
2
|
import { DashboardDataBinding } from "../../../../types/DashboardDataBinding";
|
|
3
3
|
import { DataPointSelection } from "../../../../types/SeriesMeasure";
|
|
4
4
|
import { ReactWidgetPM } from "../../../../types/widget";
|
|
@@ -8,5 +8,5 @@ export declare type CustomChartProps = {
|
|
|
8
8
|
dataBinding: DashboardDataBinding;
|
|
9
9
|
onSelectDataPoint: (dataPointSelection: DataPointSelection) => void;
|
|
10
10
|
};
|
|
11
|
-
declare const CustomChart: (props: CustomChartProps) => JSX.Element;
|
|
11
|
+
declare const CustomChart: (props: CustomChartProps) => React.JSX.Element;
|
|
12
12
|
export default CustomChart;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
import React from "react";
|
|
2
2
|
import { CustomChartProps } from "./CustomChart";
|
|
3
3
|
declare type KpiChartProps = {
|
|
4
4
|
customChartProps: CustomChartProps;
|
|
5
5
|
};
|
|
6
|
-
declare const KpiChart: (props: KpiChartProps) => JSX.Element;
|
|
6
|
+
declare const KpiChart: (props: KpiChartProps) => React.JSX.Element;
|
|
7
7
|
export default KpiChart;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
declare function FusionChartTest(): JSX.Element;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare function FusionChartTest(): React.JSX.Element;
|
|
3
3
|
export default FusionChartTest;
|
|
@@ -69,11 +69,13 @@ export interface ChartInfo {
|
|
|
69
69
|
sYAxisNameBorderPadding: number;
|
|
70
70
|
pYAxisNameBorderPadding: number;
|
|
71
71
|
xAxisNameFont: string;
|
|
72
|
+
xAxisName: string;
|
|
72
73
|
xAxisNameFontSize: string;
|
|
73
74
|
xAxisNameFontColor: string;
|
|
74
75
|
yAxisNameFont: string;
|
|
75
76
|
yAxisNameFontSize: string;
|
|
76
77
|
yAxisNameFontColor: string;
|
|
78
|
+
yAxisName: string;
|
|
77
79
|
adjustDiv: string;
|
|
78
80
|
}
|
|
79
81
|
export declare function getSeriesPositionColor(position: number): string | null;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { Layouts } from "react-grid-layout";
|
|
2
|
+
import React from "react";
|
|
3
3
|
import { ReactWidgetPM } from "../../types/widget";
|
|
4
4
|
import { DataPointSelection } from "../../types/SeriesMeasure";
|
|
5
5
|
import { DashboardDataBinding } from "../../types/DashboardDataBinding";
|
|
@@ -13,7 +13,7 @@ declare type DashboardDesignerProps = {
|
|
|
13
13
|
dataBinding: DashboardDataBinding;
|
|
14
14
|
onSelectDataPoint: (dataPointSelection: DataPointSelection) => void;
|
|
15
15
|
};
|
|
16
|
-
declare const DashboardDesigner: (props: DashboardDesignerProps) => JSX.Element;
|
|
16
|
+
declare const DashboardDesigner: (props: DashboardDesignerProps) => React.JSX.Element;
|
|
17
17
|
export declare const layoutGridProps: {
|
|
18
18
|
rowHeight: number;
|
|
19
19
|
className: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import * as React from 'react';
|
|
2
2
|
import "./styles.module.css";
|
|
3
3
|
import { ReactWidgetPM } from './types/widget';
|
|
4
4
|
import { DashboardDataBinding } from './types/DashboardDataBinding';
|
|
@@ -16,5 +16,5 @@ declare type DashboardProps = {
|
|
|
16
16
|
openEditWidget: (Widget: ReactWidgetPM) => void;
|
|
17
17
|
onSelectDataPoint: (dataPointSelection: DataPointSelection) => void;
|
|
18
18
|
};
|
|
19
|
-
declare const Dashboard: (props: DashboardProps) => JSX.Element;
|
|
19
|
+
declare const Dashboard: (props: DashboardProps) => React.JSX.Element;
|
|
20
20
|
export default Dashboard;
|