@26lights/orcha 0.42.120 → 0.42.122

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.
@@ -0,0 +1,49 @@
1
+ import type { Sprint, Activity, Project } from '../types';
2
+ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
+ activities: {
4
+ type: import("vue").PropType<Activity[]>;
5
+ required: true;
6
+ };
7
+ sprints: {
8
+ type: import("vue").PropType<Sprint[]>;
9
+ required: true;
10
+ };
11
+ projects: {
12
+ type: import("vue").PropType<Project[]>;
13
+ required: true;
14
+ default: () => never[];
15
+ };
16
+ planningData: {
17
+ type: import("vue").PropType<Record<string, {
18
+ plannedManDays: number;
19
+ }>>;
20
+ default: () => {};
21
+ };
22
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
23
+ activities: {
24
+ type: import("vue").PropType<Activity[]>;
25
+ required: true;
26
+ };
27
+ sprints: {
28
+ type: import("vue").PropType<Sprint[]>;
29
+ required: true;
30
+ };
31
+ projects: {
32
+ type: import("vue").PropType<Project[]>;
33
+ required: true;
34
+ default: () => never[];
35
+ };
36
+ planningData: {
37
+ type: import("vue").PropType<Record<string, {
38
+ plannedManDays: number;
39
+ }>>;
40
+ default: () => {};
41
+ };
42
+ }>> & Readonly<{}>, {
43
+ projects: Project[];
44
+ planningData: Record<string, {
45
+ plannedManDays: number;
46
+ }>;
47
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
48
+ declare const _default: typeof __VLS_publicComponent;
49
+ export default _default;
@@ -140,6 +140,13 @@ export interface Sprint extends Entity {
140
140
  startDate: string;
141
141
  endDate: string;
142
142
  }
143
+ export interface SprintPlanningData {
144
+ projectId: string;
145
+ startDate: string;
146
+ endDate: string;
147
+ plannedManDays: number;
148
+ userIds?: string[];
149
+ }
143
150
  export declare const activityFeedStatus: {
144
151
  readonly future: "future";
145
152
  readonly this_month: "this_month";
@@ -95,6 +95,16 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
95
95
  type: import("vue").PropType<FeedMode>;
96
96
  default: string;
97
97
  };
98
+ activitySprints: {
99
+ type: import("vue").PropType<Sprint[]>;
100
+ default: () => never[];
101
+ };
102
+ sprintPlanningData: {
103
+ type: import("vue").PropType<Record<string, {
104
+ plannedManDays: number;
105
+ }>>;
106
+ default: () => {};
107
+ };
98
108
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
99
109
  "change:activities": (payload: ChangeFeedActivitiesPayload) => void;
100
110
  addActivity: (payload: AddActivityFeedPayload) => void;
@@ -224,6 +234,16 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
224
234
  type: import("vue").PropType<FeedMode>;
225
235
  default: string;
226
236
  };
237
+ activitySprints: {
238
+ type: import("vue").PropType<Sprint[]>;
239
+ default: () => never[];
240
+ };
241
+ sprintPlanningData: {
242
+ type: import("vue").PropType<Record<string, {
243
+ plannedManDays: number;
244
+ }>>;
245
+ default: () => {};
246
+ };
227
247
  }>> & Readonly<{
228
248
  onStartTimer?: ((payload: StartTimerPayload) => any) | undefined;
229
249
  onSelectActivity?: ((activityId: string | null, activitySlug: string | null) => any) | undefined;
@@ -274,6 +294,10 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
274
294
  initialActivitySlug: Id;
275
295
  searchText: string;
276
296
  feedMode: FeedMode;
297
+ activitySprints: Sprint[];
298
+ sprintPlanningData: Record<Id, {
299
+ plannedManDays: number;
300
+ }>;
277
301
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
278
302
  declare function __VLS_template(): {
279
303
  activityDetailsBody(props: {
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.42.120",
7
+ "version": "0.42.122",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],