@oliasoft-open-source/charts-library 3.3.8 → 3.4.0

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.
Files changed (72) hide show
  1. package/dist/declaration.d.ts +15 -0
  2. package/dist/index.d.ts +1 -0
  3. package/dist/index.js +18349 -18611
  4. package/dist/index.js.map +1 -1
  5. package/dist/src/components/bar-chart/bar-chart-default-props.d.ts +69 -0
  6. package/dist/src/components/bar-chart/bar-chart.d.ts +3 -0
  7. package/dist/src/components/bar-chart/bar-chart.interface.d.ts +83 -0
  8. package/dist/src/components/bar-chart/get-bar-chart-data-labels.d.ts +16 -0
  9. package/dist/src/components/bar-chart/get-bar-chart-scales.d.ts +5 -0
  10. package/dist/src/components/bar-chart/get-bar-chart-tooltips.d.ts +15 -0
  11. package/dist/src/components/controls/axes-options/axes-options-interfaces.d.ts +19 -0
  12. package/dist/src/components/line-chart/constants/default-translations.d.ts +24 -0
  13. package/dist/src/components/line-chart/constants/line-chart-consts.d.ts +12 -0
  14. package/dist/src/components/line-chart/controls/axes-options/action-types.d.ts +5 -0
  15. package/dist/src/components/line-chart/controls/axes-options/axes-options-form-state.d.ts +18 -0
  16. package/dist/src/components/line-chart/controls/controls-interfaces.d.ts +34 -0
  17. package/dist/src/components/line-chart/controls/controls-portal.d.ts +2 -0
  18. package/dist/src/components/line-chart/controls/controls.d.ts +6 -0
  19. package/dist/src/components/line-chart/controls/drag-options-interfaces.d.ts +11 -0
  20. package/dist/src/components/line-chart/controls/drag-options.d.ts +5 -0
  21. package/dist/src/components/line-chart/controls/line-options.d.ts +1 -0
  22. package/dist/src/components/line-chart/hooks/hooks.interface.d.ts +13 -0
  23. package/dist/src/components/line-chart/hooks/use-chart-functions.d.ts +23 -0
  24. package/dist/src/components/line-chart/hooks/use-chart-options.d.ts +36 -0
  25. package/dist/src/components/line-chart/hooks/use-toggle-handler.d.ts +10 -0
  26. package/dist/src/components/line-chart/initialize/config.d.ts +12 -0
  27. package/dist/src/components/line-chart/initialize/initialize-line-chart.d.ts +12 -0
  28. package/dist/src/components/line-chart/legend/legend-constants.d.ts +1 -0
  29. package/dist/src/components/line-chart/legend/legend-dropzone.d.ts +3 -0
  30. package/dist/src/components/line-chart/legend/legend-item.d.ts +3 -0
  31. package/dist/src/components/line-chart/legend/legend-panel.d.ts +4 -0
  32. package/dist/src/components/line-chart/legend/legend.d.ts +3 -0
  33. package/dist/src/components/line-chart/line-chart-get-default-props.d.ts +91 -0
  34. package/dist/src/components/line-chart/line-chart.d.ts +3 -0
  35. package/dist/src/components/line-chart/line-chart.interface.d.ts +121 -0
  36. package/dist/src/components/line-chart/plugins/chart-area-text-plugin.d.ts +4 -0
  37. package/dist/src/components/line-chart/plugins/line-chart.minor-gridlines-plugin.d.ts +7 -0
  38. package/dist/src/components/line-chart/plugins/plugin-constants.d.ts +11 -0
  39. package/dist/src/components/line-chart/plugins/plugins.interface.d.ts +9 -0
  40. package/dist/src/components/line-chart/state/action-types.d.ts +12 -0
  41. package/dist/src/components/line-chart/state/initial-state.d.ts +18 -0
  42. package/dist/src/components/line-chart/state/line-chart-reducer.d.ts +1 -0
  43. package/dist/src/components/line-chart/state/manage-state-in-local-storage.d.ts +14 -0
  44. package/dist/src/components/line-chart/state/state.interfaces.d.ts +8 -0
  45. package/dist/src/components/line-chart/state/use-chart-state.d.ts +12 -0
  46. package/dist/src/components/line-chart/utils/axis-formatting/axis-formatting.d.ts +1 -0
  47. package/dist/src/components/line-chart/utils/axis-scales/axis-scales.d.ts +10 -0
  48. package/dist/src/components/line-chart/utils/datalabels-alignment/get-alignment-condition.d.ts +9 -0
  49. package/dist/src/components/line-chart/utils/datalabels-alignment/get-alignment-data.d.ts +11 -0
  50. package/dist/src/components/line-chart/utils/datalabels-alignment/get-datalabels-position.d.ts +5 -0
  51. package/dist/src/components/line-chart/utils/generate-line-chart-datasets.d.ts +10 -0
  52. package/dist/src/components/line-chart/utils/get-axes-ranges-from-chart.d.ts +6 -0
  53. package/dist/src/components/line-chart/utils/get-line-chart-data-labels.d.ts +17 -0
  54. package/dist/src/components/line-chart/utils/get-line-chart-scales.d.ts +9 -0
  55. package/dist/src/components/line-chart/utils/get-line-chart-tooltips.d.ts +16 -0
  56. package/dist/src/components/line-chart/utils/line-chart-utils.d.ts +31 -0
  57. package/dist/src/components/line-chart/utils/translations/get-translations.d.ts +7 -0
  58. package/dist/src/components/pie-chart/pie-chart-get-default-props.d.ts +39 -0
  59. package/dist/src/components/pie-chart/pie-chart-utils.d.ts +2 -0
  60. package/dist/src/components/pie-chart/pie-chart.d.ts +9 -0
  61. package/dist/src/components/pie-chart/pie-chart.interface.d.ts +54 -0
  62. package/dist/src/components/scatter-chart/scatter-chart.d.ts +7 -0
  63. package/dist/src/components/scatter-chart/scatter-chart.intefrace.d.ts +28 -0
  64. package/dist/src/helpers/chart-border-plugin.d.ts +7 -0
  65. package/dist/src/helpers/chart-consts.d.ts +32 -0
  66. package/dist/src/helpers/chart-interface.d.ts +85 -0
  67. package/dist/src/helpers/enums.d.ts +86 -0
  68. package/dist/src/helpers/get-chart-annotation.d.ts +12 -0
  69. package/dist/src/helpers/get-draggableData.d.ts +18 -0
  70. package/dist/src/helpers/range/estimate-data-series-have-close-values.d.ts +10 -0
  71. package/dist/src/helpers/range/range.d.ts +33 -0
  72. package/package.json +13 -11
@@ -0,0 +1,15 @@
1
+ declare module '*.module.less' {
2
+ const classes: { [className: string]: string };
3
+ export default classes;
4
+ }
5
+
6
+ declare module '*.svg' {
7
+ import * as React from 'react';
8
+
9
+ export const ReactComponent: React.FunctionComponent<
10
+ React.SVGProps<SVGSVGElement> & { title?: string }
11
+ >;
12
+
13
+ const src: string;
14
+ export default src;
15
+ }
@@ -0,0 +1 @@
1
+ export * from './index.js'