@26lights/orcha 0.11.4 → 0.12.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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type Phase, type AddMilestonePayload, type UpdatePhasePayload, type UpdateMilestonePayload, ActivityStatus } from '../types';
|
|
1
|
+
import { type Phase, type AddMilestonePayload, type UpdatePhasePayload, type UpdateMilestonePayload, type ActivityStatus } from '../types';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<{
|
|
3
3
|
phase: {
|
|
4
4
|
type: import("vue").PropType<Phase>;
|
package/dist/src/helpers.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Activity, ActivityStatus, type Milestone, MilestoneStatus, Ordered, type Phase } from './types';
|
|
1
|
+
import { type Activity, type ActivityStatus, type Milestone, MilestoneStatus, Ordered, type Phase } from './types';
|
|
2
2
|
import { DraggableChangeEvent } from './types/utils';
|
|
3
3
|
export declare function sumPhaseActivitiesAmount(milestones: Milestone[]): number;
|
|
4
4
|
export declare function sumTemplateMilestonesAmount(phases: Phase[]): number;
|
|
@@ -40,6 +40,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
40
40
|
type: import("vue").PropType<string>;
|
|
41
41
|
default: string;
|
|
42
42
|
};
|
|
43
|
+
isProjectLocked: {
|
|
44
|
+
type: import("vue").PropType<boolean>;
|
|
45
|
+
};
|
|
43
46
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
44
47
|
'change:activities': (payload: ChangeFeedActivitiesPayload) => void;
|
|
45
48
|
addActivity: (payload: AddActivityFeedPayload) => void;
|
|
@@ -102,6 +105,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
102
105
|
type: import("vue").PropType<string>;
|
|
103
106
|
default: string;
|
|
104
107
|
};
|
|
108
|
+
isProjectLocked: {
|
|
109
|
+
type: import("vue").PropType<boolean>;
|
|
110
|
+
};
|
|
105
111
|
}>> & {
|
|
106
112
|
onSelectActivity?: ((activityId: string | null) => any) | undefined;
|
|
107
113
|
onArchiveActivity?: ((payload: {
|