@26lights/orcha 0.9.5 → 0.9.7
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.
|
@@ -23,6 +23,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
23
23
|
};
|
|
24
24
|
isTaskCheckable: {
|
|
25
25
|
type: import("vue").PropType<(task: Subtask) => boolean>;
|
|
26
|
+
default: undefined;
|
|
26
27
|
};
|
|
27
28
|
statuses: {
|
|
28
29
|
type: import("vue").PropType<ActivityStatus[]>;
|
|
@@ -85,6 +86,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
85
86
|
};
|
|
86
87
|
isTaskCheckable: {
|
|
87
88
|
type: import("vue").PropType<(task: Subtask) => boolean>;
|
|
89
|
+
default: undefined;
|
|
88
90
|
};
|
|
89
91
|
statuses: {
|
|
90
92
|
type: import("vue").PropType<ActivityStatus[]>;
|
|
@@ -125,6 +127,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
125
127
|
"onUpdate:showsArchivedActivities"?: ((value: boolean) => any) | undefined;
|
|
126
128
|
onAddComment?: ((payload: AddCommentPayload) => any) | undefined;
|
|
127
129
|
}, {
|
|
130
|
+
isTaskCheckable: (task: Subtask) => boolean;
|
|
128
131
|
searchText: string;
|
|
129
132
|
}, {}>;
|
|
130
133
|
export default _default;
|
|
@@ -30,9 +30,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
30
30
|
type: import("vue").PropType<ActivityStatus[]>;
|
|
31
31
|
required: true;
|
|
32
32
|
};
|
|
33
|
-
activityTypes: {
|
|
34
|
-
type: import("vue").PropType<string[]>;
|
|
35
|
-
};
|
|
36
33
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
37
34
|
addPhase: (payload: AddPhasePayload) => void;
|
|
38
35
|
updatePhase: (payload: UpdatePhasePayload) => void;
|
|
@@ -87,9 +84,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
87
84
|
type: import("vue").PropType<ActivityStatus[]>;
|
|
88
85
|
required: true;
|
|
89
86
|
};
|
|
90
|
-
activityTypes: {
|
|
91
|
-
type: import("vue").PropType<string[]>;
|
|
92
|
-
};
|
|
93
87
|
}>> & {
|
|
94
88
|
onArchiveActivity?: ((payload: {
|
|
95
89
|
id: string;
|