@26lights/orcha 0.9.6 → 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.
- package/dist/orcha.cjs.js +1 -1
- package/dist/orcha.es.js +593 -594
- package/dist/orcha.umd.js +1 -1
- package/dist/src/views/AoFeed.vue.d.ts +1 -10
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type ChangeFeedActivitiesPayload, type Project, type FeedFilters, type User, type AddSubtaskPayload, type UpdateSubtaskFieldPayload, type AddFilesPayload, type RemoveFilePayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type Activity, type AddActivityFeedPayload, type UpdateActivityPayload, type ActivityType, type Subtask
|
|
1
|
+
import { type ChangeFeedActivitiesPayload, type Project, type FeedFilters, type User, type AddSubtaskPayload, type UpdateSubtaskFieldPayload, type AddFilesPayload, type RemoveFilePayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type Activity, type AddActivityFeedPayload, type UpdateActivityPayload, type ActivityType, type Subtask } from '../types';
|
|
2
2
|
import { ActivityStatus } from '../types';
|
|
3
3
|
declare const _default: import("vue").DefineComponent<{
|
|
4
4
|
filters: {
|
|
@@ -41,10 +41,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
41
41
|
type: import("vue").PropType<string>;
|
|
42
42
|
default: string;
|
|
43
43
|
};
|
|
44
|
-
selectedActivityMilestone: {
|
|
45
|
-
type: import("vue").PropType<Milestone>;
|
|
46
|
-
default: undefined;
|
|
47
|
-
};
|
|
48
44
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
49
45
|
'change:activities': (payload: ChangeFeedActivitiesPayload) => void;
|
|
50
46
|
addActivity: (payload: AddActivityFeedPayload) => void;
|
|
@@ -108,10 +104,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
108
104
|
type: import("vue").PropType<string>;
|
|
109
105
|
default: string;
|
|
110
106
|
};
|
|
111
|
-
selectedActivityMilestone: {
|
|
112
|
-
type: import("vue").PropType<Milestone>;
|
|
113
|
-
default: undefined;
|
|
114
|
-
};
|
|
115
107
|
}>> & {
|
|
116
108
|
onSelectActivity?: ((activityId: string | null) => any) | undefined;
|
|
117
109
|
onArchiveActivity?: ((payload: {
|
|
@@ -137,6 +129,5 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
137
129
|
}, {
|
|
138
130
|
isTaskCheckable: (task: Subtask) => boolean;
|
|
139
131
|
searchText: string;
|
|
140
|
-
selectedActivityMilestone: Milestone;
|
|
141
132
|
}, {}>;
|
|
142
133
|
export default _default;
|