@litigiovirtual/ius-design-components 1.0.77 → 1.0.78
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/date-hour-picker/date-hour-picker.component.mjs +1 -1
- package/esm2022/lib/dropdown-user-menu/dropdown-user-menu.component.mjs +14 -4
- package/esm2022/lib/input-select/input-select.component.mjs +3 -3
- package/esm2022/lib/option/option.component.mjs +1 -1
- package/esm2022/lib/toolbar/toolbar.component.mjs +137 -10
- package/fesm2022/litigiovirtual-ius-design-components.mjs +149 -13
- package/fesm2022/litigiovirtual-ius-design-components.mjs.map +1 -1
- package/lib/dropdown-user-menu/dropdown-user-menu.component.d.ts +1 -0
- package/lib/toolbar/toolbar.component.d.ts +19 -3
- package/package.json +1 -1
|
@@ -9,6 +9,7 @@ export declare class DropdownUserMenuComponent {
|
|
|
9
9
|
buttonClicked: EventEmitter<void>;
|
|
10
10
|
isOpen: boolean;
|
|
11
11
|
onClick(): void;
|
|
12
|
+
onClickOutside(event: Event): void;
|
|
12
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownUserMenuComponent, never>;
|
|
13
14
|
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownUserMenuComponent, "ius-dropdown-user-menu", never, { "isActive": { "alias": "isActive"; "required": false; }; "nameUser": { "alias": "nameUser"; "required": false; }; "logo": { "alias": "logo"; "required": false; }; "avatar": { "alias": "avatar"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "buttonClicked": "buttonClicked"; }, never, ["*"], true, never>;
|
|
14
15
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
interface Objeto {
|
|
4
5
|
logoLt: string;
|
|
@@ -11,6 +12,7 @@ interface Objeto {
|
|
|
11
12
|
correo: string;
|
|
12
13
|
}
|
|
13
14
|
export declare class ToolbarComponent {
|
|
15
|
+
private sanitizer;
|
|
14
16
|
object: Objeto;
|
|
15
17
|
pagina: string;
|
|
16
18
|
clickUsuariosRoles: EventEmitter<void>;
|
|
@@ -19,14 +21,28 @@ export declare class ToolbarComponent {
|
|
|
19
21
|
clickSubsServicios: EventEmitter<void>;
|
|
20
22
|
clickCambiarCuenta: EventEmitter<void>;
|
|
21
23
|
clickCerrarSesion: EventEmitter<void>;
|
|
22
|
-
|
|
23
|
-
|
|
24
|
+
buttonsAccion: ElementRef;
|
|
25
|
+
showMenuUser: boolean;
|
|
26
|
+
showButtonsAccion: boolean;
|
|
27
|
+
svgLitigio: SafeHtml;
|
|
28
|
+
svgCorreo: SafeHtml;
|
|
29
|
+
svgLocalizador: SafeHtml;
|
|
30
|
+
svgFirma: SafeHtml;
|
|
31
|
+
svgCrm: SafeHtml;
|
|
32
|
+
constructor(sanitizer: DomSanitizer);
|
|
33
|
+
toggleShowMore(): void;
|
|
34
|
+
onClickOutside(event: Event): void;
|
|
24
35
|
onClickUsuariosRoles(): void;
|
|
25
36
|
onClickConfiguracion(): void;
|
|
26
37
|
onClickPagos(): void;
|
|
27
38
|
onClickSubsServicios(): void;
|
|
28
39
|
onClickCambiarCuenta(): void;
|
|
29
40
|
onClickCerrarSesion(): void;
|
|
41
|
+
svgLitigioString: string;
|
|
42
|
+
svgCorreoString: string;
|
|
43
|
+
svgLocalizadorString: string;
|
|
44
|
+
svgFirmaString: string;
|
|
45
|
+
svgCrmString: string;
|
|
30
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarComponent, never>;
|
|
31
47
|
static ɵcmp: i0.ɵɵComponentDeclaration<ToolbarComponent, "ius-toolbar", never, { "object": { "alias": "object"; "required": true; }; "pagina": { "alias": "pagina"; "required": false; }; }, { "clickUsuariosRoles": "clickUsuariosRoles"; "clickConfiguracion": "clickConfiguracion"; "clickPagos": "clickPagos"; "clickSubsServicios": "clickSubsServicios"; "clickCambiarCuenta": "clickCambiarCuenta"; "clickCerrarSesion": "clickCerrarSesion"; }, never, never, true, never>;
|
|
32
48
|
}
|