@26lights/orcha 0.42.121 → 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";
@@ -99,6 +99,12 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
99
99
  type: import("vue").PropType<Sprint[]>;
100
100
  default: () => never[];
101
101
  };
102
+ sprintPlanningData: {
103
+ type: import("vue").PropType<Record<string, {
104
+ plannedManDays: number;
105
+ }>>;
106
+ default: () => {};
107
+ };
102
108
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
103
109
  "change:activities": (payload: ChangeFeedActivitiesPayload) => void;
104
110
  addActivity: (payload: AddActivityFeedPayload) => void;
@@ -232,6 +238,12 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
232
238
  type: import("vue").PropType<Sprint[]>;
233
239
  default: () => never[];
234
240
  };
241
+ sprintPlanningData: {
242
+ type: import("vue").PropType<Record<string, {
243
+ plannedManDays: number;
244
+ }>>;
245
+ default: () => {};
246
+ };
235
247
  }>> & Readonly<{
236
248
  onStartTimer?: ((payload: StartTimerPayload) => any) | undefined;
237
249
  onSelectActivity?: ((activityId: string | null, activitySlug: string | null) => any) | undefined;
@@ -283,6 +295,9 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
283
295
  searchText: string;
284
296
  feedMode: FeedMode;
285
297
  activitySprints: Sprint[];
298
+ sprintPlanningData: Record<Id, {
299
+ plannedManDays: number;
300
+ }>;
286
301
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
287
302
  declare function __VLS_template(): {
288
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.121",
7
+ "version": "0.42.122",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],