@26lights/orcha 0.42.87 → 0.42.88
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 +16 -16
- package/dist/orcha.es.js +1666 -1680
- package/dist/orcha.umd.js +24 -24
- package/dist/src/views/AoProjectOverviewActivityDetails.vue.d.ts +7 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type Activity, type Id, type UpdateActivityPayload, type AddSubtaskPayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type Subtask, type ActivityStatus, type Phase, type User, type ActivityType, type UpdateSubtaskFieldPayload, type AddFilesPayload, type RemoveFilePayload, type Project, type TimeTracking } from '../types';
|
|
1
|
+
import { type Activity, type Id, type UpdateActivityPayload, type AddSubtaskPayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type Subtask, type ActivityStatus, type Phase, type User, type ActivityType, type UpdateSubtaskFieldPayload, type AddFilesPayload, type RemoveFilePayload, type Project, type Attachment, type TimeTracking } from '../types';
|
|
2
2
|
declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
3
|
phaseId: {
|
|
4
4
|
type: import("vue").PropType<string>;
|
|
@@ -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
|
'update:activity': (payload: UpdateActivityPayload) => void;
|
|
58
61
|
addSubtask: (payload: AddSubtaskPayload) => void;
|
|
@@ -119,6 +122,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
|
|
|
119
122
|
timeTrackingData: {
|
|
120
123
|
type: import("vue").PropType<Record<string, TimeTracking>>;
|
|
121
124
|
};
|
|
125
|
+
loadAttachmentPreview: {
|
|
126
|
+
type: import("vue").PropType<(attachment: Attachment) => Promise<Blob>>;
|
|
127
|
+
};
|
|
122
128
|
}>> & Readonly<{
|
|
123
129
|
onDeleteSubtask?: ((payload: {
|
|
124
130
|
id: Id;
|