@litigiovirtual/ius-design-components 1.0.292 → 1.0.293
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/add-user-container/add-user-container.component.mjs +3 -3
- package/esm2022/lib/button-auth/button-auth.component.mjs +3 -3
- package/esm2022/lib/button-dynamic/button-dynamic.component.mjs +3 -3
- package/esm2022/lib/button-standard-outline/button-standard-outline.component.mjs +3 -3
- package/esm2022/lib/button-standard-outline/index.mjs +1 -1
- package/esm2022/lib/button-standard-primary/button-standard-primary.component.mjs +3 -3
- package/esm2022/lib/button-standard-tertiary/button-standard-tertiary.component.mjs +3 -3
- package/esm2022/lib/button-standard-tertiary-small/button-standard-tertiary-small.component.mjs +3 -3
- package/esm2022/lib/card-actividad-evento/card-actividad-evento.component.mjs +3 -3
- package/esm2022/lib/card-etapa-subetapa/card-etapa-subetapa.component.mjs +3 -3
- package/esm2022/lib/card-impulso-procesal/card-impulso-procesal.component.mjs +3 -3
- package/esm2022/lib/card-vigilancia-judicial/card-vigilancia-judicial.component.mjs +3 -3
- package/esm2022/lib/create-ticket/create-ticket.component.mjs +3 -3
- package/esm2022/lib/create-ticket/index.mjs +1 -1
- package/esm2022/lib/custom-dropdown/custom-dropdown.component.mjs +3 -3
- package/esm2022/lib/dropdown-option-item/dropdown-option-item.component.mjs +5 -5
- package/esm2022/lib/notification-card/notification-card.component.mjs +61 -42
- package/esm2022/lib/notifications/notifications.component.mjs +97 -28
- package/esm2022/lib/toolbar/toolbar.component.mjs +12 -3
- package/esm2022/lib/toolbar-user-menu/toolbar-user-menu.component.mjs +3 -3
- package/esm2022/utils/currency-format.pipe.mjs +1 -1
- package/esm2022/utils/date-format.util.mjs +1 -1
- package/esm2022/utils/file-mime.util.mjs +1 -1
- package/esm2022/utils/file-size.util.mjs +1 -1
- package/esm2022/utils/formato-hora.pipe.mjs +1 -1
- package/esm2022/utils/list-filter.util.mjs +1 -1
- package/esm2022/utils/public-api.mjs +1 -1
- package/fesm2022/litigiovirtual-ius-design-components-utils.mjs.map +1 -1
- package/fesm2022/litigiovirtual-ius-design-components.mjs +190 -95
- package/fesm2022/litigiovirtual-ius-design-components.mjs.map +1 -1
- package/lib/dropdown-option-item/dropdown-option-item.component.d.ts +2 -2
- package/lib/notification-card/notification-card.component.d.ts +21 -14
- package/lib/notifications/notifications.component.d.ts +16 -5
- package/lib/toolbar/toolbar.component.d.ts +8 -1
- package/package.json +1 -1
|
@@ -5,9 +5,9 @@ export declare class DropdownOptionItemComponent {
|
|
|
5
5
|
private router;
|
|
6
6
|
iconName: string;
|
|
7
7
|
route: string;
|
|
8
|
-
|
|
8
|
+
optionClick: EventEmitter<void>;
|
|
9
9
|
constructor(router: Router);
|
|
10
10
|
onClick(): void;
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownOptionItemComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownOptionItemComponent, "ius-dropdown-option-item", never, { "iconName": { "alias": "iconName"; "required": false; }; "route": { "alias": "route"; "required": false; }; }, { "
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownOptionItemComponent, "ius-dropdown-option-item", never, { "iconName": { "alias": "iconName"; "required": false; }; "route": { "alias": "route"; "required": false; }; }, { "optionClick": "optionClick"; }, never, ["*"], true, never>;
|
|
13
13
|
}
|
|
@@ -1,30 +1,37 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { ElementRef, EventEmitter, OnChanges } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class NotificationCardComponent {
|
|
3
|
+
export declare class NotificationCardComponent implements OnChanges {
|
|
4
|
+
private eRef;
|
|
4
5
|
date?: string;
|
|
5
6
|
title?: string;
|
|
6
7
|
body?: string;
|
|
7
8
|
simple?: boolean;
|
|
8
9
|
activity?: boolean;
|
|
9
|
-
|
|
10
|
+
confirmable?: boolean;
|
|
11
|
+
fechaActividad?: Date;
|
|
12
|
+
mostrarPosponer?: boolean;
|
|
13
|
+
mostrarEditar: boolean;
|
|
14
|
+
esNavegable: boolean;
|
|
15
|
+
mostrarAyuda: boolean;
|
|
10
16
|
onAccept: EventEmitter<void>;
|
|
11
17
|
onDone: EventEmitter<void>;
|
|
12
|
-
|
|
13
|
-
onPostpone30Min: EventEmitter<void>;
|
|
14
|
-
onPostpone1Hour: EventEmitter<void>;
|
|
15
|
-
onPostpone1Day: EventEmitter<void>;
|
|
16
|
-
onPostpone1Week: EventEmitter<void>;
|
|
18
|
+
onPostpone: EventEmitter<number>;
|
|
17
19
|
onEditActivity: EventEmitter<void>;
|
|
20
|
+
onClickAlert: EventEmitter<void>;
|
|
18
21
|
handlePostpone?: boolean;
|
|
22
|
+
presetsHabilitados: number[];
|
|
23
|
+
constructor(eRef: ElementRef);
|
|
24
|
+
onDocumentClick(event: Event): void;
|
|
25
|
+
private addMinutes;
|
|
26
|
+
puedePosponer(mins: number): boolean;
|
|
27
|
+
ngOnChanges(): void;
|
|
28
|
+
get hayAlgunPreset(): boolean;
|
|
29
|
+
onCardClick(): void;
|
|
19
30
|
onClickAccept(): void;
|
|
20
31
|
onClickDone(): void;
|
|
21
32
|
onClickPostpone(): void;
|
|
22
|
-
|
|
23
|
-
onClickPostpone30Min(): void;
|
|
24
|
-
onClickPostpone1Hour(): void;
|
|
25
|
-
onClickPostpone1Day(): void;
|
|
26
|
-
onClickPostpone1Week(): void;
|
|
33
|
+
seleccionarPosponer(minutos: number): void;
|
|
27
34
|
onClickEditActivity(): void;
|
|
28
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationCardComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationCardComponent, "ius-notification-card", never, { "date": { "alias": "date"; "required": false; }; "title": { "alias": "title"; "required": false; }; "body": { "alias": "body"; "required": false; }; "simple": { "alias": "simple"; "required": false; }; "activity": { "alias": "activity"; "required": false; }; "
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationCardComponent, "ius-notification-card", never, { "date": { "alias": "date"; "required": false; }; "title": { "alias": "title"; "required": false; }; "body": { "alias": "body"; "required": false; }; "simple": { "alias": "simple"; "required": false; }; "activity": { "alias": "activity"; "required": false; }; "confirmable": { "alias": "confirmable"; "required": false; }; "fechaActividad": { "alias": "fechaActividad"; "required": false; }; "mostrarPosponer": { "alias": "mostrarPosponer"; "required": false; }; "mostrarEditar": { "alias": "mostrarEditar"; "required": false; }; "esNavegable": { "alias": "esNavegable"; "required": false; }; "mostrarAyuda": { "alias": "mostrarAyuda"; "required": false; }; }, { "onAccept": "onAccept"; "onDone": "onDone"; "onPostpone": "onPostpone"; "onEditActivity": "onEditActivity"; "onClickAlert": "onClickAlert"; }, never, never, true, never>;
|
|
30
37
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { Alert } from
|
|
1
|
+
import { EventEmitter, OnChanges } from '@angular/core';
|
|
2
|
+
import { Alert } from '../toolbar/toolbar.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class NotificationsComponent {
|
|
4
|
+
export declare class NotificationsComponent implements OnChanges {
|
|
5
5
|
alerts: Alert[];
|
|
6
6
|
titleDrawer: string;
|
|
7
7
|
percentProgressBar: number;
|
|
@@ -9,11 +9,22 @@ export declare class NotificationsComponent {
|
|
|
9
9
|
onPostponeAlert: EventEmitter<any>;
|
|
10
10
|
onPressedBackEvent: EventEmitter<any>;
|
|
11
11
|
onDrawerClosed: EventEmitter<void>;
|
|
12
|
+
onEditAlert: EventEmitter<Alert>;
|
|
13
|
+
onClickAlertEvent: EventEmitter<Alert>;
|
|
14
|
+
onDeleteAllAlerts: EventEmitter<void>;
|
|
12
15
|
isVisible: boolean;
|
|
16
|
+
mostrarVacio: boolean;
|
|
17
|
+
private prevLength;
|
|
18
|
+
ngOnChanges(): void;
|
|
19
|
+
onListDone(): void;
|
|
20
|
+
trackByAlert(index: number, alert: Alert): any;
|
|
13
21
|
close(): void;
|
|
14
22
|
onAnimDone(event: any): void;
|
|
15
|
-
onPostpone(alert: Alert,
|
|
23
|
+
onPostpone(alert: Alert, minutos: number): void;
|
|
16
24
|
onClickDone(alertaID: number): void;
|
|
25
|
+
onEdit(alert: Alert): void;
|
|
26
|
+
onClickCard(alert: Alert): void;
|
|
27
|
+
deleteAllAlerts(): void;
|
|
17
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsComponent, "ius-notifications", never, { "alerts": { "alias": "alerts"; "required": true; }; "titleDrawer": { "alias": "titleDrawer"; "required": false; }; "percentProgressBar": { "alias": "percentProgressBar"; "required": false; }; }, { "onDoneAlert": "onDoneAlert"; "onPostponeAlert": "onPostponeAlert"; "onPressedBackEvent": "onPressedBackEvent"; "onDrawerClosed": "onDrawerClosed"; }, never, never, true, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsComponent, "ius-notifications", never, { "alerts": { "alias": "alerts"; "required": true; }; "titleDrawer": { "alias": "titleDrawer"; "required": false; }; "percentProgressBar": { "alias": "percentProgressBar"; "required": false; }; }, { "onDoneAlert": "onDoneAlert"; "onPostponeAlert": "onPostponeAlert"; "onPressedBackEvent": "onPressedBackEvent"; "onDrawerClosed": "onDrawerClosed"; "onEditAlert": "onEditAlert"; "onClickAlertEvent": "onClickAlertEvent"; "onDeleteAllAlerts": "onDeleteAllAlerts"; }, never, never, true, never>;
|
|
19
30
|
}
|
|
@@ -49,6 +49,10 @@ export interface Alert {
|
|
|
49
49
|
tipoAlerta?: string;
|
|
50
50
|
tipoAlertaValor?: string;
|
|
51
51
|
isDone?: boolean;
|
|
52
|
+
aplicacionOrigen?: string;
|
|
53
|
+
referenciaOrigenId?: string;
|
|
54
|
+
tipoReferencia?: string;
|
|
55
|
+
mostrarPosponer?: boolean;
|
|
52
56
|
}
|
|
53
57
|
export declare class ToolbarComponent {
|
|
54
58
|
private sanitizer;
|
|
@@ -87,6 +91,9 @@ export declare class ToolbarComponent {
|
|
|
87
91
|
clickAgregarAccount: EventEmitter<any>;
|
|
88
92
|
onDoneAlert: EventEmitter<any>;
|
|
89
93
|
onPostponeAlert: EventEmitter<any>;
|
|
94
|
+
onEditAlert: EventEmitter<Alert>;
|
|
95
|
+
onClickAlertEvent: EventEmitter<Alert>;
|
|
96
|
+
onDeleteAllAlerts: EventEmitter<void>;
|
|
90
97
|
onClickShowTickets: EventEmitter<any>;
|
|
91
98
|
onClickAddTicket: EventEmitter<any>;
|
|
92
99
|
buttonsAccion: ElementRef;
|
|
@@ -133,5 +140,5 @@ export declare class ToolbarComponent {
|
|
|
133
140
|
svgFirmaString: string;
|
|
134
141
|
svgCrmString: string;
|
|
135
142
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarComponent, never>;
|
|
136
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToolbarComponent, "ius-toolbar", never, { "object": { "alias": "object"; "required": true; }; "pagina": { "alias": "pagina"; "required": false; }; "notificationsCount": { "alias": "notificationsCount"; "required": false; }; "subscripcionDetalle": { "alias": "subscripcionDetalle"; "required": false; }; "detallesConsumo": { "alias": "detallesConsumo"; "required": false; }; "accountList": { "alias": "accountList"; "required": false; }; "alerts": { "alias": "alerts"; "required": false; }; "showUsuariosGrupos": { "alias": "showUsuariosGrupos"; "required": false; }; "showConfiguracionCuenta": { "alias": "showConfiguracionCuenta"; "required": false; }; "showPagosFacturacion": { "alias": "showPagosFacturacion"; "required": false; }; "showSubscripcionesServicios": { "alias": "showSubscripcionesServicios"; "required": false; }; "showReferir": { "alias": "showReferir"; "required": false; }; "closeForm": { "alias": "closeForm"; "required": false; }; }, { "clickOpenToolbarUserMenu": "clickOpenToolbarUserMenu"; "clickUsuariosRoles": "clickUsuariosRoles"; "clickConfiguracion": "clickConfiguracion"; "clickPagos": "clickPagos"; "clickSubsServicios": "clickSubsServicios"; "clickCambiarCuenta": "clickCambiarCuenta"; "clickCerrarSesion": "clickCerrarSesion"; "clickPerfilPreferencias": "clickPerfilPreferencias"; "clickReferir": "clickReferir"; "clickNotificaciones": "clickNotificaciones"; "clickServicioVigilancia": "clickServicioVigilancia"; "clickServicioCorreo": "clickServicioCorreo"; "clickServicioLocalizador": "clickServicioLocalizador"; "clickServicioFirma": "clickServicioFirma"; "clickServicioCRM": "clickServicioCRM"; "clickAccountSelected": "clickAccountSelected"; "clickAccountPredeterminada": "clickAccountPredeterminada"; "clickEditAccount": "clickEditAccount"; "clickUnlinkAccount": "clickUnlinkAccount"; "clickAgregarAccount": "clickAgregarAccount"; "onDoneAlert": "onDoneAlert"; "onPostponeAlert": "onPostponeAlert"; "onClickShowTickets": "onClickShowTickets"; "onClickAddTicket": "onClickAddTicket"; }, never, never, true, never>;
|
|
143
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToolbarComponent, "ius-toolbar", never, { "object": { "alias": "object"; "required": true; }; "pagina": { "alias": "pagina"; "required": false; }; "notificationsCount": { "alias": "notificationsCount"; "required": false; }; "subscripcionDetalle": { "alias": "subscripcionDetalle"; "required": false; }; "detallesConsumo": { "alias": "detallesConsumo"; "required": false; }; "accountList": { "alias": "accountList"; "required": false; }; "alerts": { "alias": "alerts"; "required": false; }; "showUsuariosGrupos": { "alias": "showUsuariosGrupos"; "required": false; }; "showConfiguracionCuenta": { "alias": "showConfiguracionCuenta"; "required": false; }; "showPagosFacturacion": { "alias": "showPagosFacturacion"; "required": false; }; "showSubscripcionesServicios": { "alias": "showSubscripcionesServicios"; "required": false; }; "showReferir": { "alias": "showReferir"; "required": false; }; "closeForm": { "alias": "closeForm"; "required": false; }; }, { "clickOpenToolbarUserMenu": "clickOpenToolbarUserMenu"; "clickUsuariosRoles": "clickUsuariosRoles"; "clickConfiguracion": "clickConfiguracion"; "clickPagos": "clickPagos"; "clickSubsServicios": "clickSubsServicios"; "clickCambiarCuenta": "clickCambiarCuenta"; "clickCerrarSesion": "clickCerrarSesion"; "clickPerfilPreferencias": "clickPerfilPreferencias"; "clickReferir": "clickReferir"; "clickNotificaciones": "clickNotificaciones"; "clickServicioVigilancia": "clickServicioVigilancia"; "clickServicioCorreo": "clickServicioCorreo"; "clickServicioLocalizador": "clickServicioLocalizador"; "clickServicioFirma": "clickServicioFirma"; "clickServicioCRM": "clickServicioCRM"; "clickAccountSelected": "clickAccountSelected"; "clickAccountPredeterminada": "clickAccountPredeterminada"; "clickEditAccount": "clickEditAccount"; "clickUnlinkAccount": "clickUnlinkAccount"; "clickAgregarAccount": "clickAgregarAccount"; "onDoneAlert": "onDoneAlert"; "onPostponeAlert": "onPostponeAlert"; "onEditAlert": "onEditAlert"; "onClickAlertEvent": "onClickAlertEvent"; "onDeleteAllAlerts": "onDeleteAllAlerts"; "onClickShowTickets": "onClickShowTickets"; "onClickAddTicket": "onClickAddTicket"; }, never, never, true, never>;
|
|
137
144
|
}
|