@26lights/orcha 0.42.76 → 0.42.78
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 ActivityFeed, type Milestone, type UpdateSubtaskFieldPayload, type AddSubtaskPayload, type Id, type User, type AddFilesPayload, type RemoveFilePayload, type UpdateActivityPayload, type Activity, type Subtask, type ActivityStatus, type AddCommentPayload, type RemoveCommentPayload, type UpdateCommentPayload, type ActivityType, type Project, type TimeTracking } from '../types/index';
|
|
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 AddCommentPayload, type RemoveCommentPayload, type UpdateCommentPayload, type ActivityType, type Project, type TimeTracking } from '../types/index';
|
|
2
2
|
declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
3
|
isEditable: {
|
|
4
4
|
type: import("vue").PropType<boolean | "only-own">;
|
|
@@ -51,6 +51,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
|
|
|
51
51
|
timeTrackingData: {
|
|
52
52
|
type: import("vue").PropType<Record<string, TimeTracking>>;
|
|
53
53
|
};
|
|
54
|
+
loadAttachmentPreview: {
|
|
55
|
+
type: import("vue").PropType<(attachment: Attachment) => Promise<Blob>>;
|
|
56
|
+
};
|
|
54
57
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
55
58
|
'update:activity': (payload: UpdateActivityPayload) => void;
|
|
56
59
|
close: (args_0: void) => void;
|
|
@@ -117,6 +120,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
|
|
|
117
120
|
timeTrackingData: {
|
|
118
121
|
type: import("vue").PropType<Record<string, TimeTracking>>;
|
|
119
122
|
};
|
|
123
|
+
loadAttachmentPreview: {
|
|
124
|
+
type: import("vue").PropType<(attachment: Attachment) => Promise<Blob>>;
|
|
125
|
+
};
|
|
120
126
|
}>> & Readonly<{
|
|
121
127
|
onClose?: ((args_0?: void | undefined) => any) | undefined;
|
|
122
128
|
onDeleteSubtask?: ((payload: {
|
|
@@ -11,7 +11,6 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
|
|
|
11
11
|
};
|
|
12
12
|
loadPreview: {
|
|
13
13
|
type: import("vue").PropType<AttachmentPreviewLoader>;
|
|
14
|
-
required: true;
|
|
15
14
|
};
|
|
16
15
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
17
16
|
"update:currentIndex": (value: number) => void;
|
|
@@ -27,7 +26,6 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
|
|
|
27
26
|
};
|
|
28
27
|
loadPreview: {
|
|
29
28
|
type: import("vue").PropType<AttachmentPreviewLoader>;
|
|
30
|
-
required: true;
|
|
31
29
|
};
|
|
32
30
|
}>> & Readonly<{
|
|
33
31
|
onClose?: (() => any) | undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { TimeTracking } from '../types';
|
|
1
|
+
import type { Attachment, TimeTracking } from '../types';
|
|
2
2
|
import { type Activity, type ActivityStatus, type ActivityType, type AddActivityFeedPayload, type AddCommentPayload, type AddFilesPayload, type AddSubtaskPayload, type ChangeFeedActivitiesPayload, type FeedFilters, type Id, type Project, type RemoveCommentPayload, type RemoveFilePayload, type StartTimerPayload, type Subtask, type UpdateActivityPayload, type UpdateCommentPayload, type UpdateSubtaskFieldPayload, type User } from '../types';
|
|
3
3
|
declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
4
|
filters: {
|
|
@@ -54,6 +54,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
|
|
|
54
54
|
timeTrackingData: {
|
|
55
55
|
type: import("vue").PropType<Record<string, TimeTracking>>;
|
|
56
56
|
};
|
|
57
|
+
loadAttachmentPreview: {
|
|
58
|
+
type: import("vue").PropType<(attachment: Attachment) => Promise<Blob>>;
|
|
59
|
+
};
|
|
57
60
|
selectedActivity: {
|
|
58
61
|
type: import("vue").PropType<Activity>;
|
|
59
62
|
};
|
|
@@ -154,6 +157,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
|
|
|
154
157
|
timeTrackingData: {
|
|
155
158
|
type: import("vue").PropType<Record<string, TimeTracking>>;
|
|
156
159
|
};
|
|
160
|
+
loadAttachmentPreview: {
|
|
161
|
+
type: import("vue").PropType<(attachment: Attachment) => Promise<Blob>>;
|
|
162
|
+
};
|
|
157
163
|
selectedActivity: {
|
|
158
164
|
type: import("vue").PropType<Activity>;
|
|
159
165
|
};
|