@26lights/orcha 0.41.119 → 0.41.121
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 +2 -2
- package/dist/orcha.es.js +2059 -2046
- package/dist/orcha.umd.js +2 -2
- package/dist/src/components/AoCardFeed.vue.d.ts +8 -2
- package/dist/src/components/AoListKanban.vue.d.ts +3 -3
- package/dist/src/views/AoFeed.vue.d.ts +2 -2
- package/dist/src/views/AoProjectOverviewMilestoneDetails.vue.d.ts +2 -2
- package/package.json +1 -1
|
@@ -11,6 +11,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
11
11
|
projectName: {
|
|
12
12
|
type: import("vue").PropType<string>;
|
|
13
13
|
};
|
|
14
|
+
projectId: {
|
|
15
|
+
type: import("vue").PropType<string>;
|
|
16
|
+
};
|
|
14
17
|
projectColor: {
|
|
15
18
|
type: import("vue").PropType<string>;
|
|
16
19
|
};
|
|
@@ -59,7 +62,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
59
62
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
60
63
|
removeAssignee: (assigneeId: string) => void;
|
|
61
64
|
updateActivity: (payload: UpdateActivityPayload) => void;
|
|
62
|
-
startTimer: (name: string, project: string | undefined, slug: string | undefined) => void;
|
|
65
|
+
startTimer: (name: string, project: string | undefined, projectId: string | undefined, slug: string | undefined) => void;
|
|
63
66
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
64
67
|
id: {
|
|
65
68
|
type: import("vue").PropType<string>;
|
|
@@ -72,6 +75,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
72
75
|
projectName: {
|
|
73
76
|
type: import("vue").PropType<string>;
|
|
74
77
|
};
|
|
78
|
+
projectId: {
|
|
79
|
+
type: import("vue").PropType<string>;
|
|
80
|
+
};
|
|
75
81
|
projectColor: {
|
|
76
82
|
type: import("vue").PropType<string>;
|
|
77
83
|
};
|
|
@@ -120,7 +126,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
120
126
|
}>> & {
|
|
121
127
|
onRemoveAssignee?: ((assigneeId: string) => any) | undefined;
|
|
122
128
|
onUpdateActivity?: ((payload: UpdateActivityPayload) => any) | undefined;
|
|
123
|
-
onStartTimer?: ((name: string, project: string | undefined, slug: string | undefined) => any) | undefined;
|
|
129
|
+
onStartTimer?: ((name: string, project: string | undefined, projectId: string | undefined, slug: string | undefined) => any) | undefined;
|
|
124
130
|
}, {}, {}>, {
|
|
125
131
|
secondary?(_: {}): any;
|
|
126
132
|
}>;
|
|
@@ -44,7 +44,7 @@ declare const _default: <T extends ActivityFeedStatus>(__VLS_props: {
|
|
|
44
44
|
id: Id;
|
|
45
45
|
}];
|
|
46
46
|
updateActivity: [input: UpdateActivityPayload];
|
|
47
|
-
startTimer: [name: string, project: string | undefined, slug: string | undefined];
|
|
47
|
+
startTimer: [name: string, project: string | undefined, projectId: string | undefined, slug: string | undefined];
|
|
48
48
|
};
|
|
49
49
|
}, "slots" | "attrs" | "emit"> | undefined, __VLS_setup?: {
|
|
50
50
|
props: {
|
|
@@ -79,7 +79,7 @@ declare const _default: <T extends ActivityFeedStatus>(__VLS_props: {
|
|
|
79
79
|
id: Id;
|
|
80
80
|
}];
|
|
81
81
|
updateActivity: [input: UpdateActivityPayload];
|
|
82
|
-
startTimer: [name: string, project: string | undefined, slug: string | undefined];
|
|
82
|
+
startTimer: [name: string, project: string | undefined, projectId: string | undefined, slug: string | undefined];
|
|
83
83
|
};
|
|
84
84
|
}) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
85
85
|
[key: string]: any;
|
|
@@ -117,7 +117,7 @@ declare const _default: <T extends ActivityFeedStatus>(__VLS_props: {
|
|
|
117
117
|
id: Id;
|
|
118
118
|
}];
|
|
119
119
|
updateActivity: [input: UpdateActivityPayload];
|
|
120
|
-
startTimer: [name: string, project: string | undefined, slug: string | undefined];
|
|
120
|
+
startTimer: [name: string, project: string | undefined, projectId: string | undefined, slug: string | undefined];
|
|
121
121
|
};
|
|
122
122
|
} | undefined;
|
|
123
123
|
};
|
|
@@ -95,7 +95,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
95
95
|
updateComment: (payload: UpdateCommentPayload) => void;
|
|
96
96
|
removeComment: (payload: RemoveCommentPayload) => void;
|
|
97
97
|
toast: (message: string, type: "success" | "error") => void;
|
|
98
|
-
startTimer: (name: string, project: string | undefined, slug: string | undefined) => void;
|
|
98
|
+
startTimer: (name: string, project: string | undefined, projectId: string | undefined, slug: string | undefined) => void;
|
|
99
99
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
100
100
|
filters: {
|
|
101
101
|
type: import("vue").PropType<FeedFilters>;
|
|
@@ -165,7 +165,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
165
165
|
required: true;
|
|
166
166
|
};
|
|
167
167
|
}>> & {
|
|
168
|
-
onStartTimer?: ((name: string, project: string | undefined, slug: string | undefined) => any) | undefined;
|
|
168
|
+
onStartTimer?: ((name: string, project: string | undefined, projectId: string | undefined, slug: string | undefined) => any) | undefined;
|
|
169
169
|
onSelectActivity?: ((activityId: string | null, activitySlug: string | null) => any) | undefined;
|
|
170
170
|
onArchiveActivity?: ((payload: {
|
|
171
171
|
id: string;
|
|
@@ -37,7 +37,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
37
37
|
unarchiveActivity: (payload: {
|
|
38
38
|
id: string;
|
|
39
39
|
}) => void;
|
|
40
|
-
startTimer: (name: string, project: string | undefined, slug: string | undefined) => void;
|
|
40
|
+
startTimer: (name: string, project: string | undefined, projectId: string | undefined, slug: string | undefined) => void;
|
|
41
41
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
42
42
|
milestoneId: {
|
|
43
43
|
type: import("vue").PropType<string>;
|
|
@@ -68,7 +68,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
68
68
|
}>> & {
|
|
69
69
|
onClose?: ((e: Event) => any) | undefined;
|
|
70
70
|
onUpdateActivity?: ((args_0: UpdateActivityPayload) => any) | undefined;
|
|
71
|
-
onStartTimer?: ((name: string, project: string | undefined, slug: string | undefined) => any) | undefined;
|
|
71
|
+
onStartTimer?: ((name: string, project: string | undefined, projectId: string | undefined, slug: string | undefined) => any) | undefined;
|
|
72
72
|
onArchiveActivity?: ((payload: {
|
|
73
73
|
id: string;
|
|
74
74
|
}) => any) | undefined;
|