@progress/kendo-charts 2.6.3-dev.202411221249 → 2.7.0-dev.202501020821

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 (34) hide show
  1. package/dist/cdn/js/kendo-charts.js +1 -1
  2. package/dist/cdn/main.js +1 -1
  3. package/dist/es/chart/bar-chart/bar.js +1 -1
  4. package/dist/es/chart/bubble-chart/bubble.js +1 -1
  5. package/dist/es/chart/chart.js +13 -15
  6. package/dist/es/chart/funnel-chart/funnel-segment.js +1 -1
  7. package/dist/es/chart/heatmap-chart/heatmap-point.js +1 -1
  8. package/dist/es/chart/legend/legend.js +2 -1
  9. package/dist/es/chart/line-chart/line-point.js +1 -1
  10. package/dist/es/chart/pie-chart/pie-segment.js +1 -1
  11. package/dist/es/chart/tooltip/base-tooltip.js +3 -0
  12. package/dist/es/core/chart-element.js +1 -1
  13. package/dist/es/sankey/link.js +1 -1
  14. package/dist/es/sankey/node.js +1 -1
  15. package/dist/es/sankey/sankey.js +8 -3
  16. package/dist/es2015/chart/bar-chart/bar.js +1 -1
  17. package/dist/es2015/chart/bubble-chart/bubble.js +1 -1
  18. package/dist/es2015/chart/chart.js +13 -15
  19. package/dist/es2015/chart/funnel-chart/funnel-segment.js +1 -1
  20. package/dist/es2015/chart/heatmap-chart/heatmap-point.js +1 -1
  21. package/dist/es2015/chart/legend/legend.js +2 -1
  22. package/dist/es2015/chart/line-chart/line-point.js +1 -1
  23. package/dist/es2015/chart/pie-chart/pie-segment.js +1 -1
  24. package/dist/es2015/chart/tooltip/base-tooltip.js +3 -0
  25. package/dist/es2015/core/chart-element.js +1 -1
  26. package/dist/es2015/sankey/link.js +1 -1
  27. package/dist/es2015/sankey/node.js +1 -1
  28. package/dist/es2015/sankey/sankey.js +8 -3
  29. package/dist/npm/field-types/focus-highlight.interface.d.ts +23 -0
  30. package/dist/npm/field-types.d.ts +1 -0
  31. package/dist/npm/main.js +36 -29
  32. package/dist/npm/sankey.d.ts +2 -11
  33. package/dist/systemjs/kendo-charts.js +1 -1
  34. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  import { Group } from '@progress/kendo-drawing';
2
- import { Border, Margin, Padding } from './field-types';
2
+ import { Border, FocusHighlight, Margin, Padding } from './field-types';
3
3
 
4
4
  /**
5
5
  * Represents the highlight options of the Sankey links.
@@ -24,16 +24,7 @@ export interface SankeyLinkHighlight {
24
24
  *
25
25
  * @default `{ border: { width: 2, color: '#000', opacity: 1 } }`
26
26
  */
27
- export interface SankeyFocusHighlight {
28
- /**
29
- * The border options of the focus highlight.
30
- */
31
- border?: {
32
- width?: number;
33
- color?: string;
34
- opacity?: number;
35
- };
36
- }
27
+ export interface SankeyFocusHighlight extends FocusHighlight { }
37
28
 
38
29
  /**
39
30
  * Represents the options of the Sankey node label.