@26lights/orcha 0.42.111 → 0.42.112
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/locales/en/translation.json +6 -0
- package/dist/orcha.cjs.js +34 -34
- package/dist/orcha.css +1 -1
- package/dist/orcha.es.js +4359 -4280
- package/dist/orcha.umd.js +34 -34
- package/dist/src/components/AoActivityDetails.vue.d.ts +8 -2
- package/dist/src/views/AoProjectOverviewActivityDetails.vue.d.ts +12 -2
- package/package.json +1 -1
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
import { type ActivityFeed, type Milestone, type UpdateSubtaskFieldPayload, type AddSubtaskPayload, type Id, type User, type AddFilesPayload, type Attachment, type RemoveFilePayload, type UpdateActivityPayload, type Activity, type Subtask, type ActivityStatus, type ActivityDevStatus, type Sprint, type AddCommentPayload, type RemoveCommentPayload, type UpdateCommentPayload, type ActivityType, type Project, type TimeTracking } from '../types/index';
|
|
2
|
+
interface CreateSprintPayload {
|
|
3
|
+
projectId: Id;
|
|
4
|
+
name: string;
|
|
5
|
+
startDate: string;
|
|
6
|
+
endDate: string;
|
|
7
|
+
}
|
|
2
8
|
declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
9
|
isEditable: {
|
|
4
10
|
type: import("vue").PropType<boolean | "only-own">;
|
|
@@ -86,7 +92,7 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
|
|
|
86
92
|
updateComment: (payload: UpdateCommentPayload) => void;
|
|
87
93
|
removeComment: (payload: RemoveCommentPayload) => void;
|
|
88
94
|
toast: (messageKey: string, type: "error" | "success") => void;
|
|
89
|
-
createSprint: (
|
|
95
|
+
createSprint: (payload: CreateSprintPayload) => void;
|
|
90
96
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
91
97
|
isEditable: {
|
|
92
98
|
type: import("vue").PropType<boolean | "only-own">;
|
|
@@ -174,7 +180,7 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
|
|
|
174
180
|
onAddFiles?: ((payload: AddFilesPayload) => any) | undefined;
|
|
175
181
|
onAddComment?: ((payload: AddCommentPayload) => any) | undefined;
|
|
176
182
|
onToast?: ((messageKey: string, type: "error" | "success") => any) | undefined;
|
|
177
|
-
onCreateSprint?: ((
|
|
183
|
+
onCreateSprint?: ((payload: CreateSprintPayload) => any) | undefined;
|
|
178
184
|
}>, {
|
|
179
185
|
breadcrumbs: string;
|
|
180
186
|
userId: string;
|
|
@@ -74,7 +74,12 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
|
|
|
74
74
|
addComment: (payload: AddCommentPayload) => void;
|
|
75
75
|
updateComment: (payload: UpdateCommentPayload) => void;
|
|
76
76
|
removeComment: (payload: RemoveCommentPayload) => void;
|
|
77
|
-
createSprint: (
|
|
77
|
+
createSprint: (payload: {
|
|
78
|
+
projectId: Id;
|
|
79
|
+
name: string;
|
|
80
|
+
startDate: string;
|
|
81
|
+
endDate: string;
|
|
82
|
+
}) => void;
|
|
78
83
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
79
84
|
phaseId: {
|
|
80
85
|
type: import("vue").PropType<string>;
|
|
@@ -150,7 +155,12 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
|
|
|
150
155
|
onUpdateSubtask?: ((payload: UpdateSubtaskFieldPayload) => any) | undefined;
|
|
151
156
|
onAddFiles?: ((payload: AddFilesPayload) => any) | undefined;
|
|
152
157
|
onAddComment?: ((payload: AddCommentPayload) => any) | undefined;
|
|
153
|
-
onCreateSprint?: ((
|
|
158
|
+
onCreateSprint?: ((payload: {
|
|
159
|
+
projectId: Id;
|
|
160
|
+
name: string;
|
|
161
|
+
startDate: string;
|
|
162
|
+
endDate: string;
|
|
163
|
+
}) => any) | undefined;
|
|
154
164
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
155
165
|
declare function __VLS_template(): {
|
|
156
166
|
default?(_: any): any;
|