@26lights/orcha 0.42.33 → 0.42.35
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/locales/en/translation.json +14 -1
- package/dist/orcha.cjs.js +48 -2
- package/dist/orcha.css +1 -1
- package/dist/orcha.es.js +9914 -7144
- package/dist/orcha.umd.js +49 -3
- package/dist/src/components/ActivityChecklistTab.vue.d.ts +59 -0
- package/dist/src/components/ActivityCommentsTab.vue.d.ts +55 -0
- package/dist/src/components/ActivityDescriptionTab.vue.d.ts +39 -0
- package/dist/src/components/ActivityMetadataSidebar.vue.d.ts +89 -0
- package/dist/src/components/AoActivityDetails.vue.d.ts +21 -15
- package/dist/src/components/AoActivityDetailsComments.vue.d.ts +4 -0
- package/dist/src/components/AoCardFeed.vue.d.ts +9 -1
- package/dist/src/components/AoCardProjectItemMilestone.vue.d.ts +13 -1
- package/dist/src/components/AoCardProjectItemPhase.vue.d.ts +13 -1
- package/dist/src/components/AoComment.vue.d.ts +8 -0
- package/dist/src/components/AoCondensedCardProjectItemPhase.vue.d.ts +13 -1
- package/dist/src/components/AoListKanban.vue.d.ts +4 -1
- package/dist/src/components/AoModal.vue.d.ts +3 -3
- package/dist/src/components/AoMultiselect.vue.d.ts +2 -18
- package/dist/src/components/AoProjectPhase.vue.d.ts +13 -1
- package/dist/src/components/AoProjectPhases.vue.d.ts +13 -1
- package/dist/src/helpers.d.ts +32 -2
- package/dist/src/main.d.ts +2 -0
- package/dist/src/types/index.d.ts +17 -0
- package/dist/src/views/AoFeed.vue.d.ts +20 -11
- package/dist/src/views/AoProjectOverviewActivityDetails.vue.d.ts +9 -3
- package/dist/src/views/AoProjectOverviewMilestoneDetails.vue.d.ts +9 -1
- package/dist/src/views/AoProjectOverviewProject.vue.d.ts +9 -3
- package/package.json +5 -2
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { type Subtask, type UpdateSubtaskFieldPayload, type AddSubtaskPayload, type User } from '../types';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
tasks: {
|
|
4
|
+
type: import("vue").PropType<Subtask[]>;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
activityId: {
|
|
8
|
+
type: import("vue").PropType<string>;
|
|
9
|
+
required: true;
|
|
10
|
+
};
|
|
11
|
+
users: {
|
|
12
|
+
type: import("vue").PropType<User[]>;
|
|
13
|
+
};
|
|
14
|
+
isCheckable: {
|
|
15
|
+
type: import("vue").PropType<(task: Subtask) => boolean>;
|
|
16
|
+
};
|
|
17
|
+
isEditable: {
|
|
18
|
+
type: import("vue").PropType<boolean>;
|
|
19
|
+
required: true;
|
|
20
|
+
};
|
|
21
|
+
isTemplate: {
|
|
22
|
+
type: import("vue").PropType<boolean>;
|
|
23
|
+
};
|
|
24
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
25
|
+
add: (payload: AddSubtaskPayload) => void;
|
|
26
|
+
update: (payload: UpdateSubtaskFieldPayload) => void;
|
|
27
|
+
delete: (payload: {
|
|
28
|
+
id: string;
|
|
29
|
+
}) => void;
|
|
30
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
|
+
tasks: {
|
|
32
|
+
type: import("vue").PropType<Subtask[]>;
|
|
33
|
+
required: true;
|
|
34
|
+
};
|
|
35
|
+
activityId: {
|
|
36
|
+
type: import("vue").PropType<string>;
|
|
37
|
+
required: true;
|
|
38
|
+
};
|
|
39
|
+
users: {
|
|
40
|
+
type: import("vue").PropType<User[]>;
|
|
41
|
+
};
|
|
42
|
+
isCheckable: {
|
|
43
|
+
type: import("vue").PropType<(task: Subtask) => boolean>;
|
|
44
|
+
};
|
|
45
|
+
isEditable: {
|
|
46
|
+
type: import("vue").PropType<boolean>;
|
|
47
|
+
required: true;
|
|
48
|
+
};
|
|
49
|
+
isTemplate: {
|
|
50
|
+
type: import("vue").PropType<boolean>;
|
|
51
|
+
};
|
|
52
|
+
}>> & {
|
|
53
|
+
onUpdate?: ((payload: UpdateSubtaskFieldPayload) => any) | undefined;
|
|
54
|
+
onAdd?: ((payload: AddSubtaskPayload) => any) | undefined;
|
|
55
|
+
onDelete?: ((payload: {
|
|
56
|
+
id: string;
|
|
57
|
+
}) => any) | undefined;
|
|
58
|
+
}, {}, {}>;
|
|
59
|
+
export default _default;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { type Comment, type User } from '../types';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
comments: {
|
|
4
|
+
type: import("vue").PropType<Comment[]>;
|
|
5
|
+
};
|
|
6
|
+
users: {
|
|
7
|
+
type: import("vue").PropType<User[]>;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
userId: {
|
|
11
|
+
type: import("vue").PropType<string>;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15
|
+
createComment: (payload: {
|
|
16
|
+
authorId: string;
|
|
17
|
+
message: string;
|
|
18
|
+
mentionedUserIds: string[];
|
|
19
|
+
}) => void;
|
|
20
|
+
updateComment: (payload: {
|
|
21
|
+
id: string;
|
|
22
|
+
message: string;
|
|
23
|
+
mentionedUserIds: string[];
|
|
24
|
+
}) => void;
|
|
25
|
+
removeComment: (payload: {
|
|
26
|
+
id: string;
|
|
27
|
+
}) => void;
|
|
28
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
29
|
+
comments: {
|
|
30
|
+
type: import("vue").PropType<Comment[]>;
|
|
31
|
+
};
|
|
32
|
+
users: {
|
|
33
|
+
type: import("vue").PropType<User[]>;
|
|
34
|
+
required: true;
|
|
35
|
+
};
|
|
36
|
+
userId: {
|
|
37
|
+
type: import("vue").PropType<string>;
|
|
38
|
+
required: true;
|
|
39
|
+
};
|
|
40
|
+
}>> & {
|
|
41
|
+
onCreateComment?: ((payload: {
|
|
42
|
+
authorId: string;
|
|
43
|
+
message: string;
|
|
44
|
+
mentionedUserIds: string[];
|
|
45
|
+
}) => any) | undefined;
|
|
46
|
+
onUpdateComment?: ((payload: {
|
|
47
|
+
id: string;
|
|
48
|
+
message: string;
|
|
49
|
+
mentionedUserIds: string[];
|
|
50
|
+
}) => any) | undefined;
|
|
51
|
+
onRemoveComment?: ((payload: {
|
|
52
|
+
id: string;
|
|
53
|
+
}) => any) | undefined;
|
|
54
|
+
}, {}, {}>;
|
|
55
|
+
export default _default;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { type Attachment } from '../types';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
isEditable: {
|
|
4
|
+
type: import("vue").PropType<boolean>;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
attachments: {
|
|
8
|
+
type: import("vue").PropType<Attachment[]>;
|
|
9
|
+
default: () => never[];
|
|
10
|
+
};
|
|
11
|
+
description: {
|
|
12
|
+
type: import("vue").PropType<string>;
|
|
13
|
+
required: true;
|
|
14
|
+
};
|
|
15
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
16
|
+
updateDescription: (value: string) => void;
|
|
17
|
+
addFiles: (files: File[]) => void;
|
|
18
|
+
removeFile: (file: Attachment) => void;
|
|
19
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
20
|
+
isEditable: {
|
|
21
|
+
type: import("vue").PropType<boolean>;
|
|
22
|
+
required: true;
|
|
23
|
+
};
|
|
24
|
+
attachments: {
|
|
25
|
+
type: import("vue").PropType<Attachment[]>;
|
|
26
|
+
default: () => never[];
|
|
27
|
+
};
|
|
28
|
+
description: {
|
|
29
|
+
type: import("vue").PropType<string>;
|
|
30
|
+
required: true;
|
|
31
|
+
};
|
|
32
|
+
}>> & {
|
|
33
|
+
onRemoveFile?: ((file: Attachment) => any) | undefined;
|
|
34
|
+
onUpdateDescription?: ((value: string) => any) | undefined;
|
|
35
|
+
onAddFiles?: ((files: File[]) => any) | undefined;
|
|
36
|
+
}, {
|
|
37
|
+
attachments: Attachment[];
|
|
38
|
+
}, {}>;
|
|
39
|
+
export default _default;
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { type Activity, type ActivityStatus, type User, type ActivityType, type TimeTracking } from '../types';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
activity: {
|
|
4
|
+
type: import("vue").PropType<Activity>;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
users: {
|
|
8
|
+
type: import("vue").PropType<User[]>;
|
|
9
|
+
required: true;
|
|
10
|
+
};
|
|
11
|
+
userId: {
|
|
12
|
+
type: import("vue").PropType<string>;
|
|
13
|
+
};
|
|
14
|
+
isOwnEditable: {
|
|
15
|
+
type: import("vue").PropType<boolean>;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
isTemplate: {
|
|
19
|
+
type: import("vue").PropType<boolean>;
|
|
20
|
+
};
|
|
21
|
+
statuses: {
|
|
22
|
+
type: import("vue").PropType<ActivityStatus[]>;
|
|
23
|
+
};
|
|
24
|
+
activityTypes: {
|
|
25
|
+
type: import("vue").PropType<ActivityType[]>;
|
|
26
|
+
};
|
|
27
|
+
templateActivities: {
|
|
28
|
+
type: import("vue").PropType<Activity[]>;
|
|
29
|
+
required: true;
|
|
30
|
+
};
|
|
31
|
+
timeTrackingData: {
|
|
32
|
+
type: import("vue").PropType<Record<string, TimeTracking>>;
|
|
33
|
+
};
|
|
34
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
35
|
+
close: (args_0: void) => void;
|
|
36
|
+
updateStatus: (statusId: string) => void;
|
|
37
|
+
assignToMe: (args_0: void) => void;
|
|
38
|
+
assigneeSelect: (assigneeId: string) => void;
|
|
39
|
+
updateAssignee: (assigneeIds: string[]) => void;
|
|
40
|
+
updateDeadline: (deadline: string) => void;
|
|
41
|
+
updateImportant: (important: boolean) => void;
|
|
42
|
+
updateEstimation: (estimation: number) => void;
|
|
43
|
+
updateDependingOn: (ids: string[]) => void;
|
|
44
|
+
updateBlocking: (ids: string[]) => void;
|
|
45
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
46
|
+
activity: {
|
|
47
|
+
type: import("vue").PropType<Activity>;
|
|
48
|
+
required: true;
|
|
49
|
+
};
|
|
50
|
+
users: {
|
|
51
|
+
type: import("vue").PropType<User[]>;
|
|
52
|
+
required: true;
|
|
53
|
+
};
|
|
54
|
+
userId: {
|
|
55
|
+
type: import("vue").PropType<string>;
|
|
56
|
+
};
|
|
57
|
+
isOwnEditable: {
|
|
58
|
+
type: import("vue").PropType<boolean>;
|
|
59
|
+
required: true;
|
|
60
|
+
};
|
|
61
|
+
isTemplate: {
|
|
62
|
+
type: import("vue").PropType<boolean>;
|
|
63
|
+
};
|
|
64
|
+
statuses: {
|
|
65
|
+
type: import("vue").PropType<ActivityStatus[]>;
|
|
66
|
+
};
|
|
67
|
+
activityTypes: {
|
|
68
|
+
type: import("vue").PropType<ActivityType[]>;
|
|
69
|
+
};
|
|
70
|
+
templateActivities: {
|
|
71
|
+
type: import("vue").PropType<Activity[]>;
|
|
72
|
+
required: true;
|
|
73
|
+
};
|
|
74
|
+
timeTrackingData: {
|
|
75
|
+
type: import("vue").PropType<Record<string, TimeTracking>>;
|
|
76
|
+
};
|
|
77
|
+
}>> & {
|
|
78
|
+
onClose?: ((args_0?: void | undefined) => any) | undefined;
|
|
79
|
+
onUpdateStatus?: ((statusId: string) => any) | undefined;
|
|
80
|
+
onAssignToMe?: ((args_0?: void | undefined) => any) | undefined;
|
|
81
|
+
onAssigneeSelect?: ((assigneeId: string) => any) | undefined;
|
|
82
|
+
onUpdateAssignee?: ((assigneeIds: string[]) => any) | undefined;
|
|
83
|
+
onUpdateDeadline?: ((deadline: string) => any) | undefined;
|
|
84
|
+
onUpdateImportant?: ((important: boolean) => any) | undefined;
|
|
85
|
+
onUpdateEstimation?: ((estimation: number) => any) | undefined;
|
|
86
|
+
onUpdateDependingOn?: ((ids: string[]) => any) | undefined;
|
|
87
|
+
onUpdateBlocking?: ((ids: string[]) => any) | undefined;
|
|
88
|
+
}, {}, {}>;
|
|
89
|
+
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type ActivityFeed, type Milestone, type UpdateSubtaskFieldPayload, type AddSubtaskPayload, type User, type AddFilesPayload, type
|
|
1
|
+
import { type ActivityFeed, type Milestone, type UpdateSubtaskFieldPayload, type AddSubtaskPayload, type User, type AddFilesPayload, 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 _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
3
|
isEditable: {
|
|
4
4
|
type: import("vue").PropType<boolean | "only-own">;
|
|
@@ -21,25 +21,28 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
21
21
|
isTemplate: {
|
|
22
22
|
type: import("vue").PropType<boolean>;
|
|
23
23
|
};
|
|
24
|
+
statuses: {
|
|
25
|
+
type: import("vue").PropType<ActivityStatus[]>;
|
|
26
|
+
};
|
|
24
27
|
activityTypes: {
|
|
25
28
|
type: import("vue").PropType<ActivityType[]>;
|
|
26
29
|
};
|
|
27
|
-
milestoneId: {
|
|
28
|
-
type: import("vue").PropType<string>;
|
|
29
|
-
};
|
|
30
30
|
templateActivities: {
|
|
31
31
|
type: import("vue").PropType<(Activity | ActivityFeed<import('../types/index').ActivityFeedStatus>)[]>;
|
|
32
32
|
required: true;
|
|
33
33
|
};
|
|
34
|
+
timeTrackingData: {
|
|
35
|
+
type: import("vue").PropType<Record<string, TimeTracking>>;
|
|
36
|
+
};
|
|
37
|
+
milestoneId: {
|
|
38
|
+
type: import("vue").PropType<string>;
|
|
39
|
+
};
|
|
34
40
|
templateMilestones: {
|
|
35
41
|
type: import("vue").PropType<Milestone[]>;
|
|
36
42
|
};
|
|
37
43
|
isTaskCheckable: {
|
|
38
44
|
type: import("vue").PropType<(task: Subtask) => boolean>;
|
|
39
45
|
};
|
|
40
|
-
statuses: {
|
|
41
|
-
type: import("vue").PropType<ActivityStatus[]>;
|
|
42
|
-
};
|
|
43
46
|
attachmentEnabled: {
|
|
44
47
|
type: import("vue").PropType<boolean>;
|
|
45
48
|
required: true;
|
|
@@ -84,25 +87,28 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
84
87
|
isTemplate: {
|
|
85
88
|
type: import("vue").PropType<boolean>;
|
|
86
89
|
};
|
|
90
|
+
statuses: {
|
|
91
|
+
type: import("vue").PropType<ActivityStatus[]>;
|
|
92
|
+
};
|
|
87
93
|
activityTypes: {
|
|
88
94
|
type: import("vue").PropType<ActivityType[]>;
|
|
89
95
|
};
|
|
90
|
-
milestoneId: {
|
|
91
|
-
type: import("vue").PropType<string>;
|
|
92
|
-
};
|
|
93
96
|
templateActivities: {
|
|
94
97
|
type: import("vue").PropType<(Activity | ActivityFeed<import('../types/index').ActivityFeedStatus>)[]>;
|
|
95
98
|
required: true;
|
|
96
99
|
};
|
|
100
|
+
timeTrackingData: {
|
|
101
|
+
type: import("vue").PropType<Record<string, TimeTracking>>;
|
|
102
|
+
};
|
|
103
|
+
milestoneId: {
|
|
104
|
+
type: import("vue").PropType<string>;
|
|
105
|
+
};
|
|
97
106
|
templateMilestones: {
|
|
98
107
|
type: import("vue").PropType<Milestone[]>;
|
|
99
108
|
};
|
|
100
109
|
isTaskCheckable: {
|
|
101
110
|
type: import("vue").PropType<(task: Subtask) => boolean>;
|
|
102
111
|
};
|
|
103
|
-
statuses: {
|
|
104
|
-
type: import("vue").PropType<ActivityStatus[]>;
|
|
105
|
-
};
|
|
106
112
|
attachmentEnabled: {
|
|
107
113
|
type: import("vue").PropType<boolean>;
|
|
108
114
|
required: true;
|
|
@@ -113,16 +119,16 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
113
119
|
};
|
|
114
120
|
}>> & {
|
|
115
121
|
onClose?: ((args_0?: void | undefined) => any) | undefined;
|
|
122
|
+
onRemoveFile?: ((payload: RemoveFilePayload) => any) | undefined;
|
|
123
|
+
onAddFiles?: ((payload: AddFilesPayload) => any) | undefined;
|
|
116
124
|
onUpdateComment?: ((payload: UpdateCommentPayload) => any) | undefined;
|
|
117
125
|
onRemoveComment?: ((payload: RemoveCommentPayload) => any) | undefined;
|
|
118
126
|
onDeleteSubtask?: ((payload: {
|
|
119
127
|
id: string;
|
|
120
128
|
}) => any) | undefined;
|
|
121
|
-
onRemoveFile?: ((payload: RemoveFilePayload) => any) | undefined;
|
|
122
129
|
"onUpdate:activity"?: ((payload: UpdateActivityPayload) => any) | undefined;
|
|
123
130
|
onAddSubtask?: ((payload: AddSubtaskPayload) => any) | undefined;
|
|
124
131
|
onUpdateSubtask?: ((payload: UpdateSubtaskFieldPayload) => any) | undefined;
|
|
125
|
-
onAddFiles?: ((payload: AddFilesPayload) => any) | undefined;
|
|
126
132
|
onAddComment?: ((payload: AddCommentPayload) => any) | undefined;
|
|
127
133
|
onToast?: ((messageKey: string, type: "success" | "error") => any) | undefined;
|
|
128
134
|
}, {
|
|
@@ -20,10 +20,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
20
20
|
createComment: (payload: {
|
|
21
21
|
authorId: string;
|
|
22
22
|
message: string;
|
|
23
|
+
mentionedUserIds: string[];
|
|
23
24
|
}) => void;
|
|
24
25
|
updateComment: (payload: {
|
|
25
26
|
id: string;
|
|
26
27
|
message: string;
|
|
28
|
+
mentionedUserIds: string[];
|
|
27
29
|
}) => void;
|
|
28
30
|
removeComment: (payload: {
|
|
29
31
|
id: string;
|
|
@@ -49,10 +51,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
49
51
|
onCreateComment?: ((payload: {
|
|
50
52
|
authorId: string;
|
|
51
53
|
message: string;
|
|
54
|
+
mentionedUserIds: string[];
|
|
52
55
|
}) => any) | undefined;
|
|
53
56
|
onUpdateComment?: ((payload: {
|
|
54
57
|
id: string;
|
|
55
58
|
message: string;
|
|
59
|
+
mentionedUserIds: string[];
|
|
56
60
|
}) => any) | undefined;
|
|
57
61
|
onRemoveComment?: ((payload: {
|
|
58
62
|
id: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type Subtask, type UpdateActivityPayload, type User } from '../types';
|
|
1
|
+
import { type StartTimerPayload, type Subtask, type UpdateActivityPayload, type User } from '../types';
|
|
2
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
3
|
id: {
|
|
4
4
|
type: import("vue").PropType<string>;
|
|
@@ -11,6 +11,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
11
11
|
projectName: {
|
|
12
12
|
type: import("vue").PropType<string>;
|
|
13
13
|
};
|
|
14
|
+
projectId: {
|
|
15
|
+
type: import("vue").PropType<string>;
|
|
16
|
+
};
|
|
14
17
|
projectColor: {
|
|
15
18
|
type: import("vue").PropType<string>;
|
|
16
19
|
};
|
|
@@ -59,6 +62,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
59
62
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
60
63
|
removeAssignee: (assigneeId: string) => void;
|
|
61
64
|
updateActivity: (payload: UpdateActivityPayload) => void;
|
|
65
|
+
startTimer: (payload: StartTimerPayload) => void;
|
|
62
66
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
63
67
|
id: {
|
|
64
68
|
type: import("vue").PropType<string>;
|
|
@@ -71,6 +75,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
71
75
|
projectName: {
|
|
72
76
|
type: import("vue").PropType<string>;
|
|
73
77
|
};
|
|
78
|
+
projectId: {
|
|
79
|
+
type: import("vue").PropType<string>;
|
|
80
|
+
};
|
|
74
81
|
projectColor: {
|
|
75
82
|
type: import("vue").PropType<string>;
|
|
76
83
|
};
|
|
@@ -119,6 +126,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
119
126
|
}>> & {
|
|
120
127
|
onRemoveAssignee?: ((assigneeId: string) => any) | undefined;
|
|
121
128
|
onUpdateActivity?: ((payload: UpdateActivityPayload) => any) | undefined;
|
|
129
|
+
onStartTimer?: ((payload: StartTimerPayload) => any) | undefined;
|
|
122
130
|
}, {}, {}>, {
|
|
123
131
|
secondary?(_: {}): any;
|
|
124
132
|
}>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type Activity, ActivityStatus, UpdateMilestonePayload, type User } from '../types';
|
|
1
|
+
import { type Activity, ActivityStatus, UpdateMilestonePayload, type User, type TimeTracking } from '../types';
|
|
2
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
3
|
id: {
|
|
4
4
|
type: import("vue").PropType<string>;
|
|
@@ -41,6 +41,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
41
41
|
readonly: {
|
|
42
42
|
type: import("vue").PropType<boolean>;
|
|
43
43
|
};
|
|
44
|
+
timeTrackingData: {
|
|
45
|
+
type: import("vue").PropType<Record<string, TimeTracking>>;
|
|
46
|
+
};
|
|
47
|
+
estimationUnit: {
|
|
48
|
+
type: import("vue").PropType<string>;
|
|
49
|
+
};
|
|
44
50
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
45
51
|
updateMilestone: (payload: UpdateMilestonePayload) => void;
|
|
46
52
|
archiveMilestone: (payload: {
|
|
@@ -91,6 +97,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
91
97
|
readonly: {
|
|
92
98
|
type: import("vue").PropType<boolean>;
|
|
93
99
|
};
|
|
100
|
+
timeTrackingData: {
|
|
101
|
+
type: import("vue").PropType<Record<string, TimeTracking>>;
|
|
102
|
+
};
|
|
103
|
+
estimationUnit: {
|
|
104
|
+
type: import("vue").PropType<string>;
|
|
105
|
+
};
|
|
94
106
|
}>> & {
|
|
95
107
|
onUpdateMilestone?: ((payload: UpdateMilestonePayload) => any) | undefined;
|
|
96
108
|
onArchiveMilestone?: ((payload: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type Milestone } from '../types';
|
|
1
|
+
import { type Milestone, type TimeTracking } from '../types';
|
|
2
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
3
|
id: {
|
|
4
4
|
type: import("vue").PropType<string>;
|
|
@@ -25,6 +25,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
25
25
|
color: {
|
|
26
26
|
type: import("vue").PropType<string>;
|
|
27
27
|
};
|
|
28
|
+
timeTrackingData: {
|
|
29
|
+
type: import("vue").PropType<Record<string, TimeTracking>>;
|
|
30
|
+
};
|
|
31
|
+
estimationUnit: {
|
|
32
|
+
type: import("vue").PropType<string>;
|
|
33
|
+
};
|
|
28
34
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
29
35
|
'update:title': (v: string) => void;
|
|
30
36
|
'update:deadline': (v: string) => void;
|
|
@@ -64,6 +70,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
64
70
|
color: {
|
|
65
71
|
type: import("vue").PropType<string>;
|
|
66
72
|
};
|
|
73
|
+
timeTrackingData: {
|
|
74
|
+
type: import("vue").PropType<Record<string, TimeTracking>>;
|
|
75
|
+
};
|
|
76
|
+
estimationUnit: {
|
|
77
|
+
type: import("vue").PropType<string>;
|
|
78
|
+
};
|
|
67
79
|
}>> & {
|
|
68
80
|
"onUpdate:title"?: ((v: string) => any) | undefined;
|
|
69
81
|
onUpdatePhase?: ((payload: {
|
|
@@ -17,6 +17,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
17
17
|
isEditable: {
|
|
18
18
|
type: import("vue").PropType<boolean>;
|
|
19
19
|
};
|
|
20
|
+
mentionableUsers: {
|
|
21
|
+
type: import("vue").PropType<User[]>;
|
|
22
|
+
required: true;
|
|
23
|
+
};
|
|
20
24
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21
25
|
edit: (value: string) => void;
|
|
22
26
|
remove: (args_0: void) => void;
|
|
@@ -38,6 +42,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
38
42
|
isEditable: {
|
|
39
43
|
type: import("vue").PropType<boolean>;
|
|
40
44
|
};
|
|
45
|
+
mentionableUsers: {
|
|
46
|
+
type: import("vue").PropType<User[]>;
|
|
47
|
+
required: true;
|
|
48
|
+
};
|
|
41
49
|
}>> & {
|
|
42
50
|
onRemove?: ((args_0?: void | undefined) => any) | undefined;
|
|
43
51
|
onEdit?: ((value: string) => any) | undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type Milestone } from '../types';
|
|
1
|
+
import { type Milestone, type TimeTracking } from '../types';
|
|
2
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
3
|
id: {
|
|
4
4
|
type: import("vue").PropType<string>;
|
|
@@ -25,6 +25,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
25
25
|
color: {
|
|
26
26
|
type: import("vue").PropType<string>;
|
|
27
27
|
};
|
|
28
|
+
timeTrackingData: {
|
|
29
|
+
type: import("vue").PropType<Record<string, TimeTracking>>;
|
|
30
|
+
};
|
|
31
|
+
estimationUnit: {
|
|
32
|
+
type: import("vue").PropType<string>;
|
|
33
|
+
};
|
|
28
34
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
29
35
|
'update:title': (v: string) => void;
|
|
30
36
|
'update:deadline': (v: string) => void;
|
|
@@ -64,6 +70,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
64
70
|
color: {
|
|
65
71
|
type: import("vue").PropType<string>;
|
|
66
72
|
};
|
|
73
|
+
timeTrackingData: {
|
|
74
|
+
type: import("vue").PropType<Record<string, TimeTracking>>;
|
|
75
|
+
};
|
|
76
|
+
estimationUnit: {
|
|
77
|
+
type: import("vue").PropType<string>;
|
|
78
|
+
};
|
|
67
79
|
}>> & {
|
|
68
80
|
"onUpdate:title"?: ((v: string) => any) | undefined;
|
|
69
81
|
onUpdatePhase?: ((payload: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type Activity, type ActivityFeedStatus, type ActivityStatus, type ChangeFeedActivitiesPayload, type Id, type UpdateActivityPayload, User } from '../types';
|
|
1
|
+
import { type Activity, type ActivityFeedStatus, type ActivityStatus, type ChangeFeedActivitiesPayload, type Id, type StartTimerPayload, type UpdateActivityPayload, User } from '../types';
|
|
2
2
|
declare const _default: <T extends ActivityFeedStatus>(__VLS_props: {
|
|
3
3
|
list: Activity[];
|
|
4
4
|
status: ActivityStatus;
|
|
@@ -44,6 +44,7 @@ declare const _default: <T extends ActivityFeedStatus>(__VLS_props: {
|
|
|
44
44
|
id: Id;
|
|
45
45
|
}];
|
|
46
46
|
updateActivity: [input: UpdateActivityPayload];
|
|
47
|
+
startTimer: [payload: StartTimerPayload];
|
|
47
48
|
};
|
|
48
49
|
}, "slots" | "attrs" | "emit"> | undefined, __VLS_setup?: {
|
|
49
50
|
props: {
|
|
@@ -78,6 +79,7 @@ declare const _default: <T extends ActivityFeedStatus>(__VLS_props: {
|
|
|
78
79
|
id: Id;
|
|
79
80
|
}];
|
|
80
81
|
updateActivity: [input: UpdateActivityPayload];
|
|
82
|
+
startTimer: [payload: StartTimerPayload];
|
|
81
83
|
};
|
|
82
84
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
83
85
|
[key: string]: any;
|
|
@@ -115,6 +117,7 @@ declare const _default: <T extends ActivityFeedStatus>(__VLS_props: {
|
|
|
115
117
|
id: Id;
|
|
116
118
|
}];
|
|
117
119
|
updateActivity: [input: UpdateActivityPayload];
|
|
120
|
+
startTimer: [payload: StartTimerPayload];
|
|
118
121
|
};
|
|
119
122
|
} | undefined;
|
|
120
123
|
};
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
2
2
|
size: {
|
|
3
|
-
type: import("vue").PropType<"sm" | "md">;
|
|
3
|
+
type: import("vue").PropType<"sm" | "md" | "lg">;
|
|
4
4
|
default: string;
|
|
5
5
|
};
|
|
6
6
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
7
|
close: (args_0: void) => void;
|
|
8
8
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
9
9
|
size: {
|
|
10
|
-
type: import("vue").PropType<"sm" | "md">;
|
|
10
|
+
type: import("vue").PropType<"sm" | "md" | "lg">;
|
|
11
11
|
default: string;
|
|
12
12
|
};
|
|
13
13
|
}>> & {
|
|
14
14
|
onClose?: ((args_0?: void | undefined) => any) | undefined;
|
|
15
15
|
}, {
|
|
16
|
-
size: "sm" | "md";
|
|
16
|
+
size: "sm" | "md" | "lg";
|
|
17
17
|
}, {}>, {
|
|
18
18
|
header?(_: {}): any;
|
|
19
19
|
default?(_: {}): any;
|
|
@@ -1,34 +1,18 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
2
|
-
modelValue: {
|
|
3
|
-
type: import("vue").PropType<string | string[] | null>;
|
|
4
|
-
};
|
|
5
2
|
detached: {
|
|
6
3
|
type: import("vue").PropType<boolean>;
|
|
7
4
|
};
|
|
8
5
|
appendTo: {
|
|
9
6
|
type: import("vue").PropType<string | HTMLElement>;
|
|
10
7
|
};
|
|
11
|
-
|
|
12
|
-
type: import("vue").PropType<boolean>;
|
|
13
|
-
};
|
|
14
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15
|
-
"update:modelValue": (value: string | string[] | null) => void;
|
|
16
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
-
modelValue: {
|
|
18
|
-
type: import("vue").PropType<string | string[] | null>;
|
|
19
|
-
};
|
|
8
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
20
9
|
detached: {
|
|
21
10
|
type: import("vue").PropType<boolean>;
|
|
22
11
|
};
|
|
23
12
|
appendTo: {
|
|
24
13
|
type: import("vue").PropType<string | HTMLElement>;
|
|
25
14
|
};
|
|
26
|
-
|
|
27
|
-
type: import("vue").PropType<boolean>;
|
|
28
|
-
};
|
|
29
|
-
}>> & {
|
|
30
|
-
"onUpdate:modelValue"?: ((value: string | string[] | null) => any) | undefined;
|
|
31
|
-
}, {}, {}>, Partial<Record<NonNullable<string | number>, (_: any) => any>>>;
|
|
15
|
+
}>>, {}, {}>, Partial<Record<NonNullable<string | number>, (_: any) => any>>>;
|
|
32
16
|
export default _default;
|
|
33
17
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
34
18
|
new (): {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type Phase, type AddMilestonePayload, type UpdatePhasePayload, type UpdateMilestonePayload, type ActivityStatus, type User } from '../types';
|
|
1
|
+
import { type Phase, type AddMilestonePayload, type UpdatePhasePayload, type UpdateMilestonePayload, type ActivityStatus, type User, type TimeTracking } from '../types';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<{
|
|
3
3
|
phase: {
|
|
4
4
|
type: import("vue").PropType<Phase>;
|
|
@@ -18,6 +18,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
18
18
|
readonly: {
|
|
19
19
|
type: import("vue").PropType<boolean>;
|
|
20
20
|
};
|
|
21
|
+
timeTrackingData: {
|
|
22
|
+
type: import("vue").PropType<Record<string, TimeTracking>>;
|
|
23
|
+
};
|
|
24
|
+
estimationUnit: {
|
|
25
|
+
type: import("vue").PropType<string>;
|
|
26
|
+
};
|
|
21
27
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
22
28
|
addMilestone: (payload: AddMilestonePayload) => void;
|
|
23
29
|
updateMilestone: (payload: UpdateMilestonePayload) => void;
|
|
@@ -53,6 +59,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
53
59
|
readonly: {
|
|
54
60
|
type: import("vue").PropType<boolean>;
|
|
55
61
|
};
|
|
62
|
+
timeTrackingData: {
|
|
63
|
+
type: import("vue").PropType<Record<string, TimeTracking>>;
|
|
64
|
+
};
|
|
65
|
+
estimationUnit: {
|
|
66
|
+
type: import("vue").PropType<string>;
|
|
67
|
+
};
|
|
56
68
|
}>> & {
|
|
57
69
|
onAddMilestone?: ((payload: AddMilestonePayload) => any) | undefined;
|
|
58
70
|
onUpdateMilestone?: ((payload: UpdateMilestonePayload) => any) | undefined;
|