From 0ae65a2685e75d4f8cab77c4e7bd10ae964ac067 Mon Sep 17 00:00:00 2001 From: Diego Pascual Date: Thu, 20 Jun 2024 10:10:00 +0200 Subject: [PATCH] add registerXModule to extraParamsXModule --- packages/x-components/src/x-modules/extra-params/x-module.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/x-components/src/x-modules/extra-params/x-module.ts b/packages/x-components/src/x-modules/extra-params/x-module.ts index 241efc6bd8..26033bcecc 100644 --- a/packages/x-components/src/x-modules/extra-params/x-module.ts +++ b/packages/x-components/src/x-modules/extra-params/x-module.ts @@ -1,4 +1,5 @@ import { XModule } from '../x-modules.types'; +import { XPlugin } from '../../plugins/index'; import { extraParamsEmitters } from './store/emitters'; import { extraParamsXStoreModule } from './store/module'; import { ExtraParamsXStoreModule } from './store/types'; @@ -23,3 +24,5 @@ export const extraParamsXModule: ExtraParamsXModule = { storeEmitters: extraParamsEmitters, wiring: extraParamsWiring }; + +XPlugin.registerXModule(extraParamsXModule);