valtech-components 2.0.761 → 2.0.763
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/atoms/container/container.component.mjs +2 -2
- package/esm2022/lib/components/organisms/bottom-nav/bottom-nav.component.mjs +3 -3
- package/esm2022/lib/components/templates/page-wrapper/page-wrapper.component.mjs +3 -3
- package/esm2022/lib/services/firebase/messaging.service.mjs +23 -1
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +29 -7
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/atoms/rights-footer/rights-footer.component.d.ts +1 -1
- package/lib/components/templates/page-wrapper/page-wrapper.component.d.ts +2 -2
- package/lib/services/firebase/messaging.service.d.ts +5 -0
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -43,7 +43,7 @@ export declare class RightsFooterComponent {
|
|
|
43
43
|
/**
|
|
44
44
|
* Computed helper for color prop in template.
|
|
45
45
|
*/
|
|
46
|
-
propsColor: import("@angular/core").Signal<"medium" | "primary" | "secondary" | "tertiary" | "success" | "warning" | "danger" | "light"
|
|
46
|
+
propsColor: import("@angular/core").Signal<"dark" | "medium" | "primary" | "secondary" | "tertiary" | "success" | "warning" | "danger" | "light">;
|
|
47
47
|
/**
|
|
48
48
|
* Computed helper for withMargin prop in template.
|
|
49
49
|
*/
|
|
@@ -42,7 +42,7 @@ export declare class PageWrapperComponent implements ViewWillEnter, ViewWillLeav
|
|
|
42
42
|
* Default header configuration (cached to avoid infinite change detection).
|
|
43
43
|
*/
|
|
44
44
|
private readonly defaultHeader;
|
|
45
|
-
headerProps: import("@angular/core").Signal<
|
|
45
|
+
headerProps: import("@angular/core").Signal<{
|
|
46
46
|
bordered: boolean;
|
|
47
47
|
translucent: boolean;
|
|
48
48
|
toolbar: {
|
|
@@ -69,7 +69,7 @@ export declare class PageWrapperComponent implements ViewWillEnter, ViewWillLeav
|
|
|
69
69
|
};
|
|
70
70
|
}[];
|
|
71
71
|
};
|
|
72
|
-
}>;
|
|
72
|
+
} | import("valtech-components").HeaderMetadata>;
|
|
73
73
|
contentId: import("@angular/core").Signal<string>;
|
|
74
74
|
propsFooter: import("@angular/core").Signal<import("valtech-components").CompanyFooterMetadata>;
|
|
75
75
|
contentMaxWidth: import("@angular/core").Signal<ContainerSize>;
|
|
@@ -194,6 +194,11 @@ export declare class MessagingService {
|
|
|
194
194
|
* ```
|
|
195
195
|
*/
|
|
196
196
|
isSupported(): Promise<boolean>;
|
|
197
|
+
/**
|
|
198
|
+
* iOS sin estar instalado como PWA standalone — push web no disponible.
|
|
199
|
+
* Aplica a Safari y a Edge/Chrome/Firefox en iOS (todos WebKit por mandato Apple).
|
|
200
|
+
*/
|
|
201
|
+
private isIOSWithoutStandalone;
|
|
197
202
|
/**
|
|
198
203
|
* Obtiene el token actual sin hacer request.
|
|
199
204
|
*
|
package/lib/version.d.ts
CHANGED