ng-easycommerce-v18 0.3.5 → 0.3.6
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/README.md +2 -0
- package/esm2022/lib/constants/core.constants.service.mjs +34 -1
- package/esm2022/lib/ec-components/product-detail-ec/product-detail-ec.component.mjs +4 -3
- package/fesm2022/ng-easycommerce-v18.mjs +36 -2
- package/fesm2022/ng-easycommerce-v18.mjs.map +1 -1
- package/lib/constants/core.constants.service.d.ts +6 -0
- package/package.json +1 -1
|
@@ -64,6 +64,12 @@ export declare class CoreConstantsService {
|
|
|
64
64
|
* @returns {string} URL completa del frontend
|
|
65
65
|
*/
|
|
66
66
|
getFrontendUrl: (path?: string) => string;
|
|
67
|
+
/**
|
|
68
|
+
* Retorna la URL absoluta de una imagen para meta tags (compatible con SSR)
|
|
69
|
+
* @param postMedia - Ruta de la imagen
|
|
70
|
+
* @returns {string} URL absoluta de la imagen
|
|
71
|
+
*/
|
|
72
|
+
getAbsoluteImageUrl: (postMedia?: string) => string;
|
|
67
73
|
/**
|
|
68
74
|
* Retorna la url de las imagenes de los banners
|
|
69
75
|
* @returns
|