@26lights/orcha 0.38.40 → 0.38.42

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 {
@@ -17,6 +17,7 @@ export type SizeKeys = keyof typeof sizes;
17
17
  export type SizeValues = (typeof sizes)[SizeKeys];
18
18
  export declare const colors: {
19
19
  readonly PRIMARY: "primary";
20
+ readonly PRIMARY_LIGHT: "primary-light";
20
21
  readonly NEUTRAL: "neutral";
21
22
  readonly BLACK: "black";
22
23
  };
@@ -34,6 +35,7 @@ export declare const buttonColors: {
34
35
  readonly SUCCESS: "success";
35
36
  readonly DANGER: "danger";
36
37
  readonly PRIMARY: "primary";
38
+ readonly PRIMARY_LIGHT: "primary-light";
37
39
  readonly NEUTRAL: "neutral";
38
40
  readonly BLACK: "black";
39
41
  };
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.42",
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.42",
31
31
  "@floating-ui/dom": "^1.5.3",
32
32
  "@vueform/multiselect": "^2.6.6",
33
33
  "@vueuse/core": "^10.8.0",