@omnia/fx 7.8.104-preview → 7.8.106-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.
@@ -14,12 +14,14 @@ declare const dialogComponent: (import("vue").VueConstructor<import("vue-tsx-sup
14
14
  light: boolean;
15
15
  dark: boolean;
16
16
  onClose: () => void;
17
+ onKeydown: (e: KeyboardEvent) => void;
17
18
  attach: string;
18
19
  hideCloseButton: boolean;
19
20
  retainFocus: boolean;
20
21
  valueBind: DialogModel;
21
22
  position: DialogPositions;
22
23
  onClickOutside: (closeDialog: (prompt: boolean, title?: string) => void, event?: Event) => void;
24
+ unreadableReader: boolean;
23
25
  noClickAnimation: boolean;
24
26
  renderBody: () => JSX.Element;
25
27
  eager: boolean;
@@ -39,12 +41,14 @@ declare const dialogComponent: (import("vue").VueConstructor<import("vue-tsx-sup
39
41
  light: boolean;
40
42
  dark: boolean;
41
43
  onClose: () => void;
44
+ onKeydown: (e: KeyboardEvent) => void;
42
45
  attach: string;
43
46
  hideCloseButton: boolean;
44
47
  retainFocus: boolean;
45
48
  valueBind: DialogModel;
46
49
  position: DialogPositions;
47
50
  onClickOutside: (closeDialog: (prompt: boolean, title?: string) => void, event?: Event) => void;
51
+ unreadableReader: boolean;
48
52
  noClickAnimation: boolean;
49
53
  renderBody: () => JSX.Element;
50
54
  eager: boolean;
@@ -64,12 +68,14 @@ declare const dialogComponent: (import("vue").VueConstructor<import("vue-tsx-sup
64
68
  light: boolean;
65
69
  dark: boolean;
66
70
  onClose: () => void;
71
+ onKeydown: (e: KeyboardEvent) => void;
67
72
  attach: string;
68
73
  hideCloseButton: boolean;
69
74
  retainFocus: boolean;
70
75
  valueBind: DialogModel;
71
76
  position: DialogPositions;
72
77
  onClickOutside: (closeDialog: (prompt: boolean, title?: string) => void, event?: Event) => void;
78
+ unreadableReader: boolean;
73
79
  noClickAnimation: boolean;
74
80
  renderBody: () => JSX.Element;
75
81
  eager: boolean;
@@ -89,12 +95,14 @@ declare const dialogComponent: (import("vue").VueConstructor<import("vue-tsx-sup
89
95
  light: boolean;
90
96
  dark: boolean;
91
97
  onClose: () => void;
98
+ onKeydown: (e: KeyboardEvent) => void;
92
99
  attach: string;
93
100
  hideCloseButton: boolean;
94
101
  retainFocus: boolean;
95
102
  valueBind: DialogModel;
96
103
  position: DialogPositions;
97
104
  onClickOutside: (closeDialog: (prompt: boolean, title?: string) => void, event?: Event) => void;
105
+ unreadableReader: boolean;
98
106
  noClickAnimation: boolean;
99
107
  renderBody: () => JSX.Element;
100
108
  eager: boolean;
@@ -23,6 +23,7 @@ export interface IDialogProperties {
23
23
  light?: boolean;
24
24
  dark?: boolean;
25
25
  hideCloseButton?: boolean;
26
+ unreadableReader?: boolean;
26
27
  noClickAnimation?: boolean;
27
28
  /**
28
29
  * Force the dialog to render on mounted (e.g rendered but not shown)
@@ -37,6 +38,7 @@ export interface IDialog extends IDialogProperties {
37
38
  [name: string]: any;
38
39
  valueBind?: DialogModel;
39
40
  onClose?: () => void;
41
+ onKeydown?: (e: KeyboardEvent) => void;
40
42
  onClickOutside?: (closeDialog: (prompt: boolean, title?: string) => void, event?: Event) => void;
41
43
  slots?: Slots<IDialogSlots>;
42
44
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "7.8.104-preview",
4
+ "version": "7.8.106-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.104-preview",
23
+ "@omnia/fx-models": "7.8.106-preview",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.10.7",