@26lights/orcha 0.10.0 → 0.10.2
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 Activity, type UpdateActivityPayload, type AddSubtaskPayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type Subtask, type ActivityStatus, type Phase, type User } from '../types';
|
|
1
|
+
import { type Activity, type UpdateActivityPayload, type AddSubtaskPayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type Subtask, type ActivityStatus, type Phase, type User, UpdateSubtaskFieldPayload, AddFilesPayload, RemoveFilePayload } from '../types';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<{
|
|
3
3
|
phaseId: {
|
|
4
4
|
type: import("vue").PropType<string>;
|
|
@@ -47,6 +47,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
47
47
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
48
48
|
'update:activity': (payload: UpdateActivityPayload) => void;
|
|
49
49
|
addSubtask: (payload: AddSubtaskPayload) => void;
|
|
50
|
+
updateSubtask: (payload: UpdateSubtaskFieldPayload) => void;
|
|
51
|
+
deleteSubtask: (payload: {
|
|
52
|
+
id: string;
|
|
53
|
+
}) => void;
|
|
54
|
+
addFiles: (payload: AddFilesPayload) => void;
|
|
55
|
+
removeFile: (payload: RemoveFilePayload) => void;
|
|
50
56
|
addComment: (payload: AddCommentPayload) => void;
|
|
51
57
|
updateComment: (payload: UpdateCommentPayload) => void;
|
|
52
58
|
removeComment: (payload: RemoveCommentPayload) => void;
|
|
@@ -98,8 +104,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
98
104
|
}>> & {
|
|
99
105
|
onUpdateComment?: ((payload: UpdateCommentPayload) => any) | undefined;
|
|
100
106
|
onRemoveComment?: ((payload: RemoveCommentPayload) => any) | undefined;
|
|
107
|
+
onDeleteSubtask?: ((payload: {
|
|
108
|
+
id: string;
|
|
109
|
+
}) => any) | undefined;
|
|
110
|
+
onRemoveFile?: ((payload: RemoveFilePayload) => any) | undefined;
|
|
101
111
|
"onUpdate:activity"?: ((payload: UpdateActivityPayload) => any) | undefined;
|
|
102
112
|
onAddSubtask?: ((payload: AddSubtaskPayload) => any) | undefined;
|
|
113
|
+
onUpdateSubtask?: ((payload: UpdateSubtaskFieldPayload) => any) | undefined;
|
|
114
|
+
onAddFiles?: ((payload: AddFilesPayload) => any) | undefined;
|
|
103
115
|
onAddComment?: ((payload: AddCommentPayload) => any) | undefined;
|
|
104
116
|
}, {}, {}>;
|
|
105
117
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type Project, type User, type AddActivityPayload, type UpdateActivityPayload, type AddSubtaskPayload, type AddFilesPayload, type RemoveFilePayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type AddPhasePayload, type AddMilestonePayload, type Phase, type ApplyTemplatePayload, type UpdatePhasePayload, type UpdateMilestonePayload, type Subtask, type ActivityStatus } from '../types';
|
|
1
|
+
import { type Project, type User, type AddActivityPayload, type UpdateActivityPayload, type AddSubtaskPayload, type AddFilesPayload, type RemoveFilePayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type AddPhasePayload, type AddMilestonePayload, type Phase, type ApplyTemplatePayload, type UpdatePhasePayload, type UpdateMilestonePayload, type Subtask, type ActivityStatus, UpdateSubtaskFieldPayload } from '../types';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<{
|
|
3
3
|
project: {
|
|
4
4
|
type: import("vue").PropType<Project>;
|
|
@@ -50,6 +50,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
50
50
|
id: string;
|
|
51
51
|
}) => void;
|
|
52
52
|
addSubtask: (payload: AddSubtaskPayload) => void;
|
|
53
|
+
updateSubtask: (payload: UpdateSubtaskFieldPayload) => void;
|
|
54
|
+
deleteSubtask: (payload: {
|
|
55
|
+
id: string;
|
|
56
|
+
}) => void;
|
|
53
57
|
addFiles: (payload: AddFilesPayload) => void;
|
|
54
58
|
removeFile: (payload: RemoveFilePayload) => void;
|
|
55
59
|
addComment: (payload: AddCommentPayload) => void;
|
|
@@ -96,9 +100,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
96
100
|
}) => any) | undefined;
|
|
97
101
|
onUpdateComment?: ((payload: UpdateCommentPayload) => any) | undefined;
|
|
98
102
|
onRemoveComment?: ((payload: RemoveCommentPayload) => any) | undefined;
|
|
103
|
+
onDeleteSubtask?: ((payload: {
|
|
104
|
+
id: string;
|
|
105
|
+
}) => any) | undefined;
|
|
99
106
|
onRemoveFile?: ((payload: RemoveFilePayload) => any) | undefined;
|
|
100
107
|
"onUpdate:activity"?: ((payload: UpdateActivityPayload) => any) | undefined;
|
|
101
108
|
onAddSubtask?: ((payload: AddSubtaskPayload) => any) | undefined;
|
|
109
|
+
onUpdateSubtask?: ((payload: UpdateSubtaskFieldPayload) => any) | undefined;
|
|
102
110
|
onAddFiles?: ((payload: AddFilesPayload) => any) | undefined;
|
|
103
111
|
onAddComment?: ((payload: AddCommentPayload) => any) | undefined;
|
|
104
112
|
onAddActivity?: ((payload: AddActivityPayload) => any) | undefined;
|