apexgantt 3.1.0 → 3.1.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.
@@ -15,17 +15,17 @@ interface AnnotationLabel {
15
15
  readonly fontFamily?: string;
16
16
  readonly fontSize?: string;
17
17
  readonly fontWeight?: string;
18
- readonly orientation: Orientation;
19
- readonly text: string;
18
+ readonly orientation?: Orientation;
19
+ readonly text?: string;
20
20
  }
21
21
  /**
22
22
  * Interface representing an annotation in the graph.
23
23
  */
24
24
  export interface Annotation {
25
25
  readonly bgColor?: string;
26
- readonly borderColor: string;
27
- readonly borderDashArray: number;
28
- readonly borderWidth: number;
26
+ readonly borderColor?: string;
27
+ readonly borderDashArray?: number;
28
+ readonly borderWidth?: number;
29
29
  readonly label?: AnnotationLabel;
30
30
  readonly x1: string;
31
31
  readonly x2?: null | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apexgantt",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "dependencies": {
5
5
  "dayjs": "^1.11.13",
6
6
  "lodash": "^4.17.21"