valtech-components 4.0.213 → 4.0.216
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/organisms/account-view/account-view.component.mjs +4 -3
- package/esm2022/lib/version.mjs +2 -2
- package/fesm2022/valtech-components.mjs +4 -3
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/atoms/glow/glow.component.d.ts +1 -1
- package/lib/components/atoms/rights-footer/rights-footer.component.d.ts +2 -2
- package/lib/components/atoms/text/text.component.d.ts +1 -1
- package/lib/components/atoms/user-avatar/user-avatar.component.d.ts +1 -1
- package/lib/components/molecules/article-card/article-card.component.d.ts +1 -1
- package/lib/components/molecules/cta-card/cta-card.component.d.ts +1 -1
- package/lib/components/molecules/features-list/features-list.component.d.ts +1 -1
- package/lib/components/molecules/media-object/media-object.component.d.ts +1 -1
- package/lib/components/molecules/metric-card/metric-card.component.d.ts +1 -1
- package/lib/components/organisms/account-view/account-view.component.d.ts +1 -1
- package/lib/components/organisms/article/article.component.d.ts +4 -4
- package/lib/components/organisms/auth-cta/auth-cta.component.d.ts +1 -1
- package/lib/components/organisms/landing-steps/landing-steps.component.d.ts +1 -1
- package/lib/components/organisms/notification-preferences-view/notification-preferences-view.component.d.ts +1 -1
- package/lib/components/organisms/organization-view/organization-view.component.d.ts +1 -1
- package/lib/version.d.ts +1 -1
- package/package.json +2 -2
- package/src/lib/services/firebase/firebase-messaging-sw.js +0 -145
|
@@ -30,7 +30,7 @@ export declare class GlowComponent {
|
|
|
30
30
|
protected intensity: import("@angular/core").Signal<GlowIntensity>;
|
|
31
31
|
protected shape: import("@angular/core").Signal<GlowShape>;
|
|
32
32
|
protected animated: import("@angular/core").Signal<boolean>;
|
|
33
|
-
protected blendMode: import("@angular/core").Signal<"
|
|
33
|
+
protected blendMode: import("@angular/core").Signal<"overlay" | "normal" | "multiply" | "screen" | "soft-light" | "hard-light" | "color-dodge">;
|
|
34
34
|
protected colorRgbVar: import("@angular/core").Signal<string>;
|
|
35
35
|
protected secondaryColorRgbVar: import("@angular/core").Signal<string>;
|
|
36
36
|
protected positionCss: import("@angular/core").Signal<string>;
|
|
@@ -39,11 +39,11 @@ export declare class RightsFooterComponent {
|
|
|
39
39
|
/**
|
|
40
40
|
* Computed helper for align prop in template.
|
|
41
41
|
*/
|
|
42
|
-
propsAlign: import("@angular/core").Signal<"left" | "
|
|
42
|
+
propsAlign: import("@angular/core").Signal<"left" | "right" | "center">;
|
|
43
43
|
/**
|
|
44
44
|
* Computed helper for color prop in template.
|
|
45
45
|
*/
|
|
46
|
-
propsColor: import("@angular/core").Signal<"
|
|
46
|
+
propsColor: import("@angular/core").Signal<"primary" | "secondary" | "tertiary" | "success" | "warning" | "danger" | "light" | "medium" | "dark">;
|
|
47
47
|
/**
|
|
48
48
|
* Computed helper for withMargin prop in template.
|
|
49
49
|
*/
|
|
@@ -11,7 +11,7 @@ export declare class TextComponent {
|
|
|
11
11
|
*/
|
|
12
12
|
displayContent: import("@angular/core").Signal<string>;
|
|
13
13
|
propsColor: import("@angular/core").Signal<import("@ionic/core").Color>;
|
|
14
|
-
propsSize: import("@angular/core").Signal<"
|
|
14
|
+
propsSize: import("@angular/core").Signal<"medium" | "small" | "large" | "xlarge">;
|
|
15
15
|
propsBold: import("@angular/core").Signal<boolean>;
|
|
16
16
|
propsProcessLinks: import("@angular/core").Signal<boolean>;
|
|
17
17
|
propsAllowPartialBold: import("@angular/core").Signal<boolean>;
|
|
@@ -38,7 +38,7 @@ export declare class UserAvatarComponent {
|
|
|
38
38
|
readonly imageUrl: import("@angular/core").Signal<string>;
|
|
39
39
|
/** Iniciales — 1-2 chars derivados de name (preferred) o email prefix. */
|
|
40
40
|
readonly initials: import("@angular/core").Signal<string>;
|
|
41
|
-
readonly sizeClass: import("@angular/core").Signal<"
|
|
41
|
+
readonly sizeClass: import("@angular/core").Signal<"medium" | "small" | "large" | "xlarge" | "xsmall">;
|
|
42
42
|
readonly shapeClass: import("@angular/core").Signal<"circle" | "square">;
|
|
43
43
|
/** Background — explicito o derivado deterministicamente del user. */
|
|
44
44
|
readonly bgColor: import("@angular/core").Signal<string>;
|
|
@@ -32,7 +32,7 @@ export declare class ArticleCardComponent {
|
|
|
32
32
|
/** Emitted when the card is clicked */
|
|
33
33
|
onClick: EventEmitter<ArticleCardClickEvent>;
|
|
34
34
|
/** Merged configuration with defaults */
|
|
35
|
-
config: import("@angular/core").Signal<ArticleCardMetadata & Required<Pick<ArticleCardMetadata, "
|
|
35
|
+
config: import("@angular/core").Signal<ArticleCardMetadata & Required<Pick<ArticleCardMetadata, "bordered" | "shadowed" | "aspectRatio" | "excerptLines">>>;
|
|
36
36
|
isClickable: import("@angular/core").Signal<boolean>;
|
|
37
37
|
getTopicColor(): string | null;
|
|
38
38
|
handleClick(event: MouseEvent): void;
|
|
@@ -35,7 +35,7 @@ export declare class CtaCardComponent {
|
|
|
35
35
|
/** Emitted with the token of the clicked action button */
|
|
36
36
|
onAction: EventEmitter<string>;
|
|
37
37
|
/** Merged configuration with defaults */
|
|
38
|
-
config: import("@angular/core").Signal<CtaCardMetadata & Required<Pick<CtaCardMetadata, "
|
|
38
|
+
config: import("@angular/core").Signal<CtaCardMetadata & Required<Pick<CtaCardMetadata, "padding" | "borderRadius" | "align" | "bordered" | "shadowed">>>;
|
|
39
39
|
getBackground(): string;
|
|
40
40
|
getColor(): string | null;
|
|
41
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<CtaCardComponent, never>;
|
|
@@ -41,7 +41,7 @@ export declare class FeaturesListComponent {
|
|
|
41
41
|
iconColor: string;
|
|
42
42
|
iconSize: number;
|
|
43
43
|
mode: "horizontal" | "vertical";
|
|
44
|
-
gap: "
|
|
44
|
+
gap: "medium" | "small" | "large";
|
|
45
45
|
alignment: "center" | "start";
|
|
46
46
|
imageShape: "circle" | "square";
|
|
47
47
|
maxVisible: number;
|
|
@@ -30,7 +30,7 @@ export declare class MediaObjectComponent {
|
|
|
30
30
|
/** Emitted when the inline link is clicked */
|
|
31
31
|
onLinkClick: EventEmitter<string>;
|
|
32
32
|
/** Merged configuration with defaults */
|
|
33
|
-
config: import("@angular/core").Signal<MediaObjectMetadata & Required<Pick<MediaObjectMetadata, "rounded" | "
|
|
33
|
+
config: import("@angular/core").Signal<MediaObjectMetadata & Required<Pick<MediaObjectMetadata, "rounded" | "align" | "circle" | "mediaWidth" | "reversed">>>;
|
|
34
34
|
getColor(): string;
|
|
35
35
|
handleLinkClick(event: MouseEvent): void;
|
|
36
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<MediaObjectComponent, never>;
|
|
@@ -28,7 +28,7 @@ export declare class MetricCardComponent {
|
|
|
28
28
|
/** Emitted with the token of the clicked action */
|
|
29
29
|
onAction: EventEmitter<string>;
|
|
30
30
|
/** Merged configuration with defaults */
|
|
31
|
-
config: import("@angular/core").Signal<MetricCardMetadata & Required<Pick<MetricCardMetadata, "
|
|
31
|
+
config: import("@angular/core").Signal<MetricCardMetadata & Required<Pick<MetricCardMetadata, "padding" | "borderRadius" | "bordered" | "shadowed">>>;
|
|
32
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<MetricCardComponent, never>;
|
|
33
33
|
static ɵcmp: i0.ɵɵComponentDeclaration<MetricCardComponent, "val-metric-card", never, { "props": { "alias": "props"; "required": false; "isSignal": true; }; }, { "onAction": "onAction"; }, never, never, true, never>;
|
|
34
34
|
}
|
|
@@ -35,7 +35,7 @@ export declare class AccountViewComponent {
|
|
|
35
35
|
* mergea con los defaults — `@Input` gana sobre route data.
|
|
36
36
|
*/
|
|
37
37
|
config?: AccountViewConfig;
|
|
38
|
-
readonly resolvedConfig: import("@angular/core").Signal<Required<Omit<AccountViewConfig, "
|
|
38
|
+
readonly resolvedConfig: import("@angular/core").Signal<Required<Omit<AccountViewConfig, "onOrgCreated" | "onOrgSwitched" | "onLoggedOut" | "onAccountDeleted">> & Pick<AccountViewConfig, "onOrgCreated" | "onOrgSwitched" | "onLoggedOut" | "onAccountDeleted">>;
|
|
39
39
|
/** Namespace i18n resuelto (capturado para llamadas no-reactivas). */
|
|
40
40
|
private get ns();
|
|
41
41
|
readonly orgs: import("@angular/core").WritableSignal<Organization[]>;
|
|
@@ -45,7 +45,7 @@ export declare class ArticleComponent implements OnInit {
|
|
|
45
45
|
getVideoElement(element: ArticleElement): ArticleVideoElement;
|
|
46
46
|
getCustomElement(element: ArticleElement): ArticleCustomElement;
|
|
47
47
|
getQuoteTextProps(element: ArticleElement): {
|
|
48
|
-
size: "
|
|
48
|
+
size: "medium" | "small" | "large" | "xlarge";
|
|
49
49
|
color: import("@ionic/core").Color;
|
|
50
50
|
content?: string;
|
|
51
51
|
bold: boolean;
|
|
@@ -57,11 +57,11 @@ export declare class ArticleComponent implements OnInit {
|
|
|
57
57
|
linkConfig?: import("valtech-components").LinkProcessorConfig;
|
|
58
58
|
allowPartialBold?: boolean;
|
|
59
59
|
authorColor?: import("@ionic/core").Color;
|
|
60
|
-
alignment?: "left" | "
|
|
60
|
+
alignment?: "left" | "right" | "center";
|
|
61
61
|
showQuoteMark?: boolean;
|
|
62
62
|
};
|
|
63
63
|
getHighlightTextProps(element: ArticleElement): {
|
|
64
|
-
size: "
|
|
64
|
+
size: "medium" | "small" | "large" | "xlarge";
|
|
65
65
|
color: import("@ionic/core").Color;
|
|
66
66
|
content?: string;
|
|
67
67
|
bold: boolean;
|
|
@@ -95,7 +95,7 @@ export declare class ArticleComponent implements OnInit {
|
|
|
95
95
|
shape?: "round";
|
|
96
96
|
size?: "default" | "small" | "large";
|
|
97
97
|
fill?: "default" | "clear" | "outline" | "solid";
|
|
98
|
-
type: "
|
|
98
|
+
type: "submit" | "button" | "reset";
|
|
99
99
|
token?: string;
|
|
100
100
|
ref?: any;
|
|
101
101
|
handler?: (value: any) => any;
|
|
@@ -35,7 +35,7 @@ export declare class AuthCtaComponent {
|
|
|
35
35
|
onRegister: EventEmitter<void>;
|
|
36
36
|
constructor();
|
|
37
37
|
/** Merged configuration with defaults */
|
|
38
|
-
config: import("@angular/core").Signal<AuthCtaMetadata & Required<Pick<AuthCtaMetadata, "
|
|
38
|
+
config: import("@angular/core").Signal<AuthCtaMetadata & Required<Pick<AuthCtaMetadata, "padding" | "borderRadius" | "align">>>;
|
|
39
39
|
loginLabel: import("@angular/core").Signal<string>;
|
|
40
40
|
registerLabel: import("@angular/core").Signal<string>;
|
|
41
41
|
topLogoProps: import("@angular/core").Signal<{
|
|
@@ -4,7 +4,7 @@ export declare class LandingStepsComponent {
|
|
|
4
4
|
private readonly props_;
|
|
5
5
|
set props(v: LandingStepsMetadata);
|
|
6
6
|
readonly p: import("@angular/core").Signal<LandingStepsMetadata>;
|
|
7
|
-
readonly cols: import("@angular/core").Signal<
|
|
7
|
+
readonly cols: import("@angular/core").Signal<3 | 2 | 4>;
|
|
8
8
|
readonly accentColor: import("@angular/core").Signal<string>;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<LandingStepsComponent, never>;
|
|
10
10
|
static ɵcmp: i0.ɵɵComponentDeclaration<LandingStepsComponent, "val-landing-steps", never, { "props": { "alias": "props"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -90,7 +90,7 @@ export declare class NotificationPreferencesViewComponent implements OnInit, OnD
|
|
|
90
90
|
readonly busyLabel: import("@angular/core").Signal<string>;
|
|
91
91
|
readonly contextMessage: import("@angular/core").Signal<string>;
|
|
92
92
|
readonly alertVariant: import("@angular/core").Signal<"warning" | "danger" | "info">;
|
|
93
|
-
readonly alertIcon: import("@angular/core").Signal<"
|
|
93
|
+
readonly alertIcon: import("@angular/core").Signal<"close-circle-outline" | "alert-circle-outline">;
|
|
94
94
|
readonly toggleProps: import("@angular/core").Signal<ToggleInputMetadata>;
|
|
95
95
|
readonly retryButtonProps: import("@angular/core").Signal<Partial<ButtonMetadata>>;
|
|
96
96
|
readonly tokenPreview: import("@angular/core").Signal<string>;
|
|
@@ -53,7 +53,7 @@ export declare class OrganizationViewComponent {
|
|
|
53
53
|
* `resolvedConfig` mergea con los defaults — `@Input` gana sobre route data.
|
|
54
54
|
*/
|
|
55
55
|
config?: OrganizationViewConfig;
|
|
56
|
-
readonly resolvedConfig: import("@angular/core").Signal<Required<Omit<OrganizationViewConfig, "
|
|
56
|
+
readonly resolvedConfig: import("@angular/core").Signal<Required<Omit<OrganizationViewConfig, "onOrgEdited" | "onMemberInvited" | "onOwnershipTransferred" | "onLeftOrg" | "onOrgDeleted" | "onOrgCreated">> & Pick<OrganizationViewConfig, "onOrgEdited" | "onMemberInvited" | "onOwnershipTransferred" | "onLeftOrg" | "onOrgDeleted" | "onOrgCreated">>;
|
|
57
57
|
/** Namespace i18n resuelto (capturado para llamadas no-reactivas). */
|
|
58
58
|
private get ns();
|
|
59
59
|
readonly org: import("@angular/core").WritableSignal<Organization>;
|
package/lib/version.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "valtech-components",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.216",
|
|
4
4
|
"private": false,
|
|
5
5
|
"bin": {
|
|
6
6
|
"valtech-firebase-config": "./src/lib/services/firebase/scripts/generate-sw-config.js"
|
|
@@ -65,4 +65,4 @@
|
|
|
65
65
|
"default": "./fesm2022/valtech-components.mjs"
|
|
66
66
|
}
|
|
67
67
|
}
|
|
68
|
-
}
|
|
68
|
+
}
|
|
@@ -1,145 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Firebase Messaging Service Worker
|
|
3
|
-
*
|
|
4
|
-
* Service Worker estático para Firebase Cloud Messaging.
|
|
5
|
-
* Carga la configuración dinámicamente desde /firebase-config.js.
|
|
6
|
-
*
|
|
7
|
-
* CONFIGURACIÓN:
|
|
8
|
-
* 1. Crea firebase.config.json con tu configuración de Firebase
|
|
9
|
-
* 2. Ejecuta: npm run generate:firebase-config
|
|
10
|
-
* Esto genera /firebase-config.js con: self.FIREBASE_CONFIG = {...}
|
|
11
|
-
* 3. Agrega este SW y firebase-config.js a los assets de angular.json
|
|
12
|
-
*
|
|
13
|
-
* Ver README.md para documentación completa.
|
|
14
|
-
*/
|
|
15
|
-
|
|
16
|
-
// Importar Firebase scripts
|
|
17
|
-
importScripts('https://www.gstatic.com/firebasejs/10.7.0/firebase-app-compat.js');
|
|
18
|
-
importScripts('https://www.gstatic.com/firebasejs/10.7.0/firebase-messaging-compat.js');
|
|
19
|
-
|
|
20
|
-
// Importar configuración desde archivo externo (generado en build)
|
|
21
|
-
// Este archivo define: self.FIREBASE_CONFIG = { ... }
|
|
22
|
-
try {
|
|
23
|
-
importScripts('/firebase-config.js');
|
|
24
|
-
} catch (e) {
|
|
25
|
-
console.error('[SW] No se pudo cargar firebase-config.js:', e);
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
// Verificar que la configuración existe
|
|
29
|
-
if (!self.FIREBASE_CONFIG) {
|
|
30
|
-
console.error('[SW] FIREBASE_CONFIG no está definido.');
|
|
31
|
-
console.error('[SW] Ejecuta: npm run generate:firebase-config');
|
|
32
|
-
} else {
|
|
33
|
-
// Inicializar Firebase
|
|
34
|
-
firebase.initializeApp(self.FIREBASE_CONFIG);
|
|
35
|
-
|
|
36
|
-
// Obtener instancia de messaging
|
|
37
|
-
const messaging = firebase.messaging();
|
|
38
|
-
|
|
39
|
-
/**
|
|
40
|
-
* Handler para mensajes en background.
|
|
41
|
-
*/
|
|
42
|
-
messaging.onBackgroundMessage((payload) => {
|
|
43
|
-
console.log('[SW] Mensaje recibido en background:', payload);
|
|
44
|
-
|
|
45
|
-
// Web push usa mensajes data-only (sin bloque `notification`) para que el
|
|
46
|
-
// navegador NO auto-muestre una notificación duplicada — el SW es el único
|
|
47
|
-
// que la pinta. Title/body/icon llegan dentro de `data`. Se mantiene el
|
|
48
|
-
// fallback a `payload.notification` por compatibilidad con mensajes
|
|
49
|
-
// legacy o nativos que sí traen el bloque.
|
|
50
|
-
const data = payload.data || {};
|
|
51
|
-
const notificationTitle =
|
|
52
|
-
payload.notification?.title || data.title || 'Nueva notificación';
|
|
53
|
-
const notificationBody = payload.notification?.body || data.body || '';
|
|
54
|
-
const notificationIcon =
|
|
55
|
-
payload.notification?.icon || data.icon || '/assets/icon/favicon.ico';
|
|
56
|
-
|
|
57
|
-
const notificationOptions = {
|
|
58
|
-
body: notificationBody,
|
|
59
|
-
icon: notificationIcon,
|
|
60
|
-
image: payload.notification?.image,
|
|
61
|
-
badge: '/assets/icon/badge.png',
|
|
62
|
-
tag: payload.messageId || data.messageId || 'default',
|
|
63
|
-
data: {
|
|
64
|
-
...data,
|
|
65
|
-
messageId: payload.messageId || data.messageId,
|
|
66
|
-
title: notificationTitle,
|
|
67
|
-
body: notificationBody,
|
|
68
|
-
},
|
|
69
|
-
vibrate: [200, 100, 200],
|
|
70
|
-
requireInteraction: data.require_interaction === 'true',
|
|
71
|
-
};
|
|
72
|
-
|
|
73
|
-
return self.registration.showNotification(notificationTitle, notificationOptions);
|
|
74
|
-
});
|
|
75
|
-
|
|
76
|
-
/**
|
|
77
|
-
* Handler para clicks en notificaciones.
|
|
78
|
-
*/
|
|
79
|
-
self.addEventListener('notificationclick', (event) => {
|
|
80
|
-
console.log('[SW] Click en notificación:', event);
|
|
81
|
-
event.notification.close();
|
|
82
|
-
|
|
83
|
-
const data = event.notification.data || {};
|
|
84
|
-
let targetUrl = '/';
|
|
85
|
-
|
|
86
|
-
if (data.route) {
|
|
87
|
-
targetUrl = data.route;
|
|
88
|
-
} else if (data.url) {
|
|
89
|
-
targetUrl = data.url;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
if (data.query_params) {
|
|
93
|
-
const separator = targetUrl.includes('?') ? '&' : '?';
|
|
94
|
-
targetUrl += separator + data.query_params;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
const notificationPayload = {
|
|
98
|
-
type: 'NOTIFICATION_CLICK',
|
|
99
|
-
notification: {
|
|
100
|
-
title: data.title,
|
|
101
|
-
body: data.body,
|
|
102
|
-
data: data,
|
|
103
|
-
messageId: data.messageId,
|
|
104
|
-
},
|
|
105
|
-
};
|
|
106
|
-
|
|
107
|
-
event.waitUntil(
|
|
108
|
-
clients
|
|
109
|
-
.matchAll({ type: 'window', includeUncontrolled: true })
|
|
110
|
-
.then((clientList) => {
|
|
111
|
-
// Siempre enviar postMessage para que la app pueda reaccionar
|
|
112
|
-
for (const client of clientList) {
|
|
113
|
-
client.postMessage(notificationPayload);
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
// Navegar si hay route o url
|
|
117
|
-
if (targetUrl !== '/') {
|
|
118
|
-
for (const client of clientList) {
|
|
119
|
-
if ('navigate' in client) {
|
|
120
|
-
return client.navigate(targetUrl).then((c) => c?.focus());
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
// Si no hay cliente abierto, abrir nueva ventana
|
|
124
|
-
if (clients.openWindow) {
|
|
125
|
-
return clients.openWindow(targetUrl);
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
// Solo hacer focus si no hay navegación
|
|
130
|
-
for (const client of clientList) {
|
|
131
|
-
if ('focus' in client) {
|
|
132
|
-
return client.focus();
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
if (clients.openWindow) {
|
|
136
|
-
return clients.openWindow('/');
|
|
137
|
-
}
|
|
138
|
-
})
|
|
139
|
-
);
|
|
140
|
-
});
|
|
141
|
-
|
|
142
|
-
self.addEventListener('notificationclose', (event) => {
|
|
143
|
-
console.log('[SW] Notificación cerrada:', event.notification.tag);
|
|
144
|
-
});
|
|
145
|
-
}
|