@omnia/fx 7.8.13-preview → 7.8.14-preview

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,5 +1,5 @@
1
1
  import { OmniaContext } from "../contexts";
2
- import { UserTypeLayoutMode } from "../models";
2
+ import { UserTypeLayoutMode, VersionedLayoutId } from "../models";
3
3
  import { Store } from "./Store";
4
4
  import { UserTypeStore } from "./UserTypeStore";
5
5
  import { VersionedLayoutStore } from "./VersionedLayoutStore";
@@ -7,12 +7,15 @@ export declare class ProfileCardHandlerStore extends Store {
7
7
  omniaContext: OmniaContext;
8
8
  userTypeStore: UserTypeStore;
9
9
  versionedLayoutStore: VersionedLayoutStore;
10
- onActivated(): Promise<void>;
10
+ private userTypes;
11
+ private initPromise;
12
+ protected onActivated(): void;
11
13
  mode: import("./Store").StoreState<UserTypeLayoutMode>;
12
14
  isUsingProfileCard: import("./Store").StoreState<boolean>;
13
15
  getters: {
14
16
  getLayoutMode: () => UserTypeLayoutMode;
15
17
  isUsingProfileCard: () => boolean;
18
+ isInProfileCard: (id: VersionedLayoutId) => boolean;
16
19
  };
17
20
  mutations: {
18
21
  setMode: import("./Store").StoreMutation<(value: UserTypeLayoutMode) => void, (value: UserTypeLayoutMode) => import("@omnia/fx-models").IMessageBusSubscriptionHandler>;
@@ -21,5 +24,6 @@ export declare class ProfileCardHandlerStore extends Store {
21
24
  switchMode: import("./Store").StoreAction<unknown, () => void, (result: void) => void, (failureReason: any) => void, () => Promise<void>>;
22
25
  useProfileCard: import("./Store").StoreAction<unknown, () => void, (result: void) => void, (failureReason: any) => void, () => Promise<void>>;
23
26
  stopUsingProfileCard: import("./Store").StoreAction<unknown, () => void, (result: void) => void, (failureReason: any) => void, () => Promise<void>>;
27
+ initStore: import("./Store").StoreAction<unknown, () => void, (result: void) => void, (failureReason: any) => void, () => Promise<void>>;
24
28
  };
25
29
  }
@@ -801,6 +801,7 @@ export interface OmniaUxLocalization {
801
801
  CurrentUser: string;
802
802
  PickedUser: string;
803
803
  SelectedUser: string;
804
+ CurrentGroup: string;
804
805
  };
805
806
  FilterRenderType: {
806
807
  Label: string;
@@ -1,7 +1,7 @@
1
1
  export declare module FilePickerMyComputerProviderLocalization {
2
2
  const namespace = "Omnia.Ux.FilePicker.MyComputerProvider";
3
3
  interface locInterface {
4
- WarningMessage: string;
4
+ New7WarningMessage: string;
5
5
  Title: string;
6
6
  }
7
7
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "7.8.13-preview",
4
+ "version": "7.8.14-preview",
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": "7.8.13-preview",
23
+ "@omnia/fx-models": "7.8.14-preview",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.10.7",