@26lights/orcha 0.37.34 → 0.37.35

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.
@@ -56,6 +56,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
56
56
  initialActivityId: {
57
57
  type: import("vue").PropType<string>;
58
58
  };
59
+ initialActivitySlug: {
60
+ type: import("vue").PropType<string>;
61
+ };
59
62
  searchText: {
60
63
  type: import("vue").PropType<string>;
61
64
  default: string;
@@ -64,7 +67,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
64
67
  "change:activities": (payload: ChangeFeedActivitiesPayload) => void;
65
68
  addActivity: (payload: AddActivityFeedPayload) => void;
66
69
  "update:filters": (value: FeedFilters) => void;
67
- selectActivity: (activityId: string | null) => void;
70
+ selectActivity: (activityId: string | null, activitySlug: string | null) => void;
68
71
  "update:activity": (payload: UpdateActivityPayload) => void;
69
72
  archiveActivity: (payload: {
70
73
  id: string;
@@ -143,12 +146,15 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
143
146
  initialActivityId: {
144
147
  type: import("vue").PropType<string>;
145
148
  };
149
+ initialActivitySlug: {
150
+ type: import("vue").PropType<string>;
151
+ };
146
152
  searchText: {
147
153
  type: import("vue").PropType<string>;
148
154
  default: string;
149
155
  };
150
156
  }>> & {
151
- onSelectActivity?: ((activityId: string | null) => any) | undefined;
157
+ onSelectActivity?: ((activityId: string | null, activitySlug: string | null) => any) | undefined;
152
158
  onArchiveActivity?: ((payload: {
153
159
  id: string;
154
160
  }) => any) | undefined;
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.37.34",
7
+ "version": "0.37.35",
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.37.34",
30
+ "@26lights/orcha": "^0.37.35",
31
31
  "@floating-ui/dom": "^1.5.3",
32
32
  "@vueform/multiselect": "^2.6.6",
33
33
  "@vueuse/core": "^10.8.0",