@26lights/orcha 0.40.6 → 0.40.8

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.
@@ -19,12 +19,18 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
19
19
  deadline: {
20
20
  type: import("vue").PropType<string>;
21
21
  };
22
+ active: {
23
+ type: import("vue").PropType<boolean>;
24
+ };
22
25
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
23
26
  'update:title': (v: string) => void;
24
27
  'update:deadline': (v: string) => void;
25
28
  archivePhase: (payload: {
26
29
  id: string;
27
30
  }) => void;
31
+ unarchivePhase: (payload: {
32
+ id: string;
33
+ }) => void;
28
34
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
29
35
  id: {
30
36
  type: import("vue").PropType<string>;
@@ -45,12 +51,18 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
45
51
  deadline: {
46
52
  type: import("vue").PropType<string>;
47
53
  };
54
+ active: {
55
+ type: import("vue").PropType<boolean>;
56
+ };
48
57
  }>> & {
49
58
  "onUpdate:title"?: ((v: string) => any) | undefined;
50
59
  "onUpdate:deadline"?: ((v: string) => any) | undefined;
51
60
  onArchivePhase?: ((payload: {
52
61
  id: string;
53
62
  }) => any) | undefined;
63
+ onUnarchivePhase?: ((payload: {
64
+ id: string;
65
+ }) => any) | undefined;
54
66
  }, {}, {}>, {
55
67
  secondary?(_: {}): any;
56
68
  }>;
@@ -28,6 +28,9 @@ declare const _default: import("vue").DefineComponent<{
28
28
  archivePhase: (payload: {
29
29
  id: string;
30
30
  }) => void;
31
+ unarchivePhase: (payload: {
32
+ id: string;
33
+ }) => void;
31
34
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
32
35
  phase: {
33
36
  type: import("vue").PropType<Phase>;
@@ -54,6 +57,9 @@ declare const _default: import("vue").DefineComponent<{
54
57
  onArchivePhase?: ((payload: {
55
58
  id: string;
56
59
  }) => any) | undefined;
60
+ onUnarchivePhase?: ((payload: {
61
+ id: string;
62
+ }) => any) | undefined;
57
63
  onArchiveMilestone?: ((payload: {
58
64
  id: string;
59
65
  }) => any) | undefined;
@@ -29,6 +29,9 @@ declare const _default: import("vue").DefineComponent<{
29
29
  archivePhase: (payload: {
30
30
  id: string;
31
31
  }) => void;
32
+ unarchivePhase: (payload: {
33
+ id: string;
34
+ }) => void;
32
35
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
33
36
  phases: {
34
37
  type: import("vue").PropType<Phase[]>;
@@ -55,6 +58,9 @@ declare const _default: import("vue").DefineComponent<{
55
58
  onArchivePhase?: ((payload: {
56
59
  id: string;
57
60
  }) => any) | undefined;
61
+ onUnarchivePhase?: ((payload: {
62
+ id: string;
63
+ }) => any) | undefined;
58
64
  onArchiveMilestone?: ((payload: {
59
65
  id: string;
60
66
  }) => any) | undefined;
@@ -22,6 +22,7 @@ export interface Phase extends Entity, Ordered {
22
22
  name?: string;
23
23
  milestones: Milestone[];
24
24
  deadline?: string;
25
+ active: boolean;
25
26
  }
26
27
  export declare const milestoneStatus: {
27
28
  readonly todo: "todo";
@@ -56,6 +56,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
56
56
  archivePhase: (payload: {
57
57
  id: string;
58
58
  }) => void;
59
+ unarchivePhase: (payload: {
60
+ id: string;
61
+ }) => void;
59
62
  addMilestone: (payload: AddMilestonePayload) => void;
60
63
  updateMilestone: (payload: UpdateMilestonePayload) => void;
61
64
  archiveMilestone: (payload: {
@@ -161,6 +164,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
161
164
  onArchivePhase?: ((payload: {
162
165
  id: string;
163
166
  }) => any) | undefined;
167
+ onUnarchivePhase?: ((payload: {
168
+ id: string;
169
+ }) => any) | undefined;
164
170
  onArchiveMilestone?: ((payload: {
165
171
  id: string;
166
172
  }) => any) | undefined;
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.40.6",
7
+ "version": "0.40.8",
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.38.6",
30
+ "@26lights/orcha": "^0.40.8",
31
31
  "@floating-ui/dom": "^1.5.3",
32
32
  "@vueform/multiselect": "^2.6.6",
33
33
  "@vueuse/core": "^10.8.0",