@26lights/orcha 0.32.6 → 0.32.7

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.
@@ -43,6 +43,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
43
43
  type: import("vue").PropType<ActivityStatus[]>;
44
44
  required: true;
45
45
  };
46
+ selectedActivity: {
47
+ type: import("vue").PropType<Activity>;
48
+ };
46
49
  projects: {
47
50
  type: import("vue").PropType<Project[]>;
48
51
  };
@@ -53,10 +56,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
53
56
  type: import("vue").PropType<string>;
54
57
  default: string;
55
58
  };
56
- fetchActivity: {
57
- type: import("vue").PropType<(id: string) => Promise<Activity>>;
58
- required: true;
59
- };
60
59
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
61
60
  "change:activities": (payload: ChangeFeedActivitiesPayload) => void;
62
61
  addActivity: (payload: AddActivityFeedPayload) => void;
@@ -126,6 +125,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
126
125
  type: import("vue").PropType<ActivityStatus[]>;
127
126
  required: true;
128
127
  };
128
+ selectedActivity: {
129
+ type: import("vue").PropType<Activity>;
130
+ };
129
131
  projects: {
130
132
  type: import("vue").PropType<Project[]>;
131
133
  };
@@ -136,10 +138,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
136
138
  type: import("vue").PropType<string>;
137
139
  default: string;
138
140
  };
139
- fetchActivity: {
140
- type: import("vue").PropType<(id: string) => Promise<Activity>>;
141
- required: true;
142
- };
143
141
  }>> & {
144
142
  onSelectActivity?: ((activityId: string | null) => any) | undefined;
145
143
  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.32.6",
7
+ "version": "0.32.7",
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.32.6",
30
+ "@26lights/orcha": "^0.32.7",
31
31
  "@floating-ui/dom": "^1.5.3",
32
32
  "@vueform/multiselect": "^2.6.2",
33
33
  "@vueuse/core": "^10.2.1",
@@ -1,12 +0,0 @@
1
- import { type Ref } from 'vue';
2
- import { type Activity } from '../types';
3
- export declare function provideFeedStore(activities: Ref<Activity[]>): {
4
- selectedActivityId: Ref<string | null | undefined>;
5
- selectedActivity: import("vue").ComputedRef<Activity | undefined>;
6
- selectActivity: (activityId: string | null) => void;
7
- };
8
- export declare function useFeedStore(): {
9
- selectedActivityId: Ref<string | null | undefined>;
10
- selectedActivity: import("vue").ComputedRef<Activity | undefined>;
11
- selectActivity: (activityId: string | null) => void;
12
- };