-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: creating useRegisterXModule composable
- Loading branch information
1 parent
9cd94f7
commit 4190d6e
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
export * from './create-use-device.composable'; | ||
export * from './use-$x'; | ||
export * from './use-register-x-module'; |
14 changes: 14 additions & 0 deletions
14
packages/x-components/src/composables/use-register-x-module.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
} |