valtech-components 4.0.126 → 4.0.127
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/services/meta/meta.service.mjs +17 -1
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +16 -1
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/services/meta/meta.service.d.ts +5 -0
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -3,6 +3,7 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class MetaService {
|
|
4
4
|
private meta;
|
|
5
5
|
private titleService;
|
|
6
|
+
private document;
|
|
6
7
|
private baseUrl;
|
|
7
8
|
private defaultImage;
|
|
8
9
|
private siteName;
|
|
@@ -14,6 +15,10 @@ export declare class MetaService {
|
|
|
14
15
|
* Actualizar meta tags de la página
|
|
15
16
|
*/
|
|
16
17
|
updatePageMeta(metadata: PageMetadata, path?: string): void;
|
|
18
|
+
/**
|
|
19
|
+
* Setea (o actualiza) el <link rel="canonical"> del head. SSR-safe vía DOCUMENT.
|
|
20
|
+
*/
|
|
21
|
+
private setCanonical;
|
|
17
22
|
/**
|
|
18
23
|
* Resetear a valores por defecto
|
|
19
24
|
*/
|
package/lib/version.d.ts
CHANGED