@26lights/orcha 0.42.96 → 0.42.98
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 +2 -1
- package/dist/orcha.cjs.js +30 -30
- package/dist/orcha.css +1 -1
- package/dist/orcha.es.js +4617 -4494
- package/dist/orcha.umd.js +30 -30
- package/dist/src/components/AoActivityDetails.vue.d.ts +7 -1
- package/dist/src/components/AoToggle.vue.d.ts +38 -0
- package/dist/src/types/index.d.ts +5 -0
- package/dist/src/views/AoFeed.vue.d.ts +7 -1
- package/dist/src/views/AoProjectOverviewActivityDetails.vue.d.ts +7 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type ActivityFeed, type Milestone, type UpdateSubtaskFieldPayload, type AddSubtaskPayload, type Id, type User, type AddFilesPayload, type Attachment, type RemoveFilePayload, type UpdateActivityPayload, type Activity, type Subtask, type ActivityStatus, type AddCommentPayload, type RemoveCommentPayload, type UpdateCommentPayload, type ActivityType, type Project, type TimeTracking } from '../types/index';
|
|
1
|
+
import { type ActivityFeed, type Milestone, type UpdateSubtaskFieldPayload, type AddSubtaskPayload, type Id, type User, type AddFilesPayload, type Attachment, type RemoveFilePayload, type UpdateActivityPayload, type Activity, type Subtask, type ActivityStatus, type ActivityDevStatus, type AddCommentPayload, type RemoveCommentPayload, type UpdateCommentPayload, type ActivityType, type Project, type TimeTracking } from '../types/index';
|
|
2
2
|
declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
3
|
isEditable: {
|
|
4
4
|
type: import("vue").PropType<boolean | "only-own">;
|
|
@@ -40,6 +40,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
|
|
|
40
40
|
statuses: {
|
|
41
41
|
type: import("vue").PropType<ActivityStatus[]>;
|
|
42
42
|
};
|
|
43
|
+
devStatuses: {
|
|
44
|
+
type: import("vue").PropType<ActivityDevStatus[]>;
|
|
45
|
+
};
|
|
43
46
|
attachmentEnabled: {
|
|
44
47
|
type: import("vue").PropType<boolean>;
|
|
45
48
|
required: true;
|
|
@@ -109,6 +112,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
|
|
|
109
112
|
statuses: {
|
|
110
113
|
type: import("vue").PropType<ActivityStatus[]>;
|
|
111
114
|
};
|
|
115
|
+
devStatuses: {
|
|
116
|
+
type: import("vue").PropType<ActivityDevStatus[]>;
|
|
117
|
+
};
|
|
112
118
|
attachmentEnabled: {
|
|
113
119
|
type: import("vue").PropType<boolean>;
|
|
114
120
|
required: true;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
isLeft: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
required: false;
|
|
5
|
+
default: boolean;
|
|
6
|
+
};
|
|
7
|
+
leftLabel: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
required: true;
|
|
10
|
+
};
|
|
11
|
+
rightLabel: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
required: true;
|
|
14
|
+
};
|
|
15
|
+
}>, {}, {}, {}, {
|
|
16
|
+
switchValue(switchValue: boolean): void;
|
|
17
|
+
selectLeft(): void;
|
|
18
|
+
selectRight(): void;
|
|
19
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:isLeft"[], "update:isLeft", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
20
|
+
isLeft: {
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
required: false;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
leftLabel: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
required: true;
|
|
28
|
+
};
|
|
29
|
+
rightLabel: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
required: true;
|
|
32
|
+
};
|
|
33
|
+
}>> & Readonly<{
|
|
34
|
+
"onUpdate:isLeft"?: ((...args: any[]) => any) | undefined;
|
|
35
|
+
}>, {
|
|
36
|
+
isLeft: boolean;
|
|
37
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
38
|
+
export default _default;
|
|
@@ -49,6 +49,7 @@ export interface ActivityBase extends Entity, Ordered {
|
|
|
49
49
|
estimation?: number;
|
|
50
50
|
important?: boolean;
|
|
51
51
|
type?: ActivityType;
|
|
52
|
+
activityType?: "standard" | "dev";
|
|
52
53
|
milestone?: Milestone;
|
|
53
54
|
dependingOn?: ActivityBase[];
|
|
54
55
|
blocking?: ActivityBase[];
|
|
@@ -66,6 +67,7 @@ export type DurationTypes = (typeof durationTypes)[DurationTypesKeys];
|
|
|
66
67
|
export interface Activity extends ActivityBase {
|
|
67
68
|
assignee?: User;
|
|
68
69
|
status?: ActivityStatus;
|
|
70
|
+
devStatus?: ActivityDevStatus;
|
|
69
71
|
deadline?: string;
|
|
70
72
|
project?: Project;
|
|
71
73
|
comments?: Comment[];
|
|
@@ -123,6 +125,9 @@ export interface Attachment extends FileLike {
|
|
|
123
125
|
export interface ActivityStatus extends Entity {
|
|
124
126
|
name: string;
|
|
125
127
|
}
|
|
128
|
+
export interface ActivityDevStatus extends Entity {
|
|
129
|
+
name: string;
|
|
130
|
+
}
|
|
126
131
|
export declare const activityFeedStatus: {
|
|
127
132
|
readonly future: "future";
|
|
128
133
|
readonly this_month: "this_month";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Attachment, TimeTracking } from '../types';
|
|
2
|
-
import { type Activity, type ActivityStatus, type ActivityType, type AddActivityFeedPayload, type AddCommentPayload, type AddFilesPayload, type AddSubtaskPayload, type ChangeFeedActivitiesPayload, type FeedFilters, type Id, type Project, type RemoveCommentPayload, type RemoveFilePayload, type StartTimerPayload, type Subtask, type UpdateActivityPayload, type UpdateCommentPayload, type UpdateSubtaskFieldPayload, type User } from '../types';
|
|
2
|
+
import { type Activity, type ActivityDevStatus, type ActivityStatus, type ActivityType, type AddActivityFeedPayload, type AddCommentPayload, type AddFilesPayload, type AddSubtaskPayload, type ChangeFeedActivitiesPayload, type FeedFilters, type Id, type Project, type RemoveCommentPayload, type RemoveFilePayload, type StartTimerPayload, type Subtask, type UpdateActivityPayload, type UpdateCommentPayload, type UpdateSubtaskFieldPayload, type User } from '../types';
|
|
3
3
|
declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
4
4
|
filters: {
|
|
5
5
|
type: import("vue").PropType<FeedFilters>;
|
|
@@ -43,6 +43,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
|
|
|
43
43
|
type: import("vue").PropType<ActivityStatus[]>;
|
|
44
44
|
required: true;
|
|
45
45
|
};
|
|
46
|
+
devStatuses: {
|
|
47
|
+
type: import("vue").PropType<ActivityDevStatus[]>;
|
|
48
|
+
};
|
|
46
49
|
attachmentEnabled: {
|
|
47
50
|
type: import("vue").PropType<boolean>;
|
|
48
51
|
required: true;
|
|
@@ -146,6 +149,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
|
|
|
146
149
|
type: import("vue").PropType<ActivityStatus[]>;
|
|
147
150
|
required: true;
|
|
148
151
|
};
|
|
152
|
+
devStatuses: {
|
|
153
|
+
type: import("vue").PropType<ActivityDevStatus[]>;
|
|
154
|
+
};
|
|
149
155
|
attachmentEnabled: {
|
|
150
156
|
type: import("vue").PropType<boolean>;
|
|
151
157
|
required: true;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type Activity, type Id, type UpdateActivityPayload, type AddSubtaskPayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type Subtask, type ActivityStatus, type Phase, type User, type ActivityType, type UpdateSubtaskFieldPayload, type AddFilesPayload, type RemoveFilePayload, type Project, type Attachment, type TimeTracking } from '../types';
|
|
1
|
+
import { type Activity, type ActivityDevStatus, type Id, type UpdateActivityPayload, type AddSubtaskPayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type Subtask, type ActivityStatus, type Phase, type User, type ActivityType, type UpdateSubtaskFieldPayload, type AddFilesPayload, type RemoveFilePayload, type Project, type Attachment, type TimeTracking } from '../types';
|
|
2
2
|
declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
3
|
phaseId: {
|
|
4
4
|
type: import("vue").PropType<string>;
|
|
@@ -15,6 +15,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
|
|
|
15
15
|
activityTypes: {
|
|
16
16
|
type: import("vue").PropType<ActivityType[]>;
|
|
17
17
|
};
|
|
18
|
+
devStatuses: {
|
|
19
|
+
type: import("vue").PropType<ActivityDevStatus[]>;
|
|
20
|
+
};
|
|
18
21
|
activities: {
|
|
19
22
|
type: import("vue").PropType<Activity[]>;
|
|
20
23
|
required: true;
|
|
@@ -84,6 +87,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
|
|
|
84
87
|
activityTypes: {
|
|
85
88
|
type: import("vue").PropType<ActivityType[]>;
|
|
86
89
|
};
|
|
90
|
+
devStatuses: {
|
|
91
|
+
type: import("vue").PropType<ActivityDevStatus[]>;
|
|
92
|
+
};
|
|
87
93
|
activities: {
|
|
88
94
|
type: import("vue").PropType<Activity[]>;
|
|
89
95
|
required: true;
|