@26lights/orcha 0.9.5 → 0.9.6
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type ChangeFeedActivitiesPayload, type Project, type FeedFilters, type User, type AddSubtaskPayload, type UpdateSubtaskFieldPayload, type AddFilesPayload, type RemoveFilePayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type Activity, type AddActivityFeedPayload, type UpdateActivityPayload, type ActivityType, type Subtask } from '../types';
|
|
1
|
+
import { type ChangeFeedActivitiesPayload, type Project, type FeedFilters, type User, type AddSubtaskPayload, type UpdateSubtaskFieldPayload, type AddFilesPayload, type RemoveFilePayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type Activity, type AddActivityFeedPayload, type UpdateActivityPayload, type ActivityType, type Subtask, type Milestone } from '../types';
|
|
2
2
|
import { ActivityStatus } from '../types';
|
|
3
3
|
declare const _default: import("vue").DefineComponent<{
|
|
4
4
|
filters: {
|
|
@@ -23,6 +23,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
23
23
|
};
|
|
24
24
|
isTaskCheckable: {
|
|
25
25
|
type: import("vue").PropType<(task: Subtask) => boolean>;
|
|
26
|
+
default: undefined;
|
|
26
27
|
};
|
|
27
28
|
statuses: {
|
|
28
29
|
type: import("vue").PropType<ActivityStatus[]>;
|
|
@@ -40,6 +41,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
40
41
|
type: import("vue").PropType<string>;
|
|
41
42
|
default: string;
|
|
42
43
|
};
|
|
44
|
+
selectedActivityMilestone: {
|
|
45
|
+
type: import("vue").PropType<Milestone>;
|
|
46
|
+
default: undefined;
|
|
47
|
+
};
|
|
43
48
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
44
49
|
'change:activities': (payload: ChangeFeedActivitiesPayload) => void;
|
|
45
50
|
addActivity: (payload: AddActivityFeedPayload) => void;
|
|
@@ -85,6 +90,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
85
90
|
};
|
|
86
91
|
isTaskCheckable: {
|
|
87
92
|
type: import("vue").PropType<(task: Subtask) => boolean>;
|
|
93
|
+
default: undefined;
|
|
88
94
|
};
|
|
89
95
|
statuses: {
|
|
90
96
|
type: import("vue").PropType<ActivityStatus[]>;
|
|
@@ -102,6 +108,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
102
108
|
type: import("vue").PropType<string>;
|
|
103
109
|
default: string;
|
|
104
110
|
};
|
|
111
|
+
selectedActivityMilestone: {
|
|
112
|
+
type: import("vue").PropType<Milestone>;
|
|
113
|
+
default: undefined;
|
|
114
|
+
};
|
|
105
115
|
}>> & {
|
|
106
116
|
onSelectActivity?: ((activityId: string | null) => any) | undefined;
|
|
107
117
|
onArchiveActivity?: ((payload: {
|
|
@@ -125,6 +135,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
125
135
|
"onUpdate:showsArchivedActivities"?: ((value: boolean) => any) | undefined;
|
|
126
136
|
onAddComment?: ((payload: AddCommentPayload) => any) | undefined;
|
|
127
137
|
}, {
|
|
138
|
+
isTaskCheckable: (task: Subtask) => boolean;
|
|
128
139
|
searchText: string;
|
|
140
|
+
selectedActivityMilestone: Milestone;
|
|
129
141
|
}, {}>;
|
|
130
142
|
export default _default;
|
|
@@ -30,9 +30,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
30
30
|
type: import("vue").PropType<ActivityStatus[]>;
|
|
31
31
|
required: true;
|
|
32
32
|
};
|
|
33
|
-
activityTypes: {
|
|
34
|
-
type: import("vue").PropType<string[]>;
|
|
35
|
-
};
|
|
36
33
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
37
34
|
addPhase: (payload: AddPhasePayload) => void;
|
|
38
35
|
updatePhase: (payload: UpdatePhasePayload) => void;
|
|
@@ -87,9 +84,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
87
84
|
type: import("vue").PropType<ActivityStatus[]>;
|
|
88
85
|
required: true;
|
|
89
86
|
};
|
|
90
|
-
activityTypes: {
|
|
91
|
-
type: import("vue").PropType<string[]>;
|
|
92
|
-
};
|
|
93
87
|
}>> & {
|
|
94
88
|
onArchiveActivity?: ((payload: {
|
|
95
89
|
id: string;
|