@litigiovirtual/ius-design-components 1.0.272 → 1.0.274
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 +92 -0
- package/esm2022/lib/add-user-container/index.mjs +2 -0
- package/esm2022/lib/avatar-business/avatar-business.component.mjs +1 -1
- package/esm2022/lib/avatar-v2/avatar-v2.component.mjs +1 -1
- package/esm2022/lib/card-actividad-evento/card-actividad-evento.component.mjs +21 -4
- package/esm2022/lib/empty-list/empty-list.component.mjs +2 -2
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/litigiovirtual-ius-design-components.mjs +110 -6
- package/fesm2022/litigiovirtual-ius-design-components.mjs.map +1 -1
- package/lib/add-user-container/add-user-container.component.d.ts +22 -0
- package/lib/add-user-container/index.d.ts +1 -0
- package/lib/card-actividad-evento/card-actividad-evento.component.d.ts +15 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AddUserContainerComponent {
|
|
4
|
+
imageUrl?: string;
|
|
5
|
+
name?: string;
|
|
6
|
+
documentType?: string;
|
|
7
|
+
document?: string;
|
|
8
|
+
email?: string;
|
|
9
|
+
selected: boolean;
|
|
10
|
+
maskEmail: boolean;
|
|
11
|
+
emailVisibleChars: number;
|
|
12
|
+
maskDocument: boolean;
|
|
13
|
+
documentVisibleChars: number;
|
|
14
|
+
onSelectEvent: EventEmitter<boolean>;
|
|
15
|
+
onRemoveEvent: EventEmitter<void>;
|
|
16
|
+
get displayDocument(): string | undefined;
|
|
17
|
+
get displayEmail(): string | undefined;
|
|
18
|
+
select(): void;
|
|
19
|
+
remove(event: MouseEvent): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AddUserContainerComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AddUserContainerComponent, "ius-add-user-container", never, { "imageUrl": { "alias": "imageUrl"; "required": false; }; "name": { "alias": "name"; "required": false; }; "documentType": { "alias": "documentType"; "required": false; }; "document": { "alias": "document"; "required": false; }; "email": { "alias": "email"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "maskEmail": { "alias": "maskEmail"; "required": false; }; "emailVisibleChars": { "alias": "emailVisibleChars"; "required": false; }; "maskDocument": { "alias": "maskDocument"; "required": false; }; "documentVisibleChars": { "alias": "documentVisibleChars"; "required": false; }; }, { "onSelectEvent": "onSelectEvent"; "onRemoveEvent": "onRemoveEvent"; }, never, never, true, never>;
|
|
22
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './add-user-container.component';
|
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { DatePipe } from '@angular/common';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
+
/** Proceso individual al que está atada una tarea masiva. */
|
|
5
|
+
export interface ProcesoMasivaItem {
|
|
6
|
+
actividadID?: number;
|
|
7
|
+
tipoProceso?: string;
|
|
8
|
+
codigoInterno?: string;
|
|
9
|
+
radicado23Nit?: string;
|
|
10
|
+
parteActiva?: string;
|
|
11
|
+
partePasiva?: string;
|
|
12
|
+
warning?: boolean;
|
|
13
|
+
}
|
|
4
14
|
export declare class CardActividadEventoComponent {
|
|
5
15
|
private datePipe;
|
|
6
16
|
constructor(datePipe: DatePipe);
|
|
@@ -18,11 +28,15 @@ export declare class CardActividadEventoComponent {
|
|
|
18
28
|
fechaFin?: Date;
|
|
19
29
|
descripcion?: string;
|
|
20
30
|
link?: string;
|
|
31
|
+
masiva: boolean;
|
|
32
|
+
cantidadProcesos?: number;
|
|
33
|
+
procesos: ProcesoMasivaItem[];
|
|
21
34
|
onClickButtonCopy: EventEmitter<Event>;
|
|
22
35
|
onClickButtonRead: EventEmitter<Event>;
|
|
23
36
|
onClickButtonEdit: EventEmitter<Event>;
|
|
24
37
|
onClickButtonDelete: EventEmitter<Event>;
|
|
25
38
|
onClickButtonDone: EventEmitter<Event>;
|
|
39
|
+
get masivaLabel(): string;
|
|
26
40
|
toggleCollapse(): void;
|
|
27
41
|
get headerFechaLabel(): string;
|
|
28
42
|
get estadoLabel(): string;
|
|
@@ -36,5 +50,5 @@ export declare class CardActividadEventoComponent {
|
|
|
36
50
|
clickButtonDelete(event: Event): void;
|
|
37
51
|
clickButtonDone(event: Event): void;
|
|
38
52
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardActividadEventoComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CardActividadEventoComponent, "ius-card-actividad-evento", never, { "read": { "alias": "read"; "required": false; }; "warning": { "alias": "warning"; "required": false; }; "collapse": { "alias": "collapse"; "required": false; }; "done": { "alias": "done"; "required": false; }; "titulo": { "alias": "titulo"; "required": false; }; "usuarioAsignado": { "alias": "usuarioAsignado"; "required": false; }; "fechaProgramacion": { "alias": "fechaProgramacion"; "required": false; }; "fechaPrincipal": { "alias": "fechaPrincipal"; "required": false; }; "text1": { "alias": "text1"; "required": false; }; "estado": { "alias": "estado"; "required": false; }; "fechaInicio": { "alias": "fechaInicio"; "required": false; }; "fechaFin": { "alias": "fechaFin"; "required": false; }; "descripcion": { "alias": "descripcion"; "required": false; }; "link": { "alias": "link"; "required": false; }; }, { "onClickButtonCopy": "onClickButtonCopy"; "onClickButtonRead": "onClickButtonRead"; "onClickButtonEdit": "onClickButtonEdit"; "onClickButtonDelete": "onClickButtonDelete"; "onClickButtonDone": "onClickButtonDone"; }, never, never, true, never>;
|
|
53
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardActividadEventoComponent, "ius-card-actividad-evento", never, { "read": { "alias": "read"; "required": false; }; "warning": { "alias": "warning"; "required": false; }; "collapse": { "alias": "collapse"; "required": false; }; "done": { "alias": "done"; "required": false; }; "titulo": { "alias": "titulo"; "required": false; }; "usuarioAsignado": { "alias": "usuarioAsignado"; "required": false; }; "fechaProgramacion": { "alias": "fechaProgramacion"; "required": false; }; "fechaPrincipal": { "alias": "fechaPrincipal"; "required": false; }; "text1": { "alias": "text1"; "required": false; }; "estado": { "alias": "estado"; "required": false; }; "fechaInicio": { "alias": "fechaInicio"; "required": false; }; "fechaFin": { "alias": "fechaFin"; "required": false; }; "descripcion": { "alias": "descripcion"; "required": false; }; "link": { "alias": "link"; "required": false; }; "masiva": { "alias": "masiva"; "required": false; }; "cantidadProcesos": { "alias": "cantidadProcesos"; "required": false; }; "procesos": { "alias": "procesos"; "required": false; }; }, { "onClickButtonCopy": "onClickButtonCopy"; "onClickButtonRead": "onClickButtonRead"; "onClickButtonEdit": "onClickButtonEdit"; "onClickButtonDelete": "onClickButtonDelete"; "onClickButtonDone": "onClickButtonDone"; }, never, never, true, never>;
|
|
40
54
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -99,5 +99,6 @@ export * from './lib/empty-list';
|
|
|
99
99
|
export * from './lib/create-ticket';
|
|
100
100
|
export * from './lib/avatar-v2';
|
|
101
101
|
export * from './lib/avatar-business';
|
|
102
|
+
export * from './lib/add-user-container';
|
|
102
103
|
export * from './lib/directives/popover.directive';
|
|
103
104
|
export * from './lib/directives/infinite-scroll.directive';
|