valtech-components 2.0.1027 → 2.0.1030
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.
- package/esm2022/lib/components/molecules/searchbar/searchbar.component.mjs +3 -3
- package/esm2022/lib/components/organisms/login/login.component.mjs +9 -3
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +181 -176
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/organisms/login/login.component.d.ts +3 -0
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -13,6 +13,9 @@ export declare class LoginComponent implements OnDestroy {
|
|
|
13
13
|
private router;
|
|
14
14
|
private i18n;
|
|
15
15
|
private i18nHelper;
|
|
16
|
+
private legalLink;
|
|
17
|
+
/** URL del sitio principal resuelta por ambiente — fallback cuando el consumer no pasa companyLink. */
|
|
18
|
+
get resolvedCompanyLink(): string | undefined;
|
|
16
19
|
/**
|
|
17
20
|
* Helper method for translating auth-related strings.
|
|
18
21
|
* Exposed to template for dynamic text.
|
package/lib/version.d.ts
CHANGED