@omnia/fx 7.9.6-preview → 7.9.8-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.
- package/internal-do-not-import-from-here/core/http/HttpClient.d.ts +1 -0
- package/internal-do-not-import-from-here/services/TargetingPropertyService.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/AzureAdUserStore.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/TargetingPropertyStore.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/editorchrome/action_toolbar/ActionToolbar.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/editorchrome/chrome/EditorChrome.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/editorchrome/chrome/IEditorChrome.d.ts +3 -0
- package/package.json +2 -2
@@ -9,4 +9,5 @@ export declare class TargetingPropertyService {
|
|
9
9
|
getTargetingPropertyResult: () => Promise<Array<TargetingPropertyResult>>;
|
10
10
|
terminateTargetingProperty: (propertyId: GuidValue) => Promise<void>;
|
11
11
|
restoreTargetingProperty: (propertyId: GuidValue) => Promise<TargetingProperty<TargetingPropertyData>>;
|
12
|
+
invalidateTargetingPropertyResultCache: () => Promise<void>;
|
12
13
|
}
|
@@ -4,6 +4,7 @@ import { Store } from "./Store";
|
|
4
4
|
export declare class AzureAdUserStore extends Store {
|
5
5
|
private azureAdService;
|
6
6
|
omniaCtx: OmniaContext;
|
7
|
+
private targetingPropertyStore;
|
7
8
|
private resolvePropertiesValuePromises;
|
8
9
|
private resolvePropertiesInfoPromise;
|
9
10
|
private resolveSyncPropertiesInfoPromise;
|
@@ -24,6 +24,7 @@ export declare class TargetingPropertyStore extends Store {
|
|
24
24
|
ensureUserTargetingResult: import("./Store").StoreAction<unknown, () => void, (result: boolean) => void, (failureReason: any) => void, () => Promise<boolean>>;
|
25
25
|
terminateTargetingProperty: import("./Store").StoreAction<unknown, (propertyId: GuidValue) => void, (result: boolean, propertyId: GuidValue) => void, (failureReason: any, propertyId: GuidValue) => void, (propertyId: GuidValue) => Promise<boolean>>;
|
26
26
|
restoreTargetingProperty: import("./Store").StoreAction<unknown, (propertyId: GuidValue) => void, (result: TargetingProperty<TargetingPropertyData>, propertyId: GuidValue) => void, (failureReason: any, propertyId: GuidValue) => void, (propertyId: GuidValue) => Promise<TargetingProperty<TargetingPropertyData>>>;
|
27
|
+
invalidateTargetingPropertyResultCache: import("./Store").StoreAction<unknown, () => void, (result: void) => void, (failureReason: any) => void, () => Promise<void>>;
|
27
28
|
};
|
28
29
|
onActivated(): void;
|
29
30
|
onDisposing(): void;
|
@@ -5,11 +5,17 @@ export interface IActionToolbar {
|
|
5
5
|
styles?: Partial<typeof ActionToolbarStyles>;
|
6
6
|
changeMode: (editorDisplayMode: EditorDisplayModes) => void;
|
7
7
|
roles?: string[];
|
8
|
+
contextParams?: {
|
9
|
+
[key: string]: string;
|
10
|
+
};
|
8
11
|
}
|
9
12
|
export declare class ActionToolbar extends VueComponentBase<IActionToolbar> {
|
10
13
|
styles?: Partial<typeof ActionToolbarStyles>;
|
11
14
|
changeMode: (editorDisplayMode: EditorDisplayModes) => void;
|
12
15
|
roles?: string[];
|
16
|
+
contextParams?: {
|
17
|
+
[key: string]: string;
|
18
|
+
};
|
13
19
|
editorStore: EditorChromeStore;
|
14
20
|
private actionToolbarClasses;
|
15
21
|
created(): void;
|
@@ -8,6 +8,9 @@ export declare class EditorChromeComponent extends VueComponentBase implements I
|
|
8
8
|
renderNavigationDrawer?: () => JSX.Element;
|
9
9
|
navigationDrawerTitle: string;
|
10
10
|
actionToolbarRoles?: string[];
|
11
|
+
contextParams?: {
|
12
|
+
[key: string]: string;
|
13
|
+
};
|
11
14
|
closeEditor: () => void;
|
12
15
|
renderNavigationDrawerBottom?: () => JSX.Element;
|
13
16
|
hideCloseButton?: boolean;
|
@@ -5,6 +5,9 @@ export interface IEditorChrome extends IEditorChromeProperties {
|
|
5
5
|
[name: string]: any;
|
6
6
|
renderNavigationDrawer?: (h: any) => JSX.Element;
|
7
7
|
actionToolbarRoles?: string[];
|
8
|
+
contextParams?: {
|
9
|
+
[key: string]: string;
|
10
|
+
};
|
8
11
|
closeEditor: () => void;
|
9
12
|
navigationDrawerTitle?: string;
|
10
13
|
renderNavigationDrawerBottom?: (h: any) => JSX.Element;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "7.9.
|
4
|
+
"version": "7.9.8-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": "Omnia Digital Workplace AB",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "7.9.
|
23
|
+
"@omnia/fx-models": "7.9.8-preview",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|