@omnia/fx 8.0.4-dev → 8.0.5-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,6 +1,6 @@
|
|
1
1
|
import { MessageBusExposeOnlySubscription, SubscriptionHandler } from "..";
|
2
2
|
import { IMessageBusTopicSubscription, Color } from "../models";
|
3
|
-
interface ITheme {
|
3
|
+
export interface ITheme {
|
4
4
|
onThemingChanged: () => IMessageBusTopicSubscription<ITheme>;
|
5
5
|
system: {
|
6
6
|
grey: Color;
|
@@ -90,4 +90,3 @@ export declare class OmniaTheming implements ITheme {
|
|
90
90
|
private get bodyBackground();
|
91
91
|
private get chromeBackground();
|
92
92
|
}
|
93
|
-
export {};
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Activity, ActivityRenderer, ActivityRendererId, ChannelId } from "@omnia/fx-models";
|
1
|
+
import { Activity, ActivityId, ActivityRenderer, ActivityRendererId, ChannelId, Guid, RealtimeChannel, RealtimeData } from "@omnia/fx-models";
|
2
2
|
export declare const useActivityFeedStore: (newInstanceWithName?: string) => {
|
3
3
|
state: {
|
4
4
|
activities: {
|
@@ -34,3 +34,16 @@ export declare const useActivityFeedStore: (newInstanceWithName?: string) => {
|
|
34
34
|
renderer(activity: Activity): ActivityRenderer;
|
35
35
|
};
|
36
36
|
};
|
37
|
+
declare class ActivityRealtimeChannel extends RealtimeChannel {
|
38
|
+
private _id;
|
39
|
+
constructor(id: ChannelId);
|
40
|
+
getId(): string;
|
41
|
+
}
|
42
|
+
export interface ActivityCreatedRealtimeMessage {
|
43
|
+
activityId: ActivityId;
|
44
|
+
}
|
45
|
+
export declare class ActivityCreatedRealtimeData extends RealtimeData<ActivityRealtimeChannel, ActivityCreatedRealtimeMessage> {
|
46
|
+
constructor(channel: ActivityRealtimeChannel);
|
47
|
+
getId(): Guid;
|
48
|
+
}
|
49
|
+
export {};
|
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.5-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.5-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|