@26lights/orcha 0.21.2 → 0.22.0

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.
@@ -108,8 +108,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
108
108
  onAddFiles?: ((payload: AddFilesPayload) => any) | undefined;
109
109
  onAddComment?: ((payload: AddCommentPayload) => any) | undefined;
110
110
  }, {}, {}>, {
111
- header?(_: {}): any;
112
- default?(_: {}): any;
111
+ header(): any;
112
+ default(props: {
113
+ activity: Activity;
114
+ }): any;
115
+ footer(): any;
113
116
  }>;
114
117
  export default _default;
115
118
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -146,7 +146,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
146
146
  isTaskCheckable: (task: Subtask) => boolean;
147
147
  searchText: string;
148
148
  }, {}>, {
149
- activityDetailsBody(): any;
149
+ activityDetailsBody(props: {
150
+ activity: Activity;
151
+ }): any;
150
152
  }>;
151
153
  export default _default;
152
154
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,5 +1,5 @@
1
1
  import { type Activity, type UpdateActivityPayload, type AddSubtaskPayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type Subtask, type ActivityStatus, type Phase, type User, UpdateSubtaskFieldPayload, AddFilesPayload, RemoveFilePayload } from '../types';
2
- declare const _default: import("vue").DefineComponent<{
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
3
3
  phaseId: {
4
4
  type: import("vue").PropType<string>;
5
5
  required: true;
@@ -115,5 +115,12 @@ declare const _default: import("vue").DefineComponent<{
115
115
  onUpdateSubtask?: ((payload: UpdateSubtaskFieldPayload) => any) | undefined;
116
116
  onAddFiles?: ((payload: AddFilesPayload) => any) | undefined;
117
117
  onAddComment?: ((payload: AddCommentPayload) => any) | undefined;
118
- }, {}, {}>;
118
+ }, {}, {}>, {
119
+ default?(_: {}): any;
120
+ }>;
119
121
  export default _default;
122
+ type __VLS_WithTemplateSlots<T, S> = T & {
123
+ new (): {
124
+ $slots: S;
125
+ };
126
+ };
@@ -1,4 +1,4 @@
1
- import { type Project, type User, type AddActivityPayload, type UpdateActivityPayload, type AddSubtaskPayload, type AddFilesPayload, type RemoveFilePayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type AddPhasePayload, type AddMilestonePayload, type Phase, type ApplyTemplatePayload, type UpdatePhasePayload, type UpdateMilestonePayload, type Subtask, type ActivityStatus, UpdateSubtaskFieldPayload } from '../types';
1
+ import { type Project, type User, type AddActivityPayload, type UpdateActivityPayload, type AddSubtaskPayload, type AddFilesPayload, type RemoveFilePayload, type AddCommentPayload, type UpdateCommentPayload, type RemoveCommentPayload, type AddPhasePayload, type AddMilestonePayload, type Phase, type ApplyTemplatePayload, type UpdatePhasePayload, type UpdateMilestonePayload, type Subtask, type ActivityStatus, UpdateSubtaskFieldPayload, Activity } from '../types';
2
2
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
3
3
  project: {
4
4
  type: import("vue").PropType<Project>;
@@ -132,7 +132,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
132
132
  onAddPhase?: ((payload: AddPhasePayload) => any) | undefined;
133
133
  onApplyTemplate?: ((payload: ApplyTemplatePayload) => any) | undefined;
134
134
  }, {}, {}>, {
135
- activityDetailsBody(): any;
135
+ activityDetailsBody(props: {
136
+ activity: Activity;
137
+ }): any;
136
138
  }>;
137
139
  export default _default;
138
140
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,4 +1,4 @@
1
- import { type TemplateDetails, type TemplateItemType, type AddItemPayload, type UpdateItemPayload, type AddRulePayload, type RemoveRulePayload, type ActivityType, type AddFilesPayload, type RemoveFilePayload, type RemoveItemPayload } from '../types';
1
+ import { type Activity, type TemplateDetails, type TemplateItemType, type AddItemPayload, type UpdateItemPayload, type AddRulePayload, type RemoveRulePayload, type ActivityType, type AddFilesPayload, type RemoveFilePayload, type RemoveItemPayload } from '../types';
2
2
  import { User } from '../types';
3
3
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
4
4
  templateId: {
@@ -65,7 +65,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
65
65
  onRemoveItem?: ((payload: RemoveItemPayload) => any) | undefined;
66
66
  onUpdateItem?: ((payload: UpdateItemPayload<TemplateItemType>) => any) | undefined;
67
67
  }, {}, {}>, {
68
- activityDetailsBody(): any;
68
+ activityDetailsBody(props: {
69
+ activity: Activity;
70
+ }): any;
69
71
  }>;
70
72
  export default _default;
71
73
  type __VLS_WithTemplateSlots<T, S> = T & {
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.21.2",
7
+ "version": "0.22.0",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],