@26lights/orcha 0.38.40 → 0.38.41

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.
@@ -26,7 +26,7 @@ declare const _default: import("vue").DefineComponent<{
26
26
  };
27
27
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
28
28
  updateTitle: (title: string) => void;
29
- deleteItem: (id: string) => void;
29
+ deleteItem: (id: string, name?: string | undefined) => void;
30
30
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
31
31
  id: {
32
32
  type: import("vue").PropType<string>;
@@ -54,6 +54,6 @@ declare const _default: import("vue").DefineComponent<{
54
54
  };
55
55
  }>> & {
56
56
  onUpdateTitle?: ((title: string) => any) | undefined;
57
- onDeleteItem?: ((id: string) => any) | undefined;
57
+ onDeleteItem?: ((id: string, name?: string | undefined) => any) | undefined;
58
58
  }, {}, {}>;
59
59
  export default _default;
@@ -256,6 +256,7 @@ export interface RemoveItemPayload<T extends TemplateItemType> {
256
256
  activityId?: Id;
257
257
  data: {
258
258
  id: Id;
259
+ name?: string;
259
260
  };
260
261
  }
261
262
  export interface RemoveMilestonePayload {
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.40",
7
+ "version": "0.38.41",
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.40",
30
+ "@26lights/orcha": "^0.38.41",
31
31
  "@floating-ui/dom": "^1.5.3",
32
32
  "@vueform/multiselect": "^2.6.6",
33
33
  "@vueuse/core": "^10.8.0",