@26lights/orcha 0.34.10 → 0.34.12
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 +3150 -3168
- package/dist/orcha.umd.js +2 -2
- package/dist/src/components/AoActivityDetails.vue.d.ts +9 -1
- package/dist/src/views/AoFeed.vue.d.ts +6 -6
- package/dist/src/views/AoProjectOverviewActivityDetails.vue.d.ts +9 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type ActivityFeed, type Milestone, type UpdateSubtaskFieldPayload, type AddSubtaskPayload, type User, type AddFilesPayload, type RemoveFilePayload, type UpdateActivityPayload, type Activity, type Subtask, type ActivityStatus, type AddCommentPayload, type RemoveCommentPayload, type UpdateCommentPayload, type ActivityType } from '../types/index';
|
|
1
|
+
import { type ActivityFeed, type Milestone, type UpdateSubtaskFieldPayload, type AddSubtaskPayload, type User, type AddFilesPayload, type RemoveFilePayload, type UpdateActivityPayload, type Activity, type Subtask, type ActivityStatus, type AddCommentPayload, type RemoveCommentPayload, type UpdateCommentPayload, type ActivityType, type Project } from '../types/index';
|
|
2
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
3
|
activity: {
|
|
4
4
|
type: import("vue").PropType<Activity>;
|
|
@@ -44,6 +44,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
44
44
|
type: import("vue").PropType<boolean>;
|
|
45
45
|
required: true;
|
|
46
46
|
};
|
|
47
|
+
projects: {
|
|
48
|
+
type: import("vue").PropType<Project[]>;
|
|
49
|
+
required: true;
|
|
50
|
+
};
|
|
47
51
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
48
52
|
'update:activity': (payload: UpdateActivityPayload) => void;
|
|
49
53
|
close: (args_0: void) => void;
|
|
@@ -102,6 +106,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
102
106
|
type: import("vue").PropType<boolean>;
|
|
103
107
|
required: true;
|
|
104
108
|
};
|
|
109
|
+
projects: {
|
|
110
|
+
type: import("vue").PropType<Project[]>;
|
|
111
|
+
required: true;
|
|
112
|
+
};
|
|
105
113
|
}>> & {
|
|
106
114
|
onClose?: ((args_0?: void | undefined) => any) | undefined;
|
|
107
115
|
onUpdateComment?: ((payload: UpdateCommentPayload) => any) | undefined;
|
|
@@ -48,12 +48,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
48
48
|
required: true;
|
|
49
49
|
default: boolean;
|
|
50
50
|
};
|
|
51
|
-
selectedActivity: {
|
|
52
|
-
type: import("vue").PropType<Activity>;
|
|
53
|
-
};
|
|
54
51
|
projects: {
|
|
55
52
|
type: import("vue").PropType<Project[]>;
|
|
56
53
|
};
|
|
54
|
+
selectedActivity: {
|
|
55
|
+
type: import("vue").PropType<Activity>;
|
|
56
|
+
};
|
|
57
57
|
initialActivityId: {
|
|
58
58
|
type: import("vue").PropType<string>;
|
|
59
59
|
};
|
|
@@ -135,12 +135,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
135
135
|
required: true;
|
|
136
136
|
default: boolean;
|
|
137
137
|
};
|
|
138
|
-
selectedActivity: {
|
|
139
|
-
type: import("vue").PropType<Activity>;
|
|
140
|
-
};
|
|
141
138
|
projects: {
|
|
142
139
|
type: import("vue").PropType<Project[]>;
|
|
143
140
|
};
|
|
141
|
+
selectedActivity: {
|
|
142
|
+
type: import("vue").PropType<Activity>;
|
|
143
|
+
};
|
|
144
144
|
initialActivityId: {
|
|
145
145
|
type: import("vue").PropType<string>;
|
|
146
146
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type Activity, 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 } from '../types';
|
|
1
|
+
import { type Activity, 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 } from '../types';
|
|
2
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
3
|
phaseId: {
|
|
4
4
|
type: import("vue").PropType<string>;
|
|
@@ -37,6 +37,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
37
37
|
type: import("vue").PropType<User[]>;
|
|
38
38
|
required: true;
|
|
39
39
|
};
|
|
40
|
+
project: {
|
|
41
|
+
type: import("vue").PropType<Project>;
|
|
42
|
+
required: true;
|
|
43
|
+
};
|
|
40
44
|
userId: {
|
|
41
45
|
type: import("vue").PropType<string>;
|
|
42
46
|
required: true;
|
|
@@ -99,6 +103,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
99
103
|
type: import("vue").PropType<User[]>;
|
|
100
104
|
required: true;
|
|
101
105
|
};
|
|
106
|
+
project: {
|
|
107
|
+
type: import("vue").PropType<Project>;
|
|
108
|
+
required: true;
|
|
109
|
+
};
|
|
102
110
|
userId: {
|
|
103
111
|
type: import("vue").PropType<string>;
|
|
104
112
|
required: true;
|
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.12",
|
|
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.12",
|
|
31
31
|
"@floating-ui/dom": "^1.5.3",
|
|
32
32
|
"@vueform/multiselect": "^2.6.6",
|
|
33
33
|
"@vueuse/core": "^10.8.0",
|