@oliasoft-open-source/charts-library 5.9.0 → 5.9.1-beta-1
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/index.d.ts +4 -4
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1118,16 +1118,16 @@ export { }
|
|
|
1118
1118
|
|
|
1119
1119
|
declare module 'chart.js' {
|
|
1120
1120
|
interface PluginOptionsByType<TType extends ChartType> {
|
|
1121
|
-
|
|
1122
|
-
enableCalloutAnnotation?: boolean;
|
|
1123
|
-
};
|
|
1121
|
+
annotationDraggerPlugin?: AnnotationDraggerPluginOptions;
|
|
1124
1122
|
}
|
|
1125
1123
|
}
|
|
1126
1124
|
|
|
1127
1125
|
|
|
1128
1126
|
declare module 'chart.js' {
|
|
1129
1127
|
interface PluginOptionsByType<TType extends ChartType> {
|
|
1130
|
-
|
|
1128
|
+
calloutConnectorPlugin?: {
|
|
1129
|
+
enableCalloutAnnotation?: boolean;
|
|
1130
|
+
};
|
|
1131
1131
|
}
|
|
1132
1132
|
}
|
|
1133
1133
|
|
package/dist/index.js
CHANGED
|
@@ -20123,8 +20123,8 @@ var defaultAdditionalAxesOptions$2 = (options) => ({
|
|
|
20123
20123
|
suggestedMin: options?.suggestedMin,
|
|
20124
20124
|
suggestedMax: options?.suggestedMax,
|
|
20125
20125
|
range: options?.range ? Object.fromEntries(Object.entries(options.range).map(([key, value]) => [key, {
|
|
20126
|
-
min: value?.min
|
|
20127
|
-
max: value?.max
|
|
20126
|
+
min: value?.min,
|
|
20127
|
+
max: value?.max
|
|
20128
20128
|
}])) : void 0,
|
|
20129
20129
|
autoAxisPadding: options?.autoAxisPadding ?? false
|
|
20130
20130
|
});
|
package/package.json
CHANGED