Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: creating useRegisterXModule composable #1399

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/x-components/src/composables/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export * from './create-use-device.composable';
export * from './use-$x';
export * from './use-register-x-module';
export * from './use-on-display';
14 changes: 14 additions & 0 deletions packages/x-components/src/composables/use-register-x-module.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { AnyXModule } from '../x-modules/x-modules.types';
import { XPlugin } from '../plugins/x-plugin';
/**
* Initializes a component as an X-Component:
* * Registers the module passed as parameter.
* * Flags the component as X-Component, so then it can be detected with the {@link isXComponent}
* function.
*
* @param module - The module associated to the X-Component that is being registered.
* @public
*/
export function useRegisterXModule(module: AnyXModule): void {
XPlugin.registerXModule(module);
}
Loading