From 55a4b1093ee2df77ed2a256ccc0e3ad1cbd2fcd8 Mon Sep 17 00:00:00 2001 From: "Jose A. Cabaneros" Date: Thu, 20 Jun 2024 13:34:03 +0200 Subject: [PATCH] docs(xComponentMixin): fix @link of deprecation --- packages/x-components/src/components/x-component.mixin.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/x-components/src/components/x-component.mixin.ts b/packages/x-components/src/components/x-component.mixin.ts index d30d31b0b1..e879c17b1b 100644 --- a/packages/x-components/src/components/x-component.mixin.ts +++ b/packages/x-components/src/components/x-component.mixin.ts @@ -11,8 +11,8 @@ import { AnyXModule } from '../x-modules/x-modules.types'; * @param module - The module associated to the X-Component using this mixin. * @returns Mixin for the module. * @public - * @deprecated Use `XPlugin.registerXModule(xModule)` or {@link InstallXOptions.initialXModules} - * instead. + * @deprecated Use `XPlugin.registerXModule(xModule)` or `initialXModules` in + * {@link InstallXOptions | x-installer} instead. */ export function xComponentMixin(module: AnyXModule): ComponentOptions { XPlugin.registerXModule(module);