@26lights/orcha 0.34.18 → 0.34.20
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.
|
@@ -39,6 +39,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
39
39
|
};
|
|
40
40
|
project: {
|
|
41
41
|
type: import("vue").PropType<Project>;
|
|
42
|
+
required: true;
|
|
42
43
|
};
|
|
43
44
|
userId: {
|
|
44
45
|
type: import("vue").PropType<string>;
|
|
@@ -104,6 +105,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
104
105
|
};
|
|
105
106
|
project: {
|
|
106
107
|
type: import("vue").PropType<Project>;
|
|
108
|
+
required: true;
|
|
107
109
|
};
|
|
108
110
|
userId: {
|
|
109
111
|
type: import("vue").PropType<string>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type User, type AddActivityPayload, type Phase, type UpdateActivityPayload, type UpdateMilestonePayload, type ActivityStatus } from '../types';
|
|
1
|
+
import { type User, type AddActivityPayload, type Phase, type UpdateActivityPayload, type UpdateMilestonePayload, type Activity, type ActivityStatus, type Project, type ActivityType, type Subtask } from '../types';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<{
|
|
3
3
|
milestoneId: {
|
|
4
4
|
type: import("vue").PropType<string>;
|
|
@@ -26,6 +26,31 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
26
26
|
type: import("vue").PropType<ActivityStatus>;
|
|
27
27
|
required: true;
|
|
28
28
|
};
|
|
29
|
+
project: {
|
|
30
|
+
type: import("vue").PropType<Project>;
|
|
31
|
+
required: true;
|
|
32
|
+
};
|
|
33
|
+
activityTypes: {
|
|
34
|
+
type: import("vue").PropType<ActivityType[]>;
|
|
35
|
+
};
|
|
36
|
+
activities: {
|
|
37
|
+
type: import("vue").PropType<Activity[]>;
|
|
38
|
+
required: true;
|
|
39
|
+
};
|
|
40
|
+
assigneesOptions: {
|
|
41
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
42
|
+
};
|
|
43
|
+
isTaskCheckable: {
|
|
44
|
+
type: import("vue").PropType<(task: Subtask) => boolean>;
|
|
45
|
+
};
|
|
46
|
+
statuses: {
|
|
47
|
+
type: import("vue").PropType<ActivityStatus[]>;
|
|
48
|
+
required: true;
|
|
49
|
+
};
|
|
50
|
+
attachmentEnabled: {
|
|
51
|
+
type: import("vue").PropType<boolean>;
|
|
52
|
+
required: true;
|
|
53
|
+
};
|
|
29
54
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
30
55
|
close: (e: Event) => void;
|
|
31
56
|
addActivity: (args_0: AddActivityPayload) => void;
|
|
@@ -64,6 +89,31 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
64
89
|
type: import("vue").PropType<ActivityStatus>;
|
|
65
90
|
required: true;
|
|
66
91
|
};
|
|
92
|
+
project: {
|
|
93
|
+
type: import("vue").PropType<Project>;
|
|
94
|
+
required: true;
|
|
95
|
+
};
|
|
96
|
+
activityTypes: {
|
|
97
|
+
type: import("vue").PropType<ActivityType[]>;
|
|
98
|
+
};
|
|
99
|
+
activities: {
|
|
100
|
+
type: import("vue").PropType<Activity[]>;
|
|
101
|
+
required: true;
|
|
102
|
+
};
|
|
103
|
+
assigneesOptions: {
|
|
104
|
+
type: import("vue").PropType<Record<string, string>>;
|
|
105
|
+
};
|
|
106
|
+
isTaskCheckable: {
|
|
107
|
+
type: import("vue").PropType<(task: Subtask) => boolean>;
|
|
108
|
+
};
|
|
109
|
+
statuses: {
|
|
110
|
+
type: import("vue").PropType<ActivityStatus[]>;
|
|
111
|
+
required: true;
|
|
112
|
+
};
|
|
113
|
+
attachmentEnabled: {
|
|
114
|
+
type: import("vue").PropType<boolean>;
|
|
115
|
+
required: true;
|
|
116
|
+
};
|
|
67
117
|
}>> & {
|
|
68
118
|
onClose?: ((e: Event) => any) | undefined;
|
|
69
119
|
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.34.
|
|
7
|
+
"version": "0.34.20",
|
|
8
8
|
"workspaces": [
|
|
9
9
|
"packages/*"
|
|
10
10
|
],
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"vuedraggable": "~4.1.0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@26lights/orcha": "^0.34.
|
|
30
|
+
"@26lights/orcha": "^0.34.20",
|
|
31
31
|
"@floating-ui/dom": "^1.5.3",
|
|
32
32
|
"@vueform/multiselect": "^2.6.6",
|
|
33
33
|
"@vueuse/core": "^10.8.0",
|