@26lights/orcha 0.7.14 → 0.7.16
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.css +1 -1
- package/dist/orcha.es.js +1667 -1574
- package/dist/orcha.umd.js +2 -2
- package/dist/src/types/index.d.ts +2 -2
- package/dist/src/views/AoFeed.vue.d.ts +3 -3
- package/package.json +1 -1
|
@@ -344,13 +344,13 @@ export type FeedListUpdateAdd = {
|
|
|
344
344
|
};
|
|
345
345
|
export type FeedListUpdateRemove = {
|
|
346
346
|
removed: {
|
|
347
|
-
element:
|
|
347
|
+
element: Activity;
|
|
348
348
|
oldIndex: number;
|
|
349
349
|
};
|
|
350
350
|
};
|
|
351
351
|
export type FeedListUpdateMoved = {
|
|
352
352
|
moved: {
|
|
353
|
-
element:
|
|
353
|
+
element: Activity;
|
|
354
354
|
newIndex: number;
|
|
355
355
|
oldIndex: number;
|
|
356
356
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type ChangeFeedActivitiesPayload, type Project, type UpdateFeedFilterPayload, type FeedFiltersMap, type User, type AddSubtaskPayload, type AddFilesPayload, type RemoveFilePayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type Activity, type AddActivityFeedPayload, type UpdateActivityFeedPayload } from '../types';
|
|
1
|
+
import { type ChangeFeedActivitiesPayload, type Project, type UpdateFeedFilterPayload, type FeedFiltersMap, type User, type AddSubtaskPayload, type AddFilesPayload, type RemoveFilePayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type Activity, type AddActivityFeedPayload, type UpdateActivityFeedPayload, ActivityType } from '../types';
|
|
2
2
|
import { ActivityStatus } from '../types';
|
|
3
3
|
declare const _default: import("vue").DefineComponent<{
|
|
4
4
|
activities: {
|
|
@@ -18,7 +18,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
18
18
|
required: true;
|
|
19
19
|
};
|
|
20
20
|
activityTypes: {
|
|
21
|
-
type: import("vue").PropType<
|
|
21
|
+
type: import("vue").PropType<ActivityType[]>;
|
|
22
22
|
required: true;
|
|
23
23
|
};
|
|
24
24
|
users: {
|
|
@@ -65,7 +65,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
65
65
|
required: true;
|
|
66
66
|
};
|
|
67
67
|
activityTypes: {
|
|
68
|
-
type: import("vue").PropType<
|
|
68
|
+
type: import("vue").PropType<ActivityType[]>;
|
|
69
69
|
required: true;
|
|
70
70
|
};
|
|
71
71
|
users: {
|