@26lights/orcha 0.34.0 → 0.34.2

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.
@@ -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;
@@ -217,7 +217,7 @@ export interface UpdateMilestonePayload {
217
217
  name?: string;
218
218
  activities?: Activity[];
219
219
  rules?: Rule[];
220
- deadline?: string;
220
+ deadline?: string | null;
221
221
  assigneeId?: Id;
222
222
  important?: Boolean;
223
223
  }
@@ -43,6 +43,14 @@ 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
+ default: boolean;
50
+ };
51
+ selectedActivity: {
52
+ type: import("vue").PropType<Activity>;
53
+ };
46
54
  projects: {
47
55
  type: import("vue").PropType<Project[]>;
48
56
  };
@@ -122,6 +130,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
122
130
  type: import("vue").PropType<ActivityStatus[]>;
123
131
  required: true;
124
132
  };
133
+ attachmentEnabled: {
134
+ type: import("vue").PropType<boolean>;
135
+ required: true;
136
+ default: boolean;
137
+ };
138
+ selectedActivity: {
139
+ type: import("vue").PropType<Activity>;
140
+ };
125
141
  projects: {
126
142
  type: import("vue").PropType<Project[]>;
127
143
  };
@@ -160,6 +176,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
160
176
  "onUpdate:showsOnlyImportant"?: ((value: boolean) => any) | undefined;
161
177
  }, {
162
178
  isTaskCheckable: (task: Subtask) => boolean;
179
+ attachmentEnabled: boolean;
163
180
  searchText: string;
164
181
  }, {}>, {
165
182
  activityDetailsBody(props: {
@@ -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.34.0",
7
+ "version": "0.34.2",
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.5",
30
+ "@26lights/orcha": "^0.34.2",
31
31
  "@floating-ui/dom": "^1.5.3",
32
32
  "@vueform/multiselect": "^2.6.6",
33
33
  "@vueuse/core": "^10.8.0",
@@ -1,12 +0,0 @@
1
- import { type Ref } from 'vue';
2
- import { type Activity } from '../types';
3
- export declare function provideFeedStore(activities: Ref<Activity[]>): {
4
- selectedActivityId: Ref<string | null | undefined>;
5
- selectedActivity: import("vue").ComputedRef<Activity | undefined>;
6
- selectActivity: (activityId: string | null) => void;
7
- };
8
- export declare function useFeedStore(): {
9
- selectedActivityId: Ref<string | null | undefined>;
10
- selectedActivity: import("vue").ComputedRef<Activity | undefined>;
11
- selectActivity: (activityId: string | null) => void;
12
- };