@equinor/fusion-framework-module-event
Advanced tools
Comparing version 1.1.6 to 1.2.0
@@ -6,2 +6,8 @@ # Change Log | ||
## 1.2.0 (2022-12-08) | ||
### Features | ||
- **module-event:** allow filtering of events ([7cf41a7](https://github.com/equinor/fusion-framework/commit/7cf41a7e3662c46bb1126e7ac969ff229f22cd63)) | ||
## 1.1.6 (2022-12-01) | ||
@@ -8,0 +14,0 @@ |
export { FrameworkEvent } from './event'; | ||
export { EventModuleProvider } from './provider'; | ||
export { moduleKey as eventModuleKey } from './module'; | ||
export { filterEvent } from './filter-event'; | ||
export { default } from './module'; | ||
//# sourceMappingURL=index.js.map |
@@ -16,3 +16,3 @@ import type { ModuleInstance } from '@equinor/fusion-framework-module'; | ||
} | ||
export type FrameworkEventInit<TDetail = unknown, TSource = unknown> = { | ||
export type FrameworkEventInit<TDetail = any, TSource = any> = { | ||
detail: TDetail; | ||
@@ -19,0 +19,0 @@ source?: TSource; |
@@ -6,2 +6,3 @@ export { FrameworkEvent } from './event'; | ||
export { EventModule, moduleKey as eventModuleKey } from './module'; | ||
export { filterEvent } from './filter-event'; | ||
export { default } from './module'; |
{ | ||
"name": "@equinor/fusion-framework-module-event", | ||
"version": "1.1.6", | ||
"version": "1.2.0", | ||
"description": "Fusion module for events", | ||
@@ -38,3 +38,3 @@ "main": "./dist/esm/index.js", | ||
}, | ||
"gitHead": "9506dd4273dae255a292d734c93e53e7f5c62bbf" | ||
"gitHead": "93955e577d13efc088f158517152604d4c526d3d" | ||
} |
@@ -34,3 +34,4 @@ import type { ModuleInstance } from '@equinor/fusion-framework-module'; | ||
/** initial args of event */ | ||
export type FrameworkEventInit<TDetail = unknown, TSource = unknown> = { | ||
// eslint-disable-next-line @typescript-eslint/no-explicit-any | ||
export type FrameworkEventInit<TDetail = any, TSource = any> = { | ||
detail: TDetail; | ||
@@ -37,0 +38,0 @@ source?: TSource; |
@@ -15,2 +15,4 @@ export { FrameworkEvent } from './event'; | ||
export { filterEvent } from './filter-event'; | ||
export { default } from './module'; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
114120
34
706