@26lights/orcha 0.32.3 → 0.32.5
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 +2574 -2594
- package/dist/orcha.umd.js +2 -2
- package/dist/src/types/index.d.ts +1 -1
- package/dist/src/views/AoFeed.vue.d.ts +8 -0
- package/package.json +2 -2
|
@@ -215,7 +215,7 @@ export interface UpdateMilestonePayload {
|
|
|
215
215
|
name?: string;
|
|
216
216
|
activities?: Activity[];
|
|
217
217
|
rules?: Rule[];
|
|
218
|
-
deadline?: string;
|
|
218
|
+
deadline?: string | null;
|
|
219
219
|
}
|
|
220
220
|
export interface UpdateItemPayload<T extends TemplateItemType> {
|
|
221
221
|
itemType: T;
|
|
@@ -53,6 +53,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
53
53
|
type: import("vue").PropType<string>;
|
|
54
54
|
default: string;
|
|
55
55
|
};
|
|
56
|
+
fetchActivity: {
|
|
57
|
+
type: import("vue").PropType<(id: string) => Promise<Activity>>;
|
|
58
|
+
required: true;
|
|
59
|
+
};
|
|
56
60
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
57
61
|
"change:activities": (payload: ChangeFeedActivitiesPayload) => void;
|
|
58
62
|
addActivity: (payload: AddActivityFeedPayload) => void;
|
|
@@ -132,6 +136,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
132
136
|
type: import("vue").PropType<string>;
|
|
133
137
|
default: string;
|
|
134
138
|
};
|
|
139
|
+
fetchActivity: {
|
|
140
|
+
type: import("vue").PropType<(id: string) => Promise<Activity>>;
|
|
141
|
+
required: true;
|
|
142
|
+
};
|
|
135
143
|
}>> & {
|
|
136
144
|
onSelectActivity?: ((activityId: string | null) => any) | undefined;
|
|
137
145
|
onArchiveActivity?: ((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.5",
|
|
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.5",
|
|
31
31
|
"@floating-ui/dom": "^1.5.3",
|
|
32
32
|
"@vueform/multiselect": "^2.6.2",
|
|
33
33
|
"@vueuse/core": "^10.2.1",
|