@omnia/fx 8.0.8-dev → 8.0.9-dev
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.
@@ -1,4 +1,7 @@
|
|
1
|
-
import { ChannelId, FeedResult } from "../models";
|
1
|
+
import { ChannelId, FeedResult, ActivityId } from "../models";
|
2
2
|
export declare const useActivityService: () => {
|
3
|
-
getFeed: (channelId: ChannelId) => Promise<FeedResult>;
|
3
|
+
getFeed: (channelId: ChannelId, options?: FeedQuery) => Promise<FeedResult>;
|
4
4
|
};
|
5
|
+
export interface FeedQuery {
|
6
|
+
fromActivityId?: ActivityId;
|
7
|
+
}
|
@@ -71,7 +71,7 @@ type VuetifyValue<T> = T extends {
|
|
71
71
|
} ? T["value"] : T;
|
72
72
|
import { VTooltip, VTextarea, VSwitch, VRadioGroup, VForm, VTextField, VBtn, VBtnToggle, VBtnGroup, VNavigationDrawer, VList, VListItem, VListGroup, VListImg, VListItemAction, VListItemTitle, VListItemSubtitle, VListItemMedia, VListSubheader, VDialog, VDialogBottomTransition, VDialogTopTransition, VDialogTransition, VCard, VCardActions, VCardItem, VCardSubtitle, VCardText, VCardTitle, VExpansionPanels, VExpansionPanel, VExpansionPanelText, VExpansionPanelTitle, VAutocomplete, VMenu, VTable, VCheckbox, VCheckboxBtn, VVirtualScroll, VChip, VSelect, VBadge } from "vuetify/components";
|
73
73
|
import { Intersect } from "vuetify/directives";
|
74
|
-
import { VDataTable, VDataTableRow, VDataTableRows, VDataTableVirtual, VDataTableServer } from "vuetify/labs/components";
|
74
|
+
import { VDataTable, VDataTableRow, VDataTableRows, VDataTableVirtual, VDataTableServer, VInfiniteScroll } from "vuetify/labs/components";
|
75
75
|
export interface VDataTableServerSlots extends VuetifySlots<VuetifyProps<Pick<VDataTableServer, "$props">>> {
|
76
76
|
}
|
77
77
|
export interface VDataTableSlots extends VuetifySlots<VuetifyProps<Pick<VDataTable, "$props">>> {
|
@@ -149,6 +149,9 @@ declare global {
|
|
149
149
|
"v-virtual-scroll": VuetifyProps<Pick<VVirtualScroll, "$props">> & {
|
150
150
|
[name: string]: any;
|
151
151
|
};
|
152
|
+
"v-infinite-scroll": VuetifyProps<Pick<VInfiniteScroll, "$props">> & {
|
153
|
+
[name: string]: any;
|
154
|
+
};
|
152
155
|
"v-autocomplete": VuetifyProps<Pick<VAutocomplete, "$props">> & {
|
153
156
|
[name: string]: any;
|
154
157
|
};
|
@@ -18,15 +18,19 @@ export declare const useActivityFeedStore: (newInstanceWithName?: string) => {
|
|
18
18
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
19
19
|
actions: {
|
20
20
|
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
21
|
+
enableChannel: (channelId: ChannelId) => Promise<void>;
|
21
22
|
loadActivities: (channelId: ChannelId) => Promise<void>;
|
22
23
|
}) => T, fn: T extends (...args: infer U) => any ? (...args: U) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
23
24
|
onDispatched<T_1 extends (...args: any) => any>(action: (actions: {
|
25
|
+
enableChannel: (channelId: ChannelId) => Promise<void>;
|
24
26
|
loadActivities: (channelId: ChannelId) => Promise<void>;
|
25
27
|
}) => T_1, fn: T_1 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
26
28
|
onFailure<T_2 extends (...args: any) => any>(action: (actions: {
|
29
|
+
enableChannel: (channelId: ChannelId) => Promise<void>;
|
27
30
|
loadActivities: (channelId: ChannelId) => Promise<void>;
|
28
31
|
}) => T_2, fn: T_2 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
29
32
|
} & {
|
33
|
+
enableChannel: (channelId: ChannelId) => Promise<void>;
|
30
34
|
loadActivities: (channelId: ChannelId) => Promise<void>;
|
31
35
|
};
|
32
36
|
get: {
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.9-dev",
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
],
|
21
21
|
"author": "Precio Fishbone",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.9-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|