@26lights/orcha 0.41.2 → 0.41.4

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.
@@ -23,6 +23,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
23
23
  deadline: {
24
24
  type: import("vue").PropType<string>;
25
25
  };
26
+ active: {
27
+ type: import("vue").PropType<boolean>;
28
+ };
26
29
  isSelected: {
27
30
  type: import("vue").PropType<boolean>;
28
31
  };
@@ -40,6 +43,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
40
43
  archiveMilestone: (payload: {
41
44
  id: string;
42
45
  }) => void;
46
+ unarchiveMilestone: (payload: {
47
+ id: string;
48
+ }) => void;
43
49
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
44
50
  id: {
45
51
  type: import("vue").PropType<string>;
@@ -64,6 +70,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
64
70
  deadline: {
65
71
  type: import("vue").PropType<string>;
66
72
  };
73
+ active: {
74
+ type: import("vue").PropType<boolean>;
75
+ };
67
76
  isSelected: {
68
77
  type: import("vue").PropType<boolean>;
69
78
  };
@@ -81,6 +90,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
81
90
  onArchiveMilestone?: ((payload: {
82
91
  id: string;
83
92
  }) => any) | undefined;
93
+ onUnarchiveMilestone?: ((payload: {
94
+ id: string;
95
+ }) => any) | undefined;
84
96
  }, {}, {}>, {
85
97
  secondary?(_: {}): any;
86
98
  }>;
@@ -24,6 +24,9 @@ declare const _default: import("vue").DefineComponent<{
24
24
  archiveMilestone: (payload: {
25
25
  id: string;
26
26
  }) => void;
27
+ unarchiveMilestone: (payload: {
28
+ id: string;
29
+ }) => void;
27
30
  updatePhase: (payload: UpdatePhasePayload) => void;
28
31
  archivePhase: (payload: {
29
32
  id: string;
@@ -63,5 +66,8 @@ declare const _default: import("vue").DefineComponent<{
63
66
  onArchiveMilestone?: ((payload: {
64
67
  id: string;
65
68
  }) => any) | undefined;
69
+ onUnarchiveMilestone?: ((payload: {
70
+ id: string;
71
+ }) => any) | undefined;
66
72
  }, {}, {}>;
67
73
  export default _default;
@@ -24,6 +24,9 @@ declare const _default: import("vue").DefineComponent<{
24
24
  archiveMilestone: (payload: {
25
25
  id: string;
26
26
  }) => void;
27
+ unarchiveMilestone: (payload: {
28
+ id: string;
29
+ }) => void;
27
30
  addPhase: (payload: AddPhasePayload) => void;
28
31
  updatePhase: (payload: UpdatePhasePayload) => void;
29
32
  archivePhase: (payload: {
@@ -64,6 +67,9 @@ declare const _default: import("vue").DefineComponent<{
64
67
  onArchiveMilestone?: ((payload: {
65
68
  id: string;
66
69
  }) => any) | undefined;
70
+ onUnarchiveMilestone?: ((payload: {
71
+ id: string;
72
+ }) => any) | undefined;
67
73
  onAddPhase?: ((payload: AddPhasePayload) => any) | undefined;
68
74
  }, {}, {}>;
69
75
  export default _default;
@@ -40,6 +40,7 @@ export interface Milestone extends Entity, Ordered {
40
40
  important?: boolean;
41
41
  assignee?: User;
42
42
  color?: string;
43
+ active: boolean;
43
44
  }
44
45
  export interface ActivityBase extends Entity, Ordered {
45
46
  name: string;
@@ -64,6 +64,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
64
64
  archiveMilestone: (payload: {
65
65
  id: string;
66
66
  }) => void;
67
+ unarchiveMilestone: (payload: {
68
+ id: string;
69
+ }) => void;
67
70
  addActivity: (payload: AddActivityPayload) => void;
68
71
  'update:activity': (payload: UpdateActivityPayload) => void;
69
72
  archiveActivity: (payload: {
@@ -170,6 +173,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
170
173
  onArchiveMilestone?: ((payload: {
171
174
  id: string;
172
175
  }) => any) | undefined;
176
+ onUnarchiveMilestone?: ((payload: {
177
+ id: string;
178
+ }) => any) | undefined;
173
179
  onAddPhase?: ((payload: AddPhasePayload) => any) | undefined;
174
180
  onCopyPhaseToTemplate?: ((payload: {
175
181
  id: string;
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.41.2",
7
+ "version": "0.41.4",
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.41.2",
30
+ "@26lights/orcha": "^0.41.4",
31
31
  "@floating-ui/dom": "^1.5.3",
32
32
  "@vueform/multiselect": "^2.6.6",
33
33
  "@vueuse/core": "^10.8.0",