@26lights/orcha 0.33.1 → 0.34.0
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 +4 -3
- package/dist/orcha.cjs.js +1 -1
- package/dist/orcha.css +1 -1
- package/dist/orcha.es.js +6049 -4826
- package/dist/orcha.umd.js +2 -2
- package/dist/src/components/AoActivityDetails.vue.d.ts +0 -8
- package/dist/src/components/AoActivityDetailsFiles.vue.d.ts +9 -2
- package/dist/src/components/AoAvatar.vue.d.ts +10 -0
- package/dist/src/components/AoButton.vue.d.ts +3 -3
- package/dist/src/components/AoButtonCheck.vue.d.ts +25 -0
- package/dist/src/components/AoCard.vue.d.ts +6 -0
- package/dist/src/components/AoCardFeed.vue.d.ts +6 -0
- package/dist/src/components/AoCardProjectItemMilestone.vue.d.ts +24 -0
- package/dist/src/components/AoModal.vue.d.ts +0 -2
- package/dist/src/components/AoProjectPhase.vue.d.ts +15 -1
- package/dist/src/components/AoProjectPhases.vue.d.ts +15 -1
- package/dist/src/composables/useFeedStore.d.ts +12 -0
- package/dist/src/main.d.ts +1 -0
- package/dist/src/types/index.d.ts +6 -1
- package/dist/src/types/styles.d.ts +10 -0
- package/dist/src/views/AoFeed.vue.d.ts +0 -14
- package/dist/src/views/AoProjectOverviewActivityDetails.vue.d.ts +0 -8
- package/dist/src/views/AoProjectOverviewMilestoneDetails.vue.d.ts +9 -1
- package/package.json +4 -4
|
@@ -40,10 +40,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
40
40
|
type: import("vue").PropType<boolean>;
|
|
41
41
|
required: true;
|
|
42
42
|
};
|
|
43
|
-
attachmentEnabled: {
|
|
44
|
-
type: import("vue").PropType<boolean>;
|
|
45
|
-
required: true;
|
|
46
|
-
};
|
|
47
43
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
48
44
|
'update:activity': (payload: UpdateActivityPayload) => void;
|
|
49
45
|
close: (args_0: void) => void;
|
|
@@ -98,10 +94,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
98
94
|
type: import("vue").PropType<boolean>;
|
|
99
95
|
required: true;
|
|
100
96
|
};
|
|
101
|
-
attachmentEnabled: {
|
|
102
|
-
type: import("vue").PropType<boolean>;
|
|
103
|
-
required: true;
|
|
104
|
-
};
|
|
105
97
|
}>> & {
|
|
106
98
|
onClose?: ((args_0?: void | undefined) => any) | undefined;
|
|
107
99
|
onUpdateComment?: ((payload: UpdateCommentPayload) => any) | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type Attachment } from '../types';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
3
|
attachments: {
|
|
4
4
|
type: import("vue").PropType<[] | Attachment[] | undefined>;
|
|
5
5
|
required: true;
|
|
@@ -23,5 +23,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
23
23
|
onAdd?: ((value: [] | File[]) => any) | undefined;
|
|
24
24
|
onRemove?: ((value: Attachment) => any) | undefined;
|
|
25
25
|
onToggleIsDropActive?: ((value: boolean) => any) | undefined;
|
|
26
|
-
}, {}, {}
|
|
26
|
+
}, {}, {}>, {
|
|
27
|
+
default?(_: {}): any;
|
|
28
|
+
}>;
|
|
27
29
|
export default _default;
|
|
30
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
31
|
+
new (): {
|
|
32
|
+
$slots: S;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { type SizeValues } from '../types/styles';
|
|
2
|
+
import { type ColorValues } from '../types/styles';
|
|
2
3
|
declare const _default: import("vue").DefineComponent<{
|
|
4
|
+
color: {
|
|
5
|
+
type: import("vue").PropType<ColorValues>;
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
3
8
|
size: {
|
|
4
9
|
type: import("vue").PropType<SizeValues>;
|
|
5
10
|
default: "md";
|
|
@@ -17,6 +22,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
17
22
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
23
|
close: (event: Event) => void;
|
|
19
24
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
25
|
+
color: {
|
|
26
|
+
type: import("vue").PropType<ColorValues>;
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
20
29
|
size: {
|
|
21
30
|
type: import("vue").PropType<SizeValues>;
|
|
22
31
|
default: "md";
|
|
@@ -34,6 +43,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
34
43
|
}>> & {
|
|
35
44
|
onClose?: ((event: Event) => any) | undefined;
|
|
36
45
|
}, {
|
|
46
|
+
color: ColorValues;
|
|
37
47
|
size: SizeValues;
|
|
38
48
|
}, {}>;
|
|
39
49
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type
|
|
1
|
+
import { type ButtonColorValues, type ButtonVariantValues, type IconPositionValues, type SizeValues, type CornerRadiusValues } from '../types/styles';
|
|
2
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
3
|
footer: {
|
|
4
4
|
type: import("vue").PropType<boolean>;
|
|
@@ -9,7 +9,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
9
9
|
default: () => "";
|
|
10
10
|
};
|
|
11
11
|
color: {
|
|
12
|
-
type: import("vue").PropType<
|
|
12
|
+
type: import("vue").PropType<ButtonColorValues>;
|
|
13
13
|
};
|
|
14
14
|
type: {
|
|
15
15
|
type: import("vue").PropType<"button" | "submit" | "reset">;
|
|
@@ -47,7 +47,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
47
47
|
default: () => "";
|
|
48
48
|
};
|
|
49
49
|
color: {
|
|
50
|
-
type: import("vue").PropType<
|
|
50
|
+
type: import("vue").PropType<ButtonColorValues>;
|
|
51
51
|
};
|
|
52
52
|
type: {
|
|
53
53
|
type: import("vue").PropType<"button" | "submit" | "reset">;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { type ButtonColorValues } from '../types/styles';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
modelValue: {
|
|
4
|
+
type: import("vue").PropType<boolean>;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
color: {
|
|
8
|
+
type: import("vue").PropType<ButtonColorValues>;
|
|
9
|
+
required: true;
|
|
10
|
+
};
|
|
11
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
|
+
'update:modelValue': (modelValue: boolean) => void;
|
|
13
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
14
|
+
modelValue: {
|
|
15
|
+
type: import("vue").PropType<boolean>;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
color: {
|
|
19
|
+
type: import("vue").PropType<ButtonColorValues>;
|
|
20
|
+
required: true;
|
|
21
|
+
};
|
|
22
|
+
}>> & {
|
|
23
|
+
"onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
|
|
24
|
+
}, {}, {}>;
|
|
25
|
+
export default _default;
|
|
@@ -6,6 +6,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
6
6
|
type: import("vue").PropType<keyof HTMLElementTagNameMap>;
|
|
7
7
|
default: string;
|
|
8
8
|
};
|
|
9
|
+
isSelected: {
|
|
10
|
+
type: import("vue").PropType<boolean>;
|
|
11
|
+
};
|
|
9
12
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
10
13
|
isClickable: {
|
|
11
14
|
type: import("vue").PropType<boolean>;
|
|
@@ -14,6 +17,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
14
17
|
type: import("vue").PropType<keyof HTMLElementTagNameMap>;
|
|
15
18
|
default: string;
|
|
16
19
|
};
|
|
20
|
+
isSelected: {
|
|
21
|
+
type: import("vue").PropType<boolean>;
|
|
22
|
+
};
|
|
17
23
|
}>>, {
|
|
18
24
|
tagName: keyof HTMLElementTagNameMap;
|
|
19
25
|
}, {}>, {
|
|
@@ -44,6 +44,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
44
44
|
isPrivate: {
|
|
45
45
|
type: import("vue").PropType<boolean>;
|
|
46
46
|
};
|
|
47
|
+
isClosed: {
|
|
48
|
+
type: import("vue").PropType<boolean>;
|
|
49
|
+
};
|
|
47
50
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
48
51
|
removeAssignee: (assigneeId: string) => void;
|
|
49
52
|
updateActivity: (payload: UpdateActivityPayload) => void;
|
|
@@ -92,6 +95,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
92
95
|
isPrivate: {
|
|
93
96
|
type: import("vue").PropType<boolean>;
|
|
94
97
|
};
|
|
98
|
+
isClosed: {
|
|
99
|
+
type: import("vue").PropType<boolean>;
|
|
100
|
+
};
|
|
95
101
|
}>> & {
|
|
96
102
|
onRemoveAssignee?: ((assigneeId: string) => any) | undefined;
|
|
97
103
|
onUpdateActivity?: ((payload: UpdateActivityPayload) => any) | undefined;
|
|
@@ -20,6 +20,18 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
20
20
|
deadline: {
|
|
21
21
|
type: import("vue").PropType<string>;
|
|
22
22
|
};
|
|
23
|
+
isSelected: {
|
|
24
|
+
type: import("vue").PropType<boolean>;
|
|
25
|
+
};
|
|
26
|
+
assigneeName: {
|
|
27
|
+
type: import("vue").PropType<string>;
|
|
28
|
+
};
|
|
29
|
+
important: {
|
|
30
|
+
type: import("vue").PropType<boolean>;
|
|
31
|
+
};
|
|
32
|
+
readonly: {
|
|
33
|
+
type: import("vue").PropType<boolean>;
|
|
34
|
+
};
|
|
23
35
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24
36
|
updateMilestone: (payload: UpdateMilestonePayload) => void;
|
|
25
37
|
archiveMilestone: (payload: {
|
|
@@ -46,6 +58,18 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
46
58
|
deadline: {
|
|
47
59
|
type: import("vue").PropType<string>;
|
|
48
60
|
};
|
|
61
|
+
isSelected: {
|
|
62
|
+
type: import("vue").PropType<boolean>;
|
|
63
|
+
};
|
|
64
|
+
assigneeName: {
|
|
65
|
+
type: import("vue").PropType<string>;
|
|
66
|
+
};
|
|
67
|
+
important: {
|
|
68
|
+
type: import("vue").PropType<boolean>;
|
|
69
|
+
};
|
|
70
|
+
readonly: {
|
|
71
|
+
type: import("vue").PropType<boolean>;
|
|
72
|
+
};
|
|
49
73
|
}>> & {
|
|
50
74
|
onUpdateMilestone?: ((payload: UpdateMilestonePayload) => any) | undefined;
|
|
51
75
|
onArchiveMilestone?: ((payload: {
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
2
2
|
size: {
|
|
3
3
|
type: import("vue").PropType<"sm" | "md">;
|
|
4
|
-
required: true;
|
|
5
4
|
default: string;
|
|
6
5
|
};
|
|
7
6
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -9,7 +8,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
9
8
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
10
9
|
size: {
|
|
11
10
|
type: import("vue").PropType<"sm" | "md">;
|
|
12
|
-
required: true;
|
|
13
11
|
default: string;
|
|
14
12
|
};
|
|
15
13
|
}>> & {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type Phase, type AddMilestonePayload, type UpdatePhasePayload, type UpdateMilestonePayload, type ActivityStatus } from '../types';
|
|
1
|
+
import { type Phase, type AddMilestonePayload, type UpdatePhasePayload, type UpdateMilestonePayload, type ActivityStatus, type User } from '../types';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<{
|
|
3
3
|
phase: {
|
|
4
4
|
type: import("vue").PropType<Phase>;
|
|
@@ -8,9 +8,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
8
8
|
type: import("vue").PropType<ActivityStatus>;
|
|
9
9
|
required: true;
|
|
10
10
|
};
|
|
11
|
+
users: {
|
|
12
|
+
type: import("vue").PropType<User[]>;
|
|
13
|
+
required: true;
|
|
14
|
+
};
|
|
11
15
|
isEditable: {
|
|
12
16
|
type: import("vue").PropType<boolean>;
|
|
13
17
|
};
|
|
18
|
+
readonly: {
|
|
19
|
+
type: import("vue").PropType<boolean>;
|
|
20
|
+
};
|
|
14
21
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15
22
|
addMilestone: (payload: AddMilestonePayload) => void;
|
|
16
23
|
updateMilestone: (payload: UpdateMilestonePayload) => void;
|
|
@@ -30,9 +37,16 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
30
37
|
type: import("vue").PropType<ActivityStatus>;
|
|
31
38
|
required: true;
|
|
32
39
|
};
|
|
40
|
+
users: {
|
|
41
|
+
type: import("vue").PropType<User[]>;
|
|
42
|
+
required: true;
|
|
43
|
+
};
|
|
33
44
|
isEditable: {
|
|
34
45
|
type: import("vue").PropType<boolean>;
|
|
35
46
|
};
|
|
47
|
+
readonly: {
|
|
48
|
+
type: import("vue").PropType<boolean>;
|
|
49
|
+
};
|
|
36
50
|
}>> & {
|
|
37
51
|
onAddMilestone?: ((payload: AddMilestonePayload) => any) | undefined;
|
|
38
52
|
onUpdateMilestone?: ((payload: UpdateMilestonePayload) => any) | undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ActivityStatus, AddMilestonePayload, AddPhasePayload, Phase, UpdateMilestonePayload, UpdatePhasePayload } from '../types';
|
|
1
|
+
import { ActivityStatus, AddMilestonePayload, AddPhasePayload, Phase, UpdateMilestonePayload, UpdatePhasePayload, type User } from '../types';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<{
|
|
3
3
|
phases: {
|
|
4
4
|
type: import("vue").PropType<Phase[]>;
|
|
@@ -11,6 +11,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11
11
|
isEditable: {
|
|
12
12
|
type: import("vue").PropType<boolean>;
|
|
13
13
|
};
|
|
14
|
+
users: {
|
|
15
|
+
type: import("vue").PropType<User[]>;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
readonly: {
|
|
19
|
+
type: import("vue").PropType<boolean>;
|
|
20
|
+
};
|
|
14
21
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15
22
|
addMilestone: (payload: AddMilestonePayload) => void;
|
|
16
23
|
updateMilestone: (payload: UpdateMilestonePayload) => void;
|
|
@@ -34,6 +41,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
34
41
|
isEditable: {
|
|
35
42
|
type: import("vue").PropType<boolean>;
|
|
36
43
|
};
|
|
44
|
+
users: {
|
|
45
|
+
type: import("vue").PropType<User[]>;
|
|
46
|
+
required: true;
|
|
47
|
+
};
|
|
48
|
+
readonly: {
|
|
49
|
+
type: import("vue").PropType<boolean>;
|
|
50
|
+
};
|
|
37
51
|
}>> & {
|
|
38
52
|
onAddMilestone?: ((payload: AddMilestonePayload) => any) | undefined;
|
|
39
53
|
onUpdateMilestone?: ((payload: UpdateMilestonePayload) => any) | undefined;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { type Ref } from 'vue';
|
|
2
|
+
import { type Activity } from '../types';
|
|
3
|
+
export declare function provideFeedStore(activities: Ref<Activity[]>): {
|
|
4
|
+
selectedActivityId: Ref<string | null | undefined>;
|
|
5
|
+
selectedActivity: import("vue").ComputedRef<Activity | undefined>;
|
|
6
|
+
selectActivity: (activityId: string | null) => void;
|
|
7
|
+
};
|
|
8
|
+
export declare function useFeedStore(): {
|
|
9
|
+
selectedActivityId: Ref<string | null | undefined>;
|
|
10
|
+
selectedActivity: import("vue").ComputedRef<Activity | undefined>;
|
|
11
|
+
selectActivity: (activityId: string | null) => void;
|
|
12
|
+
};
|
package/dist/src/main.d.ts
CHANGED
|
@@ -9,3 +9,4 @@ export { default as AoInputField } from './components/AoInputField.vue';
|
|
|
9
9
|
export { default as AoCheckboxField } from './components/AoCheckboxField.vue';
|
|
10
10
|
export { default as AoMultiselect } from './components/AoMultiselect.vue';
|
|
11
11
|
export { default as AoCardFeed } from './components/AoCardFeed.vue';
|
|
12
|
+
export { default as AoProjectPhases } from './components/AoProjectPhases.vue';
|
|
@@ -36,6 +36,8 @@ export interface Milestone extends Entity, Ordered {
|
|
|
36
36
|
status?: MilestoneStatus;
|
|
37
37
|
phase?: Phase;
|
|
38
38
|
deadline?: string;
|
|
39
|
+
important?: boolean;
|
|
40
|
+
assigneeId: Id;
|
|
39
41
|
}
|
|
40
42
|
export interface ActivityBase extends Entity, Ordered {
|
|
41
43
|
name: string;
|
|
@@ -215,7 +217,9 @@ export interface UpdateMilestonePayload {
|
|
|
215
217
|
name?: string;
|
|
216
218
|
activities?: Activity[];
|
|
217
219
|
rules?: Rule[];
|
|
218
|
-
deadline?: string
|
|
220
|
+
deadline?: string;
|
|
221
|
+
assigneeId?: Id;
|
|
222
|
+
important?: Boolean;
|
|
219
223
|
}
|
|
220
224
|
export interface UpdateItemPayload<T extends TemplateItemType> {
|
|
221
225
|
itemType: T;
|
|
@@ -281,6 +285,7 @@ export interface UpdateActivityPayload {
|
|
|
281
285
|
assigneeId?: Id | null;
|
|
282
286
|
projectId?: Id;
|
|
283
287
|
milestoneId?: Id;
|
|
288
|
+
private?: boolean;
|
|
284
289
|
}
|
|
285
290
|
export interface AddRulePayload {
|
|
286
291
|
templateId: Id;
|
|
@@ -29,6 +29,16 @@ export declare const statuses: {
|
|
|
29
29
|
};
|
|
30
30
|
export type StatusKeys = keyof typeof statuses;
|
|
31
31
|
export type StatusValues = (typeof statuses)[StatusKeys];
|
|
32
|
+
export declare const buttonColors: {
|
|
33
|
+
readonly WARNING: "warning";
|
|
34
|
+
readonly SUCCESS: "success";
|
|
35
|
+
readonly DANGER: "danger";
|
|
36
|
+
readonly PRIMARY: "primary";
|
|
37
|
+
readonly NEUTRAL: "neutral";
|
|
38
|
+
readonly BLACK: "black";
|
|
39
|
+
};
|
|
40
|
+
export type ButtonColorKeys = keyof typeof buttonColors;
|
|
41
|
+
export type ButtonColorValues = (typeof buttonColors)[ButtonColorKeys];
|
|
32
42
|
export declare const iconPositions: {
|
|
33
43
|
readonly START: "start";
|
|
34
44
|
readonly END: "end";
|
|
@@ -43,13 +43,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
43
43
|
type: import("vue").PropType<ActivityStatus[]>;
|
|
44
44
|
required: true;
|
|
45
45
|
};
|
|
46
|
-
attachmentEnabled: {
|
|
47
|
-
type: import("vue").PropType<boolean>;
|
|
48
|
-
required: true;
|
|
49
|
-
};
|
|
50
|
-
selectedActivity: {
|
|
51
|
-
type: import("vue").PropType<Activity>;
|
|
52
|
-
};
|
|
53
46
|
projects: {
|
|
54
47
|
type: import("vue").PropType<Project[]>;
|
|
55
48
|
};
|
|
@@ -129,13 +122,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
129
122
|
type: import("vue").PropType<ActivityStatus[]>;
|
|
130
123
|
required: true;
|
|
131
124
|
};
|
|
132
|
-
attachmentEnabled: {
|
|
133
|
-
type: import("vue").PropType<boolean>;
|
|
134
|
-
required: true;
|
|
135
|
-
};
|
|
136
|
-
selectedActivity: {
|
|
137
|
-
type: import("vue").PropType<Activity>;
|
|
138
|
-
};
|
|
139
125
|
projects: {
|
|
140
126
|
type: import("vue").PropType<Project[]>;
|
|
141
127
|
};
|
|
@@ -45,10 +45,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
45
45
|
type: import("vue").PropType<boolean>;
|
|
46
46
|
required: true;
|
|
47
47
|
};
|
|
48
|
-
attachmentEnabled: {
|
|
49
|
-
type: import("vue").PropType<boolean>;
|
|
50
|
-
required: true;
|
|
51
|
-
};
|
|
52
48
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
53
49
|
'update:activity': (payload: UpdateActivityPayload) => void;
|
|
54
50
|
addSubtask: (payload: AddSubtaskPayload) => void;
|
|
@@ -107,10 +103,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
107
103
|
type: import("vue").PropType<boolean>;
|
|
108
104
|
required: true;
|
|
109
105
|
};
|
|
110
|
-
attachmentEnabled: {
|
|
111
|
-
type: import("vue").PropType<boolean>;
|
|
112
|
-
required: true;
|
|
113
|
-
};
|
|
114
106
|
}>> & {
|
|
115
107
|
onUpdateComment?: ((payload: UpdateCommentPayload) => any) | undefined;
|
|
116
108
|
onRemoveComment?: ((payload: RemoveCommentPayload) => any) | undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type User, type AddActivityPayload, type Phase, type UpdateActivityPayload, type UpdateMilestonePayload } from '../types';
|
|
1
|
+
import { type User, type AddActivityPayload, type Phase, type UpdateActivityPayload, type UpdateMilestonePayload, type ActivityStatus } from '../types';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<{
|
|
3
3
|
milestoneId: {
|
|
4
4
|
type: import("vue").PropType<string>;
|
|
@@ -22,6 +22,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
22
22
|
isEditable: {
|
|
23
23
|
type: import("vue").PropType<boolean>;
|
|
24
24
|
};
|
|
25
|
+
closedStatus: {
|
|
26
|
+
type: import("vue").PropType<ActivityStatus>;
|
|
27
|
+
required: true;
|
|
28
|
+
};
|
|
25
29
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
26
30
|
close: (e: Event) => void;
|
|
27
31
|
addActivity: (args_0: AddActivityPayload) => void;
|
|
@@ -56,6 +60,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
56
60
|
isEditable: {
|
|
57
61
|
type: import("vue").PropType<boolean>;
|
|
58
62
|
};
|
|
63
|
+
closedStatus: {
|
|
64
|
+
type: import("vue").PropType<ActivityStatus>;
|
|
65
|
+
required: true;
|
|
66
|
+
};
|
|
59
67
|
}>> & {
|
|
60
68
|
onClose?: ((e: Event) => any) | undefined;
|
|
61
69
|
onUpdateActivity?: ((args_0: UpdateActivityPayload) => any) | undefined;
|
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.
|
|
7
|
+
"version": "0.34.0",
|
|
8
8
|
"workspaces": [
|
|
9
9
|
"packages/*"
|
|
10
10
|
],
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"vuedraggable": "~4.1.0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@26lights/orcha": "^0.
|
|
30
|
+
"@26lights/orcha": "^0.32.5",
|
|
31
31
|
"@floating-ui/dom": "^1.5.3",
|
|
32
|
-
"@vueform/multiselect": "^2.6.
|
|
33
|
-
"@vueuse/core": "^10.
|
|
32
|
+
"@vueform/multiselect": "^2.6.6",
|
|
33
|
+
"@vueuse/core": "^10.8.0",
|
|
34
34
|
"date-fns": "^2.30.0",
|
|
35
35
|
"i18next": "^23.2.8",
|
|
36
36
|
"i18next-http-backend": "^2.2.1",
|