@26lights/orcha 0.42.88 → 0.42.90
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 +20 -20
- package/dist/orcha.es.js +194 -191
- package/dist/orcha.umd.js +32 -32
- package/dist/src/views/AoProjectOverviewProject.vue.d.ts +7 -1
- package/package.json +1 -1
|
@@ -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 Id, type Phase, type ApplyTemplatePayload, type UpdatePhasePayload, type UpdateMilestonePayload, type Subtask, type ActivityStatus, type UpdateSubtaskFieldPayload, type Activity, type ActivityType, type SaveTemplatePayload, type TimeTracking } 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 Id, type Phase, type ApplyTemplatePayload, type UpdatePhasePayload, type UpdateMilestonePayload, type Subtask, type ActivityStatus, type UpdateSubtaskFieldPayload, type Activity, type ActivityType, type SaveTemplatePayload, type TimeTracking, type Attachment } from '../types';
|
|
2
2
|
declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
3
|
project: {
|
|
4
4
|
type: import("vue").PropType<Project>;
|
|
@@ -53,6 +53,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
|
|
|
53
53
|
timeTrackingData: {
|
|
54
54
|
type: import("vue").PropType<Record<string, TimeTracking>>;
|
|
55
55
|
};
|
|
56
|
+
loadAttachmentPreview: {
|
|
57
|
+
type: import("vue").PropType<(attachment: Attachment) => Promise<Blob>>;
|
|
58
|
+
};
|
|
56
59
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
57
60
|
addPhase: (payload: AddPhasePayload) => void;
|
|
58
61
|
updatePhase: (payload: UpdatePhasePayload) => void;
|
|
@@ -148,6 +151,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
|
|
|
148
151
|
timeTrackingData: {
|
|
149
152
|
type: import("vue").PropType<Record<string, TimeTracking>>;
|
|
150
153
|
};
|
|
154
|
+
loadAttachmentPreview: {
|
|
155
|
+
type: import("vue").PropType<(attachment: Attachment) => Promise<Blob>>;
|
|
156
|
+
};
|
|
151
157
|
}>> & Readonly<{
|
|
152
158
|
onArchiveActivity?: ((payload: {
|
|
153
159
|
id: Id;
|