@26lights/orcha 0.12.2 → 0.12.4

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.
@@ -9,6 +9,9 @@ declare const _default: import("vue").DefineComponent<{
9
9
  type: import("vue").PropType<Activity[]>;
10
10
  required: true;
11
11
  };
12
+ project: {
13
+ type: import("vue").PropType<Project>;
14
+ };
12
15
  users: {
13
16
  type: import("vue").PropType<User[]>;
14
17
  required: true;
@@ -34,15 +37,11 @@ declare const _default: import("vue").DefineComponent<{
34
37
  };
35
38
  projects: {
36
39
  type: import("vue").PropType<Project[]>;
37
- required: true;
38
40
  };
39
41
  searchText: {
40
42
  type: import("vue").PropType<string>;
41
43
  default: string;
42
44
  };
43
- isProjectLocked: {
44
- type: import("vue").PropType<boolean>;
45
- };
46
45
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
47
46
  'change:activities': (payload: ChangeFeedActivitiesPayload) => void;
48
47
  addActivity: (payload: AddActivityFeedPayload) => void;
@@ -74,6 +73,9 @@ declare const _default: import("vue").DefineComponent<{
74
73
  type: import("vue").PropType<Activity[]>;
75
74
  required: true;
76
75
  };
76
+ project: {
77
+ type: import("vue").PropType<Project>;
78
+ };
77
79
  users: {
78
80
  type: import("vue").PropType<User[]>;
79
81
  required: true;
@@ -99,15 +101,11 @@ declare const _default: import("vue").DefineComponent<{
99
101
  };
100
102
  projects: {
101
103
  type: import("vue").PropType<Project[]>;
102
- required: true;
103
104
  };
104
105
  searchText: {
105
106
  type: import("vue").PropType<string>;
106
107
  default: string;
107
108
  };
108
- isProjectLocked: {
109
- type: import("vue").PropType<boolean>;
110
- };
111
109
  }>> & {
112
110
  onSelectActivity?: ((activityId: string | null) => any) | undefined;
113
111
  onArchiveActivity?: ((payload: {
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.12.2",
7
+ "version": "0.12.4",
8
8
  "workspaces": [
9
9
  "packages/*"
10
10
  ],