@26lights/orcha 0.9.10 → 0.9.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 +2444 -2449
- package/dist/orcha.umd.js +1 -1
- package/dist/src/components/AoMultiselect.vue.d.ts +7 -2
- package/dist/src/views/AoProjectOverviewActivityDetails.vue.d.ts +17 -1
- package/package.json +1 -1
- package/dist/src/composables/useProjectOverviewStore.d.ts +0 -17
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
2
2
|
detached: {
|
|
3
3
|
type: import("vue").PropType<boolean>;
|
|
4
4
|
};
|
|
@@ -12,5 +12,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
12
12
|
appendTo: {
|
|
13
13
|
type: import("vue").PropType<string | HTMLElement>;
|
|
14
14
|
};
|
|
15
|
-
}>>, {}, {}
|
|
15
|
+
}>>, {}, {}>, Partial<Record<NonNullable<string | number>, (_: any) => any>>>;
|
|
16
16
|
export default _default;
|
|
17
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
18
|
+
new (): {
|
|
19
|
+
$slots: S;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type Activity, type UpdateActivityPayload, type AddSubtaskPayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type Subtask, type ActivityStatus, type Phase } from '../types';
|
|
1
|
+
import { type Activity, type UpdateActivityPayload, type AddSubtaskPayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type Subtask, type ActivityStatus, type Phase, type User } from '../types';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<{
|
|
3
3
|
phaseId: {
|
|
4
4
|
type: import("vue").PropType<string>;
|
|
@@ -33,6 +33,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
33
33
|
type: import("vue").PropType<Phase[]>;
|
|
34
34
|
required: true;
|
|
35
35
|
};
|
|
36
|
+
users: {
|
|
37
|
+
type: import("vue").PropType<User[]>;
|
|
38
|
+
required: true;
|
|
39
|
+
};
|
|
40
|
+
userId: {
|
|
41
|
+
type: import("vue").PropType<string>;
|
|
42
|
+
required: true;
|
|
43
|
+
};
|
|
36
44
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
37
45
|
'update:activity': (payload: UpdateActivityPayload) => void;
|
|
38
46
|
addSubtask: (payload: AddSubtaskPayload) => void;
|
|
@@ -73,6 +81,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
73
81
|
type: import("vue").PropType<Phase[]>;
|
|
74
82
|
required: true;
|
|
75
83
|
};
|
|
84
|
+
users: {
|
|
85
|
+
type: import("vue").PropType<User[]>;
|
|
86
|
+
required: true;
|
|
87
|
+
};
|
|
88
|
+
userId: {
|
|
89
|
+
type: import("vue").PropType<string>;
|
|
90
|
+
required: true;
|
|
91
|
+
};
|
|
76
92
|
}>> & {
|
|
77
93
|
onUpdateComment?: ((payload: UpdateCommentPayload) => any) | undefined;
|
|
78
94
|
onRemoveComment?: ((payload: RemoveCommentPayload) => any) | undefined;
|
package/package.json
CHANGED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { type MaybeRef } from 'vue';
|
|
2
|
-
import { type User, type Id } from '../types';
|
|
3
|
-
type InitUseProjectOverviewStorePayload = {
|
|
4
|
-
users: MaybeRef<User[]>;
|
|
5
|
-
userId: MaybeRef<Id>;
|
|
6
|
-
};
|
|
7
|
-
export default function useProjectOverviewStore(): {
|
|
8
|
-
init: (initPayload: InitUseProjectOverviewStorePayload) => void;
|
|
9
|
-
users: import("vue").Ref<{
|
|
10
|
-
id: string;
|
|
11
|
-
firstName?: string | undefined;
|
|
12
|
-
lastName?: string | undefined;
|
|
13
|
-
picture?: string | undefined;
|
|
14
|
-
}[]>;
|
|
15
|
-
userId: import("vue").Ref<string>;
|
|
16
|
-
};
|
|
17
|
-
export {};
|