@omnia/fx 7.8.114-preview → 7.8.115-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/ux/enterpriseproperties/display/personfield/PersonFieldDisplay.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/profilecard/IProfileCard.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/profilecard/ProfileCard.d.ts +3 -0
- package/package.json +2 -2
|
@@ -16,11 +16,13 @@ export declare class PersonFieldDisplayComponent extends VueComponentBase implem
|
|
|
16
16
|
private userIdentityStore;
|
|
17
17
|
private multilingualTextsStore;
|
|
18
18
|
private mediaPickerService;
|
|
19
|
+
private focusStore;
|
|
19
20
|
identityLoc: IdentitiesLocalization.locInterface;
|
|
20
21
|
private personFieldDisplayClasses;
|
|
21
22
|
private isLoading;
|
|
22
23
|
private identifiers;
|
|
23
24
|
private resolvedIdentities;
|
|
25
|
+
private clickProxies;
|
|
24
26
|
onInputValueChanged(newValue: any, oldValue: any): void;
|
|
25
27
|
created(): void;
|
|
26
28
|
mounted(): void;
|
|
@@ -13,6 +13,9 @@ export interface IProfileCard {
|
|
|
13
13
|
color?: string;
|
|
14
14
|
href?: string;
|
|
15
15
|
ripple?: boolean;
|
|
16
|
+
linkTabIndex?: number;
|
|
17
|
+
onSetFocus?: () => void;
|
|
18
|
+
onClickProxy?: (handler: (e: Event) => void) => void;
|
|
16
19
|
}
|
|
17
20
|
declare global {
|
|
18
21
|
namespace VueTsxSupport.JSX {
|
|
@@ -16,6 +16,9 @@ export declare class ProfileCardComponent extends VueComponentBase<IProfileCard>
|
|
|
16
16
|
color?: string;
|
|
17
17
|
href?: string;
|
|
18
18
|
ripple: boolean;
|
|
19
|
+
linkTabIndex?: number;
|
|
20
|
+
onSetFocus?: () => void;
|
|
21
|
+
onClickProxy?: (handler: (e: Event) => void) => void;
|
|
19
22
|
profileCardStore: ProfileCardStore;
|
|
20
23
|
dataSourcePropertiesService: DataSourcePropertiesService;
|
|
21
24
|
omniaCtx: OmniaContext;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnia/fx",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "7.8.
|
|
4
|
+
"version": "7.8.115-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.8.
|
|
23
|
+
"@omnia/fx-models": "7.8.115-preview",
|
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
|
25
25
|
"broadcast-channel": "4.8.0",
|
|
26
26
|
"dayjs": "1.10.7",
|