@26lights/orcha 0.34.20 → 0.34.22
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 +320 -327
- package/dist/orcha.umd.js +1 -1
- package/dist/src/views/AoProjectOverviewActivityDetails.vue.d.ts +0 -6
- package/dist/src/views/AoProjectOverviewMilestoneDetails.vue.d.ts +1 -51
- package/dist/src/views/AoProjectOverviewProject.vue.d.ts +8 -0
- package/package.json +2 -2
|
@@ -19,9 +19,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
19
19
|
type: import("vue").PropType<Activity[]>;
|
|
20
20
|
required: true;
|
|
21
21
|
};
|
|
22
|
-
assigneesOptions: {
|
|
23
|
-
type: import("vue").PropType<Record<string, string>>;
|
|
24
|
-
};
|
|
25
22
|
isTaskCheckable: {
|
|
26
23
|
type: import("vue").PropType<(task: Subtask) => boolean>;
|
|
27
24
|
};
|
|
@@ -85,9 +82,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
85
82
|
type: import("vue").PropType<Activity[]>;
|
|
86
83
|
required: true;
|
|
87
84
|
};
|
|
88
|
-
assigneesOptions: {
|
|
89
|
-
type: import("vue").PropType<Record<string, string>>;
|
|
90
|
-
};
|
|
91
85
|
isTaskCheckable: {
|
|
92
86
|
type: import("vue").PropType<(task: Subtask) => boolean>;
|
|
93
87
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type User, type AddActivityPayload, type Phase, type UpdateActivityPayload, type UpdateMilestonePayload, type
|
|
1
|
+
import { type User, type AddActivityPayload, type Phase, type UpdateActivityPayload, type UpdateMilestonePayload, type ActivityStatus } from '../types';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<{
|
|
3
3
|
milestoneId: {
|
|
4
4
|
type: import("vue").PropType<string>;
|
|
@@ -26,31 +26,6 @@ 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
|
-
};
|
|
54
29
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
55
30
|
close: (e: Event) => void;
|
|
56
31
|
addActivity: (args_0: AddActivityPayload) => void;
|
|
@@ -89,31 +64,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
89
64
|
type: import("vue").PropType<ActivityStatus>;
|
|
90
65
|
required: true;
|
|
91
66
|
};
|
|
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
|
-
};
|
|
117
67
|
}>> & {
|
|
118
68
|
onClose?: ((e: Event) => any) | undefined;
|
|
119
69
|
onUpdateActivity?: ((args_0: UpdateActivityPayload) => any) | undefined;
|
|
@@ -46,6 +46,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
46
46
|
type: import("vue").PropType<boolean>;
|
|
47
47
|
required: true;
|
|
48
48
|
};
|
|
49
|
+
attachmentEnabled: {
|
|
50
|
+
type: import("vue").PropType<boolean>;
|
|
51
|
+
required: true;
|
|
52
|
+
};
|
|
49
53
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
50
54
|
addPhase: (payload: AddPhasePayload) => void;
|
|
51
55
|
updatePhase: (payload: UpdatePhasePayload) => void;
|
|
@@ -124,6 +128,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
124
128
|
type: import("vue").PropType<boolean>;
|
|
125
129
|
required: true;
|
|
126
130
|
};
|
|
131
|
+
attachmentEnabled: {
|
|
132
|
+
type: import("vue").PropType<boolean>;
|
|
133
|
+
required: true;
|
|
134
|
+
};
|
|
127
135
|
}>> & {
|
|
128
136
|
onArchiveActivity?: ((payload: {
|
|
129
137
|
id: string;
|
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.22",
|
|
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.22",
|
|
31
31
|
"@floating-ui/dom": "^1.5.3",
|
|
32
32
|
"@vueform/multiselect": "^2.6.6",
|
|
33
33
|
"@vueuse/core": "^10.8.0",
|