@26lights/orcha 0.38.8 → 0.38.9

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.
@@ -448,3 +448,6 @@ export type ApplyTemplatePayload = {
448
448
  templateId: Id;
449
449
  projectId: Id;
450
450
  };
451
+ export type SaveTemplatePayload = {
452
+ projectId: Id;
453
+ };
@@ -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, type UpdateSubtaskFieldPayload, type Activity, type ActivityType } 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, type UpdateSubtaskFieldPayload, type Activity, type ActivityType, SaveTemplatePayload } from '../types';
2
2
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
3
3
  project: {
4
4
  type: import("vue").PropType<Project>;
@@ -80,6 +80,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
80
80
  updateComment: (payload: UpdateCommentPayload) => void;
81
81
  removeComment: (payload: RemoveCommentPayload) => void;
82
82
  applyTemplate: (payload: ApplyTemplatePayload) => void;
83
+ saveTemplate: (payload: SaveTemplatePayload) => void;
83
84
  'update:showsArchived': (value: boolean) => void;
84
85
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
85
86
  project: {
@@ -162,6 +163,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
162
163
  }) => any) | undefined;
163
164
  onAddPhase?: ((payload: AddPhasePayload) => any) | undefined;
164
165
  onApplyTemplate?: ((payload: ApplyTemplatePayload) => any) | undefined;
166
+ onSaveTemplate?: ((payload: SaveTemplatePayload) => any) | undefined;
165
167
  "onUpdate:showsArchived"?: ((value: boolean) => any) | undefined;
166
168
  }, {}, {}>, {
167
169
  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.38.8",
7
+ "version": "0.38.9",
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.8",
30
+ "@26lights/orcha": "^0.38.9",
31
31
  "@floating-ui/dom": "^1.5.3",
32
32
  "@vueform/multiselect": "^2.6.6",
33
33
  "@vueuse/core": "^10.8.0",