sprintify-ui 0.8.52 → 0.8.53

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.
@@ -8,19 +8,19 @@ export interface GanttItem {
8
8
  color: string;
9
9
  }
10
10
  export interface GanttRow {
11
- id: number;
11
+ id: number | string;
12
12
  name: string;
13
13
  meta?: Record<string, unknown>;
14
14
  items: GanttItem[];
15
15
  }
16
16
  export interface GanttRowFormatted {
17
- id: number;
17
+ id: number | string;
18
18
  name: string;
19
19
  meta?: Record<string, unknown>;
20
20
  items: GanttItemFormatted[];
21
21
  }
22
22
  export interface GanttItemFormatted {
23
- id: number;
23
+ id: number | string;
24
24
  start: DateTime;
25
25
  end: DateTime;
26
26
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.8.52",
3
+ "version": "0.8.53",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": "rimraf dist && vue-tsc && vite build",
@@ -10,21 +10,21 @@ export interface GanttItem {
10
10
  }
11
11
 
12
12
  export interface GanttRow {
13
- id: number;
13
+ id: number | string;
14
14
  name: string;
15
15
  meta?: Record<string, unknown>;
16
16
  items: GanttItem[];
17
17
  }
18
18
 
19
19
  export interface GanttRowFormatted {
20
- id: number;
20
+ id: number | string;
21
21
  name: string;
22
22
  meta?: Record<string, unknown>;
23
23
  items: GanttItemFormatted[];
24
24
  }
25
25
 
26
26
  export interface GanttItemFormatted {
27
- id: number;
27
+ id: number | string;
28
28
  start: DateTime;
29
29
  end: DateTime;
30
30
  name: string;