@26lights/orcha 0.32.7 → 0.33.1
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 +233 -225
- package/dist/orcha.umd.js +1 -1
- package/dist/src/components/AoActivityDetails.vue.d.ts +8 -0
- package/dist/src/views/AoFeed.vue.d.ts +8 -0
- package/dist/src/views/AoProjectOverviewActivityDetails.vue.d.ts +8 -0
- package/package.json +2 -2
|
@@ -40,6 +40,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
40
40
|
type: import("vue").PropType<boolean>;
|
|
41
41
|
required: true;
|
|
42
42
|
};
|
|
43
|
+
attachmentEnabled: {
|
|
44
|
+
type: import("vue").PropType<boolean>;
|
|
45
|
+
required: true;
|
|
46
|
+
};
|
|
43
47
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
44
48
|
'update:activity': (payload: UpdateActivityPayload) => void;
|
|
45
49
|
close: (args_0: void) => void;
|
|
@@ -94,6 +98,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
94
98
|
type: import("vue").PropType<boolean>;
|
|
95
99
|
required: true;
|
|
96
100
|
};
|
|
101
|
+
attachmentEnabled: {
|
|
102
|
+
type: import("vue").PropType<boolean>;
|
|
103
|
+
required: true;
|
|
104
|
+
};
|
|
97
105
|
}>> & {
|
|
98
106
|
onClose?: ((args_0?: void | undefined) => any) | undefined;
|
|
99
107
|
onUpdateComment?: ((payload: UpdateCommentPayload) => any) | undefined;
|
|
@@ -43,6 +43,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
43
43
|
type: import("vue").PropType<ActivityStatus[]>;
|
|
44
44
|
required: true;
|
|
45
45
|
};
|
|
46
|
+
attachmentEnabled: {
|
|
47
|
+
type: import("vue").PropType<boolean>;
|
|
48
|
+
required: true;
|
|
49
|
+
};
|
|
46
50
|
selectedActivity: {
|
|
47
51
|
type: import("vue").PropType<Activity>;
|
|
48
52
|
};
|
|
@@ -125,6 +129,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
125
129
|
type: import("vue").PropType<ActivityStatus[]>;
|
|
126
130
|
required: true;
|
|
127
131
|
};
|
|
132
|
+
attachmentEnabled: {
|
|
133
|
+
type: import("vue").PropType<boolean>;
|
|
134
|
+
required: true;
|
|
135
|
+
};
|
|
128
136
|
selectedActivity: {
|
|
129
137
|
type: import("vue").PropType<Activity>;
|
|
130
138
|
};
|
|
@@ -45,6 +45,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
45
45
|
type: import("vue").PropType<boolean>;
|
|
46
46
|
required: true;
|
|
47
47
|
};
|
|
48
|
+
attachmentEnabled: {
|
|
49
|
+
type: import("vue").PropType<boolean>;
|
|
50
|
+
required: true;
|
|
51
|
+
};
|
|
48
52
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
49
53
|
'update:activity': (payload: UpdateActivityPayload) => void;
|
|
50
54
|
addSubtask: (payload: AddSubtaskPayload) => void;
|
|
@@ -103,6 +107,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
103
107
|
type: import("vue").PropType<boolean>;
|
|
104
108
|
required: true;
|
|
105
109
|
};
|
|
110
|
+
attachmentEnabled: {
|
|
111
|
+
type: import("vue").PropType<boolean>;
|
|
112
|
+
required: true;
|
|
113
|
+
};
|
|
106
114
|
}>> & {
|
|
107
115
|
onUpdateComment?: ((payload: UpdateCommentPayload) => any) | undefined;
|
|
108
116
|
onRemoveComment?: ((payload: RemoveCommentPayload) => any) | undefined;
|
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.33.1",
|
|
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.33.1",
|
|
31
31
|
"@floating-ui/dom": "^1.5.3",
|
|
32
32
|
"@vueform/multiselect": "^2.6.2",
|
|
33
33
|
"@vueuse/core": "^10.2.1",
|