@luigi-project/container 1.6.0-dev.20250360032 → 1.6.0-dev.20250361027

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.
@@ -159,3 +159,14 @@ export namespace Events {
159
159
  */
160
160
  export const REMOVE_BACKDROP_REQUEST = 'remove-backdrop-request';
161
161
  }
162
+
163
+ export class LuigiEvent extends Event {
164
+ payload?: unknown;
165
+ detail: unknown;
166
+
167
+ constructor(type: string, data: unknown, payload?: unknown) {
168
+ super(type);
169
+ this.detail = data;
170
+ this.payload = payload || data;
171
+ }
172
+ }
package/package.json CHANGED
@@ -20,5 +20,5 @@
20
20
  "micro-frontends",
21
21
  "microfrontends"
22
22
  ],
23
- "version": "1.6.0-dev.20250360032"
23
+ "version": "1.6.0-dev.20250361027"
24
24
  }