@26lights/orcha 0.42.134 → 0.42.136
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 +40 -40
- package/dist/orcha.css +1 -1
- package/dist/orcha.es.js +3500 -3475
- package/dist/orcha.umd.js +34 -34
- package/dist/src/components/AoCardFeed.vue.d.ts +6 -0
- package/dist/src/types/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -32,6 +32,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
|
|
|
32
32
|
important: {
|
|
33
33
|
type: import("vue").PropType<boolean>;
|
|
34
34
|
};
|
|
35
|
+
blocked: {
|
|
36
|
+
type: import("vue").PropType<boolean>;
|
|
37
|
+
};
|
|
35
38
|
assignee: {
|
|
36
39
|
type: import("vue").PropType<User>;
|
|
37
40
|
};
|
|
@@ -96,6 +99,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
|
|
|
96
99
|
important: {
|
|
97
100
|
type: import("vue").PropType<boolean>;
|
|
98
101
|
};
|
|
102
|
+
blocked: {
|
|
103
|
+
type: import("vue").PropType<boolean>;
|
|
104
|
+
};
|
|
99
105
|
assignee: {
|
|
100
106
|
type: import("vue").PropType<User>;
|
|
101
107
|
};
|
|
@@ -59,6 +59,7 @@ export interface ActivityBase extends Entity, Ordered {
|
|
|
59
59
|
attachments?: Attachment[];
|
|
60
60
|
tasks?: Subtask[];
|
|
61
61
|
slug?: string;
|
|
62
|
+
blocked?: boolean;
|
|
62
63
|
}
|
|
63
64
|
export declare const durationTypes: {
|
|
64
65
|
readonly months: "months";
|
|
@@ -332,6 +333,7 @@ export interface UpdateActivityPayload {
|
|
|
332
333
|
milestoneId?: Id;
|
|
333
334
|
private?: boolean;
|
|
334
335
|
sprintId?: Id | null;
|
|
336
|
+
blocked?: boolean;
|
|
335
337
|
}
|
|
336
338
|
export interface AddRulePayload {
|
|
337
339
|
templateId: Id;
|