@litigiovirtual/ius-design-components 1.0.78 → 1.0.79
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/button-circle-secondary/button-circle-secondary.component.mjs +5 -5
- package/esm2022/lib/button-circle-tertiary/button-circle-tertiary.component.mjs +5 -5
- package/esm2022/lib/button-dynamic/button-dynamic.component.mjs +5 -5
- package/esm2022/lib/button-squared-secondary/button-squared-secondary.component.mjs +5 -5
- package/esm2022/lib/button-squared-tertiary/button-squared-tertiary.component.mjs +5 -5
- package/esm2022/lib/button-standard-primary/button-standard-primary.component.mjs +5 -5
- package/esm2022/lib/button-standard-secondary/button-standard-secondary.component.mjs +5 -5
- package/esm2022/lib/button-standard-tertiary/button-standard-tertiary.component.mjs +5 -5
- package/esm2022/lib/button-standard-tertiary-small/button-standard-tertiary-small.component.mjs +5 -5
- package/esm2022/lib/date-hour-picker/date-hour-picker.component.mjs +1 -1
- package/esm2022/lib/dropdown-contextual-menu/dropdown-contextual-menu.component.mjs +11 -0
- package/esm2022/lib/dropdown-contextual-menu/index.mjs +2 -0
- package/esm2022/lib/group-card/group-card.component.mjs +70 -0
- package/esm2022/lib/group-card/index.mjs +2 -0
- package/esm2022/lib/icons/icons-map.mjs +4 -1
- package/esm2022/lib/input-select/input-select.component.mjs +3 -3
- package/esm2022/lib/option/option.component.mjs +1 -1
- package/esm2022/lib/user-card/index.mjs +2 -0
- package/esm2022/lib/user-card/user-card.component.mjs +66 -0
- package/esm2022/public-api.mjs +4 -1
- package/fesm2022/litigiovirtual-ius-design-components.mjs +179 -39
- package/fesm2022/litigiovirtual-ius-design-components.mjs.map +1 -1
- package/lib/button-circle-secondary/button-circle-secondary.component.d.ts +2 -2
- package/lib/button-circle-tertiary/button-circle-tertiary.component.d.ts +2 -2
- package/lib/button-dynamic/button-dynamic.component.d.ts +2 -2
- package/lib/button-squared-secondary/button-squared-secondary.component.d.ts +2 -2
- package/lib/button-squared-tertiary/button-squared-tertiary.component.d.ts +2 -2
- package/lib/button-standard-primary/button-standard-primary.component.d.ts +2 -2
- package/lib/button-standard-secondary/button-standard-secondary.component.d.ts +2 -2
- package/lib/button-standard-tertiary/button-standard-tertiary.component.d.ts +2 -2
- package/lib/button-standard-tertiary-small/button-standard-tertiary-small.component.d.ts +2 -2
- package/lib/dropdown-contextual-menu/dropdown-contextual-menu.component.d.ts +5 -0
- package/lib/dropdown-contextual-menu/index.d.ts +1 -0
- package/lib/group-card/group-card.component.d.ts +28 -0
- package/lib/group-card/index.d.ts +1 -0
- package/lib/user-card/index.d.ts +1 -0
- package/lib/user-card/user-card.component.d.ts +26 -0
- package/package.json +1 -1
- package/public-api.d.ts +3 -0
|
@@ -3,8 +3,8 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class ButtonCircleSecondaryComponent {
|
|
4
4
|
disabled: boolean;
|
|
5
5
|
iconName: string;
|
|
6
|
-
buttonClicked: EventEmitter<
|
|
7
|
-
onClick(): void;
|
|
6
|
+
buttonClicked: EventEmitter<Event>;
|
|
7
|
+
onClick(event: Event): void;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonCircleSecondaryComponent, never>;
|
|
9
9
|
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonCircleSecondaryComponent, "ius-button-circle-secondary", never, { "disabled": { "alias": "disabled"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; }, { "buttonClicked": "buttonClicked"; }, never, never, true, never>;
|
|
10
10
|
}
|
|
@@ -3,8 +3,8 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class ButtonCircleTertiaryComponent {
|
|
4
4
|
disabled: boolean;
|
|
5
5
|
iconName: string;
|
|
6
|
-
buttonClicked: EventEmitter<
|
|
7
|
-
onClick(): void;
|
|
6
|
+
buttonClicked: EventEmitter<Event>;
|
|
7
|
+
onClick(event: Event): void;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonCircleTertiaryComponent, never>;
|
|
9
9
|
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonCircleTertiaryComponent, "ius-button-circle-tertiary", never, { "disabled": { "alias": "disabled"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; }, { "buttonClicked": "buttonClicked"; }, never, never, true, never>;
|
|
10
10
|
}
|
|
@@ -11,7 +11,7 @@ export declare class ButtonDynamicComponent implements OnChanges, OnDestroy {
|
|
|
11
11
|
result: ButtonResult;
|
|
12
12
|
autoReset: boolean;
|
|
13
13
|
autoResetDelay: number;
|
|
14
|
-
buttonClicked: EventEmitter<
|
|
14
|
+
buttonClicked: EventEmitter<Event>;
|
|
15
15
|
state: ButtonState;
|
|
16
16
|
private resetTimer;
|
|
17
17
|
ngOnInit(): void;
|
|
@@ -20,7 +20,7 @@ export declare class ButtonDynamicComponent implements OnChanges, OnDestroy {
|
|
|
20
20
|
armAutoReset(): void;
|
|
21
21
|
clearTimer(): void;
|
|
22
22
|
setState(s: ButtonState): void;
|
|
23
|
-
onClick(): void;
|
|
23
|
+
onClick(event: Event): void;
|
|
24
24
|
ngOnDestroy(): void;
|
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonDynamicComponent, never>;
|
|
26
26
|
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonDynamicComponent, "ius-button-dynamic", never, { "labelDefault": { "alias": "labelDefault"; "required": false; }; "labelSuccess": { "alias": "labelSuccess"; "required": false; }; "labelError": { "alias": "labelError"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "result": { "alias": "result"; "required": false; }; "autoReset": { "alias": "autoReset"; "required": false; }; "autoResetDelay": { "alias": "autoResetDelay"; "required": false; }; }, { "buttonClicked": "buttonClicked"; }, never, never, true, never>;
|
|
@@ -3,8 +3,8 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class ButtonSquaredSecondaryComponent {
|
|
4
4
|
disabled: boolean;
|
|
5
5
|
iconName: string;
|
|
6
|
-
buttonClicked: EventEmitter<
|
|
7
|
-
onClick(): void;
|
|
6
|
+
buttonClicked: EventEmitter<Event>;
|
|
7
|
+
onClick(event: Event): void;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonSquaredSecondaryComponent, never>;
|
|
9
9
|
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonSquaredSecondaryComponent, "ius-button-squared-secondary", never, { "disabled": { "alias": "disabled"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; }, { "buttonClicked": "buttonClicked"; }, never, never, true, never>;
|
|
10
10
|
}
|
|
@@ -3,8 +3,8 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class ButtonSquaredTertiaryComponent {
|
|
4
4
|
disabled: boolean;
|
|
5
5
|
iconName: string;
|
|
6
|
-
buttonClicked: EventEmitter<
|
|
7
|
-
onClick(): void;
|
|
6
|
+
buttonClicked: EventEmitter<Event>;
|
|
7
|
+
onClick(event: Event): void;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonSquaredTertiaryComponent, never>;
|
|
9
9
|
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonSquaredTertiaryComponent, "ius-button-squared-tertiary", never, { "disabled": { "alias": "disabled"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; }, { "buttonClicked": "buttonClicked"; }, never, never, true, never>;
|
|
10
10
|
}
|
|
@@ -3,8 +3,8 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class ButtonStandardPrimaryComponent {
|
|
4
4
|
disabled: boolean;
|
|
5
5
|
iconName: string;
|
|
6
|
-
buttonClicked: EventEmitter<
|
|
7
|
-
onClick(): void;
|
|
6
|
+
buttonClicked: EventEmitter<Event>;
|
|
7
|
+
onClick(event: Event): void;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonStandardPrimaryComponent, never>;
|
|
9
9
|
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonStandardPrimaryComponent, "ius-button-standard-primary", never, { "disabled": { "alias": "disabled"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; }, { "buttonClicked": "buttonClicked"; }, never, ["*"], true, never>;
|
|
10
10
|
}
|
|
@@ -2,8 +2,8 @@ import { EventEmitter } from '@angular/core';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class ButtonStandardSecondaryComponent {
|
|
4
4
|
disabled: boolean;
|
|
5
|
-
buttonClicked: EventEmitter<
|
|
6
|
-
onClick(): void;
|
|
5
|
+
buttonClicked: EventEmitter<Event>;
|
|
6
|
+
onClick(event: Event): void;
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonStandardSecondaryComponent, never>;
|
|
8
8
|
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonStandardSecondaryComponent, "ius-button-standard-secondary", never, { "disabled": { "alias": "disabled"; "required": false; }; }, { "buttonClicked": "buttonClicked"; }, never, ["*"], true, never>;
|
|
9
9
|
}
|
|
@@ -3,8 +3,8 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class ButtonStandardTertiaryComponent {
|
|
4
4
|
disabled: boolean;
|
|
5
5
|
iconName: string;
|
|
6
|
-
buttonClicked: EventEmitter<
|
|
7
|
-
onClick(): void;
|
|
6
|
+
buttonClicked: EventEmitter<Event>;
|
|
7
|
+
onClick(event: Event): void;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonStandardTertiaryComponent, never>;
|
|
9
9
|
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonStandardTertiaryComponent, "ius-button-standard-tertiary", never, { "disabled": { "alias": "disabled"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; }, { "buttonClicked": "buttonClicked"; }, never, ["*"], true, never>;
|
|
10
10
|
}
|
|
@@ -4,8 +4,8 @@ export declare class ButtonStandardTertiarySmallComponent {
|
|
|
4
4
|
disabled: boolean;
|
|
5
5
|
iconName: string;
|
|
6
6
|
iconNameRight: string;
|
|
7
|
-
buttonClicked: EventEmitter<
|
|
8
|
-
onClick(): void;
|
|
7
|
+
buttonClicked: EventEmitter<Event>;
|
|
8
|
+
onClick(event: Event): void;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonStandardTertiarySmallComponent, never>;
|
|
10
10
|
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonStandardTertiarySmallComponent, "ius-button-standard-tertiary-small", never, { "disabled": { "alias": "disabled"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "iconNameRight": { "alias": "iconNameRight"; "required": false; }; }, { "buttonClicked": "buttonClicked"; }, never, ["*"], true, never>;
|
|
11
11
|
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class DropdownContextualMenuComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownContextualMenuComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownContextualMenuComponent, "ius-dropdown-contextual-menu", never, {}, {}, never, ["*"], true, never>;
|
|
5
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './dropdown-contextual-menu.component';
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class GroupCardComponent {
|
|
4
|
+
hover: boolean;
|
|
5
|
+
options: boolean;
|
|
6
|
+
image?: string;
|
|
7
|
+
state?: string;
|
|
8
|
+
name?: string;
|
|
9
|
+
label1?: string;
|
|
10
|
+
data1?: string;
|
|
11
|
+
label2?: string;
|
|
12
|
+
data2?: string;
|
|
13
|
+
userID?: number;
|
|
14
|
+
letterIcon?: string;
|
|
15
|
+
iconEdit?: string;
|
|
16
|
+
onClickEdit: EventEmitter<any>;
|
|
17
|
+
onClickDelete: EventEmitter<any>;
|
|
18
|
+
onClickCard: EventEmitter<any>;
|
|
19
|
+
onMouseEnter(): void;
|
|
20
|
+
onMouseLeave(): void;
|
|
21
|
+
clickEdit(event: Event): void;
|
|
22
|
+
clickDelete(event: Event): void;
|
|
23
|
+
clickCard(event: Event): void;
|
|
24
|
+
clickShowMore(): void;
|
|
25
|
+
clickEditImage(event: Event): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GroupCardComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GroupCardComponent, "ius-group-card", never, { "image": { "alias": "image"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "label1": { "alias": "label1"; "required": false; }; "data1": { "alias": "data1"; "required": false; }; "label2": { "alias": "label2"; "required": false; }; "data2": { "alias": "data2"; "required": false; }; "userID": { "alias": "userID"; "required": false; }; "letterIcon": { "alias": "letterIcon"; "required": false; }; "iconEdit": { "alias": "iconEdit"; "required": false; }; }, { "onClickEdit": "onClickEdit"; "onClickDelete": "onClickDelete"; "onClickCard": "onClickCard"; }, never, ["*"], true, never>;
|
|
28
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './group-card.component';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './user-card.component';
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class UserCardComponent {
|
|
4
|
+
hover: boolean;
|
|
5
|
+
options: boolean;
|
|
6
|
+
image?: string;
|
|
7
|
+
state?: string;
|
|
8
|
+
name?: string;
|
|
9
|
+
role?: string;
|
|
10
|
+
label1?: string;
|
|
11
|
+
data1?: string;
|
|
12
|
+
label2?: string;
|
|
13
|
+
data2?: string;
|
|
14
|
+
userID?: number;
|
|
15
|
+
onClickEdit: EventEmitter<any>;
|
|
16
|
+
onClickDelete: EventEmitter<any>;
|
|
17
|
+
onClickCard: EventEmitter<any>;
|
|
18
|
+
onMouseEnter(): void;
|
|
19
|
+
onMouseLeave(): void;
|
|
20
|
+
clickEdit(event: Event): void;
|
|
21
|
+
clickDelete(event: Event): void;
|
|
22
|
+
clickCard(event: Event): void;
|
|
23
|
+
clickShowMore(): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserCardComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UserCardComponent, "ius-user-card", never, { "image": { "alias": "image"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "role": { "alias": "role"; "required": false; }; "label1": { "alias": "label1"; "required": false; }; "data1": { "alias": "data1"; "required": false; }; "label2": { "alias": "label2"; "required": false; }; "data2": { "alias": "data2"; "required": false; }; "userID": { "alias": "userID"; "required": false; }; }, { "onClickEdit": "onClickEdit"; "onClickDelete": "onClickDelete"; "onClickCard": "onClickCard"; }, never, ["*"], true, never>;
|
|
26
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -49,4 +49,7 @@ export * from './lib/snackbar';
|
|
|
49
49
|
export * from './lib/charts-donut';
|
|
50
50
|
export * from './lib/charts-bar-grouped';
|
|
51
51
|
export * from './lib/breadcrumb';
|
|
52
|
+
export * from './lib/user-card';
|
|
53
|
+
export * from './lib/group-card';
|
|
54
|
+
export * from './lib/dropdown-contextual-menu';
|
|
52
55
|
export * from './lib/directives/popover.directive';
|