@26lights/orcha 0.42.77 → 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.
@@ -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
  };
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "type": "module",
5
5
  "license": "CC-BY-NC-ND-4.0",
6
6
  "author": "26lights <dev@26lights.com> (https://www.26lights.com)",
7
- "version": "0.42.77",
7
+ "version": "0.42.78",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],