@26lights/orcha 0.32.0 → 0.32.2
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 +1 -0
- package/dist/orcha.cjs.js +1 -1
- package/dist/orcha.css +1 -1
- package/dist/orcha.es.js +2323 -2286
- package/dist/orcha.umd.js +2 -2
- package/dist/src/components/AoCardProjectItemMilestone.vue.d.ts +6 -0
- package/dist/src/components/AoListKanban.vue.d.ts +9 -0
- package/dist/src/views/AoFeed.vue.d.ts +6 -0
- package/dist/src/views/AoProjectOverviewMilestoneDetails.vue.d.ts +6 -0
- package/dist/src/views/AoProjectOverviewProject.vue.d.ts +6 -0
- package/package.json +2 -2
|
@@ -17,6 +17,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
17
17
|
isEditable: {
|
|
18
18
|
type: import("vue").PropType<boolean>;
|
|
19
19
|
};
|
|
20
|
+
deadline: {
|
|
21
|
+
type: import("vue").PropType<string>;
|
|
22
|
+
};
|
|
20
23
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21
24
|
updateMilestone: (payload: UpdateMilestonePayload) => void;
|
|
22
25
|
archiveMilestone: (payload: {
|
|
@@ -40,6 +43,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
40
43
|
isEditable: {
|
|
41
44
|
type: import("vue").PropType<boolean>;
|
|
42
45
|
};
|
|
46
|
+
deadline: {
|
|
47
|
+
type: import("vue").PropType<string>;
|
|
48
|
+
};
|
|
43
49
|
}>> & {
|
|
44
50
|
onUpdateMilestone?: ((payload: UpdateMilestonePayload) => any) | undefined;
|
|
45
51
|
onArchiveMilestone?: ((payload: {
|
|
@@ -36,6 +36,9 @@ declare const _default: <T extends ActivityFeedStatus>(__VLS_props: {
|
|
|
36
36
|
archiveActivity: [payload: {
|
|
37
37
|
id: Id;
|
|
38
38
|
}];
|
|
39
|
+
unarchiveActivity: [payload: {
|
|
40
|
+
id: Id;
|
|
41
|
+
}];
|
|
39
42
|
updateActivity: [input: UpdateActivityPayload];
|
|
40
43
|
};
|
|
41
44
|
}, "slots" | "attrs" | "emit"> | undefined, __VLS_setup?: {
|
|
@@ -65,6 +68,9 @@ declare const _default: <T extends ActivityFeedStatus>(__VLS_props: {
|
|
|
65
68
|
archiveActivity: [payload: {
|
|
66
69
|
id: Id;
|
|
67
70
|
}];
|
|
71
|
+
unarchiveActivity: [payload: {
|
|
72
|
+
id: Id;
|
|
73
|
+
}];
|
|
68
74
|
updateActivity: [input: UpdateActivityPayload];
|
|
69
75
|
};
|
|
70
76
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
@@ -97,6 +103,9 @@ declare const _default: <T extends ActivityFeedStatus>(__VLS_props: {
|
|
|
97
103
|
archiveActivity: [payload: {
|
|
98
104
|
id: Id;
|
|
99
105
|
}];
|
|
106
|
+
unarchiveActivity: [payload: {
|
|
107
|
+
id: Id;
|
|
108
|
+
}];
|
|
100
109
|
updateActivity: [input: UpdateActivityPayload];
|
|
101
110
|
};
|
|
102
111
|
} | undefined;
|
|
@@ -62,6 +62,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
62
62
|
archiveActivity: (payload: {
|
|
63
63
|
id: string;
|
|
64
64
|
}) => void;
|
|
65
|
+
unarchiveActivity: (payload: {
|
|
66
|
+
id: string;
|
|
67
|
+
}) => void;
|
|
65
68
|
"update:searchText": (value: string) => void;
|
|
66
69
|
"clear:searchText": (event: Event) => void;
|
|
67
70
|
"update:showsArchivedActivities": (value: boolean) => void;
|
|
@@ -134,6 +137,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
134
137
|
onArchiveActivity?: ((payload: {
|
|
135
138
|
id: string;
|
|
136
139
|
}) => any) | undefined;
|
|
140
|
+
onUnarchiveActivity?: ((payload: {
|
|
141
|
+
id: string;
|
|
142
|
+
}) => any) | undefined;
|
|
137
143
|
onUpdateComment?: ((payload: UpdateCommentPayload) => any) | undefined;
|
|
138
144
|
onRemoveComment?: ((payload: RemoveCommentPayload) => any) | undefined;
|
|
139
145
|
onDeleteSubtask?: ((payload: {
|
|
@@ -30,6 +30,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
30
30
|
archiveActivity: (payload: {
|
|
31
31
|
id: string;
|
|
32
32
|
}) => void;
|
|
33
|
+
unarchiveActivity: (payload: {
|
|
34
|
+
id: string;
|
|
35
|
+
}) => void;
|
|
33
36
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
34
37
|
milestoneId: {
|
|
35
38
|
type: import("vue").PropType<string>;
|
|
@@ -59,6 +62,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
59
62
|
onArchiveActivity?: ((payload: {
|
|
60
63
|
id: string;
|
|
61
64
|
}) => any) | undefined;
|
|
65
|
+
onUnarchiveActivity?: ((payload: {
|
|
66
|
+
id: string;
|
|
67
|
+
}) => any) | undefined;
|
|
62
68
|
onUpdateMilestone?: ((args_0: UpdateMilestonePayload) => any) | undefined;
|
|
63
69
|
onAddActivity?: ((args_0: AddActivityPayload) => any) | undefined;
|
|
64
70
|
}, {}, {}>;
|
|
@@ -62,6 +62,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
62
62
|
archiveActivity: (payload: {
|
|
63
63
|
id: string;
|
|
64
64
|
}) => void;
|
|
65
|
+
unarchiveActivity: (payload: {
|
|
66
|
+
id: string;
|
|
67
|
+
}) => void;
|
|
65
68
|
addSubtask: (payload: AddSubtaskPayload) => void;
|
|
66
69
|
updateSubtask: (payload: UpdateSubtaskFieldPayload) => void;
|
|
67
70
|
deleteSubtask: (payload: {
|
|
@@ -125,6 +128,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
125
128
|
onArchiveActivity?: ((payload: {
|
|
126
129
|
id: string;
|
|
127
130
|
}) => any) | undefined;
|
|
131
|
+
onUnarchiveActivity?: ((payload: {
|
|
132
|
+
id: string;
|
|
133
|
+
}) => any) | undefined;
|
|
128
134
|
onUpdateComment?: ((payload: UpdateCommentPayload) => any) | undefined;
|
|
129
135
|
onRemoveComment?: ((payload: RemoveCommentPayload) => any) | undefined;
|
|
130
136
|
onDeleteSubtask?: ((payload: {
|
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.32.
|
|
7
|
+
"version": "0.32.2",
|
|
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.32.
|
|
30
|
+
"@26lights/orcha": "^0.32.2",
|
|
31
31
|
"@floating-ui/dom": "^1.5.3",
|
|
32
32
|
"@vueform/multiselect": "^2.6.2",
|
|
33
33
|
"@vueuse/core": "^10.2.1",
|