@26lights/orcha 0.42.100 → 0.42.102

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.
@@ -6,6 +6,7 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
6
6
  };
7
7
  breadcrumbs: {
8
8
  type: import("vue").PropType<string>;
9
+ default: string;
9
10
  };
10
11
  users: {
11
12
  type: import("vue").PropType<User[]>;
@@ -13,6 +14,7 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
13
14
  };
14
15
  userId: {
15
16
  type: import("vue").PropType<string>;
17
+ default: undefined;
16
18
  };
17
19
  activity: {
18
20
  type: import("vue").PropType<Activity>;
@@ -20,12 +22,15 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
20
22
  };
21
23
  isTemplate: {
22
24
  type: import("vue").PropType<boolean>;
25
+ default: boolean;
23
26
  };
24
27
  activityTypes: {
25
28
  type: import("vue").PropType<ActivityType[]>;
29
+ default: () => never[];
26
30
  };
27
31
  milestoneId: {
28
32
  type: import("vue").PropType<string>;
33
+ default: undefined;
29
34
  };
30
35
  templateActivities: {
31
36
  type: import("vue").PropType<(Activity | ActivityFeed<import('../types/index').ActivityFeedStatus>)[]>;
@@ -33,15 +38,19 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
33
38
  };
34
39
  templateMilestones: {
35
40
  type: import("vue").PropType<Milestone[]>;
41
+ default: () => never[];
36
42
  };
37
43
  isTaskCheckable: {
38
44
  type: import("vue").PropType<(task: Subtask) => boolean>;
45
+ default: undefined;
39
46
  };
40
47
  statuses: {
41
48
  type: import("vue").PropType<ActivityStatus[]>;
49
+ default: () => never[];
42
50
  };
43
51
  devStatuses: {
44
52
  type: import("vue").PropType<ActivityDevStatus[]>;
53
+ default: () => never[];
45
54
  };
46
55
  attachmentEnabled: {
47
56
  type: import("vue").PropType<boolean>;
@@ -53,9 +62,11 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
53
62
  };
54
63
  timeTrackingData: {
55
64
  type: import("vue").PropType<Record<string, TimeTracking>>;
65
+ default: () => {};
56
66
  };
57
67
  loadAttachmentPreview: {
58
68
  type: import("vue").PropType<(attachment: Attachment) => Promise<Blob>>;
69
+ default: undefined;
59
70
  };
60
71
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
61
72
  'update:activity': (payload: UpdateActivityPayload) => void;
@@ -78,6 +89,7 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
78
89
  };
79
90
  breadcrumbs: {
80
91
  type: import("vue").PropType<string>;
92
+ default: string;
81
93
  };
82
94
  users: {
83
95
  type: import("vue").PropType<User[]>;
@@ -85,6 +97,7 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
85
97
  };
86
98
  userId: {
87
99
  type: import("vue").PropType<string>;
100
+ default: undefined;
88
101
  };
89
102
  activity: {
90
103
  type: import("vue").PropType<Activity>;
@@ -92,12 +105,15 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
92
105
  };
93
106
  isTemplate: {
94
107
  type: import("vue").PropType<boolean>;
108
+ default: boolean;
95
109
  };
96
110
  activityTypes: {
97
111
  type: import("vue").PropType<ActivityType[]>;
112
+ default: () => never[];
98
113
  };
99
114
  milestoneId: {
100
115
  type: import("vue").PropType<string>;
116
+ default: undefined;
101
117
  };
102
118
  templateActivities: {
103
119
  type: import("vue").PropType<(Activity | ActivityFeed<import('../types/index').ActivityFeedStatus>)[]>;
@@ -105,15 +121,19 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
105
121
  };
106
122
  templateMilestones: {
107
123
  type: import("vue").PropType<Milestone[]>;
124
+ default: () => never[];
108
125
  };
109
126
  isTaskCheckable: {
110
127
  type: import("vue").PropType<(task: Subtask) => boolean>;
128
+ default: undefined;
111
129
  };
112
130
  statuses: {
113
131
  type: import("vue").PropType<ActivityStatus[]>;
132
+ default: () => never[];
114
133
  };
115
134
  devStatuses: {
116
135
  type: import("vue").PropType<ActivityDevStatus[]>;
136
+ default: () => never[];
117
137
  };
118
138
  attachmentEnabled: {
119
139
  type: import("vue").PropType<boolean>;
@@ -125,9 +145,11 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
125
145
  };
126
146
  timeTrackingData: {
127
147
  type: import("vue").PropType<Record<string, TimeTracking>>;
148
+ default: () => {};
128
149
  };
129
150
  loadAttachmentPreview: {
130
151
  type: import("vue").PropType<(attachment: Attachment) => Promise<Blob>>;
152
+ default: undefined;
131
153
  };
132
154
  }>> & Readonly<{
133
155
  onClose?: ((args_0?: void | undefined) => any) | undefined;
@@ -144,7 +166,18 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
144
166
  onAddComment?: ((payload: AddCommentPayload) => any) | undefined;
145
167
  onToast?: ((messageKey: string, type: "error" | "success") => any) | undefined;
146
168
  }>, {
169
+ breadcrumbs: string;
170
+ userId: string;
171
+ isTemplate: boolean;
172
+ activityTypes: ActivityType[];
173
+ milestoneId: string;
174
+ templateMilestones: Milestone[];
175
+ isTaskCheckable: (task: Subtask) => boolean;
176
+ statuses: ActivityStatus[];
177
+ devStatuses: ActivityDevStatus[];
147
178
  projects: Project[];
179
+ timeTrackingData: Record<Id, TimeTracking>;
180
+ loadAttachmentPreview: (attachment: Attachment) => Promise<Blob>;
148
181
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
149
182
  declare function __VLS_template(): {
150
183
  header(): any;
@@ -11,6 +11,7 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
11
11
  };
12
12
  project: {
13
13
  type: import("vue").PropType<Project>;
14
+ default: undefined;
14
15
  };
15
16
  isEditable: {
16
17
  type: import("vue").PropType<boolean | "only-own">;
@@ -34,6 +35,7 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
34
35
  };
35
36
  activityTypes: {
36
37
  type: import("vue").PropType<ActivityType[]>;
38
+ default: () => never[];
37
39
  };
38
40
  isTaskCheckable: {
39
41
  type: import("vue").PropType<(task: Subtask) => boolean>;
@@ -45,6 +47,7 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
45
47
  };
46
48
  devStatuses: {
47
49
  type: import("vue").PropType<ActivityDevStatus[]>;
50
+ default: () => never[];
48
51
  };
49
52
  attachmentEnabled: {
50
53
  type: import("vue").PropType<boolean>;
@@ -53,21 +56,27 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
53
56
  };
54
57
  projects: {
55
58
  type: import("vue").PropType<Project[]>;
59
+ default: () => never[];
56
60
  };
57
61
  timeTrackingData: {
58
62
  type: import("vue").PropType<Record<string, TimeTracking>>;
63
+ default: () => {};
59
64
  };
60
65
  loadAttachmentPreview: {
61
66
  type: import("vue").PropType<(attachment: Attachment) => Promise<Blob>>;
67
+ default: undefined;
62
68
  };
63
69
  selectedActivity: {
64
70
  type: import("vue").PropType<Activity>;
71
+ default: undefined;
65
72
  };
66
73
  initialActivityId: {
67
74
  type: import("vue").PropType<string>;
75
+ default: undefined;
68
76
  };
69
77
  initialActivitySlug: {
70
78
  type: import("vue").PropType<string>;
79
+ default: undefined;
71
80
  };
72
81
  searchText: {
73
82
  type: import("vue").PropType<string>;
@@ -117,6 +126,7 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
117
126
  };
118
127
  project: {
119
128
  type: import("vue").PropType<Project>;
129
+ default: undefined;
120
130
  };
121
131
  isEditable: {
122
132
  type: import("vue").PropType<boolean | "only-own">;
@@ -140,6 +150,7 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
140
150
  };
141
151
  activityTypes: {
142
152
  type: import("vue").PropType<ActivityType[]>;
153
+ default: () => never[];
143
154
  };
144
155
  isTaskCheckable: {
145
156
  type: import("vue").PropType<(task: Subtask) => boolean>;
@@ -151,6 +162,7 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
151
162
  };
152
163
  devStatuses: {
153
164
  type: import("vue").PropType<ActivityDevStatus[]>;
165
+ default: () => never[];
154
166
  };
155
167
  attachmentEnabled: {
156
168
  type: import("vue").PropType<boolean>;
@@ -159,21 +171,27 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
159
171
  };
160
172
  projects: {
161
173
  type: import("vue").PropType<Project[]>;
174
+ default: () => never[];
162
175
  };
163
176
  timeTrackingData: {
164
177
  type: import("vue").PropType<Record<string, TimeTracking>>;
178
+ default: () => {};
165
179
  };
166
180
  loadAttachmentPreview: {
167
181
  type: import("vue").PropType<(attachment: Attachment) => Promise<Blob>>;
182
+ default: undefined;
168
183
  };
169
184
  selectedActivity: {
170
185
  type: import("vue").PropType<Activity>;
186
+ default: undefined;
171
187
  };
172
188
  initialActivityId: {
173
189
  type: import("vue").PropType<string>;
190
+ default: undefined;
174
191
  };
175
192
  initialActivitySlug: {
176
193
  type: import("vue").PropType<string>;
194
+ default: undefined;
177
195
  };
178
196
  searchText: {
179
197
  type: import("vue").PropType<string>;
@@ -213,8 +231,17 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
213
231
  "onUpdate:showsOnlyImportant"?: ((value: boolean) => any) | undefined;
214
232
  "onUpdate:showsOnlyNonAssigned"?: ((value: boolean) => any) | undefined;
215
233
  }>, {
234
+ project: Project;
235
+ activityTypes: ActivityType[];
216
236
  isTaskCheckable: (task: Subtask) => boolean;
237
+ devStatuses: ActivityDevStatus[];
217
238
  attachmentEnabled: boolean;
239
+ projects: Project[];
240
+ timeTrackingData: Record<Id, TimeTracking>;
241
+ loadAttachmentPreview: (attachment: Attachment) => Promise<Blob>;
242
+ selectedActivity: Activity;
243
+ initialActivityId: Id;
244
+ initialActivitySlug: Id;
218
245
  searchText: string;
219
246
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
220
247
  declare function __VLS_template(): {
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.100",
7
+ "version": "0.42.102",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],