@26lights/orcha 0.7.21 → 0.7.22
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/dist/orcha.cjs.js +1 -1
- package/dist/orcha.es.js +3164 -4006
- package/dist/orcha.umd.js +2 -2
- package/dist/src/composables/useFeedStore.d.ts +9 -93
- package/package.json +1 -1
|
@@ -1,96 +1,12 @@
|
|
|
1
|
-
import { type
|
|
2
|
-
import { type Activity
|
|
1
|
+
import { type Ref } from 'vue';
|
|
2
|
+
import { type Activity } from '../types';
|
|
3
|
+
export declare function provideFeedStore(activities: Ref<Activity[]>): {
|
|
4
|
+
selectedActivityId: Ref<string | null | undefined>;
|
|
5
|
+
selectedActivity: import("vue").ComputedRef<Activity | undefined>;
|
|
6
|
+
selectActivity: (activityId: string | null) => void;
|
|
7
|
+
};
|
|
3
8
|
export declare function useFeedStore(): {
|
|
4
|
-
|
|
5
|
-
activities: import("vue").Ref<{
|
|
6
|
-
assignee?: {
|
|
7
|
-
id: string;
|
|
8
|
-
firstName?: string | undefined;
|
|
9
|
-
lastName?: string | undefined;
|
|
10
|
-
picture?: string | undefined;
|
|
11
|
-
} | undefined;
|
|
12
|
-
status: {
|
|
13
|
-
name: string;
|
|
14
|
-
__typename: string;
|
|
15
|
-
id: string;
|
|
16
|
-
};
|
|
17
|
-
deadline?: string | undefined;
|
|
18
|
-
project?: {
|
|
19
|
-
id: string;
|
|
20
|
-
name?: string | undefined;
|
|
21
|
-
phases?: {
|
|
22
|
-
name?: string | undefined;
|
|
23
|
-
milestones: {
|
|
24
|
-
order: number;
|
|
25
|
-
name?: string | undefined;
|
|
26
|
-
activities: any[];
|
|
27
|
-
status?: import('../types').MilestoneStatus | undefined;
|
|
28
|
-
__typename: string;
|
|
29
|
-
id: string;
|
|
30
|
-
rank: string;
|
|
31
|
-
}[];
|
|
32
|
-
order: number;
|
|
33
|
-
__typename: string;
|
|
34
|
-
id: string;
|
|
35
|
-
rank: string;
|
|
36
|
-
}[] | undefined;
|
|
37
|
-
} | undefined;
|
|
38
|
-
comments?: {
|
|
39
|
-
userId: string;
|
|
40
|
-
content: string;
|
|
41
|
-
createdAt: string;
|
|
42
|
-
editedAt?: string | undefined;
|
|
43
|
-
__typename: string;
|
|
44
|
-
id: string;
|
|
45
|
-
}[] | undefined;
|
|
46
|
-
duration?: number | undefined;
|
|
47
|
-
durationType?: import('../types').DurationTypes | undefined;
|
|
48
|
-
name: string;
|
|
49
|
-
description?: string | undefined;
|
|
50
|
-
estimation?: number | undefined;
|
|
51
|
-
important?: boolean | undefined;
|
|
52
|
-
type?: {
|
|
53
|
-
name: string;
|
|
54
|
-
__typename: string;
|
|
55
|
-
id: string;
|
|
56
|
-
} | undefined;
|
|
57
|
-
milestone?: {
|
|
58
|
-
order: number;
|
|
59
|
-
name?: string | undefined;
|
|
60
|
-
activities: any[];
|
|
61
|
-
status?: import('../types').MilestoneStatus | undefined;
|
|
62
|
-
__typename: string;
|
|
63
|
-
id: string;
|
|
64
|
-
rank: string;
|
|
65
|
-
} | undefined;
|
|
66
|
-
dependingOn?: string[] | undefined;
|
|
67
|
-
blocking?: string[] | undefined;
|
|
68
|
-
attachments?: {
|
|
69
|
-
createdAt: string;
|
|
70
|
-
name: string;
|
|
71
|
-
size: number;
|
|
72
|
-
lastModified: number;
|
|
73
|
-
type: string;
|
|
74
|
-
url: string;
|
|
75
|
-
id: string;
|
|
76
|
-
__typename: string;
|
|
77
|
-
}[] | undefined;
|
|
78
|
-
tasks?: {
|
|
79
|
-
name?: string | undefined;
|
|
80
|
-
status?: {
|
|
81
|
-
name: string;
|
|
82
|
-
__typename: string;
|
|
83
|
-
id: string;
|
|
84
|
-
} | undefined;
|
|
85
|
-
assignees?: string[] | undefined;
|
|
86
|
-
__typename: string;
|
|
87
|
-
id: string;
|
|
88
|
-
rank: string;
|
|
89
|
-
}[] | undefined;
|
|
90
|
-
__typename: string;
|
|
91
|
-
id: string;
|
|
92
|
-
rank: string;
|
|
93
|
-
}[]>;
|
|
9
|
+
selectedActivityId: Ref<string | null | undefined>;
|
|
94
10
|
selectedActivity: import("vue").ComputedRef<Activity | undefined>;
|
|
95
|
-
selectActivity: (activityId:
|
|
11
|
+
selectActivity: (activityId: string | null) => void;
|
|
96
12
|
};
|