@progress/kendo-charts 2.3.0 → 2.3.1-dev.202404260915

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.
@@ -39,7 +39,7 @@ export interface SankeyOffset {
39
39
  }
40
40
 
41
41
  /**
42
- * Represents the links options of the Sankey widget.
42
+ * Represents the links options of the Sankey component.
43
43
  */
44
44
  export interface SankeyLink {
45
45
  /**
@@ -117,7 +117,7 @@ export interface SankeyLabelStroke {
117
117
  }
118
118
 
119
119
  /**
120
- * Represents the labels options of the Sankey widget.
120
+ * Represents the labels options of the Sankey component.
121
121
  */
122
122
  export interface SankeyLabel {
123
123
  /**
@@ -189,7 +189,7 @@ export interface SankeyLabel {
189
189
  }
190
190
 
191
191
  /**
192
- * Represents the nodes options of the Sankey widget.
192
+ * Represents the nodes options of the Sankey component.
193
193
  */
194
194
  export interface SankeyNode {
195
195
  /**
@@ -238,7 +238,7 @@ export interface SankeyNode {
238
238
  }
239
239
 
240
240
  /**
241
- * Represents the title options of the Sankey widget.
241
+ * Represents the title options of the Sankey component.
242
242
  */
243
243
  export interface SankeyTitle {
244
244
  /**
@@ -293,7 +293,7 @@ export interface SankeyTitle {
293
293
  interface LegendTitle extends Omit<SankeyTitle, 'description'> { }
294
294
 
295
295
  /**
296
- * Represents the legend item options of the Sankey widget.
296
+ * Represents the legend item options of the Sankey component.
297
297
  */
298
298
  export interface SankeyLegendItem {
299
299
  /**
@@ -320,7 +320,7 @@ export interface SankeyLegendItem {
320
320
  }
321
321
 
322
322
  /**
323
- * Represents the legend label options of the Sankey widget.
323
+ * Represents the legend label options of the Sankey component.
324
324
  */
325
325
  export interface SankeyLegendLabel {
326
326
  /**
@@ -342,7 +342,7 @@ export interface SankeyLegendLabel {
342
342
  }
343
343
 
344
344
  /**
345
- * Represents the legend options of the Sankey widget.
345
+ * Represents the legend options of the Sankey component.
346
346
  */
347
347
  export interface SankeyLegend {
348
348
  /**
@@ -428,7 +428,7 @@ export interface SankeyLegend {
428
428
  }
429
429
 
430
430
  /**
431
- * Represents the tooltip options of the Sankey widget.
431
+ * Represents the tooltip options of the Sankey component.
432
432
  */
433
433
  export interface SankeyTooltip {
434
434
  /**
@@ -448,19 +448,19 @@ export interface SankeyTooltip {
448
448
  }
449
449
 
450
450
  /**
451
- * Represents the default link options of the Sankey widget.
451
+ * Represents the default link options of the Sankey component.
452
452
  * These settings will be applied to all links unless overridden by individual data items.
453
453
  */
454
454
  export interface SankeyLinkDefaults extends Omit<SankeyLink, 'sourceId' | 'targetId' | 'value'> { }
455
455
 
456
456
  /**
457
- * Represents the default label options of the Sankey widget.
457
+ * Represents the default label options of the Sankey component.
458
458
  * These settings will be applied to all labels unless overridden by individual data items.
459
459
  */
460
460
  export interface SankeyLabelDefaults extends Omit<SankeyLabel, 'text'> { }
461
461
 
462
462
  /**
463
- * Represents the default node options of the Sankey widget.
463
+ * Represents the default node options of the Sankey component.
464
464
  * These settings will be applied to all nodes unless overridden by individual data items.
465
465
  */
466
466
  export interface SankeyNodeDefaults extends Omit<SankeyNode, 'id' | 'label'> { }
@@ -482,7 +482,7 @@ export interface SankeyData {
482
482
  }
483
483
 
484
484
  /**
485
- * Sankey options.
485
+ * Represents the options of the Sankey component.
486
486
  */
487
487
  export interface SankeyOptions {
488
488
  /**
@@ -549,7 +549,7 @@ export interface SankeyExportVisualOptions {
549
549
  }
550
550
 
551
551
  /**
552
- * Represents the Kendo Sankey widget.
552
+ * Represents the Kendo Sankey component.
553
553
  */
554
554
  export class Sankey {
555
555
  public element: HTMLElement;
@@ -563,11 +563,11 @@ export class Sankey {
563
563
  }
564
564
 
565
565
  /**
566
- * Represents the Sankey widget event object.
566
+ * Represents the Sankey component event object.
567
567
  */
568
568
  export interface SankeyEvent {
569
569
  /**
570
- * The Sankey widget instance.
570
+ * The Sankey component instance.
571
571
  */
572
572
  sender: Sankey;
573
573
  /**
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Kendo UI platform-independent Charts library",
4
4
  "author": "Progress",
5
5
  "license": "SEE LICENSE IN license.txt",
6
- "version": "2.3.0",
6
+ "version": "2.3.1-dev.202404260915",
7
7
  "main": "dist/npm/main.js",
8
8
  "module": "dist/es/main.js",
9
9
  "jsnext:main": "dist/es/main.js",