@26lights/orcha 0.42.121 → 0.42.123

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,52 @@
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
+ remainingPlannedManDays: number;
20
+ }>>;
21
+ default: () => {};
22
+ };
23
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
24
+ activities: {
25
+ type: import("vue").PropType<Activity[]>;
26
+ required: true;
27
+ };
28
+ sprints: {
29
+ type: import("vue").PropType<Sprint[]>;
30
+ required: true;
31
+ };
32
+ projects: {
33
+ type: import("vue").PropType<Project[]>;
34
+ required: true;
35
+ default: () => never[];
36
+ };
37
+ planningData: {
38
+ type: import("vue").PropType<Record<string, {
39
+ plannedManDays: number;
40
+ remainingPlannedManDays: number;
41
+ }>>;
42
+ default: () => {};
43
+ };
44
+ }>> & Readonly<{}>, {
45
+ projects: Project[];
46
+ planningData: Record<string, {
47
+ plannedManDays: number;
48
+ remainingPlannedManDays: number;
49
+ }>;
50
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
51
+ declare const _default: typeof __VLS_publicComponent;
52
+ export default _default;
@@ -140,6 +140,14 @@ 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
+ remainingPlannedManDays: number;
149
+ userIds?: string[];
150
+ }
143
151
  export declare const activityFeedStatus: {
144
152
  readonly future: "future";
145
153
  readonly this_month: "this_month";
@@ -99,6 +99,13 @@ 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
+ remainingPlannedManDays: number;
106
+ }>>;
107
+ default: () => {};
108
+ };
102
109
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
103
110
  "change:activities": (payload: ChangeFeedActivitiesPayload) => void;
104
111
  addActivity: (payload: AddActivityFeedPayload) => void;
@@ -232,6 +239,13 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
232
239
  type: import("vue").PropType<Sprint[]>;
233
240
  default: () => never[];
234
241
  };
242
+ sprintPlanningData: {
243
+ type: import("vue").PropType<Record<string, {
244
+ plannedManDays: number;
245
+ remainingPlannedManDays: number;
246
+ }>>;
247
+ default: () => {};
248
+ };
235
249
  }>> & Readonly<{
236
250
  onStartTimer?: ((payload: StartTimerPayload) => any) | undefined;
237
251
  onSelectActivity?: ((activityId: string | null, activitySlug: string | null) => any) | undefined;
@@ -283,6 +297,10 @@ declare const __VLS_publicComponent: import("vue").DefineComponent<import("vue")
283
297
  searchText: string;
284
298
  feedMode: FeedMode;
285
299
  activitySprints: Sprint[];
300
+ sprintPlanningData: Record<Id, {
301
+ plannedManDays: number;
302
+ remainingPlannedManDays: number;
303
+ }>;
286
304
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
287
305
  declare function __VLS_template(): {
288
306
  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.123",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],