@26lights/orcha 0.10.0 → 0.10.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.
- package/dist/orcha.cjs.js +1 -1
- package/dist/orcha.es.js +1093 -1081
- package/dist/orcha.umd.js +1 -1
- package/dist/src/views/AoProjectOverviewActivityDetails.vue.d.ts +13 -1
- package/package.json +1 -1
|
@@ -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;
|