@26lights/orcha 0.31.5 → 0.32.0
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.
|
@@ -21,6 +21,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
21
21
|
};
|
|
22
22
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23
23
|
'update:title': (v: string) => void;
|
|
24
|
+
'update:deadline': (v: string) => void;
|
|
24
25
|
archivePhase: (payload: {
|
|
25
26
|
id: string;
|
|
26
27
|
}) => void;
|
|
@@ -46,6 +47,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
46
47
|
};
|
|
47
48
|
}>> & {
|
|
48
49
|
"onUpdate:title"?: ((v: string) => any) | undefined;
|
|
50
|
+
"onUpdate:deadline"?: ((v: string) => any) | undefined;
|
|
49
51
|
onArchivePhase?: ((payload: {
|
|
50
52
|
id: string;
|
|
51
53
|
}) => any) | undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type User, type AddActivityPayload, type Phase, type UpdateActivityPayload } from '../types';
|
|
1
|
+
import { type User, type AddActivityPayload, type Phase, type UpdateActivityPayload, type UpdateMilestonePayload } from '../types';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<{
|
|
3
3
|
milestoneId: {
|
|
4
4
|
type: import("vue").PropType<string>;
|
|
@@ -25,6 +25,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
25
25
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
26
26
|
close: (e: Event) => void;
|
|
27
27
|
addActivity: (args_0: AddActivityPayload) => void;
|
|
28
|
+
updateMilestone: (args_0: UpdateMilestonePayload) => void;
|
|
28
29
|
updateActivity: (args_0: UpdateActivityPayload) => void;
|
|
29
30
|
archiveActivity: (payload: {
|
|
30
31
|
id: string;
|
|
@@ -58,6 +59,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
58
59
|
onArchiveActivity?: ((payload: {
|
|
59
60
|
id: string;
|
|
60
61
|
}) => any) | undefined;
|
|
62
|
+
onUpdateMilestone?: ((args_0: UpdateMilestonePayload) => any) | undefined;
|
|
61
63
|
onAddActivity?: ((args_0: AddActivityPayload) => any) | undefined;
|
|
62
64
|
}, {}, {}>;
|
|
63
65
|
export default _default;
|
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.
|
|
7
|
+
"version": "0.32.0",
|
|
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.
|
|
30
|
+
"@26lights/orcha": "^0.32.0",
|
|
31
31
|
"@floating-ui/dom": "^1.5.3",
|
|
32
32
|
"@vueform/multiselect": "^2.6.2",
|
|
33
33
|
"@vueuse/core": "^10.2.1",
|