@oliasoft-open-source/charts-library 3.7.4 → 3.7.6
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.
|
@@ -4,7 +4,6 @@ interface ILineOptions {
|
|
|
4
4
|
onTogglePoints: () => void;
|
|
5
5
|
pointsEnabled: boolean;
|
|
6
6
|
translations: Record<string, string>;
|
|
7
|
-
hasCustomOpt: boolean;
|
|
8
7
|
}
|
|
9
|
-
export declare const LineOptions: ({ lineEnabled, onToggleLine, onTogglePoints, pointsEnabled, translations,
|
|
8
|
+
export declare const LineOptions: ({ lineEnabled, onToggleLine, onTogglePoints, pointsEnabled, translations, }: ILineOptions) => import("react/jsx-runtime").JSX.Element;
|
|
10
9
|
export {};
|
|
@@ -42,7 +42,6 @@ export namespace OnePoint {
|
|
|
42
42
|
x: number;
|
|
43
43
|
y: number;
|
|
44
44
|
}[];
|
|
45
|
-
showLine: boolean;
|
|
46
45
|
}[];
|
|
47
46
|
export { datasets_1 as datasets };
|
|
48
47
|
}
|
|
@@ -1075,6 +1074,14 @@ export namespace CombiningTypes {
|
|
|
1075
1074
|
export namespace chart_38 {
|
|
1076
1075
|
export namespace data_20 {
|
|
1077
1076
|
const datasets_20: ({
|
|
1077
|
+
label: string;
|
|
1078
|
+
data: {
|
|
1079
|
+
x: number;
|
|
1080
|
+
y: number;
|
|
1081
|
+
}[];
|
|
1082
|
+
showPoints?: undefined;
|
|
1083
|
+
showLine?: undefined;
|
|
1084
|
+
} | {
|
|
1078
1085
|
label: string;
|
|
1079
1086
|
showPoints: boolean;
|
|
1080
1087
|
data: {
|
|
@@ -1117,6 +1124,34 @@ export namespace EmptyDS {
|
|
|
1117
1124
|
}
|
|
1118
1125
|
export { args_41 as args };
|
|
1119
1126
|
}
|
|
1127
|
+
export function Tension(args: any): import("react/jsx-runtime").JSX.Element;
|
|
1128
|
+
export namespace Tension {
|
|
1129
|
+
export namespace args_42 {
|
|
1130
|
+
export namespace chart_40 {
|
|
1131
|
+
export namespace options_34 {
|
|
1132
|
+
export namespace graph_3 {
|
|
1133
|
+
const lineTension: number;
|
|
1134
|
+
}
|
|
1135
|
+
export { graph_3 as graph };
|
|
1136
|
+
}
|
|
1137
|
+
export { options_34 as options };
|
|
1138
|
+
export namespace data_22 {
|
|
1139
|
+
const datasets_22: {
|
|
1140
|
+
label: string;
|
|
1141
|
+
showPoints: boolean;
|
|
1142
|
+
data: {
|
|
1143
|
+
x: number;
|
|
1144
|
+
y: number;
|
|
1145
|
+
}[];
|
|
1146
|
+
}[];
|
|
1147
|
+
export { datasets_22 as datasets };
|
|
1148
|
+
}
|
|
1149
|
+
export { data_22 as data };
|
|
1150
|
+
}
|
|
1151
|
+
export { chart_40 as chart };
|
|
1152
|
+
}
|
|
1153
|
+
export { args_42 as args };
|
|
1154
|
+
}
|
|
1120
1155
|
import { LineChart } from './line-chart';
|
|
1121
1156
|
declare namespace basicChart { }
|
|
1122
1157
|
declare const customLegendContainerID: "custom-legend-container";
|
package/package.json
CHANGED