@omnia/fx 7.8.146-preview → 7.8.148-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/dialog/Dialog.d.ts +8 -4
- package/internal-do-not-import-from-here/ux/dialog/IDialog.d.ts +8 -1
- package/internal-do-not-import-from-here/ux/profilecard/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/profilecard/loc/localize.d.ts +1 -0
- package/package.json +2 -2
@@ -22,8 +22,9 @@ declare const dialogComponent: (import("vue").VueConstructor<import("vue-tsx-sup
|
|
22
22
|
valueBind: DialogModel;
|
23
23
|
position: DialogPositions;
|
24
24
|
onClickOutside: (closeDialog: (prompt: boolean, title?: string) => void, event?: Event) => void;
|
25
|
-
unreadableReader: boolean;
|
26
25
|
noClickAnimation: boolean;
|
26
|
+
ariaLabelTitle: string;
|
27
|
+
ariaHiddenContent: boolean;
|
27
28
|
renderBody: () => JSX.Element;
|
28
29
|
eager: boolean;
|
29
30
|
}, never>, any, any, any>> & {
|
@@ -50,8 +51,9 @@ declare const dialogComponent: (import("vue").VueConstructor<import("vue-tsx-sup
|
|
50
51
|
valueBind: DialogModel;
|
51
52
|
position: DialogPositions;
|
52
53
|
onClickOutside: (closeDialog: (prompt: boolean, title?: string) => void, event?: Event) => void;
|
53
|
-
unreadableReader: boolean;
|
54
54
|
noClickAnimation: boolean;
|
55
|
+
ariaLabelTitle: string;
|
56
|
+
ariaHiddenContent: boolean;
|
55
57
|
renderBody: () => JSX.Element;
|
56
58
|
eager: boolean;
|
57
59
|
}, never>;
|
@@ -78,8 +80,9 @@ declare const dialogComponent: (import("vue").VueConstructor<import("vue-tsx-sup
|
|
78
80
|
valueBind: DialogModel;
|
79
81
|
position: DialogPositions;
|
80
82
|
onClickOutside: (closeDialog: (prompt: boolean, title?: string) => void, event?: Event) => void;
|
81
|
-
unreadableReader: boolean;
|
82
83
|
noClickAnimation: boolean;
|
84
|
+
ariaLabelTitle: string;
|
85
|
+
ariaHiddenContent: boolean;
|
83
86
|
renderBody: () => JSX.Element;
|
84
87
|
eager: boolean;
|
85
88
|
}, never>, any, any, any>> & {
|
@@ -106,8 +109,9 @@ declare const dialogComponent: (import("vue").VueConstructor<import("vue-tsx-sup
|
|
106
109
|
valueBind: DialogModel;
|
107
110
|
position: DialogPositions;
|
108
111
|
onClickOutside: (closeDialog: (prompt: boolean, title?: string) => void, event?: Event) => void;
|
109
|
-
unreadableReader: boolean;
|
110
112
|
noClickAnimation: boolean;
|
113
|
+
ariaLabelTitle: string;
|
114
|
+
ariaHiddenContent: boolean;
|
111
115
|
renderBody: () => JSX.Element;
|
112
116
|
eager: boolean;
|
113
117
|
}, never>;
|
@@ -23,12 +23,19 @@ export interface IDialogProperties {
|
|
23
23
|
light?: boolean;
|
24
24
|
dark?: boolean;
|
25
25
|
hideCloseButton?: boolean;
|
26
|
-
unreadableReader?: boolean;
|
27
26
|
noClickAnimation?: boolean;
|
28
27
|
/**
|
29
28
|
* Force the dialog to render on mounted (e.g rendered but not shown)
|
30
29
|
*/
|
31
30
|
eager?: boolean;
|
31
|
+
/**
|
32
|
+
* Add aria-labelledby for dialog
|
33
|
+
*/
|
34
|
+
ariaLabelTitle?: string;
|
35
|
+
/**
|
36
|
+
* Add aria-hidden for dialog content
|
37
|
+
*/
|
38
|
+
ariaHiddenContent?: boolean;
|
32
39
|
}
|
33
40
|
export interface IDialogSlots {
|
34
41
|
default: () => void;
|
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.148-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.148-preview",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|