apexgantt 3.9.0 → 3.10.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.
package/apexgantt.d.ts CHANGED
@@ -14,7 +14,7 @@ export declare interface Annotation {
14
14
  /**
15
15
  * Interface representing the label of an annotation.
16
16
  */
17
- declare interface AnnotationLabel {
17
+ export declare interface AnnotationLabel {
18
18
  readonly fontColor?: string;
19
19
  readonly fontFamily?: string;
20
20
  readonly fontSize?: string;
@@ -463,6 +463,10 @@ export declare const GanttEvents: {
463
463
  * emits when the set of selected tasks changes
464
464
  */
465
465
  readonly SELECTION_CHANGE: "selectionChange";
466
+ /**
467
+ * emits when a dependency arrow is created, updated, or removed
468
+ */
469
+ readonly DEPENDENCY_ARROW_UPDATE: "dependencyArrowUpdate";
466
470
  };
467
471
 
468
472
  /**