@26lights/orcha 0.42.150 → 0.42.152
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 +25 -25
- package/dist/orcha.css +1 -1
- package/dist/orcha.es.js +1901 -1895
- package/dist/orcha.umd.js +22 -22
- package/dist/src/views/AoProjectOverviewActivityDetails.vue.d.ts +6 -0
- package/dist/src/views/AoProjectOverviewProject.vue.d.ts +19 -1
- package/package.json +1 -1
|
@@ -22,6 +22,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
|
|
|
22
22
|
type: import("vue").PropType<Activity[]>;
|
|
23
23
|
required: true;
|
|
24
24
|
};
|
|
25
|
+
selectedActivity: {
|
|
26
|
+
type: import("vue").PropType<Activity>;
|
|
27
|
+
};
|
|
25
28
|
isTaskCheckable: {
|
|
26
29
|
type: import("vue").PropType<(task: Subtask) => boolean>;
|
|
27
30
|
};
|
|
@@ -103,6 +106,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
|
|
|
103
106
|
type: import("vue").PropType<Activity[]>;
|
|
104
107
|
required: true;
|
|
105
108
|
};
|
|
109
|
+
selectedActivity: {
|
|
110
|
+
type: import("vue").PropType<Activity>;
|
|
111
|
+
};
|
|
106
112
|
isTaskCheckable: {
|
|
107
113
|
type: import("vue").PropType<(task: Subtask) => boolean>;
|
|
108
114
|
};
|
|
@@ -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, type Attachment } 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 ActivityDevStatus, type UpdateSubtaskFieldPayload, type Activity, type ActivityType, type SaveTemplatePayload, type TimeTracking, type Attachment, type Sprint } from '../types';
|
|
2
2
|
declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
3
|
project: {
|
|
4
4
|
type: import("vue").PropType<Project>;
|
|
@@ -38,6 +38,15 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
|
|
|
38
38
|
type: import("vue").PropType<ActivityType[]>;
|
|
39
39
|
required: true;
|
|
40
40
|
};
|
|
41
|
+
devStatuses: {
|
|
42
|
+
type: import("vue").PropType<ActivityDevStatus[]>;
|
|
43
|
+
};
|
|
44
|
+
sprints: {
|
|
45
|
+
type: import("vue").PropType<Sprint[]>;
|
|
46
|
+
};
|
|
47
|
+
selectedActivity: {
|
|
48
|
+
type: import("vue").PropType<Activity>;
|
|
49
|
+
};
|
|
41
50
|
isEditable: {
|
|
42
51
|
type: import("vue").PropType<boolean | "only-own">;
|
|
43
52
|
required: true;
|
|
@@ -136,6 +145,15 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
|
|
|
136
145
|
type: import("vue").PropType<ActivityType[]>;
|
|
137
146
|
required: true;
|
|
138
147
|
};
|
|
148
|
+
devStatuses: {
|
|
149
|
+
type: import("vue").PropType<ActivityDevStatus[]>;
|
|
150
|
+
};
|
|
151
|
+
sprints: {
|
|
152
|
+
type: import("vue").PropType<Sprint[]>;
|
|
153
|
+
};
|
|
154
|
+
selectedActivity: {
|
|
155
|
+
type: import("vue").PropType<Activity>;
|
|
156
|
+
};
|
|
139
157
|
isEditable: {
|
|
140
158
|
type: import("vue").PropType<boolean | "only-own">;
|
|
141
159
|
required: true;
|