@swimlane/ngx-datatable 11.3.1 → 11.3.2
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/package.json +1 -1
- package/release/events.js +3 -3
- package/release/events.metadata.json +1 -1
- package/release/index.css +1 -1
- package/release/index.js +4 -4
- package/release/index.min.js +1 -1
- package/release/index.min.js.map +1 -1
- package/src/events.ts +3 -3
package/src/events.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare let global: any;
|
|
2
2
|
|
|
3
3
|
/* tslint:disable:variable-name */
|
|
4
|
-
export const MouseEvent = ((
|
|
5
|
-
export const KeyboardEvent = ((
|
|
6
|
-
export const Event = ((
|
|
4
|
+
export const MouseEvent = ((window as any) || (global as any)).MouseEvent as MouseEvent;
|
|
5
|
+
export const KeyboardEvent = ((window as any) || (global as any)).KeyboardEvent as KeyboardEvent;
|
|
6
|
+
export const Event = ((window as any) || (global as any)).Event as Event;
|